Compare commits
4 Commits
8ac3f8a548
...
trunk
Author | SHA1 | Date | |
---|---|---|---|
2b5c950f1b | |||
1d7cab96bc | |||
4b829a4b3c | |||
af7dc8395d |
11
README
11
README
@ -39,13 +39,7 @@ similar.
|
||||
|
||||
Partial package list on Debian/Ubuntu/etc:
|
||||
|
||||
appstream-util bison build-essential cmake desktop-file-utils flex gjs libaa1-dev libappstream-glib-dev libarchive-dev
|
||||
libatk1.0-dev libcairo2-dev libcfitsio-dev libexiv2-dev libfontconfig-dev libfreetype-dev libgdk-pixbuf-2.0-dev
|
||||
libgexiv2-dev libglib2.0-dev libgs-dev libgtk-3-dev libgudev-1.0-dev libharfbuzz-dev libheif-dev libjpeg-dev
|
||||
libjson-glib-dev liblcms2-dev libmng-dev libmypaint-dev libopenexr-dev libopenjp2-7-dev libpango1.0-dev libpng-dev
|
||||
libpoppler-dev libpoppler-glib-dev librsvg2-dev libtiff-dev libunwind-dev libwebp-dev libwmf-dev libx11-dev
|
||||
libxcursor-dev libxext-dev libxfixes-dev libxmu-dev libxpm-dev libzstd-dev luajit meson mypaint-brushes ninja-build
|
||||
poppler-data python3-gi libxml2-utils xsltproc gobject-introspection libgirepository1.0-dev libbz2-dev gettext
|
||||
appstream-util bison build-essential cmake desktop-file-utils flex gjs libaa1-dev libappstream-glib-dev libarchive-dev libatk1.0-dev libcairo2-dev libcfitsio-dev libexiv2-dev libfontconfig-dev libfreetype-dev libgdk-pixbuf-2.0-dev libgexiv2-dev libglib2.0-dev libgs-dev libgtk-3-dev libgudev-1.0-dev libharfbuzz-dev libheif-dev libjpeg-dev libjson-glib-dev liblcms2-dev libmng-dev libmypaint-dev libopenexr-dev libopenjp2-7-dev libpango1.0-dev libpng-dev libpoppler-dev libpoppler-glib-dev librsvg2-dev libtiff-dev libunwind-dev libwebp-dev libwmf-dev libx11-dev libxcursor-dev libxext-dev libxfixes-dev libxmu-dev libxpm-dev libzstd-dev luajit meson mypaint-brushes ninja-build poppler-data python3-gi libxml2-utils xsltproc gobject-introspection libgirepository1.0-dev libbz2-dev gettext
|
||||
|
||||
Seems like a lot! But many of these are for format support. This is for the maximal setup we've tested.
|
||||
|
||||
@ -63,9 +57,6 @@ Next you build the actual program by doing:
|
||||
cd _build
|
||||
ninja
|
||||
|
||||
> Note that there is a bug with the current heckimp in dealing with the about dialog. To fix it, wait until
|
||||
> ninja dies in the fist build, and then `echo > app/dialogs/authors.h` and then run `ninja` again.
|
||||
|
||||
Then if successful, install with
|
||||
|
||||
sudo ninja install
|
||||
|
@ -270,203 +270,6 @@ static void
|
||||
about_dialog_add_update (PikaAboutDialog *dialog,
|
||||
PikaCoreConfig *config)
|
||||
{
|
||||
GtkWidget *container;
|
||||
GList *children;
|
||||
GtkWidget *vbox;
|
||||
|
||||
GtkWidget *frame;
|
||||
GtkWidget *box;
|
||||
GtkWidget *box2;
|
||||
GtkWidget *label;
|
||||
GtkWidget *button;
|
||||
GtkWidget *button_image;
|
||||
GtkWidget *button_label;
|
||||
GDateTime *datetime;
|
||||
gchar *date;
|
||||
gchar *text;
|
||||
|
||||
if (dialog->update_frame)
|
||||
{
|
||||
gtk_widget_destroy (dialog->update_frame);
|
||||
dialog->update_frame = NULL;
|
||||
}
|
||||
|
||||
/* Get the dialog vbox. */
|
||||
container = gtk_dialog_get_content_area (GTK_DIALOG (dialog->dialog));
|
||||
children = gtk_container_get_children (GTK_CONTAINER (container));
|
||||
g_return_if_fail (GTK_IS_BOX (children->data));
|
||||
vbox = children->data;
|
||||
g_list_free (children);
|
||||
|
||||
/* The update frame. */
|
||||
frame = gtk_frame_new (NULL);
|
||||
gtk_box_pack_start (GTK_BOX (vbox), frame, FALSE, FALSE, 2);
|
||||
|
||||
box = gtk_box_new (GTK_ORIENTATION_VERTICAL, 0);
|
||||
gtk_container_add (GTK_CONTAINER (frame), box);
|
||||
|
||||
/* Button in the frame. */
|
||||
button = gtk_button_new ();
|
||||
gtk_box_pack_start (GTK_BOX (box), button, FALSE, FALSE, 0);
|
||||
gtk_widget_show (button);
|
||||
|
||||
box2 = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0);
|
||||
gtk_container_add (GTK_CONTAINER (button), box2);
|
||||
gtk_widget_show (box2);
|
||||
|
||||
button_image = gtk_image_new_from_icon_name (NULL, GTK_ICON_SIZE_DIALOG);
|
||||
gtk_box_pack_start (GTK_BOX (box2), button_image, FALSE, FALSE, 0);
|
||||
gtk_widget_show (button_image);
|
||||
|
||||
button_label = gtk_label_new (NULL);
|
||||
gtk_box_pack_start (GTK_BOX (box2), button_label, FALSE, FALSE, 0);
|
||||
gtk_container_child_set (GTK_CONTAINER (box2), button_label, "expand", TRUE, NULL);
|
||||
gtk_widget_show (button_label);
|
||||
|
||||
if (config->last_known_release != NULL)
|
||||
{
|
||||
/* There is a newer version. */
|
||||
const gchar *download_url = NULL;
|
||||
gchar *comment = NULL;
|
||||
|
||||
/* We want the frame to stand out. */
|
||||
label = gtk_label_new (NULL);
|
||||
text = g_strdup_printf ("<tt><b><big>%s</big></b></tt>",
|
||||
_("Update available!"));
|
||||
gtk_label_set_markup (GTK_LABEL (label), text);
|
||||
g_free (text);
|
||||
gtk_widget_show (label);
|
||||
gtk_frame_set_label_widget (GTK_FRAME (frame), label);
|
||||
gtk_frame_set_label_align (GTK_FRAME (frame), 0.5, 0.5);
|
||||
gtk_frame_set_shadow_type (GTK_FRAME (frame), GTK_SHADOW_ETCHED_OUT);
|
||||
gtk_box_reorder_child (GTK_BOX (vbox), frame, 3);
|
||||
|
||||
/* Button is an update link. */
|
||||
gtk_image_set_from_icon_name (GTK_IMAGE (button_image),
|
||||
"software-update-available",
|
||||
GTK_ICON_SIZE_DIALOG);
|
||||
#ifdef PIKA_UNSTABLE
|
||||
download_url = "https://heckin.technology/AlderconeStudio/PIKApp/";
|
||||
#else
|
||||
download_url = "https://heckin.technology/AlderconeStudio/PIKApp/";
|
||||
#endif
|
||||
g_signal_connect (button, "clicked",
|
||||
(GCallback) about_dialog_download_clicked,
|
||||
(gpointer) download_url);
|
||||
|
||||
/* The preferred localized date representation without the time. */
|
||||
datetime = g_date_time_new_from_unix_local (config->last_release_timestamp);
|
||||
date = g_date_time_format (datetime, "%x");
|
||||
g_date_time_unref (datetime);
|
||||
|
||||
if (config->last_revision > 0)
|
||||
{
|
||||
/* This is actually a new revision of current version. */
|
||||
text = g_strdup_printf (_("Download PIKA %s revision %d (released on %s)\n"),
|
||||
config->last_known_release,
|
||||
config->last_revision,
|
||||
date);
|
||||
|
||||
/* Finally an optional release comment. */
|
||||
if (config->last_release_comment)
|
||||
{
|
||||
/* Translators: <> tags are Pango markup. Please keep these
|
||||
* markups in your translation. */
|
||||
comment = g_strdup_printf (_("<u>Release comment</u>: <i>%s</i>"), config->last_release_comment);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
text = g_strdup_printf (_("Download PIKA %s (released on %s)\n"),
|
||||
config->last_known_release, date);
|
||||
}
|
||||
gtk_label_set_text (GTK_LABEL (button_label), text);
|
||||
g_free (text);
|
||||
g_free (date);
|
||||
|
||||
if (comment)
|
||||
{
|
||||
label = gtk_label_new (NULL);
|
||||
gtk_label_set_max_width_chars (GTK_LABEL (label), 80);
|
||||
gtk_label_set_markup (GTK_LABEL (label), comment);
|
||||
gtk_label_set_line_wrap (GTK_LABEL (label), TRUE);
|
||||
g_free (comment);
|
||||
|
||||
gtk_box_pack_start (GTK_BOX (box), label, FALSE, FALSE, 0);
|
||||
gtk_widget_show (label);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
/* Button is a "Check for updates" action. */
|
||||
gtk_image_set_from_icon_name (GTK_IMAGE (button_image),
|
||||
"view-refresh",
|
||||
GTK_ICON_SIZE_MENU);
|
||||
gtk_label_set_text (GTK_LABEL (button_label), _("Check for updates"));
|
||||
g_signal_connect_swapped (button, "clicked",
|
||||
(GCallback) pika_update_check, config);
|
||||
|
||||
}
|
||||
|
||||
gtk_box_reorder_child (GTK_BOX (vbox), frame, 4);
|
||||
|
||||
/* Last check date box. */
|
||||
box2 = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0);
|
||||
if (config->last_known_release != NULL)
|
||||
gtk_widget_set_margin_top (box2, 20);
|
||||
gtk_container_add (GTK_CONTAINER (box), box2);
|
||||
gtk_widget_show (box2);
|
||||
|
||||
/* Show a small "Check for updates" button only if the big one has
|
||||
* been replaced by a download button.
|
||||
*/
|
||||
if (config->last_known_release != NULL)
|
||||
{
|
||||
button = gtk_button_new_from_icon_name ("view-refresh", GTK_ICON_SIZE_MENU);
|
||||
gtk_widget_set_tooltip_text (button, _("Check for updates"));
|
||||
gtk_box_pack_start (GTK_BOX (box2), button, FALSE, FALSE, 0);
|
||||
g_signal_connect_swapped (button, "clicked",
|
||||
(GCallback) pika_update_check, config);
|
||||
gtk_widget_show (button);
|
||||
}
|
||||
|
||||
if (config->check_update_timestamp > 0)
|
||||
{
|
||||
gchar *subtext;
|
||||
gchar *time;
|
||||
|
||||
datetime = g_date_time_new_from_unix_local (config->check_update_timestamp);
|
||||
date = g_date_time_format (datetime, "%x");
|
||||
time = g_date_time_format (datetime, "%X");
|
||||
/* Translators: first string is the date in the locale's date
|
||||
* representation (e.g., 12/31/99), second is the time in the
|
||||
* locale's time representation (e.g., 23:13:48).
|
||||
*/
|
||||
subtext = g_strdup_printf (_("Last checked on %s at %s"), date, time);
|
||||
g_date_time_unref (datetime);
|
||||
g_free (date);
|
||||
g_free (time);
|
||||
|
||||
text = g_strdup_printf ("<i>%s</i>", subtext);
|
||||
label = gtk_label_new (NULL);
|
||||
gtk_label_set_markup (GTK_LABEL (label), text);
|
||||
gtk_label_set_justify (GTK_LABEL (label), GTK_JUSTIFY_CENTER);
|
||||
gtk_box_pack_start (GTK_BOX (box2), label, FALSE, FALSE, 0);
|
||||
gtk_container_child_set (GTK_CONTAINER (box2), label, "expand", TRUE, NULL);
|
||||
gtk_widget_show (label);
|
||||
g_free (text);
|
||||
g_free (subtext);
|
||||
}
|
||||
|
||||
gtk_widget_show (box);
|
||||
gtk_widget_show (frame);
|
||||
|
||||
g_set_weak_pointer (&dialog->update_frame, frame);
|
||||
|
||||
/* Reconstruct the dialog when release info changes. */
|
||||
g_signal_connect (config, "notify::last-known-release",
|
||||
(GCallback) about_dialog_last_release_changed,
|
||||
dialog);
|
||||
}
|
||||
|
||||
static void
|
||||
@ -631,80 +434,6 @@ decorate_text (PikaAboutDialog *dialog,
|
||||
static gboolean
|
||||
about_dialog_timer (gpointer data)
|
||||
{
|
||||
PikaAboutDialog *dialog = data;
|
||||
gint timeout = 0;
|
||||
|
||||
if (dialog->animstep == 0)
|
||||
{
|
||||
gchar *text = NULL;
|
||||
|
||||
dialog->visible = TRUE;
|
||||
|
||||
switch (dialog->state)
|
||||
{
|
||||
case 0:
|
||||
dialog->timer = g_timeout_add (30, about_dialog_timer, dialog);
|
||||
dialog->state += 1;
|
||||
return FALSE;
|
||||
|
||||
case 1:
|
||||
text = insert_spacers (_("PIKA is brought to you by"));
|
||||
dialog->state += 1;
|
||||
break;
|
||||
|
||||
default:
|
||||
g_return_val_if_reached (TRUE);
|
||||
break;
|
||||
}
|
||||
|
||||
g_return_val_if_fail (text != NULL, TRUE);
|
||||
|
||||
pango_layout_set_text (dialog->layout, text, -1);
|
||||
pango_layout_set_attributes (dialog->layout, NULL);
|
||||
|
||||
g_free (text);
|
||||
}
|
||||
|
||||
if (dialog->animstep < 16)
|
||||
{
|
||||
decorate_text (dialog, 2, ((gfloat) dialog->animstep) / 15.0);
|
||||
}
|
||||
else if (dialog->animstep == 16)
|
||||
{
|
||||
timeout = 800;
|
||||
}
|
||||
else if (dialog->animstep == 17)
|
||||
{
|
||||
timeout = 30;
|
||||
}
|
||||
else if (dialog->animstep < 33)
|
||||
{
|
||||
decorate_text (dialog, 1,
|
||||
1.0 - ((gfloat) (dialog->animstep - 17)) / 15.0);
|
||||
}
|
||||
else if (dialog->animstep == 33)
|
||||
{
|
||||
dialog->visible = FALSE;
|
||||
timeout = 300;
|
||||
}
|
||||
else
|
||||
{
|
||||
dialog->visible = FALSE;
|
||||
dialog->animstep = -1;
|
||||
timeout = 30;
|
||||
}
|
||||
|
||||
dialog->animstep++;
|
||||
|
||||
gtk_widget_queue_draw (dialog->anim_area);
|
||||
|
||||
if (timeout > 0)
|
||||
{
|
||||
dialog->timer = g_timeout_add (timeout, about_dialog_timer, dialog);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
/* else keep the current timeout */
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
|
@ -2451,7 +2451,7 @@ pika_statusbar_queue_pos_redraw (gpointer data)
|
||||
* 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
|
||||
* 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"
|
||||
* in worst cases.
|
||||
* Of course, it could still happen for people going way
|
||||
|
@ -5101,7 +5101,7 @@ register_image_procs (PikaPDB *pdb)
|
||||
"pika-image-get-imported-file");
|
||||
pika_procedure_set_static_help (procedure,
|
||||
"Returns the imported file for the specified image.",
|
||||
"This procedure returns the file associated with the specified image if the image was imported from a non-native Pika format. If the image was not imported, or has since been saved in the native Pika format, this procedure returns %NULL.",
|
||||
"This procedure returns the file associated with the specified image if the image was imported from a non-native Pika format. If the image was not imported, or has since been saved in the native Gimp format, this procedure returns %NULL.",
|
||||
NULL);
|
||||
pika_procedure_set_static_attribution (procedure,
|
||||
"Eric Grivel <pika@lumenssolutions.com>",
|
||||
|
@ -1066,7 +1066,7 @@ pika_dialog_factory_add_foreign (PikaDialogFactory *factory,
|
||||
* This function correctly positions a dialog on re-showing so it
|
||||
* 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
|
||||
pika_dialog_factory_position_dialog (PikaDialogFactory *factory,
|
||||
|
@ -432,7 +432,7 @@ pika_sample_point_editor_points_changed (PikaSamplePointEditor *editor)
|
||||
|
||||
/* Keep that many color frames around so they remember their color
|
||||
* 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
|
||||
|
||||
|
@ -25,7 +25,7 @@
|
||||
|
||||
<!-- Shown before the wizard starts on development versions of PIKA -->
|
||||
<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 name="DevelopmentButtonContinue">
|
||||
<value>&Continue</value>
|
||||
|
@ -322,7 +322,7 @@ As a last resort, PIKA uses the default splash image located at
|
||||
.SH SUGGESTIONS AND BUG REPORTS
|
||||
Any bugs found should be reported to the online bug-tracking system
|
||||
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.
|
||||
|
||||
When reporting PIKA bugs, it is important to include a reliable way to
|
||||
|
@ -47,7 +47,6 @@
|
||||
#include <libpika/pikafont_pdb.h>
|
||||
#include <libpika/pikafonts_pdb.h>
|
||||
#include <libpika/pikafontselect_pdb.h>
|
||||
#include <libpika/pikapikarc_pdb.h>
|
||||
#include <libpika/pikagradient_pdb.h>
|
||||
#include <libpika/pikagradients_pdb.h>
|
||||
#include <libpika/pikagradientselect_pdb.h>
|
||||
@ -72,6 +71,7 @@
|
||||
#include <libpika/pikapattern_pdb.h>
|
||||
#include <libpika/pikapatterns_pdb.h>
|
||||
#include <libpika/pikapatternselect_pdb.h>
|
||||
#include <libpika/pikapikarc_pdb.h>
|
||||
#include <libpika/pikaprogress_pdb.h>
|
||||
#include <libpika/pikaresource_pdb.h>
|
||||
#include <libpika/pikaselection_pdb.h>
|
||||
|
@ -753,7 +753,7 @@ pika_matrix3_invert (PikaMatrix3 *matrix)
|
||||
/* To avoid redundant access to the coefficients, inline the determinant
|
||||
* 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)
|
||||
- m10 * (m01 * m22 - m02 * m21)
|
||||
|
@ -1,6 +1,6 @@
|
||||
project('pika',
|
||||
'c', 'cpp',
|
||||
version: '2.99.17',
|
||||
version: '0.1.0.GnuImp2.99.70', #heckimp skip
|
||||
meson_version: '>=0.59.0',
|
||||
default_options: [
|
||||
'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'
|
||||
|
||||
conf = configuration_data()
|
||||
|
@ -64,7 +64,7 @@
|
||||
<download-page rdf:resource="https:///www.pika.org/downloads/" />
|
||||
|
||||
<bug-database
|
||||
rdf:resource="https://gitlab.gnome.org/GNOME/pika/issues"
|
||||
rdf:resource="https://heckin.technology/AlderconeStudio/PIKApp/issues/"
|
||||
/>
|
||||
|
||||
<programming-language>C</programming-language>
|
||||
|
@ -1286,7 +1286,7 @@ ReadImage (FILE *fd,
|
||||
g_set_error (error, PIKA_PLUG_IN_ERROR, 0,
|
||||
_("Can't handle non-alpha RGB frames.\n"
|
||||
"Please file a bug report at "
|
||||
"https://gitlab.gnome.org/GNOME/pika/issues"));
|
||||
"https://heckin.technology/AlderconeStudio/PIKApp/issues/"));
|
||||
pika_image_delete (*image);
|
||||
*image = NULL;
|
||||
return FALSE;
|
||||
|
@ -224,7 +224,7 @@ heif_create_procedure (PikaPlugIn *plug_in,
|
||||
|
||||
/* HEIF is an ISOBMFF format whose "brand" (the value after "ftyp")
|
||||
* 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),
|
||||
"4,string,ftypheic,4,string,ftypheix,"
|
||||
|
@ -195,7 +195,7 @@ foreach plugin : common_plugins_list
|
||||
copy: true,
|
||||
)
|
||||
|
||||
# See https://gitlab.gnome.org/GNOME/pika/-/issues/8537
|
||||
# See https://gitlab.gnome.org/GNOME/gimp/-/issues/8537
|
||||
if generate_version_h
|
||||
compile_resources_depfiles = []
|
||||
compile_resources_depends = [ gitversion_h ]
|
||||
|
@ -336,7 +336,7 @@ help_load_idle (gpointer data)
|
||||
|
||||
procedure = pika_pdb_lookup_procedure (pika_get_pdb (),
|
||||
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);
|
||||
|
||||
g_free (uri);
|
||||
|
@ -190,7 +190,7 @@
|
||||
)
|
||||
|
||||
(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)
|
||||
|
@ -41,7 +41,7 @@ PACKAGE_GNU =
|
||||
# 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
|
||||
# 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
|
||||
# message catalogs shall be used. It is usually empty.
|
||||
|
@ -6,7 +6,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"PO-Revision-Date: 2012-04-01 01:25+0200\n"
|
||||
"Last-Translator: Khaled Hosny <khaledhosny@eglug.org>\n"
|
||||
|
@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"PO-Revision-Date: 2011-12-02 22:18+0300\n"
|
||||
"Last-Translator: Hleb Valoshka <375gnu@gmail.com>\n"
|
||||
|
@ -9,7 +9,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"PO-Revision-Date: 2023-05-14 08:03+0300\n"
|
||||
"Last-Translator: Alexander Shopov <ash@kambanaria.org>\n"
|
||||
|
@ -6,7 +6,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"PO-Revision-Date: 2012-04-06 23:04+0100\n"
|
||||
"Last-Translator: Alan Monfort <alan.monfort@free.fr>\n"
|
||||
|
@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"PO-Revision-Date: 2015-02-04 15:16+0000\n"
|
||||
"Last-Translator: Samir Ribić <Unknown>\n"
|
||||
|
@ -15,7 +15,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"PO-Revision-Date: 2023-10-22 21:55+0100\n"
|
||||
"Last-Translator: Jordi Mas i Hernàndez <jmas@softcatala.org>\n"
|
||||
|
@ -12,7 +12,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"PO-Revision-Date: 2011-12-22 22:51+0100\n"
|
||||
"Last-Translator: Albert F. <lakonfrariadelavila@gmail.com>\n"
|
||||
|
@ -14,7 +14,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"PO-Revision-Date: 2012-11-26 10:28+0100\n"
|
||||
"Last-Translator: Marek Černocký <marek@manet.cz>\n"
|
||||
|
@ -16,9 +16,9 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"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"
|
||||
"Language-Team: Danish <dansk@dansk-gruppen.dk>\n"
|
||||
"Language: da\n"
|
||||
@ -1768,7 +1768,7 @@ msgstr "Skærmkorrektur"
|
||||
#: libpikaconfig/pikaconfigenums.c:58
|
||||
msgctxt "color-rendering-intent"
|
||||
msgid "Perceptual"
|
||||
msgstr "Sanselig"
|
||||
msgstr "Perceptuel"
|
||||
|
||||
# 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
|
||||
@ -1852,7 +1852,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Hvordan farver konverteres fra dit billedes farverum til skærmens. Relativ "
|
||||
"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."
|
||||
|
||||
#: libpikaconfig/pikacolorconfig.c:86
|
||||
|
@ -15,7 +15,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"PO-Revision-Date: 2023-02-25 22:15+0100\n"
|
||||
"Last-Translator: Tim Sabsch <tim@sabsch.com>\n"
|
||||
|
@ -6,7 +6,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"PO-Revision-Date: 2007-03-27 14:33+0530\n"
|
||||
"Last-Translator: sonam pelden <sonaa_peldn@yahoo.com>\n"
|
||||
|
@ -9,7 +9,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"PO-Revision-Date: 2023-02-22 09:27+0200\n"
|
||||
"Last-Translator: Dimitris Spingos (Δημήτρης Σπίγγος) <dmtrs32@gmail.com>\n"
|
||||
|
@ -7,7 +7,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"PO-Revision-Date: 2005-09-06 20:02-0400\n"
|
||||
"Last-Translator: Adam Weinberger <adamw@gnome.org>\n"
|
||||
|
@ -8,7 +8,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"PO-Revision-Date: 2022-02-16 16:48+0000\n"
|
||||
"Last-Translator: Bruce Cowan <bruce@bcowan.me.uk>\n"
|
||||
|
@ -7,7 +7,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"PO-Revision-Date: 2017-12-25 01:35+0200\n"
|
||||
"Last-Translator: Kristjan SCHMIDT <kristjan.schmidt@googlemail.com>\n"
|
||||
|
@ -17,7 +17,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"PO-Revision-Date: 2023-11-24 11:24+0100\n"
|
||||
"Last-Translator: Rodrigo Lledó Milanca <rodhos92@gmail.com>\n"
|
||||
|
@ -10,7 +10,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"PO-Revision-Date: 2012-12-19 15:57+0300\n"
|
||||
"Last-Translator: Mattias Põldaru <mahfiaz@gmail.com>\n"
|
||||
|
@ -10,7 +10,7 @@
|
||||
#
|
||||
msgid ""
|
||||
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"
|
||||
"PO-Revision-Date: 2023-10-14 10:00+0100\n"
|
||||
"Last-Translator: Asier Sarasua Garmendia <asiersarasua@ni.eus>\n"
|
||||
|
@ -7,7 +7,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"PO-Revision-Date: 2023-07-29 04:05+0330\n"
|
||||
"Last-Translator: Danial Behzadi <dani.behzi@ubuntu.com>\n"
|
||||
|
@ -10,7 +10,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"PO-Revision-Date: 2022-06-08 19:53+0300\n"
|
||||
"Last-Translator: Juhani Numminen <juhaninumminen0@gmail.com>\n"
|
||||
|
@ -21,7 +21,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"PO-Revision-Date: 2022-04-17 23:12+0200\n"
|
||||
"Last-Translator: Charles Monzat <charles.monzat@free.fr>\n"
|
||||
|
@ -5,7 +5,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"PO-Revision-Date: 2000-12-18 23:30-0800\n"
|
||||
"Last-Translator: Nobody\n"
|
||||
|
@ -9,7 +9,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"PO-Revision-Date: 2011-11-21 14:56+0100\n"
|
||||
"Last-Translator: Fran Dieguez <frandieguez@gnome.org>\n"
|
||||
|
@ -7,7 +7,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"PO-Revision-Date: 2005-09-26 09:51+0530\n"
|
||||
"Last-Translator: Ankit Patel <ankit644@yahoo.com>\n"
|
||||
|
@ -9,7 +9,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"PO-Revision-Date: 2010-08-04 02:45+0300\n"
|
||||
"Last-Translator: Barak Itkin <lightningismyname@gmail.com>\n"
|
||||
|
@ -4,7 +4,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"PO-Revision-Date: 2004-03-20 14:49+CET\n"
|
||||
"Last-Translator: auto\n"
|
||||
|
@ -12,7 +12,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"PO-Revision-Date: 2023-07-27 01:39+0200\n"
|
||||
"Last-Translator: Balázs Úr <ur.balazs at fsf dot hu>\n"
|
||||
|
@ -2,7 +2,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"PO-Revision-Date: 2003-06-28 22:03+0700\n"
|
||||
"Last-Translator: Mohammad DAMT <mdamt@bisnisweb.com>\n"
|
||||
|
@ -7,7 +7,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"PO-Revision-Date: 2023-02-28 13:17+0000\n"
|
||||
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
|
||||
|
@ -30,7 +30,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"PO-Revision-Date: 2023-07-01 11:59+0200\n"
|
||||
"Last-Translator: Luca Ferretti <elle.uca@libero.it>\n"
|
||||
|
@ -11,7 +11,7 @@
|
||||
msgid ""
|
||||
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: 2021-01-07 21:04+0000\n"
|
||||
"PO-Revision-Date: 2021-01-15 00:00+0900\n"
|
||||
"Last-Translator: sicklylife <translation@sicklylife.jp>\n"
|
||||
|
@ -7,7 +7,7 @@
|
||||
msgid ""
|
||||
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-02 00:02+0000\n"
|
||||
"PO-Revision-Date: 2023-10-02 14:27+0200\n"
|
||||
"Last-Translator: Ekaterine Papava <papava.e@gtu.ge>\n"
|
||||
|
@ -6,7 +6,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"PO-Revision-Date: 2021-12-05 20:54+0100\n"
|
||||
"Last-Translator: Yacine Bouklif <yacinebouklif@gmail.com>\n"
|
||||
|
@ -6,7 +6,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"PO-Revision-Date: 2020-07-21 09:59+0500\n"
|
||||
"Last-Translator: Baurzhan Muftakhidinov <baurthefirst@gmail.com>\n"
|
||||
|
@ -5,7 +5,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"PO-Revision-Date: 2008-08-25 10:22+0700\n"
|
||||
"Last-Translator: Khoem Sokhem <khoemsokhem@khmeros.info>\n"
|
||||
|
@ -7,7 +7,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"PO-Revision-Date: 2012-05-05 16:56+0900\n"
|
||||
"Last-Translator: Jihui Choi <jihui.choi@gmail.com>\n"
|
||||
|
@ -8,7 +8,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"PO-Revision-Date: 2021-04-18 23:20+0300\n"
|
||||
"Last-Translator: Aurimas Černius <aurisc4@gmail.com>\n"
|
||||
|
@ -8,7 +8,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"PO-Revision-Date: 2021-11-14 20:53+0200\n"
|
||||
"Last-Translator: Rūdolfs Mazurs <rudolfs.mazurs@gmail.com>\n"
|
||||
|
@ -16,7 +16,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"PO-Revision-Date: 2008-10-06 22:52+1000\n"
|
||||
"Last-Translator: Marko Doda <marko@lugola.net>\n"
|
||||
|
@ -8,7 +8,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"PO-Revision-Date: 2018-07-07 14:57+0000\n"
|
||||
"Last-Translator: Snehalata B Shirude <snehalata.shirude@gmail.com>\n"
|
||||
|
@ -6,7 +6,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"PO-Revision-Date: 2003-10-30 08:00+0800\n"
|
||||
"Last-Translator: Mimos Open Source Development Group <syed@mimos.my>\n"
|
||||
|
@ -7,7 +7,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"PO-Revision-Date: 2010-01-29 17:26+0200\n"
|
||||
"Last-Translator: Russell Kyaw <rkyaw@yahoo.com>\n"
|
||||
|
@ -7,7 +7,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"PO-Revision-Date: 2013-05-27 15:22+0200\n"
|
||||
"Last-Translator: Kjartan Maraas <kmaraas@gnome.org>\n"
|
||||
|
@ -12,7 +12,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"PO-Revision-Date: 2007-07-27 11:51+0545\n"
|
||||
"Last-Translator: Nabin Gautam <nabin@mpp.org.np>\n"
|
||||
|
@ -11,7 +11,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"PO-Revision-Date: 2022-03-29 17:28+0200\n"
|
||||
"Last-Translator: Nathan Follens <nfollens@gnome.org>\n"
|
||||
|
@ -6,7 +6,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"PO-Revision-Date: 2016-01-14 20:01+0100\n"
|
||||
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
|
||||
|
@ -8,7 +8,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"PO-Revision-Date: 2016-10-16 14:32+0200\n"
|
||||
"Last-Translator: Cédric Valmary (totenoc.eu) <cvalmary@yahoo.fr>\n"
|
||||
|
@ -9,7 +9,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"PO-Revision-Date: 2008-10-07 06:41+0000\n"
|
||||
"Last-Translator: Amanpreet Singh Alam <aalam@users.sf.net>\n"
|
||||
|
@ -12,7 +12,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"PO-Revision-Date: 2023-01-25 12:09+0000\n"
|
||||
"Last-Translator: Hugo Carvalho <hugokarvalho@hotmail.com>\n"
|
||||
|
@ -14,7 +14,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"PO-Revision-Date: 2023-09-12 13:59-0300\n"
|
||||
"Last-Translator: Víttor Paulo Vieira da Costa <vittorpaulovc@gmail.com>\n"
|
||||
|
@ -5,7 +5,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"PO-Revision-Date: 2022-12-06 01:55+0200\n"
|
||||
"Last-Translator: Cristian Secară <cristi AT secarica DOT ro>\n"
|
||||
|
@ -9,7 +9,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"PO-Revision-Date: 2023-06-27 19:20+0200\n"
|
||||
"Last-Translator: Alexandre Prokoudine <alexandre.prokoudine@gmail.com>\n"
|
||||
|
@ -14,7 +14,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"PO-Revision-Date: 2005-03-31 20:55-0700\n"
|
||||
"Last-Translator: Steve Murphy <murf@e-tools.com>\n"
|
||||
|
@ -11,7 +11,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"PO-Revision-Date: 2020-10-09 12:42+0200\n"
|
||||
"Last-Translator: Dušan Kazik <prescott66@gmail.com>\n"
|
||||
|
@ -9,7 +9,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"PO-Revision-Date: 2023-10-02 16:46+0200\n"
|
||||
"Last-Translator: Martin Srebotnjak <miles@filmsi.net>\n"
|
||||
|
@ -9,7 +9,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"PO-Revision-Date: 2021-01-16 21:30+0100\n"
|
||||
"Last-Translator: Милош Поповић <gpopac@gmail.com>\n"
|
||||
|
@ -9,7 +9,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"PO-Revision-Date: 2021-01-08 01:17+0100\n"
|
||||
"Last-Translator: Miloš Popović <gpopac@gmail.com>\n"
|
||||
|
@ -10,7 +10,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"PO-Revision-Date: 2023-10-02 02:16+0200\n"
|
||||
"Last-Translator: Anders Jonsson <anders.jonsson@norsjovallen.se>\n"
|
||||
|
@ -7,7 +7,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"PO-Revision-Date: 2010-03-21 17:37+0530\n"
|
||||
"Last-Translator: Dr,T,Vasudevan <agnihot3@gmail.com>\n"
|
||||
|
@ -6,7 +6,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"PO-Revision-Date: 2012-04-17 00:17+0530\n"
|
||||
"Last-Translator: Praveen Illa <mail2ipn@gmail.com>\n"
|
||||
|
@ -14,7 +14,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"PO-Revision-Date: 2023-10-14 13:04+0300\n"
|
||||
"Last-Translator: Sabri Ünal <libreajans@gmail.com>\n"
|
||||
|
@ -7,7 +7,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"PO-Revision-Date: 2023-10-02 09:54+0300\n"
|
||||
"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
|
||||
|
@ -8,7 +8,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"PO-Revision-Date: 2021-09-05 15:21+0700\n"
|
||||
"Last-Translator: Trần Ngọc Quân <vnwildman@gmail.com>\n"
|
||||
|
@ -7,7 +7,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"PO-Revision-Date: 2005-03-30 21:33+0200\n"
|
||||
"Last-Translator: Canonical Ltd <translations@canonical.com>\n"
|
||||
|
@ -5,7 +5,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"PO-Revision-Date: 2003-03-19\n"
|
||||
"Last-Translator: Raphael Finkel <raphael@cs.uky.edu>\n"
|
||||
|
@ -11,7 +11,7 @@
|
||||
msgid ""
|
||||
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-02 00:02+0000\n"
|
||||
"PO-Revision-Date: 2023-10-02 18:50+0800\n"
|
||||
"Last-Translator: lumingzh <lumingzh@qq.com>\n"
|
||||
|
@ -7,7 +7,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"PO-Revision-Date: 2011-01-01 19:42+0800\n"
|
||||
"Last-Translator: Chao-Hsiung Liao <j_h_liau@yahoo.com.tw>\n"
|
||||
|
@ -7,7 +7,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"PO-Revision-Date: 2017-12-20 18:06+0800\n"
|
||||
"Last-Translator: taijuin <taijuin@gmail.com>\n"
|
||||
|
@ -41,7 +41,7 @@ PACKAGE_GNU =
|
||||
# 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
|
||||
# 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
|
||||
# message catalogs shall be used. It is usually empty.
|
||||
|
@ -7,7 +7,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"PO-Revision-Date: 2012-04-01 01:56+0200\n"
|
||||
"Last-Translator: Khaled Hosny <khaledhosny@eglug.org>\n"
|
||||
|
@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"PO-Revision-Date: 2023-09-28 20:58+0300\n"
|
||||
"Last-Translator: Yuras Shumovich <shumovichy@gmail.com>\n"
|
||||
@ -2778,7 +2778,7 @@ msgstr ""
|
||||
#: plug-ins/common/file-gif-load.c:1237
|
||||
msgid ""
|
||||
"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 ""
|
||||
|
||||
#: plug-ins/common/file-gif-load.c:1360
|
||||
|
@ -9,7 +9,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"PO-Revision-Date: 2023-06-25 22:42+0300\n"
|
||||
"Last-Translator: Alexander Shopov <ash@kambanaria.org>\n"
|
||||
@ -5238,7 +5238,7 @@ msgstr ""
|
||||
#: plug-ins/common/file-gif-load.c:1237
|
||||
msgid ""
|
||||
"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 ""
|
||||
|
||||
#: plug-ins/common/file-gif-load.c:1364
|
||||
|
@ -6,7 +6,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"PO-Revision-Date: 2012-04-06 23:03+0100\n"
|
||||
"Last-Translator: Alan Monfort <alan.monfort@free.fr>\n"
|
||||
|
@ -6,7 +6,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"PO-Revision-Date: 2015-02-04 15:20+0000\n"
|
||||
"Last-Translator: Samir Ribić <Unknown>\n"
|
||||
|
@ -13,7 +13,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"PO-Revision-Date: 2023-07-25 10:17+0100\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
|
||||
msgid ""
|
||||
"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 ""
|
||||
"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
|
||||
msgid "Too much compressed data, ignoring extra..."
|
||||
|
@ -14,7 +14,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"PO-Revision-Date: 2012-02-12 22:33+0100\n"
|
||||
"Last-Translator: Albert F. <lakonfrariadelavila@gmail.com>\n"
|
||||
|
@ -13,7 +13,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"PO-Revision-Date: 2012-11-26 10:51+0100\n"
|
||||
"Last-Translator: Marek Černocký <marek@manet.cz>\n"
|
||||
|
@ -18,7 +18,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"PO-Revision-Date: 2022-12-28 17:48+0100\n"
|
||||
"Last-Translator: Alan Mortensen <alanmortensen.am@gmail.com>\n"
|
||||
|
@ -23,7 +23,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"PO-Revision-Date: 2023-03-26 21:25+0200\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
|
||||
msgid ""
|
||||
"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 ""
|
||||
|
||||
#: plug-ins/common/file-gif-load.c:1364
|
||||
|
@ -10,7 +10,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"PO-Revision-Date: 2007-03-28 23:59+0530\n"
|
||||
"Last-Translator: Tshewang Norbu <bumthap2006@hotmail.com>\n"
|
||||
|
@ -7,7 +7,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"PO-Revision-Date: 2023-04-12 21:13+0300\n"
|
||||
"Last-Translator: Dimitris Spingos (Δημήτρης Σπίγγος) <dmtrs32@gmail.com>\n"
|
||||
@ -2586,7 +2586,7 @@ msgstr "Άγνωστος σύνθετος τύπος %d. %s"
|
||||
#: plug-ins/common/file-gif-load.c:1237
|
||||
msgid ""
|
||||
"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 ""
|
||||
"Αδυναμία διαχείρισης πλαισίων (καρέ) που δεν είναι άλφα RGB.\n"
|
||||
"Υποβάλετε μια αναφορά σφαλμάτων στη διεύθυνση https://gitlab.gnome.org/GNOME/"
|
||||
|
@ -7,7 +7,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"PO-Revision-Date: 2005-09-06 14:31-0400\n"
|
||||
"Last-Translator: Adam Weinberger <adamw@gnome.org>\n"
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user