diff options
author | rbuj <[email protected]> | 2021-02-02 16:25:13 +0100 |
---|---|---|
committer | rbuj <[email protected]> | 2021-02-02 16:25:13 +0100 |
commit | 39cfa130dd3cbe2e316deeef3c0de22caa97fc3c (patch) | |
tree | 371356a516ec1b51a09fd15c55df3d26967c17b9 | |
parent | 05c9068931ee35a4b18393e771ea14846db8b977 (diff) | |
download | mate-desktop-39cfa130dd3cbe2e316deeef3c0de22caa97fc3c.tar.bz2 mate-desktop-39cfa130dd3cbe2e316deeef3c0de22caa97fc3c.tar.xz |
tx: update resource
-rw-r--r-- | mate-desktop.pot | 14 | ||||
-rw-r--r-- | tools/mate-color-select.c | 4 |
2 files changed, 13 insertions, 5 deletions
diff --git a/mate-desktop.pot b/mate-desktop.pot index 14921b3..5fff07b 100644 --- a/mate-desktop.pot +++ b/mate-desktop.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: mate-desktop 1.25.0\n" "Report-Msgid-Bugs-To: https://github.com/mate-desktop/mate-desktop/\n" -"POT-Creation-Date: 2020-08-06 13:09+0200\n" +"POT-Creation-Date: 2021-02-02 16:23+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <[email protected]>\n" @@ -38,7 +38,7 @@ msgstr "" msgid "" "Copyright © 1997-2011 GNOME developers\n" "Copyright © 2011 Perberos\n" -"Copyright © 2012-2020 MATE developers" +"Copyright © 2012-2021 MATE developers" msgstr "" #: mate-about/mate-about.h:42 @@ -1374,10 +1374,18 @@ msgstr "" msgid "Whether or not keyboard locking is enabled." msgstr "" -#: tools/mate-color-select.c:64 tools/mate-color-select.desktop.in:3 +#: tools/mate-color-select.c:65 tools/mate-color-select.desktop.in:3 msgid "MATE Color Selection" msgstr "" +#: tools/mate-color-select.c:72 +msgid "_Copy" +msgstr "" + +#: tools/mate-color-select.c:78 +msgid "_Close" +msgstr "" + #: tools/mate-color-select.desktop.in:4 msgid "Color selection dialog" msgstr "" diff --git a/tools/mate-color-select.c b/tools/mate-color-select.c index 46cad35..fb9d585 100644 --- a/tools/mate-color-select.c +++ b/tools/mate-color-select.c @@ -69,13 +69,13 @@ main (int argc, char **argv) /* quit signal */ g_signal_connect (color_dialog, "destroy", gtk_main_quit, NULL); - widget = gtk_button_new_with_mnemonic ("_Copy"); + widget = gtk_button_new_with_mnemonic (_("_Copy")); image = gtk_image_new_from_icon_name ("edit-copy", GTK_ICON_SIZE_BUTTON); gtk_button_set_image (GTK_BUTTON (widget), image); gtk_container_add (GTK_CONTAINER (gtk_dialog_get_action_area (GTK_DIALOG (color_dialog))), widget); g_signal_connect (widget, "button-release-event", G_CALLBACK (copy_color), color_dialog); - widget = gtk_button_new_with_mnemonic ("_Close"); + widget = gtk_button_new_with_mnemonic (_("_Close")); image = gtk_image_new_from_icon_name ("window-close", GTK_ICON_SIZE_BUTTON); gtk_button_set_image (GTK_BUTTON (widget), image); gtk_container_add (GTK_CONTAINER (gtk_dialog_get_action_area (GTK_DIALOG (color_dialog))), widget); |