Compare commits

...

2 Commits

520 changed files with 9663 additions and 8471 deletions

View File

@ -2451,7 +2451,7 @@ pika_statusbar_queue_pos_redraw (gpointer data)
* The goal of this is to avoid the label size jumping up and * The goal of this is to avoid the label size jumping up and
* down. Actually it was not a problem on Linux, but this was * down. Actually it was not a problem on Linux, but this was
* reported on macOS. * reported on macOS.
* See: https://gitlab.gnome.org/GNOME/pika/-/merge_requests/572#note_1389445 * See: https://gitlab.gnome.org/GNOME/gimp/-/merge_requests/572#note_1389445
* So we just compute what looks like a reasonable "biggest size" * So we just compute what looks like a reasonable "biggest size"
* in worst cases. * in worst cases.
* Of course, it could still happen for people going way * Of course, it could still happen for people going way

View File

@ -1066,7 +1066,7 @@ pika_dialog_factory_add_foreign (PikaDialogFactory *factory,
* This function correctly positions a dialog on re-showing so it * This function correctly positions a dialog on re-showing so it
* appears where it was before it was hidden. * appears where it was before it was hidden.
* *
* See https://gitlab.gnome.org/GNOME/pika/issues/1093 * See https://gitlab.gnome.org/GNOME/gimp/issues/1093
**/ **/
void void
pika_dialog_factory_position_dialog (PikaDialogFactory *factory, pika_dialog_factory_position_dialog (PikaDialogFactory *factory,

View File

@ -432,7 +432,7 @@ pika_sample_point_editor_points_changed (PikaSamplePointEditor *editor)
/* Keep that many color frames around so they remember their color /* Keep that many color frames around so they remember their color
* model. Let's hope nobody uses more and notices they get reset to * model. Let's hope nobody uses more and notices they get reset to
* "pixel". See https://gitlab.gnome.org/GNOME/pika/issues/1805 * "pixel". See https://gitlab.gnome.org/GNOME/gimp/issues/1805
*/ */
#define RANDOM_MAGIC 16 #define RANDOM_MAGIC 16

View File

@ -25,7 +25,7 @@
<!-- Shown before the wizard starts on development versions of PIKA --> <!-- Shown before the wizard starts on development versions of PIKA -->
<config name="DevelopmentWarning"> <config name="DevelopmentWarning">
<value>This is a development version of PIKA where some features may not be finished, or it may be unstable.%nThis version of PIKA is not intended for day-to-day work as it may be unstable, and you could lose your work.%nIf you encounter any problems, first verify that they haven't already been fixed in GIT before you contact the developers or report it in PIKA gitlab:%n_https://gitlab.gnome.org/GNOME/pika/issues%n%nDo you wish to continue with installation anyway?</value> <value>This is a development version of PIKA where some features may not be finished, or it may be unstable.%nThis version of PIKA is not intended for day-to-day work as it may be unstable, and you could lose your work.%nIf you encounter any problems, first verify that they haven't already been fixed in GIT before you contact the developers or report it in PIKA gitlab:%n_https://heckin.technology/AlderconeStudio/PIKApp/issues/%n%nDo you wish to continue with installation anyway?</value>
</config> </config>
<config name="DevelopmentButtonContinue"> <config name="DevelopmentButtonContinue">
<value>&amp;Continue</value> <value>&amp;Continue</value>

View File

@ -322,7 +322,7 @@ As a last resort, PIKA uses the default splash image located at
.SH SUGGESTIONS AND BUG REPORTS .SH SUGGESTIONS AND BUG REPORTS
Any bugs found should be reported to the online bug-tracking system Any bugs found should be reported to the online bug-tracking system
available on the web at available on the web at
https://gitlab.gnome.org/GNOME/pika/issues. Before reporting bugs, https://heckin.technology/AlderconeStudio/PIKApp/issues/. Before reporting bugs,
please check to see if the bug has already been reported. please check to see if the bug has already been reported.
When reporting PIKA bugs, it is important to include a reliable way to When reporting PIKA bugs, it is important to include a reliable way to

View File

@ -753,7 +753,7 @@ pika_matrix3_invert (PikaMatrix3 *matrix)
/* To avoid redundant access to the coefficients, inline the determinant /* To avoid redundant access to the coefficients, inline the determinant
* formula. * formula.
* *
* See: https://gitlab.gnome.org/GNOME/pika/-/merge_requests/880#note_1727051 * See: https://gitlab.gnome.org/GNOME/gimp/-/merge_requests/880#note_1727051
*/ */
det = m00 * (m11 * m22 - m12 * m21) det = m00 * (m11 * m22 - m12 * m21)
- m10 * (m01 * m22 - m02 * m21) - m10 * (m01 * m22 - m02 * m21)

View File

@ -1,6 +1,6 @@
project('pika', project('pika',
'c', 'cpp', 'c', 'cpp',
version: '2.99.17', version: '0.1.0.GnuImp2.99.70', #heckimp skip
meson_version: '>=0.59.0', meson_version: '>=0.59.0',
default_options: [ default_options: [
'cpp_std=gnu++14', 'cpp_std=gnu++14',
@ -8,7 +8,7 @@ project('pika',
], ],
) )
project_url = 'https://gitlab.gnome.org/GNOME/pika' project_url = 'https://heckin.technology/AlderconeStudio/PIKApp'
project_url_issues = project_url + '/issues/new' project_url_issues = project_url + '/issues/new'
conf = configuration_data() conf = configuration_data()

View File

@ -64,7 +64,7 @@
<download-page rdf:resource="https:///www.pika.org/downloads/" /> <download-page rdf:resource="https:///www.pika.org/downloads/" />
<bug-database <bug-database
rdf:resource="https://gitlab.gnome.org/GNOME/pika/issues" rdf:resource="https://heckin.technology/AlderconeStudio/PIKApp/issues/"
/> />
<programming-language>C</programming-language> <programming-language>C</programming-language>

View File

@ -1286,7 +1286,7 @@ ReadImage (FILE *fd,
g_set_error (error, PIKA_PLUG_IN_ERROR, 0, g_set_error (error, PIKA_PLUG_IN_ERROR, 0,
_("Can't handle non-alpha RGB frames.\n" _("Can't handle non-alpha RGB frames.\n"
"Please file a bug report at " "Please file a bug report at "
"https://gitlab.gnome.org/GNOME/pika/issues")); "https://heckin.technology/AlderconeStudio/PIKApp/issues/"));
pika_image_delete (*image); pika_image_delete (*image);
*image = NULL; *image = NULL;
return FALSE; return FALSE;

View File

@ -224,7 +224,7 @@ heif_create_procedure (PikaPlugIn *plug_in,
/* HEIF is an ISOBMFF format whose "brand" (the value after "ftyp") /* HEIF is an ISOBMFF format whose "brand" (the value after "ftyp")
* can be of various values. * can be of various values.
* See also: https://gitlab.gnome.org/GNOME/pika/issues/2209 * See also: https://heckin.technology/AlderconeStudio/PIKApp/issues//2209
*/ */
pika_file_procedure_set_magics (PIKA_FILE_PROCEDURE (procedure), pika_file_procedure_set_magics (PIKA_FILE_PROCEDURE (procedure),
"4,string,ftypheic,4,string,ftypheix," "4,string,ftypheic,4,string,ftypheix,"

View File

@ -195,7 +195,7 @@ foreach plugin : common_plugins_list
copy: true, copy: true,
) )
# See https://gitlab.gnome.org/GNOME/pika/-/issues/8537 # See https://gitlab.gnome.org/GNOME/gimp/-/issues/8537
if generate_version_h if generate_version_h
compile_resources_depfiles = [] compile_resources_depfiles = []
compile_resources_depends = [ gitversion_h ] compile_resources_depends = [ gitversion_h ]

View File

@ -336,7 +336,7 @@ help_load_idle (gpointer data)
procedure = pika_pdb_lookup_procedure (pika_get_pdb (), procedure = pika_pdb_lookup_procedure (pika_get_pdb (),
idle_help->procedure); idle_help->procedure);
return_vals = pika_procedure_run (procedure, "domain-names", uri, NULL); return_vals = pika_procedure_run (procedure, "url", uri, NULL);
pika_value_array_unref (return_vals); pika_value_array_unref (return_vals);
g_free (uri); g_free (uri);

View File

@ -190,7 +190,7 @@
) )
(define (pika-online-bugs-features) (define (pika-online-bugs-features)
(plug-in-web-browser "https://gitlab.gnome.org/GNOME/pika/issues") (plug-in-web-browser "https://heckin.technology/AlderconeStudio/PIKApp/issues/")
) )
; (define (pika-online-plug-in-web-site) ; (define (pika-online-plug-in-web-site)

View File

@ -41,7 +41,7 @@ PACKAGE_GNU =
# It can be your email address, or a mailing list address where translators # It can be your email address, or a mailing list address where translators
# can write to without being subscribed, or the URL of a web page through # can write to without being subscribed, or the URL of a web page through
# which the translators can contact you. # which the translators can contact you.
MSGID_BUGS_ADDRESS = https://gitlab.gnome.org/GNOME/pika/issues MSGID_BUGS_ADDRESS = https://heckin.technology/AlderconeStudio/PIKApp/issues/
# This is the list of locale categories, beyond LC_MESSAGES, for which the # This is the list of locale categories, beyond LC_MESSAGES, for which the
# message catalogs shall be used. It is usually empty. # message catalogs shall be used. It is usually empty.

View File

@ -6,7 +6,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: pika-libpika.HEAD\n" "Project-Id-Version: pika-libpika.HEAD\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/pika/issues\n" "Report-Msgid-Bugs-To: https://heckin.technology/AlderconeStudio/PIKApp/issues/\n"
"POT-Creation-Date: 2015-12-02 20:54+0400\n" "POT-Creation-Date: 2015-12-02 20:54+0400\n"
"PO-Revision-Date: 2012-04-01 01:25+0200\n" "PO-Revision-Date: 2012-04-01 01:25+0200\n"
"Last-Translator: Khaled Hosny <khaledhosny@eglug.org>\n" "Last-Translator: Khaled Hosny <khaledhosny@eglug.org>\n"

View File

@ -1,7 +1,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: pika 2.7.0\n" "Project-Id-Version: pika 2.7.0\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/pika/issues\n" "Report-Msgid-Bugs-To: https://heckin.technology/AlderconeStudio/PIKApp/issues/\n"
"POT-Creation-Date: 2011-12-06 01:01+0300\n" "POT-Creation-Date: 2011-12-06 01:01+0300\n"
"PO-Revision-Date: 2011-12-02 22:18+0300\n" "PO-Revision-Date: 2011-12-02 22:18+0300\n"
"Last-Translator: Hleb Valoshka <375gnu@gmail.com>\n" "Last-Translator: Hleb Valoshka <375gnu@gmail.com>\n"

View File

@ -9,7 +9,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: pika-libpika master\n" "Project-Id-Version: pika-libpika master\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/pika/issues\n" "Report-Msgid-Bugs-To: https://heckin.technology/AlderconeStudio/PIKApp/issues/\n"
"POT-Creation-Date: 2023-05-15 07:54+0000\n" "POT-Creation-Date: 2023-05-15 07:54+0000\n"
"PO-Revision-Date: 2023-05-14 08:03+0300\n" "PO-Revision-Date: 2023-05-14 08:03+0300\n"
"Last-Translator: Alexander Shopov <ash@kambanaria.org>\n" "Last-Translator: Alexander Shopov <ash@kambanaria.org>\n"

View File

@ -6,7 +6,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: pika\n" "Project-Id-Version: pika\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/pika/issues\n" "Report-Msgid-Bugs-To: https://heckin.technology/AlderconeStudio/PIKApp/issues/\n"
"POT-Creation-Date: 2012-03-10 17:30+0000\n" "POT-Creation-Date: 2012-03-10 17:30+0000\n"
"PO-Revision-Date: 2012-04-06 23:04+0100\n" "PO-Revision-Date: 2012-04-06 23:04+0100\n"
"Last-Translator: Alan Monfort <alan.monfort@free.fr>\n" "Last-Translator: Alan Monfort <alan.monfort@free.fr>\n"

View File

@ -1,7 +1,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: pika\n" "Project-Id-Version: pika\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/pika/issues\n" "Report-Msgid-Bugs-To: https://heckin.technology/AlderconeStudio/PIKApp/issues/\n"
"POT-Creation-Date: 2013-01-27 21:39+0000\n" "POT-Creation-Date: 2013-01-27 21:39+0000\n"
"PO-Revision-Date: 2015-02-04 15:16+0000\n" "PO-Revision-Date: 2015-02-04 15:16+0000\n"
"Last-Translator: Samir Ribić <Unknown>\n" "Last-Translator: Samir Ribić <Unknown>\n"

View File

@ -15,7 +15,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ca\n" "Project-Id-Version: ca\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/pika/issues\n" "Report-Msgid-Bugs-To: https://heckin.technology/AlderconeStudio/PIKApp/issues/\n"
"POT-Creation-Date: 2023-10-21 01:50+0000\n" "POT-Creation-Date: 2023-10-21 01:50+0000\n"
"PO-Revision-Date: 2023-10-22 21:55+0100\n" "PO-Revision-Date: 2023-10-22 21:55+0100\n"
"Last-Translator: Jordi Mas i Hernàndez <jmas@softcatala.org>\n" "Last-Translator: Jordi Mas i Hernàndez <jmas@softcatala.org>\n"

View File

@ -12,7 +12,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ca\n" "Project-Id-Version: ca\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/pika/issues\n" "Report-Msgid-Bugs-To: https://heckin.technology/AlderconeStudio/PIKApp/issues/\n"
"POT-Creation-Date: 2012-01-09 00:47+0100\n" "POT-Creation-Date: 2012-01-09 00:47+0100\n"
"PO-Revision-Date: 2011-12-22 22:51+0100\n" "PO-Revision-Date: 2011-12-22 22:51+0100\n"
"Last-Translator: Albert F. <lakonfrariadelavila@gmail.com>\n" "Last-Translator: Albert F. <lakonfrariadelavila@gmail.com>\n"

View File

@ -14,7 +14,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: cs\n" "Project-Id-Version: cs\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/pika/issues\n" "Report-Msgid-Bugs-To: https://heckin.technology/AlderconeStudio/PIKApp/issues/\n"
"POT-Creation-Date: 2012-11-23 22:37+0000\n" "POT-Creation-Date: 2012-11-23 22:37+0000\n"
"PO-Revision-Date: 2012-11-26 10:28+0100\n" "PO-Revision-Date: 2012-11-26 10:28+0100\n"
"Last-Translator: Marek Černocký <marek@manet.cz>\n" "Last-Translator: Marek Černocký <marek@manet.cz>\n"

View File

@ -16,9 +16,9 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PIKA libpika\n" "Project-Id-Version: PIKA libpika\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/pika/issues\n" "Report-Msgid-Bugs-To: https://heckin.technology/AlderconeStudio/PIKApp/issues/\n"
"POT-Creation-Date: 2023-10-19 10:04+0000\n" "POT-Creation-Date: 2023-10-19 10:04+0000\n"
"PO-Revision-Date: 2023-10-31 14:13+0100\n" "PO-Revision-Date: 2023-12-06 08:28+0100\n"
"Last-Translator: Alan Mortensen <alanmortensen.am@gmail.com>\n" "Last-Translator: Alan Mortensen <alanmortensen.am@gmail.com>\n"
"Language-Team: Danish <dansk@dansk-gruppen.dk>\n" "Language-Team: Danish <dansk@dansk-gruppen.dk>\n"
"Language: da\n" "Language: da\n"
@ -1768,7 +1768,7 @@ msgstr "Skærmkorrektur"
#: libpikaconfig/pikaconfigenums.c:58 #: libpikaconfig/pikaconfigenums.c:58
msgctxt "color-rendering-intent" msgctxt "color-rendering-intent"
msgid "Perceptual" msgid "Perceptual"
msgstr "Sanselig" msgstr "Perceptuel"
# http://www.ordbogen.com/opslag.php?word=colorimetric&dict=a000#daen # http://www.ordbogen.com/opslag.php?word=colorimetric&dict=a000#daen
# http://www.denstoredanske.dk./It,_teknik_og_naturvidenskab/Kemi/Analytisk_kemi/kolorimetri?highlight=kolorimetrisk # http://www.denstoredanske.dk./It,_teknik_og_naturvidenskab/Kemi/Analytisk_kemi/kolorimetri?highlight=kolorimetrisk
@ -1852,7 +1852,7 @@ msgid ""
msgstr "" msgstr ""
"Hvordan farver konverteres fra dit billedes farverum til skærmens. Relativ " "Hvordan farver konverteres fra dit billedes farverum til skærmens. Relativ "
"kolorimetrisk er oftest det bedste valg. Med mindre du bruger en LUT-" "kolorimetrisk er oftest det bedste valg. Med mindre du bruger en LUT-"
"skærmprofil (de fleste skærmprofiler er matrix), vil sanselig " "skærmprofil (de fleste skærmprofiler er matrix), vil perceptuel "
"gengivelsesmetode i virkeligheden være det samme som relativ kolorimetrisk." "gengivelsesmetode i virkeligheden være det samme som relativ kolorimetrisk."
#: libpikaconfig/pikacolorconfig.c:86 #: libpikaconfig/pikacolorconfig.c:86

View File

@ -15,7 +15,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: libpika master\n" "Project-Id-Version: libpika master\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/pika/issues\n" "Report-Msgid-Bugs-To: https://heckin.technology/AlderconeStudio/PIKApp/issues/\n"
"POT-Creation-Date: 2023-02-24 21:39+0000\n" "POT-Creation-Date: 2023-02-24 21:39+0000\n"
"PO-Revision-Date: 2023-02-25 22:15+0100\n" "PO-Revision-Date: 2023-02-25 22:15+0100\n"
"Last-Translator: Tim Sabsch <tim@sabsch.com>\n" "Last-Translator: Tim Sabsch <tim@sabsch.com>\n"

View File

@ -6,7 +6,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: pika-libpika.HEAD\n" "Project-Id-Version: pika-libpika.HEAD\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/pika/issues\n" "Report-Msgid-Bugs-To: https://heckin.technology/AlderconeStudio/PIKApp/issues/\n"
"POT-Creation-Date: 2007-03-19 21:49+0000\n" "POT-Creation-Date: 2007-03-19 21:49+0000\n"
"PO-Revision-Date: 2007-03-27 14:33+0530\n" "PO-Revision-Date: 2007-03-27 14:33+0530\n"
"Last-Translator: sonam pelden <sonaa_peldn@yahoo.com>\n" "Last-Translator: sonam pelden <sonaa_peldn@yahoo.com>\n"

View File

@ -9,7 +9,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: pika-libpika.master.el.po\n" "Project-Id-Version: pika-libpika.master.el.po\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/pika/issues\n" "Report-Msgid-Bugs-To: https://heckin.technology/AlderconeStudio/PIKApp/issues/\n"
"POT-Creation-Date: 2023-02-21 10:23+0000\n" "POT-Creation-Date: 2023-02-21 10:23+0000\n"
"PO-Revision-Date: 2023-02-22 09:27+0200\n" "PO-Revision-Date: 2023-02-22 09:27+0200\n"
"Last-Translator: Dimitris Spingos (Δημήτρης Σπίγγος) <dmtrs32@gmail.com>\n" "Last-Translator: Dimitris Spingos (Δημήτρης Σπίγγος) <dmtrs32@gmail.com>\n"

View File

@ -7,7 +7,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: libpika\n" "Project-Id-Version: libpika\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/pika/issues\n" "Report-Msgid-Bugs-To: https://heckin.technology/AlderconeStudio/PIKApp/issues/\n"
"POT-Creation-Date: 2007-09-29 20:31-0400\n" "POT-Creation-Date: 2007-09-29 20:31-0400\n"
"PO-Revision-Date: 2005-09-06 20:02-0400\n" "PO-Revision-Date: 2005-09-06 20:02-0400\n"
"Last-Translator: Adam Weinberger <adamw@gnome.org>\n" "Last-Translator: Adam Weinberger <adamw@gnome.org>\n"

View File

@ -8,7 +8,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: pika\n" "Project-Id-Version: pika\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/pika/issues\n" "Report-Msgid-Bugs-To: https://heckin.technology/AlderconeStudio/PIKApp/issues/\n"
"POT-Creation-Date: 2022-02-16 01:15+0000\n" "POT-Creation-Date: 2022-02-16 01:15+0000\n"
"PO-Revision-Date: 2022-02-16 16:48+0000\n" "PO-Revision-Date: 2022-02-16 16:48+0000\n"
"Last-Translator: Bruce Cowan <bruce@bcowan.me.uk>\n" "Last-Translator: Bruce Cowan <bruce@bcowan.me.uk>\n"

View File

@ -7,7 +7,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: pika 2.3\n" "Project-Id-Version: pika 2.3\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/pika/issues\n" "Report-Msgid-Bugs-To: https://heckin.technology/AlderconeStudio/PIKApp/issues/\n"
"POT-Creation-Date: 2017-12-24 21:58+0000\n" "POT-Creation-Date: 2017-12-24 21:58+0000\n"
"PO-Revision-Date: 2017-12-25 01:35+0200\n" "PO-Revision-Date: 2017-12-25 01:35+0200\n"
"Last-Translator: Kristjan SCHMIDT <kristjan.schmidt@googlemail.com>\n" "Last-Translator: Kristjan SCHMIDT <kristjan.schmidt@googlemail.com>\n"

View File

@ -17,7 +17,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: pika-libpika.master\n" "Project-Id-Version: pika-libpika.master\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/pika/issues\n" "Report-Msgid-Bugs-To: https://heckin.technology/AlderconeStudio/PIKApp/issues/\n"
"POT-Creation-Date: 2023-11-23 08:08+0000\n" "POT-Creation-Date: 2023-11-23 08:08+0000\n"
"PO-Revision-Date: 2023-11-24 11:24+0100\n" "PO-Revision-Date: 2023-11-24 11:24+0100\n"
"Last-Translator: Rodrigo Lledó Milanca <rodhos92@gmail.com>\n" "Last-Translator: Rodrigo Lledó Milanca <rodhos92@gmail.com>\n"

View File

@ -10,7 +10,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: pika-libpika\n" "Project-Id-Version: pika-libpika\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/pika/issues\n" "Report-Msgid-Bugs-To: https://heckin.technology/AlderconeStudio/PIKApp/issues/\n"
"POT-Creation-Date: 2012-12-19 00:04+0000\n" "POT-Creation-Date: 2012-12-19 00:04+0000\n"
"PO-Revision-Date: 2012-12-19 15:57+0300\n" "PO-Revision-Date: 2012-12-19 15:57+0300\n"
"Last-Translator: Mattias Põldaru <mahfiaz@gmail.com>\n" "Last-Translator: Mattias Põldaru <mahfiaz@gmail.com>\n"

View File

@ -10,7 +10,7 @@
# #
msgid "" msgid ""
msgstr "Project-Id-Version: pika master\n" msgstr "Project-Id-Version: pika master\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/pika/issues\n" "Report-Msgid-Bugs-To: https://heckin.technology/AlderconeStudio/PIKApp/issues/\n"
"POT-Creation-Date: 2023-10-04 12:21+0000\n" "POT-Creation-Date: 2023-10-04 12:21+0000\n"
"PO-Revision-Date: 2023-10-14 10:00+0100\n" "PO-Revision-Date: 2023-10-14 10:00+0100\n"
"Last-Translator: Asier Sarasua Garmendia <asiersarasua@ni.eus>\n" "Last-Translator: Asier Sarasua Garmendia <asiersarasua@ni.eus>\n"

View File

@ -7,7 +7,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: pika-libpika VERSION\n" "Project-Id-Version: pika-libpika VERSION\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/pika/issues\n" "Report-Msgid-Bugs-To: https://heckin.technology/AlderconeStudio/PIKApp/issues/\n"
"POT-Creation-Date: 2023-07-15 14:41+0000\n" "POT-Creation-Date: 2023-07-15 14:41+0000\n"
"PO-Revision-Date: 2023-07-29 04:05+0330\n" "PO-Revision-Date: 2023-07-29 04:05+0330\n"
"Last-Translator: Danial Behzadi <dani.behzi@ubuntu.com>\n" "Last-Translator: Danial Behzadi <dani.behzi@ubuntu.com>\n"

View File

@ -10,7 +10,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: libpika\n" "Project-Id-Version: libpika\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/pika/issues\n" "Report-Msgid-Bugs-To: https://heckin.technology/AlderconeStudio/PIKApp/issues/\n"
"POT-Creation-Date: 2022-05-05 13:05+0000\n" "POT-Creation-Date: 2022-05-05 13:05+0000\n"
"PO-Revision-Date: 2022-06-08 19:53+0300\n" "PO-Revision-Date: 2022-06-08 19:53+0300\n"
"Last-Translator: Juhani Numminen <juhaninumminen0@gmail.com>\n" "Last-Translator: Juhani Numminen <juhaninumminen0@gmail.com>\n"

View File

@ -21,7 +21,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: pika-libpika HEAD\n" "Project-Id-Version: pika-libpika HEAD\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/pika/issues\n" "Report-Msgid-Bugs-To: https://heckin.technology/AlderconeStudio/PIKApp/issues/\n"
"POT-Creation-Date: 2022-04-16 13:32+0000\n" "POT-Creation-Date: 2022-04-16 13:32+0000\n"
"PO-Revision-Date: 2022-04-17 23:12+0200\n" "PO-Revision-Date: 2022-04-17 23:12+0200\n"
"Last-Translator: Charles Monzat <charles.monzat@free.fr>\n" "Last-Translator: Charles Monzat <charles.monzat@free.fr>\n"

View File

@ -5,7 +5,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: pika-libpika VERSION\n" "Project-Id-Version: pika-libpika VERSION\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/pika/issues\n" "Report-Msgid-Bugs-To: https://heckin.technology/AlderconeStudio/PIKApp/issues/\n"
"POT-Creation-Date: 2005-02-02 19:53+0100\n" "POT-Creation-Date: 2005-02-02 19:53+0100\n"
"PO-Revision-Date: 2000-12-18 23:30-0800\n" "PO-Revision-Date: 2000-12-18 23:30-0800\n"
"Last-Translator: Nobody\n" "Last-Translator: Nobody\n"

View File

@ -9,7 +9,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: pika-libpika.HEAD\n" "Project-Id-Version: pika-libpika.HEAD\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/pika/issues\n" "Report-Msgid-Bugs-To: https://heckin.technology/AlderconeStudio/PIKApp/issues/\n"
"POT-Creation-Date: 2011-11-21 14:52+0100\n" "POT-Creation-Date: 2011-11-21 14:52+0100\n"
"PO-Revision-Date: 2011-11-21 14:56+0100\n" "PO-Revision-Date: 2011-11-21 14:56+0100\n"
"Last-Translator: Fran Dieguez <frandieguez@gnome.org>\n" "Last-Translator: Fran Dieguez <frandieguez@gnome.org>\n"

View File

@ -7,7 +7,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: pika-libpika.HEAD.gu\n" "Project-Id-Version: pika-libpika.HEAD.gu\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/pika/issues\n" "Report-Msgid-Bugs-To: https://heckin.technology/AlderconeStudio/PIKApp/issues/\n"
"POT-Creation-Date: 2005-09-26 02:52+0200\n" "POT-Creation-Date: 2005-09-26 02:52+0200\n"
"PO-Revision-Date: 2005-09-26 09:51+0530\n" "PO-Revision-Date: 2005-09-26 09:51+0530\n"
"Last-Translator: Ankit Patel <ankit644@yahoo.com>\n" "Last-Translator: Ankit Patel <ankit644@yahoo.com>\n"

View File

@ -9,7 +9,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: pika-libpika.HEAD\n" "Project-Id-Version: pika-libpika.HEAD\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/pika/issues\n" "Report-Msgid-Bugs-To: https://heckin.technology/AlderconeStudio/PIKApp/issues/\n"
"POT-Creation-Date: 2010-08-04 00:05+0300\n" "POT-Creation-Date: 2010-08-04 00:05+0300\n"
"PO-Revision-Date: 2010-08-04 02:45+0300\n" "PO-Revision-Date: 2010-08-04 02:45+0300\n"
"Last-Translator: Barak Itkin <lightningismyname@gmail.com>\n" "Last-Translator: Barak Itkin <lightningismyname@gmail.com>\n"

View File

@ -4,7 +4,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: pika-libpika 0\n" "Project-Id-Version: pika-libpika 0\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/pika/issues\n" "Report-Msgid-Bugs-To: https://heckin.technology/AlderconeStudio/PIKApp/issues/\n"
"POT-Creation-Date: 2005-02-02 19:53+0100\n" "POT-Creation-Date: 2005-02-02 19:53+0100\n"
"PO-Revision-Date: 2004-03-20 14:49+CET\n" "PO-Revision-Date: 2004-03-20 14:49+CET\n"
"Last-Translator: auto\n" "Last-Translator: auto\n"

View File

@ -12,7 +12,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: pika-libpika master\n" "Project-Id-Version: pika-libpika master\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/pika/issues\n" "Report-Msgid-Bugs-To: https://heckin.technology/AlderconeStudio/PIKApp/issues/\n"
"POT-Creation-Date: 2023-07-26 20:31+0000\n" "POT-Creation-Date: 2023-07-26 20:31+0000\n"
"PO-Revision-Date: 2023-07-27 01:39+0200\n" "PO-Revision-Date: 2023-07-27 01:39+0200\n"
"Last-Translator: Balázs Úr <ur.balazs at fsf dot hu>\n" "Last-Translator: Balázs Úr <ur.balazs at fsf dot hu>\n"

View File

@ -2,7 +2,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: libpika HEAD\n" "Project-Id-Version: libpika HEAD\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/pika/issues\n" "Report-Msgid-Bugs-To: https://heckin.technology/AlderconeStudio/PIKApp/issues/\n"
"POT-Creation-Date: 2005-02-02 19:53+0100\n" "POT-Creation-Date: 2005-02-02 19:53+0100\n"
"PO-Revision-Date: 2003-06-28 22:03+0700\n" "PO-Revision-Date: 2003-06-28 22:03+0700\n"
"Last-Translator: Mohammad DAMT <mdamt@bisnisweb.com>\n" "Last-Translator: Mohammad DAMT <mdamt@bisnisweb.com>\n"

View File

@ -7,7 +7,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: pika-libpika.pika-2-8.is\n" "Project-Id-Version: pika-libpika.pika-2-8.is\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/pika/issues\n" "Report-Msgid-Bugs-To: https://heckin.technology/AlderconeStudio/PIKApp/issues/\n"
"POT-Creation-Date: 2023-02-27 00:49+0000\n" "POT-Creation-Date: 2023-02-27 00:49+0000\n"
"PO-Revision-Date: 2023-02-28 13:17+0000\n" "PO-Revision-Date: 2023-02-28 13:17+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n" "Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"

View File

@ -30,7 +30,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: pika 2.6\n" "Project-Id-Version: pika 2.6\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/pika/issues\n" "Report-Msgid-Bugs-To: https://heckin.technology/AlderconeStudio/PIKApp/issues/\n"
"POT-Creation-Date: 2023-07-01 11:54+0200\n" "POT-Creation-Date: 2023-07-01 11:54+0200\n"
"PO-Revision-Date: 2023-07-01 11:59+0200\n" "PO-Revision-Date: 2023-07-01 11:59+0200\n"
"Last-Translator: Luca Ferretti <elle.uca@libero.it>\n" "Last-Translator: Luca Ferretti <elle.uca@libero.it>\n"

View File

@ -11,7 +11,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: pika master\n" "Project-Id-Version: pika master\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/pika/issues\n" "Report-Msgid-Bugs-To: https://heckin.technology/AlderconeStudio/PIKApp/issues/\n"
"POT-Creation-Date: 2021-01-07 21:04+0000\n" "POT-Creation-Date: 2021-01-07 21:04+0000\n"
"PO-Revision-Date: 2021-01-15 00:00+0900\n" "PO-Revision-Date: 2021-01-15 00:00+0900\n"
"Last-Translator: sicklylife <translation@sicklylife.jp>\n" "Last-Translator: sicklylife <translation@sicklylife.jp>\n"

View File

@ -7,7 +7,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: pika master\n" "Project-Id-Version: pika master\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/pika/issues\n" "Report-Msgid-Bugs-To: https://heckin.technology/AlderconeStudio/PIKApp/issues/\n"
"POT-Creation-Date: 2023-10-02 00:02+0000\n" "POT-Creation-Date: 2023-10-02 00:02+0000\n"
"PO-Revision-Date: 2023-10-02 14:27+0200\n" "PO-Revision-Date: 2023-10-02 14:27+0200\n"
"Last-Translator: Ekaterine Papava <papava.e@gtu.ge>\n" "Last-Translator: Ekaterine Papava <papava.e@gtu.ge>\n"

View File

@ -6,7 +6,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: \n" "Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/pika/issues\n" "Report-Msgid-Bugs-To: https://heckin.technology/AlderconeStudio/PIKApp/issues/\n"
"POT-Creation-Date: 2021-12-04 14:34+0000\n" "POT-Creation-Date: 2021-12-04 14:34+0000\n"
"PO-Revision-Date: 2021-12-05 20:54+0100\n" "PO-Revision-Date: 2021-12-05 20:54+0100\n"
"Last-Translator: Yacine Bouklif <yacinebouklif@gmail.com>\n" "Last-Translator: Yacine Bouklif <yacinebouklif@gmail.com>\n"

View File

@ -6,7 +6,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: pika pika-2-6\n" "Project-Id-Version: pika pika-2-6\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/pika/issues\n" "Report-Msgid-Bugs-To: https://heckin.technology/AlderconeStudio/PIKApp/issues/\n"
"POT-Creation-Date: 2020-07-21 04:55+0000\n" "POT-Creation-Date: 2020-07-21 04:55+0000\n"
"PO-Revision-Date: 2020-07-21 09:59+0500\n" "PO-Revision-Date: 2020-07-21 09:59+0500\n"
"Last-Translator: Baurzhan Muftakhidinov <baurthefirst@gmail.com>\n" "Last-Translator: Baurzhan Muftakhidinov <baurthefirst@gmail.com>\n"

View File

@ -5,7 +5,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: km\n" "Project-Id-Version: km\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/pika/issues\n" "Report-Msgid-Bugs-To: https://heckin.technology/AlderconeStudio/PIKApp/issues/\n"
"POT-Creation-Date: 2007-08-14 17:45+0100\n" "POT-Creation-Date: 2007-08-14 17:45+0100\n"
"PO-Revision-Date: 2008-08-25 10:22+0700\n" "PO-Revision-Date: 2008-08-25 10:22+0700\n"
"Last-Translator: Khoem Sokhem <khoemsokhem@khmeros.info>\n" "Last-Translator: Khoem Sokhem <khoemsokhem@khmeros.info>\n"

View File

@ -7,7 +7,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: pika-libpika\n" "Project-Id-Version: pika-libpika\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/pika/issues\n" "Report-Msgid-Bugs-To: https://heckin.technology/AlderconeStudio/PIKApp/issues/\n"
"POT-Creation-Date: 2012-05-12 12:54+0000\n" "POT-Creation-Date: 2012-05-12 12:54+0000\n"
"PO-Revision-Date: 2012-05-05 16:56+0900\n" "PO-Revision-Date: 2012-05-05 16:56+0900\n"
"Last-Translator: Jihui Choi <jihui.choi@gmail.com>\n" "Last-Translator: Jihui Choi <jihui.choi@gmail.com>\n"

View File

@ -8,7 +8,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PIKA (libpika) HEAD\n" "Project-Id-Version: PIKA (libpika) HEAD\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/pika/issues\n" "Report-Msgid-Bugs-To: https://heckin.technology/AlderconeStudio/PIKApp/issues/\n"
"POT-Creation-Date: 2021-04-08 21:14+0000\n" "POT-Creation-Date: 2021-04-08 21:14+0000\n"
"PO-Revision-Date: 2021-04-18 23:20+0300\n" "PO-Revision-Date: 2021-04-18 23:20+0300\n"
"Last-Translator: Aurimas Černius <aurisc4@gmail.com>\n" "Last-Translator: Aurimas Černius <aurisc4@gmail.com>\n"

View File

@ -8,7 +8,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: pika-libpika.HEAD.lv\n" "Project-Id-Version: pika-libpika.HEAD.lv\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/pika/issues\n" "Report-Msgid-Bugs-To: https://heckin.technology/AlderconeStudio/PIKApp/issues/\n"
"POT-Creation-Date: 2021-11-09 14:43+0000\n" "POT-Creation-Date: 2021-11-09 14:43+0000\n"
"PO-Revision-Date: 2021-11-14 20:53+0200\n" "PO-Revision-Date: 2021-11-14 20:53+0200\n"
"Last-Translator: Rūdolfs Mazurs <rudolfs.mazurs@gmail.com>\n" "Last-Translator: Rūdolfs Mazurs <rudolfs.mazurs@gmail.com>\n"

View File

@ -16,7 +16,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: pika-libpika.HEAD\n" "Project-Id-Version: pika-libpika.HEAD\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/pika/issues\n" "Report-Msgid-Bugs-To: https://heckin.technology/AlderconeStudio/PIKApp/issues/\n"
"POT-Creation-Date: 2008-09-05 07:32+0000\n" "POT-Creation-Date: 2008-09-05 07:32+0000\n"
"PO-Revision-Date: 2008-10-06 22:52+1000\n" "PO-Revision-Date: 2008-10-06 22:52+1000\n"
"Last-Translator: Marko Doda <marko@lugola.net>\n" "Last-Translator: Marko Doda <marko@lugola.net>\n"

View File

@ -8,7 +8,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PIKA\n" "Project-Id-Version: PIKA\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/pika/issues\n" "Report-Msgid-Bugs-To: https://heckin.technology/AlderconeStudio/PIKApp/issues/\n"
"POT-Creation-Date: 2018-07-07 09:45+0000\n" "POT-Creation-Date: 2018-07-07 09:45+0000\n"
"PO-Revision-Date: 2018-07-07 14:57+0000\n" "PO-Revision-Date: 2018-07-07 14:57+0000\n"
"Last-Translator: Snehalata B Shirude <snehalata.shirude@gmail.com>\n" "Last-Translator: Snehalata B Shirude <snehalata.shirude@gmail.com>\n"

View File

@ -6,7 +6,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: libpika\n" "Project-Id-Version: libpika\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/pika/issues\n" "Report-Msgid-Bugs-To: https://heckin.technology/AlderconeStudio/PIKApp/issues/\n"
"POT-Creation-Date: 2005-02-02 19:53+0100\n" "POT-Creation-Date: 2005-02-02 19:53+0100\n"
"PO-Revision-Date: 2003-10-30 08:00+0800\n" "PO-Revision-Date: 2003-10-30 08:00+0800\n"
"Last-Translator: Mimos Open Source Development Group <syed@mimos.my>\n" "Last-Translator: Mimos Open Source Development Group <syed@mimos.my>\n"

View File

@ -7,7 +7,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: pika-libpika 2.7.1\n" "Project-Id-Version: pika-libpika 2.7.1\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/pika/issues\n" "Report-Msgid-Bugs-To: https://heckin.technology/AlderconeStudio/PIKApp/issues/\n"
"POT-Creation-Date: 2009-06-15 17:30+0000\n" "POT-Creation-Date: 2009-06-15 17:30+0000\n"
"PO-Revision-Date: 2010-01-29 17:26+0200\n" "PO-Revision-Date: 2010-01-29 17:26+0200\n"
"Last-Translator: Russell Kyaw <rkyaw@yahoo.com>\n" "Last-Translator: Russell Kyaw <rkyaw@yahoo.com>\n"

View File

@ -7,7 +7,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PIKA HEAD\n" "Project-Id-Version: PIKA HEAD\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/pika/issues\n" "Report-Msgid-Bugs-To: https://heckin.technology/AlderconeStudio/PIKApp/issues/\n"
"POT-Creation-Date: 2013-05-27 15:21+0200\n" "POT-Creation-Date: 2013-05-27 15:21+0200\n"
"PO-Revision-Date: 2013-05-27 15:22+0200\n" "PO-Revision-Date: 2013-05-27 15:22+0200\n"
"Last-Translator: Kjartan Maraas <kmaraas@gnome.org>\n" "Last-Translator: Kjartan Maraas <kmaraas@gnome.org>\n"

View File

@ -12,7 +12,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: pika-libpika.HEAD.ne\n" "Project-Id-Version: pika-libpika.HEAD.ne\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/pika/issues\n" "Report-Msgid-Bugs-To: https://heckin.technology/AlderconeStudio/PIKApp/issues/\n"
"POT-Creation-Date: 2007-05-08 03:37+0100\n" "POT-Creation-Date: 2007-05-08 03:37+0100\n"
"PO-Revision-Date: 2007-07-27 11:51+0545\n" "PO-Revision-Date: 2007-07-27 11:51+0545\n"
"Last-Translator: Nabin Gautam <nabin@mpp.org.np>\n" "Last-Translator: Nabin Gautam <nabin@mpp.org.np>\n"

View File

@ -11,7 +11,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PIKA 2.0\n" "Project-Id-Version: PIKA 2.0\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/pika/issues\n" "Report-Msgid-Bugs-To: https://heckin.technology/AlderconeStudio/PIKApp/issues/\n"
"POT-Creation-Date: 2022-03-18 14:45+0000\n" "POT-Creation-Date: 2022-03-18 14:45+0000\n"
"PO-Revision-Date: 2022-03-29 17:28+0200\n" "PO-Revision-Date: 2022-03-29 17:28+0200\n"
"Last-Translator: Nathan Follens <nfollens@gnome.org>\n" "Last-Translator: Nathan Follens <nfollens@gnome.org>\n"

View File

@ -6,7 +6,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: pika 2.8\n" "Project-Id-Version: pika 2.8\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/pika/issues\n" "Report-Msgid-Bugs-To: https://heckin.technology/AlderconeStudio/PIKApp/issues/\n"
"POT-Creation-Date: 2016-01-14 19:49+0100\n" "POT-Creation-Date: 2016-01-14 19:49+0100\n"
"PO-Revision-Date: 2016-01-14 20:01+0100\n" "PO-Revision-Date: 2016-01-14 20:01+0100\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n" "Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"

View File

@ -8,7 +8,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: pika20\n" "Project-Id-Version: pika20\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/pika/issues\n" "Report-Msgid-Bugs-To: https://heckin.technology/AlderconeStudio/PIKApp/issues/\n"
"POT-Creation-Date: 2016-10-11 22:24+0000\n" "POT-Creation-Date: 2016-10-11 22:24+0000\n"
"PO-Revision-Date: 2016-10-16 14:32+0200\n" "PO-Revision-Date: 2016-10-16 14:32+0200\n"
"Last-Translator: Cédric Valmary (totenoc.eu) <cvalmary@yahoo.fr>\n" "Last-Translator: Cédric Valmary (totenoc.eu) <cvalmary@yahoo.fr>\n"

View File

@ -9,7 +9,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: pika-libpika.HEAD.pa\n" "Project-Id-Version: pika-libpika.HEAD.pa\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/pika/issues\n" "Report-Msgid-Bugs-To: https://heckin.technology/AlderconeStudio/PIKApp/issues/\n"
"POT-Creation-Date: 2008-09-05 07:32+0000\n" "POT-Creation-Date: 2008-09-05 07:32+0000\n"
"PO-Revision-Date: 2008-10-07 06:41+0000\n" "PO-Revision-Date: 2008-10-07 06:41+0000\n"
"Last-Translator: Amanpreet Singh Alam <aalam@users.sf.net>\n" "Last-Translator: Amanpreet Singh Alam <aalam@users.sf.net>\n"

View File

@ -12,7 +12,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: 2.6\n" "Project-Id-Version: 2.6\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/pika/issues\n" "Report-Msgid-Bugs-To: https://heckin.technology/AlderconeStudio/PIKApp/issues/\n"
"POT-Creation-Date: 2023-01-24 20:14+0000\n" "POT-Creation-Date: 2023-01-24 20:14+0000\n"
"PO-Revision-Date: 2023-01-25 12:09+0000\n" "PO-Revision-Date: 2023-01-25 12:09+0000\n"
"Last-Translator: Hugo Carvalho <hugokarvalho@hotmail.com>\n" "Last-Translator: Hugo Carvalho <hugokarvalho@hotmail.com>\n"

View File

@ -14,7 +14,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: pika-libpika master\n" "Project-Id-Version: pika-libpika master\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/pika/issues\n" "Report-Msgid-Bugs-To: https://heckin.technology/AlderconeStudio/PIKApp/issues/\n"
"POT-Creation-Date: 2023-09-12 16:59+0000\n" "POT-Creation-Date: 2023-09-12 16:59+0000\n"
"PO-Revision-Date: 2023-09-12 13:59-0300\n" "PO-Revision-Date: 2023-09-12 13:59-0300\n"
"Last-Translator: Víttor Paulo Vieira da Costa <vittorpaulovc@gmail.com>\n" "Last-Translator: Víttor Paulo Vieira da Costa <vittorpaulovc@gmail.com>\n"

View File

@ -5,7 +5,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: pika-libpika\n" "Project-Id-Version: pika-libpika\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/pika/issues\n" "Report-Msgid-Bugs-To: https://heckin.technology/AlderconeStudio/PIKApp/issues/\n"
"POT-Creation-Date: 2022-11-24 21:59+0000\n" "POT-Creation-Date: 2022-11-24 21:59+0000\n"
"PO-Revision-Date: 2022-12-06 01:55+0200\n" "PO-Revision-Date: 2022-12-06 01:55+0200\n"
"Last-Translator: Cristian Secară <cristi AT secarica DOT ro>\n" "Last-Translator: Cristian Secară <cristi AT secarica DOT ro>\n"

View File

@ -9,7 +9,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: libpika 2.10\n" "Project-Id-Version: libpika 2.10\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/pika/issues\n" "Report-Msgid-Bugs-To: https://heckin.technology/AlderconeStudio/PIKApp/issues/\n"
"POT-Creation-Date: 2023-06-27 19:17+0200\n" "POT-Creation-Date: 2023-06-27 19:17+0200\n"
"PO-Revision-Date: 2023-06-27 19:20+0200\n" "PO-Revision-Date: 2023-06-27 19:20+0200\n"
"Last-Translator: Alexandre Prokoudine <alexandre.prokoudine@gmail.com>\n" "Last-Translator: Alexandre Prokoudine <alexandre.prokoudine@gmail.com>\n"

View File

@ -14,7 +14,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: pika-libpika HEAD\n" "Project-Id-Version: pika-libpika HEAD\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/pika/issues\n" "Report-Msgid-Bugs-To: https://heckin.technology/AlderconeStudio/PIKApp/issues/\n"
"POT-Creation-Date: 2005-04-01 13:03-0700\n" "POT-Creation-Date: 2005-04-01 13:03-0700\n"
"PO-Revision-Date: 2005-03-31 20:55-0700\n" "PO-Revision-Date: 2005-03-31 20:55-0700\n"
"Last-Translator: Steve Murphy <murf@e-tools.com>\n" "Last-Translator: Steve Murphy <murf@e-tools.com>\n"

View File

@ -11,7 +11,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: pika-libpika\n" "Project-Id-Version: pika-libpika\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/pika/issues\n" "Report-Msgid-Bugs-To: https://heckin.technology/AlderconeStudio/PIKApp/issues/\n"
"POT-Creation-Date: 2020-08-05 13:45+0000\n" "POT-Creation-Date: 2020-08-05 13:45+0000\n"
"PO-Revision-Date: 2020-10-09 12:42+0200\n" "PO-Revision-Date: 2020-10-09 12:42+0200\n"
"Last-Translator: Dušan Kazik <prescott66@gmail.com>\n" "Last-Translator: Dušan Kazik <prescott66@gmail.com>\n"

View File

@ -9,7 +9,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Pika - libpika\n" "Project-Id-Version: Pika - libpika\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/pika/issues\n" "Report-Msgid-Bugs-To: https://heckin.technology/AlderconeStudio/PIKApp/issues/\n"
"POT-Creation-Date: 2023-10-02 00:02+0000\n" "POT-Creation-Date: 2023-10-02 00:02+0000\n"
"PO-Revision-Date: 2023-10-02 16:46+0200\n" "PO-Revision-Date: 2023-10-02 16:46+0200\n"
"Last-Translator: Martin Srebotnjak <miles@filmsi.net>\n" "Last-Translator: Martin Srebotnjak <miles@filmsi.net>\n"

View File

@ -9,7 +9,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: pika-libpika\n" "Project-Id-Version: pika-libpika\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/pika/issues\n" "Report-Msgid-Bugs-To: https://heckin.technology/AlderconeStudio/PIKApp/issues/\n"
"POT-Creation-Date: 2021-01-08 00:20+0000\n" "POT-Creation-Date: 2021-01-08 00:20+0000\n"
"PO-Revision-Date: 2021-01-16 21:30+0100\n" "PO-Revision-Date: 2021-01-16 21:30+0100\n"
"Last-Translator: Милош Поповић <gpopac@gmail.com>\n" "Last-Translator: Милош Поповић <gpopac@gmail.com>\n"

View File

@ -9,7 +9,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: pika-libpika\n" "Project-Id-Version: pika-libpika\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/pika/issues\n" "Report-Msgid-Bugs-To: https://heckin.technology/AlderconeStudio/PIKApp/issues/\n"
"POT-Creation-Date: 2021-01-07 21:04+0000\n" "POT-Creation-Date: 2021-01-07 21:04+0000\n"
"PO-Revision-Date: 2021-01-08 01:17+0100\n" "PO-Revision-Date: 2021-01-08 01:17+0100\n"
"Last-Translator: Miloš Popović <gpopac@gmail.com>\n" "Last-Translator: Miloš Popović <gpopac@gmail.com>\n"

View File

@ -10,7 +10,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: libpika\n" "Project-Id-Version: libpika\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/pika/issues\n" "Report-Msgid-Bugs-To: https://heckin.technology/AlderconeStudio/PIKApp/issues/\n"
"POT-Creation-Date: 2023-10-02 00:02+0000\n" "POT-Creation-Date: 2023-10-02 00:02+0000\n"
"PO-Revision-Date: 2023-10-02 02:16+0200\n" "PO-Revision-Date: 2023-10-02 02:16+0200\n"
"Last-Translator: Anders Jonsson <anders.jonsson@norsjovallen.se>\n" "Last-Translator: Anders Jonsson <anders.jonsson@norsjovallen.se>\n"

View File

@ -7,7 +7,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: pika-libpika.pika-2-6\n" "Project-Id-Version: pika-libpika.pika-2-6\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/pika/issues\n" "Report-Msgid-Bugs-To: https://heckin.technology/AlderconeStudio/PIKApp/issues/\n"
"POT-Creation-Date: 2010-03-17 23:18+0000\n" "POT-Creation-Date: 2010-03-17 23:18+0000\n"
"PO-Revision-Date: 2010-03-21 17:37+0530\n" "PO-Revision-Date: 2010-03-21 17:37+0530\n"
"Last-Translator: Dr,T,Vasudevan <agnihot3@gmail.com>\n" "Last-Translator: Dr,T,Vasudevan <agnihot3@gmail.com>\n"

View File

@ -6,7 +6,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: pika 2.8\n" "Project-Id-Version: pika 2.8\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/pika/issues\n" "Report-Msgid-Bugs-To: https://heckin.technology/AlderconeStudio/PIKApp/issues/\n"
"POT-Creation-Date: 2012-01-02 14:01+0000\n" "POT-Creation-Date: 2012-01-02 14:01+0000\n"
"PO-Revision-Date: 2012-04-17 00:17+0530\n" "PO-Revision-Date: 2012-04-17 00:17+0530\n"
"Last-Translator: Praveen Illa <mail2ipn@gmail.com>\n" "Last-Translator: Praveen Illa <mail2ipn@gmail.com>\n"

View File

@ -14,7 +14,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PIKA libpika master\n" "Project-Id-Version: PIKA libpika master\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/pika/issues\n" "Report-Msgid-Bugs-To: https://heckin.technology/AlderconeStudio/PIKApp/issues/\n"
"POT-Creation-Date: 2023-10-04 12:21+0000\n" "POT-Creation-Date: 2023-10-04 12:21+0000\n"
"PO-Revision-Date: 2023-10-14 13:04+0300\n" "PO-Revision-Date: 2023-10-14 13:04+0300\n"
"Last-Translator: Sabri Ünal <libreajans@gmail.com>\n" "Last-Translator: Sabri Ünal <libreajans@gmail.com>\n"

View File

@ -7,7 +7,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PIKA\n" "Project-Id-Version: PIKA\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/pika/issues\n" "Report-Msgid-Bugs-To: https://heckin.technology/AlderconeStudio/PIKApp/issues/\n"
"POT-Creation-Date: 2023-10-02 00:02+0000\n" "POT-Creation-Date: 2023-10-02 00:02+0000\n"
"PO-Revision-Date: 2023-10-02 09:54+0300\n" "PO-Revision-Date: 2023-10-02 09:54+0300\n"
"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n" "Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"

View File

@ -8,7 +8,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: pika-libpika master\n" "Project-Id-Version: pika-libpika master\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/pika/issues\n" "Report-Msgid-Bugs-To: https://heckin.technology/AlderconeStudio/PIKApp/issues/\n"
"POT-Creation-Date: 2021-09-05 08:03+0000\n" "POT-Creation-Date: 2021-09-05 08:03+0000\n"
"PO-Revision-Date: 2021-09-05 15:21+0700\n" "PO-Revision-Date: 2021-09-05 15:21+0700\n"
"Last-Translator: Trần Ngọc Quân <vnwildman@gmail.com>\n" "Last-Translator: Trần Ngọc Quân <vnwildman@gmail.com>\n"

View File

@ -7,7 +7,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: pika20-libpika\n" "Project-Id-Version: pika20-libpika\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/pika/issues\n" "Report-Msgid-Bugs-To: https://heckin.technology/AlderconeStudio/PIKApp/issues/\n"
"POT-Creation-Date: 2005-04-13 16:08+0200\n" "POT-Creation-Date: 2005-04-13 16:08+0200\n"
"PO-Revision-Date: 2005-03-30 21:33+0200\n" "PO-Revision-Date: 2005-03-30 21:33+0200\n"
"Last-Translator: Canonical Ltd <translations@canonical.com>\n" "Last-Translator: Canonical Ltd <translations@canonical.com>\n"

View File

@ -5,7 +5,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: 1.0\n" "Project-Id-Version: 1.0\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/pika/issues\n" "Report-Msgid-Bugs-To: https://heckin.technology/AlderconeStudio/PIKApp/issues/\n"
"POT-Creation-Date: 2005-02-02 19:55+0100\n" "POT-Creation-Date: 2005-02-02 19:55+0100\n"
"PO-Revision-Date: 2003-03-19\n" "PO-Revision-Date: 2003-03-19\n"
"Last-Translator: Raphael Finkel <raphael@cs.uky.edu>\n" "Last-Translator: Raphael Finkel <raphael@cs.uky.edu>\n"

View File

@ -11,7 +11,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PIKA-master\n" "Project-Id-Version: PIKA-master\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/pika/issues\n" "Report-Msgid-Bugs-To: https://heckin.technology/AlderconeStudio/PIKApp/issues/\n"
"POT-Creation-Date: 2023-10-02 00:02+0000\n" "POT-Creation-Date: 2023-10-02 00:02+0000\n"
"PO-Revision-Date: 2023-10-02 18:50+0800\n" "PO-Revision-Date: 2023-10-02 18:50+0800\n"
"Last-Translator: lumingzh <lumingzh@qq.com>\n" "Last-Translator: lumingzh <lumingzh@qq.com>\n"

View File

@ -7,7 +7,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: pika-libpika 2.3.3\n" "Project-Id-Version: pika-libpika 2.3.3\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/pika/issues\n" "Report-Msgid-Bugs-To: https://heckin.technology/AlderconeStudio/PIKApp/issues/\n"
"POT-Creation-Date: 2011-01-01 19:42+0800\n" "POT-Creation-Date: 2011-01-01 19:42+0800\n"
"PO-Revision-Date: 2011-01-01 19:42+0800\n" "PO-Revision-Date: 2011-01-01 19:42+0800\n"
"Last-Translator: Chao-Hsiung Liao <j_h_liau@yahoo.com.tw>\n" "Last-Translator: Chao-Hsiung Liao <j_h_liau@yahoo.com.tw>\n"

View File

@ -7,7 +7,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: pika-libpika 2.3.3\n" "Project-Id-Version: pika-libpika 2.3.3\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/pika/issues\n" "Report-Msgid-Bugs-To: https://heckin.technology/AlderconeStudio/PIKApp/issues/\n"
"POT-Creation-Date: 2017-12-02 16:18+0000\n" "POT-Creation-Date: 2017-12-02 16:18+0000\n"
"PO-Revision-Date: 2017-12-20 18:06+0800\n" "PO-Revision-Date: 2017-12-20 18:06+0800\n"
"Last-Translator: taijuin <taijuin@gmail.com>\n" "Last-Translator: taijuin <taijuin@gmail.com>\n"

View File

@ -41,7 +41,7 @@ PACKAGE_GNU =
# It can be your email address, or a mailing list address where translators # It can be your email address, or a mailing list address where translators
# can write to without being subscribed, or the URL of a web page through # can write to without being subscribed, or the URL of a web page through
# which the translators can contact you. # which the translators can contact you.
MSGID_BUGS_ADDRESS = https://gitlab.gnome.org/GNOME/pika/issues MSGID_BUGS_ADDRESS = https://heckin.technology/AlderconeStudio/PIKApp/issues/
# This is the list of locale categories, beyond LC_MESSAGES, for which the # This is the list of locale categories, beyond LC_MESSAGES, for which the
# message catalogs shall be used. It is usually empty. # message catalogs shall be used. It is usually empty.

View File

@ -7,7 +7,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: pika-plug-ins.HEAD\n" "Project-Id-Version: pika-plug-ins.HEAD\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/pika/issues\n" "Report-Msgid-Bugs-To: https://heckin.technology/AlderconeStudio/PIKApp/issues/\n"
"POT-Creation-Date: 2015-12-02 12:22+0400\n" "POT-Creation-Date: 2015-12-02 12:22+0400\n"
"PO-Revision-Date: 2012-04-01 01:56+0200\n" "PO-Revision-Date: 2012-04-01 01:56+0200\n"
"Last-Translator: Khaled Hosny <khaledhosny@eglug.org>\n" "Last-Translator: Khaled Hosny <khaledhosny@eglug.org>\n"

View File

@ -1,7 +1,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: pika 2.7\n" "Project-Id-Version: pika 2.7\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/pika/issues\n" "Report-Msgid-Bugs-To: https://heckin.technology/AlderconeStudio/PIKApp/issues/\n"
"POT-Creation-Date: 2023-09-28 14:56+0000\n" "POT-Creation-Date: 2023-09-28 14:56+0000\n"
"PO-Revision-Date: 2023-09-28 20:58+0300\n" "PO-Revision-Date: 2023-09-28 20:58+0300\n"
"Last-Translator: Yuras Shumovich <shumovichy@gmail.com>\n" "Last-Translator: Yuras Shumovich <shumovichy@gmail.com>\n"
@ -2778,7 +2778,7 @@ msgstr ""
#: plug-ins/common/file-gif-load.c:1237 #: plug-ins/common/file-gif-load.c:1237
msgid "" msgid ""
"Can't handle non-alpha RGB frames.\n" "Can't handle non-alpha RGB frames.\n"
"Please file a bug report at https://gitlab.gnome.org/GNOME/pika/issues" "Please file a bug report at https://heckin.technology/AlderconeStudio/PIKApp/issues/"
msgstr "" msgstr ""
#: plug-ins/common/file-gif-load.c:1360 #: plug-ins/common/file-gif-load.c:1360

View File

@ -9,7 +9,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: pika-plug-ins master\n" "Project-Id-Version: pika-plug-ins master\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/pika/issues\n" "Report-Msgid-Bugs-To: https://heckin.technology/AlderconeStudio/PIKApp/issues/\n"
"POT-Creation-Date: 2023-05-10 17:27+0000\n" "POT-Creation-Date: 2023-05-10 17:27+0000\n"
"PO-Revision-Date: 2023-06-25 22:42+0300\n" "PO-Revision-Date: 2023-06-25 22:42+0300\n"
"Last-Translator: Alexander Shopov <ash@kambanaria.org>\n" "Last-Translator: Alexander Shopov <ash@kambanaria.org>\n"
@ -5238,7 +5238,7 @@ msgstr ""
#: plug-ins/common/file-gif-load.c:1237 #: plug-ins/common/file-gif-load.c:1237
msgid "" msgid ""
"Can't handle non-alpha RGB frames.\n" "Can't handle non-alpha RGB frames.\n"
"Please file a bug report at https://gitlab.gnome.org/GNOME/pika/issues" "Please file a bug report at https://heckin.technology/AlderconeStudio/PIKApp/issues/"
msgstr "" msgstr ""
#: plug-ins/common/file-gif-load.c:1364 #: plug-ins/common/file-gif-load.c:1364

View File

@ -6,7 +6,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: pika\n" "Project-Id-Version: pika\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/pika/issues\n" "Report-Msgid-Bugs-To: https://heckin.technology/AlderconeStudio/PIKApp/issues/\n"
"POT-Creation-Date: 2012-03-10 17:30+0000\n" "POT-Creation-Date: 2012-03-10 17:30+0000\n"
"PO-Revision-Date: 2012-04-06 23:03+0100\n" "PO-Revision-Date: 2012-04-06 23:03+0100\n"
"Last-Translator: Alan Monfort <alan.monfort@free.fr>\n" "Last-Translator: Alan Monfort <alan.monfort@free.fr>\n"

View File

@ -6,7 +6,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: pika\n" "Project-Id-Version: pika\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/pika/issues\n" "Report-Msgid-Bugs-To: https://heckin.technology/AlderconeStudio/PIKApp/issues/\n"
"POT-Creation-Date: 2013-01-27 21:39+0000\n" "POT-Creation-Date: 2013-01-27 21:39+0000\n"
"PO-Revision-Date: 2015-02-04 15:20+0000\n" "PO-Revision-Date: 2015-02-04 15:20+0000\n"
"Last-Translator: Samir Ribić <Unknown>\n" "Last-Translator: Samir Ribić <Unknown>\n"

View File

@ -13,7 +13,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ca\n" "Project-Id-Version: ca\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/pika/issues\n" "Report-Msgid-Bugs-To: https://heckin.technology/AlderconeStudio/PIKApp/issues/\n"
"POT-Creation-Date: 2023-10-21 01:50+0000\n" "POT-Creation-Date: 2023-10-21 01:50+0000\n"
"PO-Revision-Date: 2023-07-25 10:17+0100\n" "PO-Revision-Date: 2023-07-25 10:17+0100\n"
"Last-Translator: Jordi Mas i Hernàndez <jmas@softcatala.org>\n" "Last-Translator: Jordi Mas i Hernàndez <jmas@softcatala.org>\n"
@ -3153,10 +3153,10 @@ msgstr "Tipus de composició %d. %s desconeguda"
#: plug-ins/common/file-gif-load.c:1257 #: plug-ins/common/file-gif-load.c:1257
msgid "" msgid ""
"Can't handle non-alpha RGB frames.\n" "Can't handle non-alpha RGB frames.\n"
"Please file a bug report at https://gitlab.gnome.org/GNOME/pika/issues" "Please file a bug report at https://heckin.technology/AlderconeStudio/PIKApp/issues/"
msgstr "" msgstr ""
"No es poden gestionar fotogrames RGB no alfa.\n" "No es poden gestionar fotogrames RGB no alfa.\n"
"Informeu de l'error a https://gitlab.gnome.org/GNOME/pika/issues" "Informeu de l'error a https://heckin.technology/AlderconeStudio/PIKApp/issues/"
#: plug-ins/common/file-gif-load.c:1380 #: plug-ins/common/file-gif-load.c:1380
msgid "Too much compressed data, ignoring extra..." msgid "Too much compressed data, ignoring extra..."

View File

@ -14,7 +14,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ca\n" "Project-Id-Version: ca\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/pika/issues\n" "Report-Msgid-Bugs-To: https://heckin.technology/AlderconeStudio/PIKApp/issues/\n"
"POT-Creation-Date: 2012-03-25 20:23+0200\n" "POT-Creation-Date: 2012-03-25 20:23+0200\n"
"PO-Revision-Date: 2012-02-12 22:33+0100\n" "PO-Revision-Date: 2012-02-12 22:33+0100\n"
"Last-Translator: Albert F. <lakonfrariadelavila@gmail.com>\n" "Last-Translator: Albert F. <lakonfrariadelavila@gmail.com>\n"

View File

@ -13,7 +13,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: pika-plugins\n" "Project-Id-Version: pika-plugins\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/pika/issues\n" "Report-Msgid-Bugs-To: https://heckin.technology/AlderconeStudio/PIKApp/issues/\n"
"POT-Creation-Date: 2012-11-25 19:20+0000\n" "POT-Creation-Date: 2012-11-25 19:20+0000\n"
"PO-Revision-Date: 2012-11-26 10:51+0100\n" "PO-Revision-Date: 2012-11-26 10:51+0100\n"
"Last-Translator: Marek Černocký <marek@manet.cz>\n" "Last-Translator: Marek Černocký <marek@manet.cz>\n"

View File

@ -18,7 +18,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PIKA plug-ins\n" "Project-Id-Version: PIKA plug-ins\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/pika/issues\n" "Report-Msgid-Bugs-To: https://heckin.technology/AlderconeStudio/PIKApp/issues/\n"
"POT-Creation-Date: 2022-11-22 14:38+0000\n" "POT-Creation-Date: 2022-11-22 14:38+0000\n"
"PO-Revision-Date: 2022-12-28 17:48+0100\n" "PO-Revision-Date: 2022-12-28 17:48+0100\n"
"Last-Translator: Alan Mortensen <alanmortensen.am@gmail.com>\n" "Last-Translator: Alan Mortensen <alanmortensen.am@gmail.com>\n"

View File

@ -23,7 +23,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: pika plugins master\n" "Project-Id-Version: pika plugins master\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/pika/issues\n" "Report-Msgid-Bugs-To: https://heckin.technology/AlderconeStudio/PIKApp/issues/\n"
"POT-Creation-Date: 2023-03-26 02:20+0000\n" "POT-Creation-Date: 2023-03-26 02:20+0000\n"
"PO-Revision-Date: 2023-03-26 21:25+0200\n" "PO-Revision-Date: 2023-03-26 21:25+0200\n"
"Last-Translator: Christian Kirbach <christian.kirbach@gmail.com>\n" "Last-Translator: Christian Kirbach <christian.kirbach@gmail.com>\n"
@ -2416,7 +2416,7 @@ msgstr "Unbekannter Kompressionstyp %d"
#: plug-ins/common/file-gif-load.c:1237 #: plug-ins/common/file-gif-load.c:1237
msgid "" msgid ""
"Can't handle non-alpha RGB frames.\n" "Can't handle non-alpha RGB frames.\n"
"Please file a bug report at https://gitlab.gnome.org/GNOME/pika/issues" "Please file a bug report at https://heckin.technology/AlderconeStudio/PIKApp/issues/"
msgstr "" msgstr ""
#: plug-ins/common/file-gif-load.c:1364 #: plug-ins/common/file-gif-load.c:1364

View File

@ -10,7 +10,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: pika-plug-ins\n" "Project-Id-Version: pika-plug-ins\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/pika/issues\n" "Report-Msgid-Bugs-To: https://heckin.technology/AlderconeStudio/PIKApp/issues/\n"
"POT-Creation-Date: 2007-03-06 03:38+0000\n" "POT-Creation-Date: 2007-03-06 03:38+0000\n"
"PO-Revision-Date: 2007-03-28 23:59+0530\n" "PO-Revision-Date: 2007-03-28 23:59+0530\n"
"Last-Translator: Tshewang Norbu <bumthap2006@hotmail.com>\n" "Last-Translator: Tshewang Norbu <bumthap2006@hotmail.com>\n"

View File

@ -7,7 +7,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: pika-plug-ins.master\n" "Project-Id-Version: pika-plug-ins.master\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/pika/issues\n" "Report-Msgid-Bugs-To: https://heckin.technology/AlderconeStudio/PIKApp/issues/\n"
"POT-Creation-Date: 2023-04-11 17:00+0000\n" "POT-Creation-Date: 2023-04-11 17:00+0000\n"
"PO-Revision-Date: 2023-04-12 21:13+0300\n" "PO-Revision-Date: 2023-04-12 21:13+0300\n"
"Last-Translator: Dimitris Spingos (Δημήτρης Σπίγγος) <dmtrs32@gmail.com>\n" "Last-Translator: Dimitris Spingos (Δημήτρης Σπίγγος) <dmtrs32@gmail.com>\n"
@ -2586,7 +2586,7 @@ msgstr "Άγνωστος σύνθετος τύπος %d. %s"
#: plug-ins/common/file-gif-load.c:1237 #: plug-ins/common/file-gif-load.c:1237
msgid "" msgid ""
"Can't handle non-alpha RGB frames.\n" "Can't handle non-alpha RGB frames.\n"
"Please file a bug report at https://gitlab.gnome.org/GNOME/pika/issues" "Please file a bug report at https://heckin.technology/AlderconeStudio/PIKApp/issues/"
msgstr "" msgstr ""
"Αδυναμία διαχείρισης πλαισίων (καρέ) που δεν είναι άλφα RGB.\n" "Αδυναμία διαχείρισης πλαισίων (καρέ) που δεν είναι άλφα RGB.\n"
"Υποβάλετε μια αναφορά σφαλμάτων στη διεύθυνση https://gitlab.gnome.org/GNOME/" "Υποβάλετε μια αναφορά σφαλμάτων στη διεύθυνση https://gitlab.gnome.org/GNOME/"

View File

@ -7,7 +7,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: pika plug-ins\n" "Project-Id-Version: pika plug-ins\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/pika/issues\n" "Report-Msgid-Bugs-To: https://heckin.technology/AlderconeStudio/PIKApp/issues/\n"
"POT-Creation-Date: 2007-09-29 20:34-0400\n" "POT-Creation-Date: 2007-09-29 20:34-0400\n"
"PO-Revision-Date: 2005-09-06 14:31-0400\n" "PO-Revision-Date: 2005-09-06 14:31-0400\n"
"Last-Translator: Adam Weinberger <adamw@gnome.org>\n" "Last-Translator: Adam Weinberger <adamw@gnome.org>\n"

View File

@ -9,7 +9,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: pika\n" "Project-Id-Version: pika\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/pika/issues\n" "Report-Msgid-Bugs-To: https://heckin.technology/AlderconeStudio/PIKApp/issues/\n"
"POT-Creation-Date: 2019-11-12 20:48+0000\n" "POT-Creation-Date: 2019-11-12 20:48+0000\n"
"PO-Revision-Date: 2020-02-11 18:16+0000\n" "PO-Revision-Date: 2020-02-11 18:16+0000\n"
"Last-Translator: Bruce Cowan <bruce@bcowan.me.uk>\n" "Last-Translator: Bruce Cowan <bruce@bcowan.me.uk>\n"

View File

@ -9,7 +9,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: pika 2.0\n" "Project-Id-Version: pika 2.0\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/pika/issues\n" "Report-Msgid-Bugs-To: https://heckin.technology/AlderconeStudio/PIKApp/issues/\n"
"POT-Creation-Date: 2023-09-20 19:09+0000\n" "POT-Creation-Date: 2023-09-20 19:09+0000\n"
"PO-Revision-Date: 2023-09-20 22:37+0200\n" "PO-Revision-Date: 2023-09-20 22:37+0200\n"
"Last-Translator: Kristjan SCHMIDT <kristjan.schmidt@googlemail.com>\n" "Last-Translator: Kristjan SCHMIDT <kristjan.schmidt@googlemail.com>\n"
@ -2782,7 +2782,7 @@ msgstr "Nekonata kialo"
#: plug-ins/common/file-gif-load.c:1237 #: plug-ins/common/file-gif-load.c:1237
msgid "" msgid ""
"Can't handle non-alpha RGB frames.\n" "Can't handle non-alpha RGB frames.\n"
"Please file a bug report at https://gitlab.gnome.org/GNOME/pika/issues" "Please file a bug report at https://heckin.technology/AlderconeStudio/PIKApp/issues/"
msgstr "" msgstr ""
#: plug-ins/common/file-gif-load.c:1360 #: plug-ins/common/file-gif-load.c:1360

File diff suppressed because it is too large Load Diff

View File

@ -8,7 +8,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: pika-plug-ins\n" "Project-Id-Version: pika-plug-ins\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/pika/issues\n" "Report-Msgid-Bugs-To: https://heckin.technology/AlderconeStudio/PIKApp/issues/\n"
"POT-Creation-Date: 2007-07-25 22:07+0100\n" "POT-Creation-Date: 2007-07-25 22:07+0100\n"
"PO-Revision-Date: 2010-10-06 15:52+0300\n" "PO-Revision-Date: 2010-10-06 15:52+0300\n"
"Last-Translator: Mattias Põldaru <mahfiaz gmail com>\n" "Last-Translator: Mattias Põldaru <mahfiaz gmail com>\n"

Some files were not shown because too many files have changed in this diff Show More