diff options
Diffstat (limited to 'charpick')
127 files changed, 1705 insertions, 200 deletions
diff --git a/charpick/Makefile.am b/charpick/Makefile.am index 1c505e20..000b3463 100644 --- a/charpick/Makefile.am +++ b/charpick/Makefile.am @@ -2,6 +2,10 @@ NULL = SUBDIRS = help +applet_in_files = org.mate.applets.CharpickerApplet.mate-panel-applet.desktop.in +service_in_files = org.mate.panel.applet.CharpickerAppletFactory.service.in +gschema_in_files = org.mate.panel.applet.charpick.gschema.xml.in + AM_CPPFLAGS = \ -I. \ -I$(srcdir) \ @@ -11,21 +15,48 @@ AM_CPPFLAGS = \ $(GUCHARMAP_CFLAGS) \ $(NULL) -libexec_PROGRAMS = mate-charpick-applet - -BUILT_SOURCES = charpick-resources.c charpick-resources.h -nodist_mate_charpick_applet_SOURCES = $(BUILT_SOURCES) -mate_charpick_applet_SOURCES = \ +BUILT_SOURCES = \ + charpick-resources.c \ + charpick-resources.h \ + $(NULL) +APPLET_SOURCES = \ charpick.c \ charpick.h \ properties.c \ $(NULL) -mate_charpick_applet_LDADD = \ +APPLET_LIBS = \ $(MATE_APPLETS4_LIBS) \ $(GUCHARMAP_LIBS) \ $(NULL) +if ENABLE_IN_PROCESS +APPLET_LOCATION = $(pkglibdir)/libmate-charpick-applet.so + +pkglib_LTLIBRARIES = libmate-charpick-applet.la +nodist_libmate_charpick_applet_la_SOURCES = $(BUILT_SOURCES) +libmate_charpick_applet_la_SOURCES = $(APPLET_SOURCES) +libmate_charpick_applet_la_CFLAGS = $(AM_CFLAGS) +libmate_charpick_applet_la_LDFLAGS = -module -avoid-version +libmate_charpick_applet_la_LIBADD = $(APPLET_LIBS) +else !ENABLE_IN_PROCESS +APPLET_LOCATION = $(libexecdir)/mate-charpick-applet + +libexec_PROGRAMS = mate-charpick-applet +nodist_mate_charpick_applet_SOURCES = $(BUILT_SOURCES) +mate_charpick_applet_SOURCES = $(APPLET_SOURCES) +mate_charpick_applet_CFLAGS = $(AM_CFLAGS) +mate_charpick_applet_LDADD = $(APPLET_LIBS) + +servicedir = $(datadir)/dbus-1/services +service_DATA = $(service_in_files:.service.in=.service) + +$(service_DATA): $(service_in_files) Makefile + $(AM_V_GEN)sed \ + -e "s|\@APPLET_LOCATION\@|$(APPLET_LOCATION)|" \ + $< > $@ +endif !ENABLE_IN_PROCESS + charpick-resources.c: charpick-resources.gresource.xml $(shell $(GLIB_COMPILE_RESOURCES) --sourcedir=$(srcdir) --generate-dependencies $(srcdir)/charpick-resources.gresource.xml) $(AM_V_GEN)$(GLIB_COMPILE_RESOURCES) --target=$@ --sourcedir=$(srcdir) --generate --c-name charpick $< @@ -33,29 +64,19 @@ charpick-resources.h: charpick-resources.gresource.xml $(shell $(GLIB_COMPILE_RE $(AM_V_GEN)$(GLIB_COMPILE_RESOURCES) --target=$@ --sourcedir=$(srcdir) --generate --c-name charpick $< appletdir = $(datadir)/mate-panel/applets -applet_in_files = org.mate.applets.CharpickerApplet.mate-panel-applet.desktop.in applet_DATA = $(applet_in_files:.mate-panel-applet.desktop.in=.mate-panel-applet) $(applet_in_files): $(applet_in_files).in Makefile $(AM_V_GEN)sed \ - -e "s|\@LIBEXECDIR\@|$(libexecdir)|" \ - -e "s|\@VERSION\@|$(PACKAGE_VERSION)|" \ - $< > $@ + -e "s|\@APPLET_LOCATION\@|$(APPLET_LOCATION)|" \ + -e "s|\@APPLET_IN_PROCESS\@|$(APPLET_IN_PROCESS)|" \ + -e "s|\@VERSION\@|$(PACKAGE_VERSION)|" \ + $< > $@ $(applet_DATA): $(applet_in_files) Makefile $(AM_V_GEN) $(MSGFMT) --desktop --keyword=Name --keyword=Description --template $< -d $(top_srcdir)/po -o $@ -servicedir = $(datadir)/dbus-1/services -service_in_files = org.mate.panel.applet.CharpickerAppletFactory.service.in -service_DATA = $(service_in_files:.service.in=.service) - -org.mate.panel.applet.CharpickerAppletFactory.service: $(service_in_files) - $(AM_V_GEN)sed \ - -e "s|\@LIBEXECDIR\@|$(libexecdir)|" \ - $< > $@ - -charpick_gschema_in_files = org.mate.panel.applet.charpick.gschema.xml.in -gsettings_SCHEMAS = $(charpick_gschema_in_files:.xml.in=.xml) +gsettings_SCHEMAS = $(gschema_in_files:.xml.in=.xml) @GSETTINGS_RULES@ CLEANFILES = \ @@ -70,7 +91,7 @@ CLEANFILES = \ EXTRA_DIST = \ $(applet_in_files).in \ $(service_in_files) \ - $(charpick_gschema_in_files) \ + $(gschema_in_files) \ charpick-applet-menu.xml \ charpick-resources.gresource.xml \ $(NULL) diff --git a/charpick/charpick.c b/charpick/charpick.c index 46b2dad8..932c6919 100644 --- a/charpick/charpick.c +++ b/charpick/charpick.c @@ -764,7 +764,9 @@ charpicker_applet_fill (MatePanelApplet *applet) gchar *string; GtkActionGroup *action_group; +#ifndef ENABLE_IN_PROCESS g_set_application_name (_("Character Palette")); +#endif gtk_window_set_default_icon_name ("accessories-character-map"); @@ -872,9 +874,9 @@ charpicker_applet_factory (MatePanelApplet *applet, return retval; } -MATE_PANEL_APPLET_OUT_PROCESS_FACTORY ("CharpickerAppletFactory", - PANEL_TYPE_APPLET, - "char-palette", - charpicker_applet_factory, - NULL) +PANEL_APPLET_FACTORY ("CharpickerAppletFactory", + PANEL_TYPE_APPLET, + "char-palette", + charpicker_applet_factory, + NULL) diff --git a/charpick/help/af/af.po b/charpick/help/af/af.po index ac2de1f7..b23508f0 100644 --- a/charpick/help/af/af.po +++ b/charpick/help/af/af.po @@ -8,7 +8,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Afrikaans (https://www.transifex.com/mate/teams/13566/af/)\n" +"Language-Team: Afrikaans (https://app.transifex.com/mate/teams/13566/af/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/am/am.po b/charpick/help/am/am.po index 89ed322a..786689dd 100644 --- a/charpick/help/am/am.po +++ b/charpick/help/am/am.po @@ -8,7 +8,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: samson <[email protected]>, 2019\n" -"Language-Team: Amharic (https://www.transifex.com/mate/teams/13566/am/)\n" +"Language-Team: Amharic (https://app.transifex.com/mate/teams/13566/am/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/ar/ar.po b/charpick/help/ar/ar.po index 24549b4b..70ea4fe0 100644 --- a/charpick/help/ar/ar.po +++ b/charpick/help/ar/ar.po @@ -12,7 +12,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: Ahmd go <[email protected]>, 2021\n" -"Language-Team: Arabic (https://www.transifex.com/mate/teams/13566/ar/)\n" +"Language-Team: Arabic (https://app.transifex.com/mate/teams/13566/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/as/as.po b/charpick/help/as/as.po index 7c0ae803..d9189dec 100644 --- a/charpick/help/as/as.po +++ b/charpick/help/as/as.po @@ -8,7 +8,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Assamese (https://www.transifex.com/mate/teams/13566/as/)\n" +"Language-Team: Assamese (https://app.transifex.com/mate/teams/13566/as/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/ast/ast.po b/charpick/help/ast/ast.po index 821f57e3..e28548f9 100644 --- a/charpick/help/ast/ast.po +++ b/charpick/help/ast/ast.po @@ -9,7 +9,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: Ḷḷumex03, 2018\n" -"Language-Team: Asturian (https://www.transifex.com/mate/teams/13566/ast/)\n" +"Language-Team: Asturian (https://app.transifex.com/mate/teams/13566/ast/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/az/az.po b/charpick/help/az/az.po index 12e8f2cb..7d40e4c7 100644 --- a/charpick/help/az/az.po +++ b/charpick/help/az/az.po @@ -8,7 +8,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Azerbaijani (https://www.transifex.com/mate/teams/13566/az/)\n" +"Language-Team: Azerbaijani (https://app.transifex.com/mate/teams/13566/az/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/be/be.po b/charpick/help/be/be.po index 43a31a35..24ca46df 100644 --- a/charpick/help/be/be.po +++ b/charpick/help/be/be.po @@ -9,7 +9,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: Mihail Varantsou <[email protected]>, 2018\n" -"Language-Team: Belarusian (https://www.transifex.com/mate/teams/13566/be/)\n" +"Language-Team: Belarusian (https://app.transifex.com/mate/teams/13566/be/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/bg/bg.po b/charpick/help/bg/bg.po index fcf3ca19..21475edc 100644 --- a/charpick/help/bg/bg.po +++ b/charpick/help/bg/bg.po @@ -11,7 +11,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: H Bozhkov, 2020\n" -"Language-Team: Bulgarian (https://www.transifex.com/mate/teams/13566/bg/)\n" +"Language-Team: Bulgarian (https://app.transifex.com/mate/teams/13566/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/bn/bn.po b/charpick/help/bn/bn.po index 636378d7..cbdd31f8 100644 --- a/charpick/help/bn/bn.po +++ b/charpick/help/bn/bn.po @@ -8,7 +8,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Bengali (https://www.transifex.com/mate/teams/13566/bn/)\n" +"Language-Team: Bengali (https://app.transifex.com/mate/teams/13566/bn/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/bn_IN/bn_IN.po b/charpick/help/bn_IN/bn_IN.po index 82c71211..d2cb6bc6 100644 --- a/charpick/help/bn_IN/bn_IN.po +++ b/charpick/help/bn_IN/bn_IN.po @@ -8,7 +8,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Bengali (India) (https://www.transifex.com/mate/teams/13566/bn_IN/)\n" +"Language-Team: Bengali (India) (https://app.transifex.com/mate/teams/13566/bn_IN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/br/br.po b/charpick/help/br/br.po index 7cbf205c..05497d9e 100644 --- a/charpick/help/br/br.po +++ b/charpick/help/br/br.po @@ -9,7 +9,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: Alan Monfort <[email protected]>, 2018\n" -"Language-Team: Breton (https://www.transifex.com/mate/teams/13566/br/)\n" +"Language-Team: Breton (https://app.transifex.com/mate/teams/13566/br/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/bs/bs.po b/charpick/help/bs/bs.po index 13e56ae0..ea22c40f 100644 --- a/charpick/help/bs/bs.po +++ b/charpick/help/bs/bs.po @@ -9,7 +9,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: Sky Lion <[email protected]>, 2018\n" -"Language-Team: Bosnian (https://www.transifex.com/mate/teams/13566/bs/)\n" +"Language-Team: Bosnian (https://app.transifex.com/mate/teams/13566/bs/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/ca/ca.po b/charpick/help/ca/ca.po index 1c4cb5cb..203b05b5 100644 --- a/charpick/help/ca/ca.po +++ b/charpick/help/ca/ca.po @@ -9,7 +9,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: Robert Antoni Buj i Gelonch <[email protected]>, 2021\n" -"Language-Team: Catalan (https://www.transifex.com/mate/teams/13566/ca/)\n" +"Language-Team: Catalan (https://app.transifex.com/mate/teams/13566/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/ca@valencia/[email protected] b/charpick/help/ca@valencia/[email protected] index c2d8dcfa..6db02f07 100644 --- a/charpick/help/ca@valencia/[email protected] +++ b/charpick/help/ca@valencia/[email protected] @@ -10,7 +10,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: Empar Montoro <[email protected]>, 2018\n" -"Language-Team: Catalan (Valencian) (https://www.transifex.com/mate/teams/13566/ca@valencia/)\n" +"Language-Team: Catalan (Valencian) (https://app.transifex.com/mate/teams/13566/ca@valencia/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/cmn/cmn.po b/charpick/help/cmn/cmn.po index fdbdfac5..af445db7 100644 --- a/charpick/help/cmn/cmn.po +++ b/charpick/help/cmn/cmn.po @@ -8,7 +8,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: 趙惟倫 <[email protected]>, 2018\n" -"Language-Team: Chinese (Mandarin) (https://www.transifex.com/mate/teams/13566/cmn/)\n" +"Language-Team: Chinese (Mandarin) (https://app.transifex.com/mate/teams/13566/cmn/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/crh/crh.po b/charpick/help/crh/crh.po index 3e899d08..23849eb8 100644 --- a/charpick/help/crh/crh.po +++ b/charpick/help/crh/crh.po @@ -8,7 +8,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Crimean Turkish (https://www.transifex.com/mate/teams/13566/crh/)\n" +"Language-Team: Crimean Turkish (https://app.transifex.com/mate/teams/13566/crh/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/cs/cs.po b/charpick/help/cs/cs.po index c4f84505..f4afd24d 100644 --- a/charpick/help/cs/cs.po +++ b/charpick/help/cs/cs.po @@ -12,7 +12,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: Lukáš Lommer <[email protected]>, 2021\n" -"Language-Team: Czech (https://www.transifex.com/mate/teams/13566/cs/)\n" +"Language-Team: Czech (https://app.transifex.com/mate/teams/13566/cs/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/cy/cy.po b/charpick/help/cy/cy.po index 5a8f1573..92e24191 100644 --- a/charpick/help/cy/cy.po +++ b/charpick/help/cy/cy.po @@ -9,7 +9,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: ciaran, 2018\n" -"Language-Team: Welsh (https://www.transifex.com/mate/teams/13566/cy/)\n" +"Language-Team: Welsh (https://app.transifex.com/mate/teams/13566/cy/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/da/da.po b/charpick/help/da/da.po index 8f1d77de..2e2be103 100644 --- a/charpick/help/da/da.po +++ b/charpick/help/da/da.po @@ -9,7 +9,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: Joe Hansen <[email protected]>, 2021\n" -"Language-Team: Danish (https://www.transifex.com/mate/teams/13566/da/)\n" +"Language-Team: Danish (https://app.transifex.com/mate/teams/13566/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/de/de.po b/charpick/help/de/de.po index 286f0c4f..673dc811 100644 --- a/charpick/help/de/de.po +++ b/charpick/help/de/de.po @@ -5,14 +5,15 @@ # Tobias Bannert <[email protected]>, 2018 # Wolfgang Ulbrich <[email protected]>, 2018 # Julian Rüger <[email protected]>, 2018 +# Xpistian <[email protected]>, 2023 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" -"Last-Translator: Julian Rüger <[email protected]>, 2018\n" -"Language-Team: German (https://www.transifex.com/mate/teams/13566/de/)\n" +"Last-Translator: Xpistian <[email protected]>, 2023\n" +"Language-Team: German (https://app.transifex.com/mate/teams/13566/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -51,7 +52,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" -msgstr "" +msgstr "<year>2015-2021</year> <holder>Mate-Dokumentationsprojekt</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:31 diff --git a/charpick/help/dz/dz.po b/charpick/help/dz/dz.po index e4486072..d4a2c281 100644 --- a/charpick/help/dz/dz.po +++ b/charpick/help/dz/dz.po @@ -8,7 +8,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Dzongkha (https://www.transifex.com/mate/teams/13566/dz/)\n" +"Language-Team: Dzongkha (https://app.transifex.com/mate/teams/13566/dz/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/el/el.po b/charpick/help/el/el.po index 481bd2db..74b020a5 100644 --- a/charpick/help/el/el.po +++ b/charpick/help/el/el.po @@ -6,14 +6,15 @@ # kosmmart <[email protected]>, 2018 # TheDimitris15, 2019 # anvo <[email protected]>, 2019 +# Chris Balabanis, 2023 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" -"Last-Translator: anvo <[email protected]>, 2019\n" -"Language-Team: Greek (https://www.transifex.com/mate/teams/13566/el/)\n" +"Last-Translator: Chris Balabanis, 2023\n" +"Language-Team: Greek (https://app.transifex.com/mate/teams/13566/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -45,7 +46,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" -msgstr "" +msgstr "<year>2015-2021</year> <holder>Έργο Τεκμηρίωσης MATE</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:31 diff --git a/charpick/help/en_AU/en_AU.po b/charpick/help/en_AU/en_AU.po index 5b97ce4b..1574dbf2 100644 --- a/charpick/help/en_AU/en_AU.po +++ b/charpick/help/en_AU/en_AU.po @@ -8,7 +8,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: Michael Findlay <[email protected]>, 2018\n" -"Language-Team: English (Australia) (https://www.transifex.com/mate/teams/13566/en_AU/)\n" +"Language-Team: English (Australia) (https://app.transifex.com/mate/teams/13566/en_AU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/en_CA/en_CA.po b/charpick/help/en_CA/en_CA.po index a4200b41..50b649b2 100644 --- a/charpick/help/en_CA/en_CA.po +++ b/charpick/help/en_CA/en_CA.po @@ -8,7 +8,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: English (Canada) (https://www.transifex.com/mate/teams/13566/en_CA/)\n" +"Language-Team: English (Canada) (https://app.transifex.com/mate/teams/13566/en_CA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/en_GB/en_GB.po b/charpick/help/en_GB/en_GB.po index 57a43ef6..e813a0ec 100644 --- a/charpick/help/en_GB/en_GB.po +++ b/charpick/help/en_GB/en_GB.po @@ -1,16 +1,15 @@ # # Translators: # Stefano Karapetsas <[email protected]>, 2018 -# Martin Wimpress <[email protected]>, 2018 -# Andi Chandler <[email protected]>, 2022 +# Andi Chandler <[email protected]>, 2023 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" -"Last-Translator: Andi Chandler <[email protected]>, 2022\n" -"Language-Team: English (United Kingdom) (https://www.transifex.com/mate/teams/13566/en_GB/)\n" +"Last-Translator: Andi Chandler <[email protected]>, 2023\n" +"Language-Team: English (United Kingdom) (https://app.transifex.com/mate/teams/13566/en_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -20,12 +19,14 @@ msgstr "" #. Put one translator per line, in the form NAME <EMAIL>, YEAR1, YEAR2 msgctxt "_" msgid "translator-credits" -msgstr "Martin Wimpress" +msgstr "" +"Martin Wimpress\n" +"Andi Chandler" #. (itstool) path: articleinfo/title #: C/index.docbook:21 msgid "Character Palette Manual" -msgstr "" +msgstr "Character Palette Manual" #. (itstool) path: abstract/para #: C/index.docbook:23 @@ -34,6 +35,9 @@ msgid "" "not on your keyboard, such as accented characters, mathematical symbols, " "special symbols, and punctuation marks." msgstr "" +"Character Palette provides a convenient way to access characters that are " +"not on your keyboard, such as accented characters, mathematical symbols, " +"special symbols, and punctuation marks." #. (itstool) path: articleinfo/copyright #: C/index.docbook:27 @@ -81,7 +85,7 @@ msgstr "GNOME Documentation Project" #. (itstool) path: authorgroup/author #: C/index.docbook:58 msgid "<firstname>MATE Documentation Team</firstname> <surname/>" -msgstr "" +msgstr "<firstname>MATE Documentation Team</firstname> <surname/>" #. (itstool) path: authorgroup/author #: C/index.docbook:62 @@ -89,6 +93,8 @@ msgid "" "<firstname>Sun</firstname> <surname>GNOME Documentation Team</surname> " "<affiliation> <orgname>Sun Microsystems</orgname> </affiliation>" msgstr "" +"<firstname>Sun</firstname> <surname>GNOME Documentation Team</surname> " +"<affiliation> <orgname>Sun Microsystems</orgname> </affiliation>" #. (itstool) path: authorgroup/author #: C/index.docbook:69 @@ -97,6 +103,9 @@ msgid "" "<orgname>GNOME Documentation Project</orgname> </affiliation> " "<email>[email protected]</email>" msgstr "" +"<firstname>Dan</firstname> <surname>Mueth</surname> <affiliation> " +"<orgname>GNOME Documentation Project</orgname> </affiliation> " +"<email>[email protected]</email>" #. (itstool) path: authorgroup/author #: C/index.docbook:77 @@ -104,6 +113,8 @@ msgid "" "<firstname>Angela</firstname> <surname>Boyle</surname> <affiliation> " "<orgname>GNOME Documentation Project</orgname> </affiliation>" msgstr "" +"<firstname>Angela</firstname> <surname>Boyle</surname> <affiliation> " +"<orgname>GNOME Documentation Project</orgname> </affiliation>" #. (itstool) path: authorgroup/editor #: C/index.docbook:84 @@ -112,6 +123,9 @@ msgid "" "<orgname>GNOME Documentation Project</orgname> </affiliation> " "<email>[email protected]</email>" msgstr "" +"<firstname>Shaun</firstname> <surname>McCance</surname> <affiliation> " +"<orgname>GNOME Documentation Project</orgname> </affiliation> " +"<email>[email protected]</email>" #. (itstool) path: authorgroup/editor #: C/index.docbook:92 @@ -120,6 +134,9 @@ msgid "" "<orgname>GNOME Project</orgname> </affiliation> " "<email>[email protected]</email>" msgstr "" +"<firstname>Davyd</firstname> <surname>Madeley</surname> <affiliation> " +"<orgname>GNOME Project</orgname> </affiliation> " +"<email>[email protected]</email>" #. (itstool) path: revdescription/para #: C/index.docbook:109 @@ -132,6 +149,8 @@ msgid "" "<revnumber>Version 2.11</revnumber> <date>July 2015</date> " "<_:revdescription-1/>" msgstr "" +"<revnumber>Version 2.11</revnumber> <date>July 2015</date> " +"<_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:117 @@ -144,6 +163,8 @@ msgid "" "<revnumber>Version 2.10</revnumber> <date>March 2005</date> " "<_:revdescription-1/>" msgstr "" +"<revnumber>Version 2.10</revnumber> <date>March 2005</date> " +"<_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:124 @@ -156,6 +177,8 @@ msgid "" "<revnumber>Version 2.8</revnumber> <date>Unknown</date> " "<_:revdescription-1/>" msgstr "" +"<revnumber>Version 2.8</revnumber> <date>Unknown</date> " +"<_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:132 C/index.docbook:140 C/index.docbook:148 @@ -169,6 +192,8 @@ msgid "" "<revnumber>Character Palette Applet Manual V2.6</revnumber> <date>August " "2004</date> <_:revdescription-1/>" msgstr "" +"<revnumber>Character Palette Applet Manual V2.6</revnumber> <date>August " +"2004</date> <_:revdescription-1/>" #. (itstool) path: revhistory/revision #: C/index.docbook:136 @@ -176,6 +201,8 @@ msgid "" "<revnumber>Character Palette Applet Manual V2.4</revnumber> <date>August " "2003</date> <_:revdescription-1/>" msgstr "" +"<revnumber>Character Palette Applet Manual V2.4</revnumber> <date>August " +"2003</date> <_:revdescription-1/>" #. (itstool) path: revhistory/revision #: C/index.docbook:144 @@ -183,6 +210,8 @@ msgid "" "<revnumber>Character Palette Applet Manual V2.3</revnumber> <date>October " "2002</date> <_:revdescription-1/>" msgstr "" +"<revnumber>Character Palette Applet Manual V2.3</revnumber> <date>October " +"2002</date> <_:revdescription-1/>" #. (itstool) path: revhistory/revision #: C/index.docbook:152 @@ -190,6 +219,8 @@ msgid "" "<revnumber>Character Palette Applet Manual V2.2</revnumber> <date>August " "2002</date> <_:revdescription-1/>" msgstr "" +"<revnumber>Character Palette Applet Manual V2.2</revnumber> <date>August " +"2002</date> <_:revdescription-1/>" #. (itstool) path: revhistory/revision #: C/index.docbook:160 @@ -197,6 +228,8 @@ msgid "" "<revnumber>Character Palette Applet Manual V2.1</revnumber> <date>July " "2002</date> <_:revdescription-1/>" msgstr "" +"<revnumber>Character Palette Applet Manual V2.1</revnumber> <date>July " +"2002</date> <_:revdescription-1/>" #. (itstool) path: revhistory/revision #: C/index.docbook:168 @@ -204,6 +237,8 @@ msgid "" "<revnumber>Character Palette Applet Manual V2.0</revnumber> <date>March " "2002</date> <_:revdescription-1/>" msgstr "" +"<revnumber>Character Palette Applet Manual V2.0</revnumber> <date>March " +"2002</date> <_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:180 @@ -216,11 +251,13 @@ msgid "" "<revnumber>Character Picker Applet</revnumber> <date>2000</date> " "<_:revdescription-1/>" msgstr "" +"<revnumber>Character Picker Applet</revnumber> <date>2000</date> " +"<_:revdescription-1/>" #. (itstool) path: articleinfo/releaseinfo #: C/index.docbook:186 msgid "This manual describes version 1.10.2 of Character Palette." -msgstr "" +msgstr "This manual describes version 1.10.2 of Character Palette." #. (itstool) path: legalnotice/title #: C/index.docbook:189 @@ -235,11 +272,15 @@ msgid "" "url=\"help:mate-user-guide/feedback\" type=\"help\">MATE Feedback " "Page</ulink>." msgstr "" +"To report a bug or make a suggestion regarding the Character Palette " +"application or this manual, follow the directions in the <ulink " +"url=\"help:mate-user-guide/feedback\" type=\"help\">MATE Feedback " +"Page</ulink>." #. (itstool) path: article/indexterm #: C/index.docbook:197 msgid "<primary>Character Palette</primary>" -msgstr "" +msgstr "<primary>Character Palette</primary>" #. (itstool) path: sect1/title #: C/index.docbook:202 @@ -262,6 +303,8 @@ msgid "" "external ref='figures/charpalette_applet.png' " "md5='be3ebce4695652b9bc56b604ad7fdb6e'" msgstr "" +"external ref='figures/charpalette_applet.png' " +"md5='be3ebce4695652b9bc56b604ad7fdb6e'" #. (itstool) path: screenshot/mediaobject #: C/index.docbook:207 @@ -270,6 +313,9 @@ msgid "" "format=\"PNG\"/> </imageobject> <textobject> <phrase>Character " "Palette</phrase> </textobject>" msgstr "" +"<imageobject><imagedata fileref=\"figures/charpalette_applet.png\" " +"format=\"PNG\"/> </imageobject> <textobject> <phrase>Character " +"Palette</phrase> </textobject>" #. (itstool) path: sect1/para #: C/index.docbook:214 @@ -281,6 +327,12 @@ msgid "" "text documents or at the command line. You can customize the contents of the" " applet to suit your requirements." msgstr "" +"The <application>Character Palette</application> provides a convenient way " +"to access characters that are not on your keyboard, such as accented " +"characters, mathematical symbols, special symbols, and punctuation marks. " +"You can insert characters from the applet into text strings, for example in " +"text documents or at the command line. You can customise the contents of the" +" applet to suit your requirements." #. (itstool) path: sect1/para #: C/index.docbook:221 @@ -289,11 +341,14 @@ msgid "" "encoding so you can use the palette to display or copy any Unicode " "character." msgstr "" +"<application>Character Palette</application> supports the UTF-8 character " +"encoding so you can use the palette to display or copy any Unicode " +"character." #. (itstool) path: sect2/title #: C/index.docbook:226 msgid "To Add Character Palette to a Panel" -msgstr "" +msgstr "To Add Character Palette to a Panel" #. (itstool) path: sect2/para #: C/index.docbook:227 @@ -301,6 +356,8 @@ msgid "" "To add <application>Character Palette</application> to a panel, perform the " "following steps:" msgstr "" +"To add <application>Character Palette</application> to a panel, perform the " +"following steps:" #. (itstool) path: listitem/para #: C/index.docbook:233 @@ -318,6 +375,8 @@ msgid "" "Scroll down the list of items in the <guilabel>Add to Panel</guilabel> " "dialog, then select <guilabel>Character Palette</guilabel>." msgstr "" +"Scroll down the list of items in the <guilabel>Add to Panel</guilabel> " +"dialogue, then select <guilabel>Character Palette</guilabel>." #. (itstool) path: listitem/para #: C/index.docbook:249 @@ -327,7 +386,7 @@ msgstr "Click <guibutton>Add</guibutton>." #. (itstool) path: sect1/title #: C/index.docbook:258 msgid "Getting Characters" -msgstr "" +msgstr "Getting Characters" #. (itstool) path: sect1/para #: C/index.docbook:259 @@ -338,11 +397,16 @@ msgid "" "character from predefined palettes of characters. Each predefined palette of" " characters is associated with a standard character on your keyboard." msgstr "" +"When you add <application>Character Palette</application> to a panel for the" +" first time, the application displays a default palette of characters. You " +"can select a character from the default palette, or you can select a " +"character from predefined palettes of characters. Each predefined palette of" +" characters is associated with a standard character on your keyboard." #. (itstool) path: sect2/title #: C/index.docbook:262 msgid "To Select a Character" -msgstr "" +msgstr "To Select a Character" #. (itstool) path: sect2/para #: C/index.docbook:263 @@ -350,6 +414,8 @@ msgid "" "To select a character from the palette and insert the character into a text " "string, perform the following steps:" msgstr "" +"To select a character from the palette and insert the character into a text " +"string, perform the following steps:" #. (itstool) path: listitem/para #: C/index.docbook:265 @@ -357,6 +423,8 @@ msgid "" "In the palette, click on the character that you require. The character " "button is pressed in to indicate that the character is selected." msgstr "" +"In the palette, click on the character that you require. The character " +"button is pressed in to indicate that the character is selected." #. (itstool) path: listitem/para #: C/index.docbook:269 @@ -366,6 +434,10 @@ msgid "" "into the application if the application allows you to paste from the " "clipboard." msgstr "" +"Point to the location in an application where you want to put the character " +"and middle-click to insert the character. You can also paste the character " +"into the application if the application allows you to paste from the " +"clipboard." #. (itstool) path: listitem/para #: C/index.docbook:274 @@ -376,21 +448,26 @@ msgid "" " you either deselect the character or copy to the clipboard from another " "application." msgstr "" +"You can repeat the insertion using middle-click as many times as you want " +"until you either deselect the character or select text in another " +"application. You can continue pasting the character from the clipboard until" +" you either deselect the character or copy to the clipboard from another " +"application." #. (itstool) path: sect2/para #: C/index.docbook:282 msgid "To deselect the character, click it again or click another character." -msgstr "" +msgstr "To deselect the character, click it again or click another character." #. (itstool) path: note/para #: C/index.docbook:284 msgid "Some applications may not allow you to paste certain characters." -msgstr "" +msgstr "Some applications may not allow you to paste certain characters." #. (itstool) path: sect2/title #: C/index.docbook:288 msgid "To Display a Predefined Palette of Characters" -msgstr "" +msgstr "To Display a Predefined Palette of Characters" #. (itstool) path: sect2/para #: C/index.docbook:289 @@ -399,6 +476,9 @@ msgid "" " default palette to a predefined palette of characters. To display a palette" " of predefined characters, perform the following steps:" msgstr "" +"You can change the characters that are displayed in the application from the" +" default palette to a predefined palette of characters. To display a palette" +" of predefined characters, perform the following steps:" #. (itstool) path: listitem/para #: C/index.docbook:292 @@ -406,11 +486,13 @@ msgid "" "Click on the <guibutton>Available palettes</guibutton> button on the " "application, the down arrow on the left." msgstr "" +"Click on the <guibutton>Available palettes</guibutton> button on the " +"application, the down arrow on the left." #. (itstool) path: listitem/para #: C/index.docbook:295 msgid "Click on the palette that you want to display." -msgstr "" +msgstr "Click on the palette that you want to display." #. (itstool) path: sect2/para #: C/index.docbook:298 @@ -419,11 +501,14 @@ msgid "" " that is displayed in the application, then insert the character into your " "text string." msgstr "" +"You can select the character that you require from the palette of characters" +" that is displayed in the application, then insert the character into your " +"text string." #. (itstool) path: sect2/title #: C/index.docbook:302 msgid "Characters' Keys" -msgstr "" +msgstr "Characters' Keys" #. (itstool) path: sect2/para #: C/index.docbook:303 @@ -433,11 +518,15 @@ msgid "" "section in the chart. The character groups that are associated with each " "keyboard character are shown in the other columns." msgstr "" +"The following chart lists keyboard characters and their associated groups of" +" characters. The keyboard characters are listed in the first column of each " +"section in the chart. The character groups that are associated with each " +"keyboard character are shown in the other columns." #. (itstool) path: figure/title #: C/index.docbook:305 msgid "Character Groups Associated With Keyboard Keys" -msgstr "" +msgstr "Character Groups Associated With Keyboard Keys" #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -450,6 +539,8 @@ msgid "" "external ref='figures/charpick_characters.png' " "md5='27cda1064725bd9127561255f0590b83'" msgstr "" +"external ref='figures/charpick_characters.png' " +"md5='27cda1064725bd9127561255f0590b83'" #. (itstool) path: screenshot/mediaobject #: C/index.docbook:307 @@ -458,11 +549,14 @@ msgid "" "format=\"PNG\"/> </imageobject> <textobject> <phrase>Shows character groups " "associated with various keyboard keys. </phrase> </textobject>" msgstr "" +"<imageobject> <imagedata fileref=\"figures/charpick_characters.png\" " +"format=\"PNG\"/> </imageobject> <textobject> <phrase>Shows character groups " +"associated with various keyboard keys. </phrase> </textobject>" #. (itstool) path: sect1/title #: C/index.docbook:323 msgid "Customizing Character Palette" -msgstr "" +msgstr "Customising Character Palette" #. (itstool) path: figure/title #: C/index.docbook:325 @@ -480,6 +574,8 @@ msgid "" "external ref='figures/charpick-preferences.png' " "md5='ba55588e1ebe38cfc3d2b7bc7c2b023f'" msgstr "" +"external ref='figures/charpick-preferences.png' " +"md5='ba55588e1ebe38cfc3d2b7bc7c2b023f'" #. (itstool) path: screenshot/mediaobject #: C/index.docbook:327 @@ -488,11 +584,14 @@ msgid "" "format=\"PNG\"/> </imageobject> <textobject> <phrase>Character Palette " "Preferences</phrase> </textobject>" msgstr "" +"<imageobject><imagedata fileref=\"figures/charpick-preferences.png\" " +"format=\"PNG\"/> </imageobject> <textobject> <phrase>Character Palette " +"Preferences</phrase> </textobject>" #. (itstool) path: sect2/title #: C/index.docbook:334 msgid "Configuring Palettes" -msgstr "" +msgstr "Configuring Palettes" #. (itstool) path: sect2/para #: C/index.docbook:335 @@ -504,6 +603,12 @@ msgid "" "available from the applet. To close the <guilabel>Character Palette " "Preferences</guilabel> dialog, click <guibutton>Close</guibutton>." msgstr "" +"To configure <application>Character Palette</application>, right-click on " +"the applet, then choose <guimenuitem>Preferences</guimenuitem>. The " +"<guilabel>Character Palette Preferences</guilabel> dialogue contains the " +"<guilabel>Palettes</guilabel> list box, which lists the palettes that are " +"available from the applet. To close the <guilabel>Character Palette " +"Preferences</guilabel> dialogue, click <guibutton>Close</guibutton>." #. (itstool) path: listitem/para #: C/index.docbook:337 @@ -511,6 +616,8 @@ msgid "" "To add a new palette to the applet, click on the <guibutton>Add</guibutton> " "button. See <xref linkend=\"charpick-default-new\"/> for more information." msgstr "" +"To add a new palette to the applet, click on the <guibutton>Add</guibutton> " +"button. See <xref linkend=\"charpick-default-new\"/> for more information." #. (itstool) path: listitem/para #: C/index.docbook:338 @@ -518,6 +625,8 @@ msgid "" "To delete a palette from the applet, select the palette, then click on the " "<guibutton>Delete</guibutton> button." msgstr "" +"To delete a palette from the applet, select the palette, then click on the " +"<guibutton>Delete</guibutton> button." #. (itstool) path: listitem/para #: C/index.docbook:339 @@ -526,11 +635,14 @@ msgid "" "<guibutton>Edit</guibutton> button. Modify the palette in the <guilabel>Edit" " Palette</guilabel> dialog, then click <guibutton>OK</guibutton>." msgstr "" +"To modify a palette, select the palette, then click on the " +"<guibutton>Edit</guibutton> button. Modify the palette in the <guilabel>Edit" +" Palette</guilabel> dialogue, then click <guibutton>OK</guibutton>." #. (itstool) path: sect2/title #: C/index.docbook:343 msgid "Setting Up a New Palette of Characters" -msgstr "" +msgstr "Setting Up a New Palette of Characters" #. (itstool) path: sect2/para #: C/index.docbook:344 @@ -540,6 +652,10 @@ msgid "" "create a new palette with <application>Character Map</application>, perform " "the following steps:" msgstr "" +"You can use a character selection application such as <application>Character" +" Map</application> to set up a new palette of characters. For example, to " +"create a new palette with <application>Character Map</application>, perform " +"the following steps:" #. (itstool) path: listitem/para #: C/index.docbook:347 @@ -548,6 +664,9 @@ msgid "" "<guimenuitem>Preferences</guimenuitem>. The <guilabel>Character Palette " "Preferences</guilabel> dialog is displayed." msgstr "" +"Right-click on the applet, then choose " +"<guimenuitem>Preferences</guimenuitem>. The <guilabel>Character Palette " +"Preferences</guilabel> dialogue is displayed." #. (itstool) path: listitem/para #: C/index.docbook:350 @@ -555,6 +674,8 @@ msgid "" "Click on the <guibutton>Add</guibutton> button and the <guilabel>Add " "Palette</guilabel> dialog is displayed." msgstr "" +"Click on the <guibutton>Add</guibutton> button and the <guilabel>Add " +"Palette</guilabel> dialogue is displayed." #. (itstool) path: listitem/para #: C/index.docbook:353 @@ -563,6 +684,9 @@ msgid "" "that you want to display in the new palette. You can select up to 25 " "characters." msgstr "" +"Open <application>Character Map</application>, then select the characters " +"that you want to display in the new palette. You can select up to 25 " +"characters." #. (itstool) path: listitem/para #: C/index.docbook:356 @@ -571,11 +695,14 @@ msgid "" "<application>Character Map</application> to the <guilabel>Palette</guilabel>" " text box in the <guilabel>Add Palette</guilabel> window." msgstr "" +"Copy the contents of the <guilabel>Text to copy</guilabel> text box from " +"<application>Character Map</application> to the <guilabel>Palette</guilabel>" +" text box in the <guilabel>Add Palette</guilabel> window." #. (itstool) path: listitem/para #: C/index.docbook:359 msgid "Click <guibutton>OK</guibutton>." -msgstr "" +msgstr "Click <guibutton>OK</guibutton>." #. (itstool) path: sect2/para #: C/index.docbook:362 @@ -583,6 +710,8 @@ msgid "" "<application>Character Palette</application> adds the new palette of " "characters to the list of available palettes." msgstr "" +"<application>Character Palette</application> adds the new palette of " +"characters to the list of available palettes." #. (itstool) path: para/ulink #: C/legal.xml:9 diff --git a/charpick/help/eo/eo.po b/charpick/help/eo/eo.po index bb70bb73..2b0f7fb0 100644 --- a/charpick/help/eo/eo.po +++ b/charpick/help/eo/eo.po @@ -10,7 +10,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: Cora Loftis, 2018\n" -"Language-Team: Esperanto (https://www.transifex.com/mate/teams/13566/eo/)\n" +"Language-Team: Esperanto (https://app.transifex.com/mate/teams/13566/eo/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/es/es.po b/charpick/help/es/es.po index 04f882c4..79aa31d0 100644 --- a/charpick/help/es/es.po +++ b/charpick/help/es/es.po @@ -15,7 +15,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: Toni Estévez <[email protected]>, 2021\n" -"Language-Team: Spanish (https://www.transifex.com/mate/teams/13566/es/)\n" +"Language-Team: Spanish (https://app.transifex.com/mate/teams/13566/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/es_AR/es_AR.po b/charpick/help/es_AR/es_AR.po index 5c420281..d96cae2f 100644 --- a/charpick/help/es_AR/es_AR.po +++ b/charpick/help/es_AR/es_AR.po @@ -9,7 +9,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: Dario Badagnani <[email protected]>, 2018\n" -"Language-Team: Spanish (Argentina) (https://www.transifex.com/mate/teams/13566/es_AR/)\n" +"Language-Team: Spanish (Argentina) (https://app.transifex.com/mate/teams/13566/es_AR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/es_CL/es_CL.po b/charpick/help/es_CL/es_CL.po index 4ad309ef..06f2f7ff 100644 --- a/charpick/help/es_CL/es_CL.po +++ b/charpick/help/es_CL/es_CL.po @@ -10,7 +10,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: Robert Petitpas <[email protected]>, 2018\n" -"Language-Team: Spanish (Chile) (https://www.transifex.com/mate/teams/13566/es_CL/)\n" +"Language-Team: Spanish (Chile) (https://app.transifex.com/mate/teams/13566/es_CL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/es_CO/es_CO.po b/charpick/help/es_CO/es_CO.po index 2870b42d..c6dcab8c 100644 --- a/charpick/help/es_CO/es_CO.po +++ b/charpick/help/es_CO/es_CO.po @@ -10,7 +10,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: Julian Borrero <[email protected]>, 2018\n" -"Language-Team: Spanish (Colombia) (https://www.transifex.com/mate/teams/13566/es_CO/)\n" +"Language-Team: Spanish (Colombia) (https://app.transifex.com/mate/teams/13566/es_CO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/es_CR/es_CR.po b/charpick/help/es_CR/es_CR.po index ab325626..648089b7 100644 --- a/charpick/help/es_CR/es_CR.po +++ b/charpick/help/es_CR/es_CR.po @@ -8,7 +8,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/mate/teams/13566/es_CR/)\n" +"Language-Team: Spanish (Costa Rica) (https://app.transifex.com/mate/teams/13566/es_CR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/es_DO/es_DO.po b/charpick/help/es_DO/es_DO.po index 4b0c2eca..70c9265b 100644 --- a/charpick/help/es_DO/es_DO.po +++ b/charpick/help/es_DO/es_DO.po @@ -8,7 +8,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/mate/teams/13566/es_DO/)\n" +"Language-Team: Spanish (Dominican Republic) (https://app.transifex.com/mate/teams/13566/es_DO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/es_EC/es_EC.po b/charpick/help/es_EC/es_EC.po index 7cc467df..022569f1 100644 --- a/charpick/help/es_EC/es_EC.po +++ b/charpick/help/es_EC/es_EC.po @@ -8,7 +8,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Spanish (Ecuador) (https://www.transifex.com/mate/teams/13566/es_EC/)\n" +"Language-Team: Spanish (Ecuador) (https://app.transifex.com/mate/teams/13566/es_EC/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/es_ES/es_ES.po b/charpick/help/es_ES/es_ES.po index 0766dabd..18239997 100644 --- a/charpick/help/es_ES/es_ES.po +++ b/charpick/help/es_ES/es_ES.po @@ -8,7 +8,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Spanish (Spain) (https://www.transifex.com/mate/teams/13566/es_ES/)\n" +"Language-Team: Spanish (Spain) (https://app.transifex.com/mate/teams/13566/es_ES/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/es_MX/es_MX.po b/charpick/help/es_MX/es_MX.po index fe872b0d..9e4c1f03 100644 --- a/charpick/help/es_MX/es_MX.po +++ b/charpick/help/es_MX/es_MX.po @@ -9,7 +9,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: Luis Armando Medina <[email protected]>, 2018\n" -"Language-Team: Spanish (Mexico) (https://www.transifex.com/mate/teams/13566/es_MX/)\n" +"Language-Team: Spanish (Mexico) (https://app.transifex.com/mate/teams/13566/es_MX/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/es_NI/es_NI.po b/charpick/help/es_NI/es_NI.po index 105a77f3..efa19be2 100644 --- a/charpick/help/es_NI/es_NI.po +++ b/charpick/help/es_NI/es_NI.po @@ -8,7 +8,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Spanish (Nicaragua) (https://www.transifex.com/mate/teams/13566/es_NI/)\n" +"Language-Team: Spanish (Nicaragua) (https://app.transifex.com/mate/teams/13566/es_NI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/es_PA/es_PA.po b/charpick/help/es_PA/es_PA.po index eaa997d9..b273b445 100644 --- a/charpick/help/es_PA/es_PA.po +++ b/charpick/help/es_PA/es_PA.po @@ -8,7 +8,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Spanish (Panama) (https://www.transifex.com/mate/teams/13566/es_PA/)\n" +"Language-Team: Spanish (Panama) (https://app.transifex.com/mate/teams/13566/es_PA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/es_PE/es_PE.po b/charpick/help/es_PE/es_PE.po index 86e472e7..0e78a5e7 100644 --- a/charpick/help/es_PE/es_PE.po +++ b/charpick/help/es_PE/es_PE.po @@ -8,7 +8,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Spanish (Peru) (https://www.transifex.com/mate/teams/13566/es_PE/)\n" +"Language-Team: Spanish (Peru) (https://app.transifex.com/mate/teams/13566/es_PE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/es_PR/es_PR.po b/charpick/help/es_PR/es_PR.po index 2f0f2243..14e78576 100644 --- a/charpick/help/es_PR/es_PR.po +++ b/charpick/help/es_PR/es_PR.po @@ -8,7 +8,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Spanish (Puerto Rico) (https://www.transifex.com/mate/teams/13566/es_PR/)\n" +"Language-Team: Spanish (Puerto Rico) (https://app.transifex.com/mate/teams/13566/es_PR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/es_SV/es_SV.po b/charpick/help/es_SV/es_SV.po index 4705acc1..fed57c60 100644 --- a/charpick/help/es_SV/es_SV.po +++ b/charpick/help/es_SV/es_SV.po @@ -8,7 +8,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Spanish (El Salvador) (https://www.transifex.com/mate/teams/13566/es_SV/)\n" +"Language-Team: Spanish (El Salvador) (https://app.transifex.com/mate/teams/13566/es_SV/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/es_UY/es_UY.po b/charpick/help/es_UY/es_UY.po index 9f0e08d2..f6945119 100644 --- a/charpick/help/es_UY/es_UY.po +++ b/charpick/help/es_UY/es_UY.po @@ -8,7 +8,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Spanish (Uruguay) (https://www.transifex.com/mate/teams/13566/es_UY/)\n" +"Language-Team: Spanish (Uruguay) (https://app.transifex.com/mate/teams/13566/es_UY/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/es_VE/es_VE.po b/charpick/help/es_VE/es_VE.po index ab565fd9..66bfbf20 100644 --- a/charpick/help/es_VE/es_VE.po +++ b/charpick/help/es_VE/es_VE.po @@ -8,7 +8,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Spanish (Venezuela) (https://www.transifex.com/mate/teams/13566/es_VE/)\n" +"Language-Team: Spanish (Venezuela) (https://app.transifex.com/mate/teams/13566/es_VE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/et/et.po b/charpick/help/et/et.po index 2dbdd58a..fcf39a7c 100644 --- a/charpick/help/et/et.po +++ b/charpick/help/et/et.po @@ -10,7 +10,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: Mattias Põldaru <[email protected]>, 2019\n" -"Language-Team: Estonian (https://www.transifex.com/mate/teams/13566/et/)\n" +"Language-Team: Estonian (https://app.transifex.com/mate/teams/13566/et/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/eu/eu.po b/charpick/help/eu/eu.po index 44dde1ed..760846d7 100644 --- a/charpick/help/eu/eu.po +++ b/charpick/help/eu/eu.po @@ -11,7 +11,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: Alexander Gabilondo <[email protected]>, 2020\n" -"Language-Team: Basque (https://www.transifex.com/mate/teams/13566/eu/)\n" +"Language-Team: Basque (https://app.transifex.com/mate/teams/13566/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/fa/fa.po b/charpick/help/fa/fa.po index d797402c..a548536d 100644 --- a/charpick/help/fa/fa.po +++ b/charpick/help/fa/fa.po @@ -9,7 +9,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: Borderliner <[email protected]>, 2018\n" -"Language-Team: Persian (https://www.transifex.com/mate/teams/13566/fa/)\n" +"Language-Team: Persian (https://app.transifex.com/mate/teams/13566/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/fi/fi.po b/charpick/help/fi/fi.po index 203ac294..6f75b44e 100644 --- a/charpick/help/fi/fi.po +++ b/charpick/help/fi/fi.po @@ -12,7 +12,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: Kimmo Kujansuu <[email protected]>, 2019\n" -"Language-Team: Finnish (https://www.transifex.com/mate/teams/13566/fi/)\n" +"Language-Team: Finnish (https://app.transifex.com/mate/teams/13566/fi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/fr/fr.po b/charpick/help/fr/fr.po index c0354293..bf72ac55 100644 --- a/charpick/help/fr/fr.po +++ b/charpick/help/fr/fr.po @@ -17,7 +17,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: Stéphane PETRUS <[email protected]>, 2021\n" -"Language-Team: French (https://www.transifex.com/mate/teams/13566/fr/)\n" +"Language-Team: French (https://app.transifex.com/mate/teams/13566/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/fur/fur.po b/charpick/help/fur/fur.po index 86d47f50..08e88ce3 100644 --- a/charpick/help/fur/fur.po +++ b/charpick/help/fur/fur.po @@ -8,7 +8,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Friulian (https://www.transifex.com/mate/teams/13566/fur/)\n" +"Language-Team: Friulian (https://app.transifex.com/mate/teams/13566/fur/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/fy/fy.po b/charpick/help/fy/fy.po index bdb83ed8..0d9165ae 100644 --- a/charpick/help/fy/fy.po +++ b/charpick/help/fy/fy.po @@ -8,7 +8,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Western Frisian (https://www.transifex.com/mate/teams/13566/fy/)\n" +"Language-Team: Western Frisian (https://app.transifex.com/mate/teams/13566/fy/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/ga/ga.po b/charpick/help/ga/ga.po index e5a43e90..790fb2df 100644 --- a/charpick/help/ga/ga.po +++ b/charpick/help/ga/ga.po @@ -8,7 +8,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Irish (https://www.transifex.com/mate/teams/13566/ga/)\n" +"Language-Team: Irish (https://app.transifex.com/mate/teams/13566/ga/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/gl/gl.po b/charpick/help/gl/gl.po index 21cc4a04..8bc23682 100644 --- a/charpick/help/gl/gl.po +++ b/charpick/help/gl/gl.po @@ -11,7 +11,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: Miguel Anxo Bouzada <[email protected]>, 2021\n" -"Language-Team: Galician (https://www.transifex.com/mate/teams/13566/gl/)\n" +"Language-Team: Galician (https://app.transifex.com/mate/teams/13566/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/gu/gu.po b/charpick/help/gu/gu.po index b575492b..67bb197f 100644 --- a/charpick/help/gu/gu.po +++ b/charpick/help/gu/gu.po @@ -9,7 +9,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: Milan Savaliya <[email protected]>, 2018\n" -"Language-Team: Gujarati (https://www.transifex.com/mate/teams/13566/gu/)\n" +"Language-Team: Gujarati (https://app.transifex.com/mate/teams/13566/gu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/ha/ha.po b/charpick/help/ha/ha.po index 64417953..d849b1b1 100644 --- a/charpick/help/ha/ha.po +++ b/charpick/help/ha/ha.po @@ -8,7 +8,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Hausa (https://www.transifex.com/mate/teams/13566/ha/)\n" +"Language-Team: Hausa (https://app.transifex.com/mate/teams/13566/ha/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/he/he.po b/charpick/help/he/he.po index 4d8c06e2..68d7562e 100644 --- a/charpick/help/he/he.po +++ b/charpick/help/he/he.po @@ -3,20 +3,20 @@ # Stefano Karapetsas <[email protected]>, 2018 # Yaron Shahrabani <[email protected]>, 2020 # shy tzedaka <[email protected]>, 2020 -# Omer I.S. <[email protected]>, 2020 +# 63f334ffc0709ba0fc2361b80bf3c0f0_00ffd1e <ab96c93ca0ac55ba7fa06385427e60dd_878890>, 2020 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" -"Last-Translator: Omer I.S. <[email protected]>, 2020\n" -"Language-Team: Hebrew (https://www.transifex.com/mate/teams/13566/he/)\n" +"Last-Translator: 63f334ffc0709ba0fc2361b80bf3c0f0_00ffd1e <ab96c93ca0ac55ba7fa06385427e60dd_878890>, 2020\n" +"Language-Team: Hebrew (https://app.transifex.com/mate/teams/13566/he/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: he\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" +"Plural-Forms: nplurals=3; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" #. Put one translator per line, in the form NAME <EMAIL>, YEAR1, YEAR2 msgctxt "_" diff --git a/charpick/help/hi/hi.po b/charpick/help/hi/hi.po index 52ef5d27..35b32fd9 100644 --- a/charpick/help/hi/hi.po +++ b/charpick/help/hi/hi.po @@ -10,7 +10,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: Panwar108 <[email protected]>, 2018\n" -"Language-Team: Hindi (https://www.transifex.com/mate/teams/13566/hi/)\n" +"Language-Team: Hindi (https://app.transifex.com/mate/teams/13566/hi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/hr/hr.po b/charpick/help/hr/hr.po index c3ce48bb..f60aeecd 100644 --- a/charpick/help/hr/hr.po +++ b/charpick/help/hr/hr.po @@ -11,7 +11,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: Radovan Gundulić <[email protected]>, 2020\n" -"Language-Team: Croatian (https://www.transifex.com/mate/teams/13566/hr/)\n" +"Language-Team: Croatian (https://app.transifex.com/mate/teams/13566/hr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/hu/hu.po b/charpick/help/hu/hu.po index d917d7c7..d63e9e6c 100644 --- a/charpick/help/hu/hu.po +++ b/charpick/help/hu/hu.po @@ -13,7 +13,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: Csaba Székely <[email protected]>, 2019\n" -"Language-Team: Hungarian (https://www.transifex.com/mate/teams/13566/hu/)\n" +"Language-Team: Hungarian (https://app.transifex.com/mate/teams/13566/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/hy/hy.po b/charpick/help/hy/hy.po index 847cf079..cbe437d2 100644 --- a/charpick/help/hy/hy.po +++ b/charpick/help/hy/hy.po @@ -10,7 +10,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: Avag Sayan <[email protected]>, 2020\n" -"Language-Team: Armenian (https://www.transifex.com/mate/teams/13566/hy/)\n" +"Language-Team: Armenian (https://app.transifex.com/mate/teams/13566/hy/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/ia/ia.po b/charpick/help/ia/ia.po index 07aadda7..89ed1bd7 100644 --- a/charpick/help/ia/ia.po +++ b/charpick/help/ia/ia.po @@ -8,7 +8,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: Tea Coba <[email protected]>, 2018\n" -"Language-Team: Interlingua (https://www.transifex.com/mate/teams/13566/ia/)\n" +"Language-Team: Interlingua (https://app.transifex.com/mate/teams/13566/ia/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/id/id.po b/charpick/help/id/id.po index cca86f96..3f8d5cf6 100644 --- a/charpick/help/id/id.po +++ b/charpick/help/id/id.po @@ -5,14 +5,15 @@ # Kukuh Syafaat <[email protected]>, 2018 # Chotibul Studio <[email protected]>, 2020 # Andika Triwidada <[email protected]>, 2021 +# Reza Almanda <[email protected]>, 2022 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" -"Last-Translator: Andika Triwidada <[email protected]>, 2021\n" -"Language-Team: Indonesian (https://www.transifex.com/mate/teams/13566/id/)\n" +"Last-Translator: Reza Almanda <[email protected]>, 2022\n" +"Language-Team: Indonesian (https://app.transifex.com/mate/teams/13566/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -88,7 +89,7 @@ msgstr "Projek Dokumentasi GNOME" #. (itstool) path: authorgroup/author #: C/index.docbook:58 msgid "<firstname>MATE Documentation Team</firstname> <surname/>" -msgstr "" +msgstr "<firstname>Dokumentasi Tim MATE </firstname> <surname/>" #. (itstool) path: authorgroup/author #: C/index.docbook:62 diff --git a/charpick/help/ie/ie.po b/charpick/help/ie/ie.po index dac10eee..02894a02 100644 --- a/charpick/help/ie/ie.po +++ b/charpick/help/ie/ie.po @@ -8,7 +8,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: Caarmi, 2019\n" -"Language-Team: Interlingue (https://www.transifex.com/mate/teams/13566/ie/)\n" +"Language-Team: Interlingue (https://app.transifex.com/mate/teams/13566/ie/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/ig/ig.po b/charpick/help/ig/ig.po index 52850943..fecea069 100644 --- a/charpick/help/ig/ig.po +++ b/charpick/help/ig/ig.po @@ -8,7 +8,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Igbo (https://www.transifex.com/mate/teams/13566/ig/)\n" +"Language-Team: Igbo (https://app.transifex.com/mate/teams/13566/ig/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/is/is.po b/charpick/help/is/is.po index f4be8471..e6b7abb1 100644 --- a/charpick/help/is/is.po +++ b/charpick/help/is/is.po @@ -9,7 +9,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Icelandic (https://www.transifex.com/mate/teams/13566/is/)\n" +"Language-Team: Icelandic (https://app.transifex.com/mate/teams/13566/is/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/it/it.po b/charpick/help/it/it.po index aa4d8e95..42e47d9d 100644 --- a/charpick/help/it/it.po +++ b/charpick/help/it/it.po @@ -4,7 +4,7 @@ # Wolfgang Ulbrich <[email protected]>, 2018 # Marco Z. <[email protected]>, 2018 # andrea pittaro <[email protected]>, 2019 -# Giuseppe Pignataro <[email protected]>, 2019 +# Giuseppe Pignataro (Fastbyte01) <[email protected]>, 2019 # Enrico B. <[email protected]>, 2019 # Alessandro Volturno <[email protected]>, 2022 # @@ -14,7 +14,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: Alessandro Volturno <[email protected]>, 2022\n" -"Language-Team: Italian (https://www.transifex.com/mate/teams/13566/it/)\n" +"Language-Team: Italian (https://app.transifex.com/mate/teams/13566/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/ja/ja.po b/charpick/help/ja/ja.po index 38a04eec..2df3aaf4 100644 --- a/charpick/help/ja/ja.po +++ b/charpick/help/ja/ja.po @@ -2,16 +2,16 @@ # Translators: # Stefano Karapetsas <[email protected]>, 2018 # ABE Tsunehiko, 2018 -# Wolfgang Ulbrich <[email protected]>, 2018 -# Green, 2021 +# Green <[email protected]>, 2021 +# Wolfgang Ulbrich <[email protected]>, 2023 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" -"Last-Translator: Green, 2021\n" -"Language-Team: Japanese (https://www.transifex.com/mate/teams/13566/ja/)\n" +"Last-Translator: Wolfgang Ulbrich <[email protected]>, 2023\n" +"Language-Team: Japanese (https://app.transifex.com/mate/teams/13566/ja/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -103,8 +103,8 @@ msgid "" "<firstname>Sun</firstname> <surname>GNOME Documentation Team</surname> " "<affiliation> <orgname>Sun Microsystems</orgname> </affiliation>" msgstr "" -"<personname> <firstname>Sun</firstname> <surname>GNOME 文書化チーム </personname> " -"<affiliation> <orgname>サン・マイクロシステムズ</orgname> </affiliation>" +"<firstname>Sun</firstname> <surname>GNOME 文書化チーム </surname> <affiliation> " +"<orgname>サン・マイクロシステムズ</orgname> </affiliation>" #. (itstool) path: authorgroup/author #: C/index.docbook:69 diff --git a/charpick/help/ka/ka.po b/charpick/help/ka/ka.po index 56d74aa5..ab8cd98e 100644 --- a/charpick/help/ka/ka.po +++ b/charpick/help/ka/ka.po @@ -8,7 +8,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Georgian (https://www.transifex.com/mate/teams/13566/ka/)\n" +"Language-Team: Georgian (https://app.transifex.com/mate/teams/13566/ka/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/kab/kab.po b/charpick/help/kab/kab.po index 3789dfc4..fece733f 100644 --- a/charpick/help/kab/kab.po +++ b/charpick/help/kab/kab.po @@ -8,7 +8,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: Slimane Selyan AMIRI <[email protected]>, 2020\n" -"Language-Team: Kabyle (https://www.transifex.com/mate/teams/13566/kab/)\n" +"Language-Team: Kabyle (https://app.transifex.com/mate/teams/13566/kab/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/kk/kk.po b/charpick/help/kk/kk.po index 5278ea30..28d3ca4b 100644 --- a/charpick/help/kk/kk.po +++ b/charpick/help/kk/kk.po @@ -9,7 +9,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Kazakh (https://www.transifex.com/mate/teams/13566/kk/)\n" +"Language-Team: Kazakh (https://app.transifex.com/mate/teams/13566/kk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/kn/kn.po b/charpick/help/kn/kn.po index 1ebb3b09..a5302565 100644 --- a/charpick/help/kn/kn.po +++ b/charpick/help/kn/kn.po @@ -9,7 +9,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: karthik holla <[email protected]>, 2018\n" -"Language-Team: Kannada (https://www.transifex.com/mate/teams/13566/kn/)\n" +"Language-Team: Kannada (https://app.transifex.com/mate/teams/13566/kn/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/ko/ko.po b/charpick/help/ko/ko.po index 9c10af90..8b639ddf 100644 --- a/charpick/help/ko/ko.po +++ b/charpick/help/ko/ko.po @@ -3,15 +3,15 @@ # Stefano Karapetsas <[email protected]>, 2018 # 1763f4a4329a2376c933c5e919a36cbc_341ca53 <1f851310383599d03339229d772e1290_119292>, 2018 # Wolfgang Ulbrich <[email protected]>, 2018 -# JungHee Lee <[email protected]>, 2021 +# Junghee Lee <[email protected]>, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" -"Last-Translator: JungHee Lee <[email protected]>, 2021\n" -"Language-Team: Korean (https://www.transifex.com/mate/teams/13566/ko/)\n" +"Last-Translator: Junghee Lee <[email protected]>, 2021\n" +"Language-Team: Korean (https://app.transifex.com/mate/teams/13566/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/ku/ku.po b/charpick/help/ku/ku.po index 4e3cfa03..544f783a 100644 --- a/charpick/help/ku/ku.po +++ b/charpick/help/ku/ku.po @@ -8,7 +8,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Kurdish (https://www.transifex.com/mate/teams/13566/ku/)\n" +"Language-Team: Kurdish (https://app.transifex.com/mate/teams/13566/ku/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/ku_IQ/ku_IQ.po b/charpick/help/ku_IQ/ku_IQ.po new file mode 100644 index 00000000..d320beec --- /dev/null +++ b/charpick/help/ku_IQ/ku_IQ.po @@ -0,0 +1,655 @@ +# +# Translators: +# Rasti K5 <[email protected]>, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" +"PO-Revision-Date: 2018-09-27 15:10+0000\n" +"Last-Translator: Rasti K5 <[email protected]>, 2023\n" +"Language-Team: Kurdish (Iraq) (https://app.transifex.com/mate/teams/13566/ku_IQ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ku_IQ\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. Put one translator per line, in the form NAME <EMAIL>, YEAR1, YEAR2 +msgctxt "_" +msgid "translator-credits" +msgstr "" + +#. (itstool) path: articleinfo/title +#: C/index.docbook:21 +msgid "Character Palette Manual" +msgstr "" + +#. (itstool) path: abstract/para +#: C/index.docbook:23 +msgid "" +"Character Palette provides a convenient way to access characters that are " +"not on your keyboard, such as accented characters, mathematical symbols, " +"special symbols, and punctuation marks." +msgstr "" + +#. (itstool) path: articleinfo/copyright +#: C/index.docbook:27 +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" +msgstr "" + +#. (itstool) path: articleinfo/copyright +#: C/index.docbook:31 +msgid "<year>2005</year> <holder>Davyd Madeley</holder>" +msgstr "" + +#. (itstool) path: articleinfo/copyright +#: C/index.docbook:35 +msgid "<year>2004</year> <holder>Angela Boyle</holder>" +msgstr "" + +#. (itstool) path: articleinfo/copyright +#: C/index.docbook:39 +msgid "" +"<year>2002</year> <year>2003</year> <year>2004</year> <holder>Sun " +"Microsystems</holder>" +msgstr "" + +#. (itstool) path: articleinfo/copyright +#: C/index.docbook:44 +msgid "<year>2000</year> <holder>Dan Mueth</holder>" +msgstr "" + +#. (itstool) path: publisher/publishername +#. (itstool) path: revdescription/para +#: C/index.docbook:49 C/index.docbook:110 +msgid "MATE Documentation Project" +msgstr "" + +#. (itstool) path: publisher/publishername +#. (itstool) path: revdescription/para +#: C/index.docbook:52 C/index.docbook:125 C/index.docbook:133 +#: C/index.docbook:141 C/index.docbook:149 C/index.docbook:157 +#: C/index.docbook:165 C/index.docbook:173 C/index.docbook:182 +msgid "GNOME Documentation Project" +msgstr "" + +#. (itstool) path: authorgroup/author +#: C/index.docbook:58 +msgid "<firstname>MATE Documentation Team</firstname> <surname/>" +msgstr "" + +#. (itstool) path: authorgroup/author +#: C/index.docbook:62 +msgid "" +"<firstname>Sun</firstname> <surname>GNOME Documentation Team</surname> " +"<affiliation> <orgname>Sun Microsystems</orgname> </affiliation>" +msgstr "" + +#. (itstool) path: authorgroup/author +#: C/index.docbook:69 +msgid "" +"<firstname>Dan</firstname> <surname>Mueth</surname> <affiliation> " +"<orgname>GNOME Documentation Project</orgname> </affiliation> " +"<email>[email protected]</email>" +msgstr "" + +#. (itstool) path: authorgroup/author +#: C/index.docbook:77 +msgid "" +"<firstname>Angela</firstname> <surname>Boyle</surname> <affiliation> " +"<orgname>GNOME Documentation Project</orgname> </affiliation>" +msgstr "" + +#. (itstool) path: authorgroup/editor +#: C/index.docbook:84 +msgid "" +"<firstname>Shaun</firstname> <surname>McCance</surname> <affiliation> " +"<orgname>GNOME Documentation Project</orgname> </affiliation> " +"<email>[email protected]</email>" +msgstr "" + +#. (itstool) path: authorgroup/editor +#: C/index.docbook:92 +msgid "" +"<firstname>Davyd</firstname> <surname>Madeley</surname> <affiliation> " +"<orgname>GNOME Project</orgname> </affiliation> " +"<email>[email protected]</email>" +msgstr "" + +#. (itstool) path: revdescription/para +#: C/index.docbook:109 +msgid "MATE Documentation Team" +msgstr "" + +#. (itstool) path: revhistory/revision +#: C/index.docbook:105 +msgid "" +"<revnumber>Version 2.11</revnumber> <date>July 2015</date> " +"<_:revdescription-1/>" +msgstr "" + +#. (itstool) path: revdescription/para +#: C/index.docbook:117 +msgid "Davyd Madeley" +msgstr "" + +#. (itstool) path: revhistory/revision +#: C/index.docbook:113 +msgid "" +"<revnumber>Version 2.10</revnumber> <date>March 2005</date> " +"<_:revdescription-1/>" +msgstr "" + +#. (itstool) path: revdescription/para +#: C/index.docbook:124 +msgid "Angela Boyle" +msgstr "" + +#. (itstool) path: revhistory/revision +#: C/index.docbook:120 +msgid "" +"<revnumber>Version 2.8</revnumber> <date>Unknown</date> " +"<_:revdescription-1/>" +msgstr "" + +#. (itstool) path: revdescription/para +#: C/index.docbook:132 C/index.docbook:140 C/index.docbook:148 +#: C/index.docbook:156 C/index.docbook:164 C/index.docbook:172 +msgid "Sun Microsystems" +msgstr "" + +#. (itstool) path: revhistory/revision +#: C/index.docbook:128 +msgid "" +"<revnumber>Character Palette Applet Manual V2.6</revnumber> <date>August " +"2004</date> <_:revdescription-1/>" +msgstr "" + +#. (itstool) path: revhistory/revision +#: C/index.docbook:136 +msgid "" +"<revnumber>Character Palette Applet Manual V2.4</revnumber> <date>August " +"2003</date> <_:revdescription-1/>" +msgstr "" + +#. (itstool) path: revhistory/revision +#: C/index.docbook:144 +msgid "" +"<revnumber>Character Palette Applet Manual V2.3</revnumber> <date>October " +"2002</date> <_:revdescription-1/>" +msgstr "" + +#. (itstool) path: revhistory/revision +#: C/index.docbook:152 +msgid "" +"<revnumber>Character Palette Applet Manual V2.2</revnumber> <date>August " +"2002</date> <_:revdescription-1/>" +msgstr "" + +#. (itstool) path: revhistory/revision +#: C/index.docbook:160 +msgid "" +"<revnumber>Character Palette Applet Manual V2.1</revnumber> <date>July " +"2002</date> <_:revdescription-1/>" +msgstr "" + +#. (itstool) path: revhistory/revision +#: C/index.docbook:168 +msgid "" +"<revnumber>Character Palette Applet Manual V2.0</revnumber> <date>March " +"2002</date> <_:revdescription-1/>" +msgstr "" + +#. (itstool) path: revdescription/para +#: C/index.docbook:180 +msgid "Dan Mueth <email>[email protected]</email>" +msgstr "" + +#. (itstool) path: revhistory/revision +#: C/index.docbook:176 +msgid "" +"<revnumber>Character Picker Applet</revnumber> <date>2000</date> " +"<_:revdescription-1/>" +msgstr "" + +#. (itstool) path: articleinfo/releaseinfo +#: C/index.docbook:186 +msgid "This manual describes version 1.10.2 of Character Palette." +msgstr "" + +#. (itstool) path: legalnotice/title +#: C/index.docbook:189 +msgid "Feedback" +msgstr "پاشخورد" + +#. (itstool) path: legalnotice/para +#: C/index.docbook:190 +msgid "" +"To report a bug or make a suggestion regarding the Character Palette " +"application or this manual, follow the directions in the <ulink " +"url=\"help:mate-user-guide/feedback\" type=\"help\">MATE Feedback " +"Page</ulink>." +msgstr "" + +#. (itstool) path: article/indexterm +#: C/index.docbook:197 +msgid "<primary>Character Palette</primary>" +msgstr "" + +#. (itstool) path: sect1/title +#: C/index.docbook:202 +msgid "Introduction" +msgstr "" + +#. (itstool) path: figure/title +#: C/index.docbook:205 +msgid "Character Palette" +msgstr "" + +#. (itstool) path: imageobject/imagedata +#. This is a reference to an external file such as an image or video. When +#. the file changes, the md5 hash will change to let you know you need to +#. update your localized copy. The msgstr is not used at all. Set it to +#. whatever you like once you have updated your copy of the file. +#: C/index.docbook:209 +msgctxt "_" +msgid "" +"external ref='figures/charpalette_applet.png' " +"md5='be3ebce4695652b9bc56b604ad7fdb6e'" +msgstr "" + +#. (itstool) path: screenshot/mediaobject +#: C/index.docbook:207 +msgid "" +"<imageobject><imagedata fileref=\"figures/charpalette_applet.png\" " +"format=\"PNG\"/> </imageobject> <textobject> <phrase>Character " +"Palette</phrase> </textobject>" +msgstr "" + +#. (itstool) path: sect1/para +#: C/index.docbook:214 +msgid "" +"The <application>Character Palette</application> provides a convenient way " +"to access characters that are not on your keyboard, such as accented " +"characters, mathematical symbols, special symbols, and punctuation marks. " +"You can insert characters from the applet into text strings, for example in " +"text documents or at the command line. You can customize the contents of the" +" applet to suit your requirements." +msgstr "" + +#. (itstool) path: sect1/para +#: C/index.docbook:221 +msgid "" +"<application>Character Palette</application> supports the UTF-8 character " +"encoding so you can use the palette to display or copy any Unicode " +"character." +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:226 +msgid "To Add Character Palette to a Panel" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:227 +msgid "" +"To add <application>Character Palette</application> to a panel, perform the " +"following steps:" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:233 +msgid "Right-click on the panel." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:238 +msgid "Choose <guimenuitem>Add to Panel</guimenuitem>." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:243 +msgid "" +"Scroll down the list of items in the <guilabel>Add to Panel</guilabel> " +"dialog, then select <guilabel>Character Palette</guilabel>." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:249 +msgid "Click <guibutton>Add</guibutton>." +msgstr "" + +#. (itstool) path: sect1/title +#: C/index.docbook:258 +msgid "Getting Characters" +msgstr "" + +#. (itstool) path: sect1/para +#: C/index.docbook:259 +msgid "" +"When you add <application>Character Palette</application> to a panel for the" +" first time, the application displays a default palette of characters. You " +"can select a character from the default palette, or you can select a " +"character from predefined palettes of characters. Each predefined palette of" +" characters is associated with a standard character on your keyboard." +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:262 +msgid "To Select a Character" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:263 +msgid "" +"To select a character from the palette and insert the character into a text " +"string, perform the following steps:" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:265 +msgid "" +"In the palette, click on the character that you require. The character " +"button is pressed in to indicate that the character is selected." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:269 +msgid "" +"Point to the location in an application where you want to put the character " +"and middle-click to insert the character. You can also paste the character " +"into the application if the application allows you to paste from the " +"clipboard." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:274 +msgid "" +"You can repeat the insertion using middle-click as many times as you want " +"until you either deselect the character or select text in another " +"application. You can continue pasting the character from the clipboard until" +" you either deselect the character or copy to the clipboard from another " +"application." +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:282 +msgid "To deselect the character, click it again or click another character." +msgstr "" + +#. (itstool) path: note/para +#: C/index.docbook:284 +msgid "Some applications may not allow you to paste certain characters." +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:288 +msgid "To Display a Predefined Palette of Characters" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:289 +msgid "" +"You can change the characters that are displayed in the application from the" +" default palette to a predefined palette of characters. To display a palette" +" of predefined characters, perform the following steps:" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:292 +msgid "" +"Click on the <guibutton>Available palettes</guibutton> button on the " +"application, the down arrow on the left." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:295 +msgid "Click on the palette that you want to display." +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:298 +msgid "" +"You can select the character that you require from the palette of characters" +" that is displayed in the application, then insert the character into your " +"text string." +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:302 +msgid "Characters' Keys" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:303 +msgid "" +"The following chart lists keyboard characters and their associated groups of" +" characters. The keyboard characters are listed in the first column of each " +"section in the chart. The character groups that are associated with each " +"keyboard character are shown in the other columns." +msgstr "" + +#. (itstool) path: figure/title +#: C/index.docbook:305 +msgid "Character Groups Associated With Keyboard Keys" +msgstr "" + +#. (itstool) path: imageobject/imagedata +#. This is a reference to an external file such as an image or video. When +#. the file changes, the md5 hash will change to let you know you need to +#. update your localized copy. The msgstr is not used at all. Set it to +#. whatever you like once you have updated your copy of the file. +#: C/index.docbook:310 +msgctxt "_" +msgid "" +"external ref='figures/charpick_characters.png' " +"md5='27cda1064725bd9127561255f0590b83'" +msgstr "" + +#. (itstool) path: screenshot/mediaobject +#: C/index.docbook:307 +msgid "" +"<imageobject> <imagedata fileref=\"figures/charpick_characters.png\" " +"format=\"PNG\"/> </imageobject> <textobject> <phrase>Shows character groups " +"associated with various keyboard keys. </phrase> </textobject>" +msgstr "" + +#. (itstool) path: sect1/title +#: C/index.docbook:323 +msgid "Customizing Character Palette" +msgstr "" + +#. (itstool) path: figure/title +#: C/index.docbook:325 +msgid "Character Palette Preferences" +msgstr "" + +#. (itstool) path: imageobject/imagedata +#. This is a reference to an external file such as an image or video. When +#. the file changes, the md5 hash will change to let you know you need to +#. update your localized copy. The msgstr is not used at all. Set it to +#. whatever you like once you have updated your copy of the file. +#: C/index.docbook:329 +msgctxt "_" +msgid "" +"external ref='figures/charpick-preferences.png' " +"md5='ba55588e1ebe38cfc3d2b7bc7c2b023f'" +msgstr "" + +#. (itstool) path: screenshot/mediaobject +#: C/index.docbook:327 +msgid "" +"<imageobject><imagedata fileref=\"figures/charpick-preferences.png\" " +"format=\"PNG\"/> </imageobject> <textobject> <phrase>Character Palette " +"Preferences</phrase> </textobject>" +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:334 +msgid "Configuring Palettes" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:335 +msgid "" +"To configure <application>Character Palette</application>, right-click on " +"the applet, then choose <guimenuitem>Preferences</guimenuitem>. The " +"<guilabel>Character Palette Preferences</guilabel> dialog contains the " +"<guilabel>Palettes</guilabel> list box, which lists the palettes that are " +"available from the applet. To close the <guilabel>Character Palette " +"Preferences</guilabel> dialog, click <guibutton>Close</guibutton>." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:337 +msgid "" +"To add a new palette to the applet, click on the <guibutton>Add</guibutton> " +"button. See <xref linkend=\"charpick-default-new\"/> for more information." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:338 +msgid "" +"To delete a palette from the applet, select the palette, then click on the " +"<guibutton>Delete</guibutton> button." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:339 +msgid "" +"To modify a palette, select the palette, then click on the " +"<guibutton>Edit</guibutton> button. Modify the palette in the <guilabel>Edit" +" Palette</guilabel> dialog, then click <guibutton>OK</guibutton>." +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:343 +msgid "Setting Up a New Palette of Characters" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:344 +msgid "" +"You can use a character selection application such as <application>Character" +" Map</application> to set up a new palette of characters. For example, to " +"create a new palette with <application>Character Map</application>, perform " +"the following steps:" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:347 +msgid "" +"Right-click on the applet, then choose " +"<guimenuitem>Preferences</guimenuitem>. The <guilabel>Character Palette " +"Preferences</guilabel> dialog is displayed." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:350 +msgid "" +"Click on the <guibutton>Add</guibutton> button and the <guilabel>Add " +"Palette</guilabel> dialog is displayed." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:353 +msgid "" +"Open <application>Character Map</application>, then select the characters " +"that you want to display in the new palette. You can select up to 25 " +"characters." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:356 +msgid "" +"Copy the contents of the <guilabel>Text to copy</guilabel> text box from " +"<application>Character Map</application> to the <guilabel>Palette</guilabel>" +" text box in the <guilabel>Add Palette</guilabel> window." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:359 +msgid "Click <guibutton>OK</guibutton>." +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:362 +msgid "" +"<application>Character Palette</application> adds the new palette of " +"characters to the list of available palettes." +msgstr "" + +#. (itstool) path: para/ulink +#: C/legal.xml:9 +msgid "link" +msgstr "بەستەر" + +#. (itstool) path: legalnotice/para +#: C/legal.xml:2 +msgid "" +"Permission is granted to copy, distribute and/or modify this document under " +"the terms of the GNU Free Documentation License (GFDL), Version 1.1 or any " +"later version published by the Free Software Foundation with no Invariant " +"Sections, no Front-Cover Texts, and no Back-Cover Texts. You can find a copy" +" of the GFDL at this <_:ulink-1/> or in the file COPYING-DOCS distributed " +"with this manual." +msgstr "" + +#. (itstool) path: legalnotice/para +#: C/legal.xml:12 +msgid "" +"This manual is part of a collection of MATE manuals distributed under the " +"GFDL. If you want to distribute this manual separately from the collection, " +"you can do so by adding a copy of the license to the manual, as described in" +" section 6 of the license." +msgstr "" + +#. (itstool) path: legalnotice/para +#: C/legal.xml:19 +msgid "" +"Many of the names used by companies to distinguish their products and " +"services are claimed as trademarks. Where those names appear in any MATE " +"documentation, and the members of the MATE Documentation Project are made " +"aware of those trademarks, then the names are in capital letters or initial " +"capital letters." +msgstr "" + +#. (itstool) path: listitem/para +#: C/legal.xml:35 +msgid "" +"DOCUMENT IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, " +"EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT " +"THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS " +"MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE " +"RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR " +"MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR " +"MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL " +"WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY " +"SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN " +"ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED VERSION " +"OF THE DOCUMENT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER; AND" +msgstr "" + +#. (itstool) path: listitem/para +#: C/legal.xml:55 +msgid "" +"UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING" +" NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY " +"CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE " +"DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON " +"FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF " +"ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, " +"WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES" +" OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED " +"VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE" +" POSSIBILITY OF SUCH DAMAGES." +msgstr "" + +#. (itstool) path: legalnotice/para +#: C/legal.xml:28 +msgid "" +"DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS " +"OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: " +"<_:orderedlist-1/>" +msgstr "" diff --git a/charpick/help/ky/ky.po b/charpick/help/ky/ky.po index 14e26ee2..57c1354e 100644 --- a/charpick/help/ky/ky.po +++ b/charpick/help/ky/ky.po @@ -9,7 +9,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: 41e38594a6ab66d45dbd71e8e44a0b16_36d21e8, 2018\n" -"Language-Team: Kyrgyz (https://www.transifex.com/mate/teams/13566/ky/)\n" +"Language-Team: Kyrgyz (https://app.transifex.com/mate/teams/13566/ky/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/la/la.po b/charpick/help/la/la.po index a9dde048..7f6ba8fb 100644 --- a/charpick/help/la/la.po +++ b/charpick/help/la/la.po @@ -1,14 +1,15 @@ # # Translators: # Vendelín Slezák <[email protected]>, 2018 +# Roger Herikstad, 2023 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" -"Last-Translator: Vendelín Slezák <[email protected]>, 2018\n" -"Language-Team: Latin (https://www.transifex.com/mate/teams/13566/la/)\n" +"Last-Translator: Roger Herikstad, 2023\n" +"Language-Team: Latin (https://app.transifex.com/mate/teams/13566/la/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -583,7 +584,7 @@ msgstr "" #. (itstool) path: para/ulink #: C/legal.xml:9 msgid "link" -msgstr "" +msgstr "vinculum" #. (itstool) path: legalnotice/para #: C/legal.xml:2 diff --git a/charpick/help/lt/lt.po b/charpick/help/lt/lt.po index a78c5222..3c3a1cb8 100644 --- a/charpick/help/lt/lt.po +++ b/charpick/help/lt/lt.po @@ -10,7 +10,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: Moo, 2021\n" -"Language-Team: Lithuanian (https://www.transifex.com/mate/teams/13566/lt/)\n" +"Language-Team: Lithuanian (https://app.transifex.com/mate/teams/13566/lt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/lv/lv.po b/charpick/help/lv/lv.po index 13efa305..16c23334 100644 --- a/charpick/help/lv/lv.po +++ b/charpick/help/lv/lv.po @@ -8,7 +8,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Latvian (https://www.transifex.com/mate/teams/13566/lv/)\n" +"Language-Team: Latvian (https://app.transifex.com/mate/teams/13566/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/mai/mai.po b/charpick/help/mai/mai.po index 4279415d..6923b668 100644 --- a/charpick/help/mai/mai.po +++ b/charpick/help/mai/mai.po @@ -8,7 +8,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Maithili (https://www.transifex.com/mate/teams/13566/mai/)\n" +"Language-Team: Maithili (https://app.transifex.com/mate/teams/13566/mai/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/mg/mg.po b/charpick/help/mg/mg.po index 381e12f4..b93e2839 100644 --- a/charpick/help/mg/mg.po +++ b/charpick/help/mg/mg.po @@ -8,7 +8,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Malagasy (https://www.transifex.com/mate/teams/13566/mg/)\n" +"Language-Team: Malagasy (https://app.transifex.com/mate/teams/13566/mg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/mk/mk.po b/charpick/help/mk/mk.po index e598c5df..ec910800 100644 --- a/charpick/help/mk/mk.po +++ b/charpick/help/mk/mk.po @@ -9,7 +9,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: exoos <[email protected]>, 2018\n" -"Language-Team: Macedonian (https://www.transifex.com/mate/teams/13566/mk/)\n" +"Language-Team: Macedonian (https://app.transifex.com/mate/teams/13566/mk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/ml/ml.po b/charpick/help/ml/ml.po index 0cfd8c8b..9e04db74 100644 --- a/charpick/help/ml/ml.po +++ b/charpick/help/ml/ml.po @@ -8,7 +8,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Malayalam (https://www.transifex.com/mate/teams/13566/ml/)\n" +"Language-Team: Malayalam (https://app.transifex.com/mate/teams/13566/ml/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/mn/mn.po b/charpick/help/mn/mn.po index 8304b131..9f187be2 100644 --- a/charpick/help/mn/mn.po +++ b/charpick/help/mn/mn.po @@ -8,7 +8,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Mongolian (https://www.transifex.com/mate/teams/13566/mn/)\n" +"Language-Team: Mongolian (https://app.transifex.com/mate/teams/13566/mn/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/mr/mr.po b/charpick/help/mr/mr.po index 6e9e4894..2c961e56 100644 --- a/charpick/help/mr/mr.po +++ b/charpick/help/mr/mr.po @@ -9,7 +9,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: Vaibhav S Dalvi <[email protected]>, 2018\n" -"Language-Team: Marathi (https://www.transifex.com/mate/teams/13566/mr/)\n" +"Language-Team: Marathi (https://app.transifex.com/mate/teams/13566/mr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/ms/ms.po b/charpick/help/ms/ms.po index e9631147..99b90f4e 100644 --- a/charpick/help/ms/ms.po +++ b/charpick/help/ms/ms.po @@ -10,7 +10,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: abuyop <[email protected]>, 2021\n" -"Language-Team: Malay (https://www.transifex.com/mate/teams/13566/ms/)\n" +"Language-Team: Malay (https://app.transifex.com/mate/teams/13566/ms/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/nan/nan.po b/charpick/help/nan/nan.po new file mode 100644 index 00000000..8cacb119 --- /dev/null +++ b/charpick/help/nan/nan.po @@ -0,0 +1,655 @@ +# +# Translators: +# Tan, Kian-ting, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" +"PO-Revision-Date: 2018-09-27 15:10+0000\n" +"Last-Translator: Tan, Kian-ting, 2023\n" +"Language-Team: Chinese (Min Nan) (https://app.transifex.com/mate/teams/13566/nan/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nan\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. Put one translator per line, in the form NAME <EMAIL>, YEAR1, YEAR2 +msgctxt "_" +msgid "translator-credits" +msgstr "Tan Kian-ting <[email protected]>, 2023" + +#. (itstool) path: articleinfo/title +#: C/index.docbook:21 +msgid "Character Palette Manual" +msgstr "" + +#. (itstool) path: abstract/para +#: C/index.docbook:23 +msgid "" +"Character Palette provides a convenient way to access characters that are " +"not on your keyboard, such as accented characters, mathematical symbols, " +"special symbols, and punctuation marks." +msgstr "" + +#. (itstool) path: articleinfo/copyright +#: C/index.docbook:27 +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" +msgstr "" + +#. (itstool) path: articleinfo/copyright +#: C/index.docbook:31 +msgid "<year>2005</year> <holder>Davyd Madeley</holder>" +msgstr "" + +#. (itstool) path: articleinfo/copyright +#: C/index.docbook:35 +msgid "<year>2004</year> <holder>Angela Boyle</holder>" +msgstr "" + +#. (itstool) path: articleinfo/copyright +#: C/index.docbook:39 +msgid "" +"<year>2002</year> <year>2003</year> <year>2004</year> <holder>Sun " +"Microsystems</holder>" +msgstr "" + +#. (itstool) path: articleinfo/copyright +#: C/index.docbook:44 +msgid "<year>2000</year> <holder>Dan Mueth</holder>" +msgstr "" + +#. (itstool) path: publisher/publishername +#. (itstool) path: revdescription/para +#: C/index.docbook:49 C/index.docbook:110 +msgid "MATE Documentation Project" +msgstr "" + +#. (itstool) path: publisher/publishername +#. (itstool) path: revdescription/para +#: C/index.docbook:52 C/index.docbook:125 C/index.docbook:133 +#: C/index.docbook:141 C/index.docbook:149 C/index.docbook:157 +#: C/index.docbook:165 C/index.docbook:173 C/index.docbook:182 +msgid "GNOME Documentation Project" +msgstr "" + +#. (itstool) path: authorgroup/author +#: C/index.docbook:58 +msgid "<firstname>MATE Documentation Team</firstname> <surname/>" +msgstr "" + +#. (itstool) path: authorgroup/author +#: C/index.docbook:62 +msgid "" +"<firstname>Sun</firstname> <surname>GNOME Documentation Team</surname> " +"<affiliation> <orgname>Sun Microsystems</orgname> </affiliation>" +msgstr "" + +#. (itstool) path: authorgroup/author +#: C/index.docbook:69 +msgid "" +"<firstname>Dan</firstname> <surname>Mueth</surname> <affiliation> " +"<orgname>GNOME Documentation Project</orgname> </affiliation> " +"<email>[email protected]</email>" +msgstr "" + +#. (itstool) path: authorgroup/author +#: C/index.docbook:77 +msgid "" +"<firstname>Angela</firstname> <surname>Boyle</surname> <affiliation> " +"<orgname>GNOME Documentation Project</orgname> </affiliation>" +msgstr "" + +#. (itstool) path: authorgroup/editor +#: C/index.docbook:84 +msgid "" +"<firstname>Shaun</firstname> <surname>McCance</surname> <affiliation> " +"<orgname>GNOME Documentation Project</orgname> </affiliation> " +"<email>[email protected]</email>" +msgstr "" + +#. (itstool) path: authorgroup/editor +#: C/index.docbook:92 +msgid "" +"<firstname>Davyd</firstname> <surname>Madeley</surname> <affiliation> " +"<orgname>GNOME Project</orgname> </affiliation> " +"<email>[email protected]</email>" +msgstr "" + +#. (itstool) path: revdescription/para +#: C/index.docbook:109 +msgid "MATE Documentation Team" +msgstr "" + +#. (itstool) path: revhistory/revision +#: C/index.docbook:105 +msgid "" +"<revnumber>Version 2.11</revnumber> <date>July 2015</date> " +"<_:revdescription-1/>" +msgstr "" + +#. (itstool) path: revdescription/para +#: C/index.docbook:117 +msgid "Davyd Madeley" +msgstr "" + +#. (itstool) path: revhistory/revision +#: C/index.docbook:113 +msgid "" +"<revnumber>Version 2.10</revnumber> <date>March 2005</date> " +"<_:revdescription-1/>" +msgstr "" + +#. (itstool) path: revdescription/para +#: C/index.docbook:124 +msgid "Angela Boyle" +msgstr "" + +#. (itstool) path: revhistory/revision +#: C/index.docbook:120 +msgid "" +"<revnumber>Version 2.8</revnumber> <date>Unknown</date> " +"<_:revdescription-1/>" +msgstr "" + +#. (itstool) path: revdescription/para +#: C/index.docbook:132 C/index.docbook:140 C/index.docbook:148 +#: C/index.docbook:156 C/index.docbook:164 C/index.docbook:172 +msgid "Sun Microsystems" +msgstr "" + +#. (itstool) path: revhistory/revision +#: C/index.docbook:128 +msgid "" +"<revnumber>Character Palette Applet Manual V2.6</revnumber> <date>August " +"2004</date> <_:revdescription-1/>" +msgstr "" + +#. (itstool) path: revhistory/revision +#: C/index.docbook:136 +msgid "" +"<revnumber>Character Palette Applet Manual V2.4</revnumber> <date>August " +"2003</date> <_:revdescription-1/>" +msgstr "" + +#. (itstool) path: revhistory/revision +#: C/index.docbook:144 +msgid "" +"<revnumber>Character Palette Applet Manual V2.3</revnumber> <date>October " +"2002</date> <_:revdescription-1/>" +msgstr "" + +#. (itstool) path: revhistory/revision +#: C/index.docbook:152 +msgid "" +"<revnumber>Character Palette Applet Manual V2.2</revnumber> <date>August " +"2002</date> <_:revdescription-1/>" +msgstr "" + +#. (itstool) path: revhistory/revision +#: C/index.docbook:160 +msgid "" +"<revnumber>Character Palette Applet Manual V2.1</revnumber> <date>July " +"2002</date> <_:revdescription-1/>" +msgstr "" + +#. (itstool) path: revhistory/revision +#: C/index.docbook:168 +msgid "" +"<revnumber>Character Palette Applet Manual V2.0</revnumber> <date>March " +"2002</date> <_:revdescription-1/>" +msgstr "" + +#. (itstool) path: revdescription/para +#: C/index.docbook:180 +msgid "Dan Mueth <email>[email protected]</email>" +msgstr "" + +#. (itstool) path: revhistory/revision +#: C/index.docbook:176 +msgid "" +"<revnumber>Character Picker Applet</revnumber> <date>2000</date> " +"<_:revdescription-1/>" +msgstr "" + +#. (itstool) path: articleinfo/releaseinfo +#: C/index.docbook:186 +msgid "This manual describes version 1.10.2 of Character Palette." +msgstr "" + +#. (itstool) path: legalnotice/title +#: C/index.docbook:189 +msgid "Feedback" +msgstr "" + +#. (itstool) path: legalnotice/para +#: C/index.docbook:190 +msgid "" +"To report a bug or make a suggestion regarding the Character Palette " +"application or this manual, follow the directions in the <ulink " +"url=\"help:mate-user-guide/feedback\" type=\"help\">MATE Feedback " +"Page</ulink>." +msgstr "" + +#. (itstool) path: article/indexterm +#: C/index.docbook:197 +msgid "<primary>Character Palette</primary>" +msgstr "" + +#. (itstool) path: sect1/title +#: C/index.docbook:202 +msgid "Introduction" +msgstr "" + +#. (itstool) path: figure/title +#: C/index.docbook:205 +msgid "Character Palette" +msgstr "" + +#. (itstool) path: imageobject/imagedata +#. This is a reference to an external file such as an image or video. When +#. the file changes, the md5 hash will change to let you know you need to +#. update your localized copy. The msgstr is not used at all. Set it to +#. whatever you like once you have updated your copy of the file. +#: C/index.docbook:209 +msgctxt "_" +msgid "" +"external ref='figures/charpalette_applet.png' " +"md5='be3ebce4695652b9bc56b604ad7fdb6e'" +msgstr "" + +#. (itstool) path: screenshot/mediaobject +#: C/index.docbook:207 +msgid "" +"<imageobject><imagedata fileref=\"figures/charpalette_applet.png\" " +"format=\"PNG\"/> </imageobject> <textobject> <phrase>Character " +"Palette</phrase> </textobject>" +msgstr "" + +#. (itstool) path: sect1/para +#: C/index.docbook:214 +msgid "" +"The <application>Character Palette</application> provides a convenient way " +"to access characters that are not on your keyboard, such as accented " +"characters, mathematical symbols, special symbols, and punctuation marks. " +"You can insert characters from the applet into text strings, for example in " +"text documents or at the command line. You can customize the contents of the" +" applet to suit your requirements." +msgstr "" + +#. (itstool) path: sect1/para +#: C/index.docbook:221 +msgid "" +"<application>Character Palette</application> supports the UTF-8 character " +"encoding so you can use the palette to display or copy any Unicode " +"character." +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:226 +msgid "To Add Character Palette to a Panel" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:227 +msgid "" +"To add <application>Character Palette</application> to a panel, perform the " +"following steps:" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:233 +msgid "Right-click on the panel." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:238 +msgid "Choose <guimenuitem>Add to Panel</guimenuitem>." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:243 +msgid "" +"Scroll down the list of items in the <guilabel>Add to Panel</guilabel> " +"dialog, then select <guilabel>Character Palette</guilabel>." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:249 +msgid "Click <guibutton>Add</guibutton>." +msgstr "" + +#. (itstool) path: sect1/title +#: C/index.docbook:258 +msgid "Getting Characters" +msgstr "" + +#. (itstool) path: sect1/para +#: C/index.docbook:259 +msgid "" +"When you add <application>Character Palette</application> to a panel for the" +" first time, the application displays a default palette of characters. You " +"can select a character from the default palette, or you can select a " +"character from predefined palettes of characters. Each predefined palette of" +" characters is associated with a standard character on your keyboard." +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:262 +msgid "To Select a Character" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:263 +msgid "" +"To select a character from the palette and insert the character into a text " +"string, perform the following steps:" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:265 +msgid "" +"In the palette, click on the character that you require. The character " +"button is pressed in to indicate that the character is selected." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:269 +msgid "" +"Point to the location in an application where you want to put the character " +"and middle-click to insert the character. You can also paste the character " +"into the application if the application allows you to paste from the " +"clipboard." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:274 +msgid "" +"You can repeat the insertion using middle-click as many times as you want " +"until you either deselect the character or select text in another " +"application. You can continue pasting the character from the clipboard until" +" you either deselect the character or copy to the clipboard from another " +"application." +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:282 +msgid "To deselect the character, click it again or click another character." +msgstr "" + +#. (itstool) path: note/para +#: C/index.docbook:284 +msgid "Some applications may not allow you to paste certain characters." +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:288 +msgid "To Display a Predefined Palette of Characters" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:289 +msgid "" +"You can change the characters that are displayed in the application from the" +" default palette to a predefined palette of characters. To display a palette" +" of predefined characters, perform the following steps:" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:292 +msgid "" +"Click on the <guibutton>Available palettes</guibutton> button on the " +"application, the down arrow on the left." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:295 +msgid "Click on the palette that you want to display." +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:298 +msgid "" +"You can select the character that you require from the palette of characters" +" that is displayed in the application, then insert the character into your " +"text string." +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:302 +msgid "Characters' Keys" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:303 +msgid "" +"The following chart lists keyboard characters and their associated groups of" +" characters. The keyboard characters are listed in the first column of each " +"section in the chart. The character groups that are associated with each " +"keyboard character are shown in the other columns." +msgstr "" + +#. (itstool) path: figure/title +#: C/index.docbook:305 +msgid "Character Groups Associated With Keyboard Keys" +msgstr "" + +#. (itstool) path: imageobject/imagedata +#. This is a reference to an external file such as an image or video. When +#. the file changes, the md5 hash will change to let you know you need to +#. update your localized copy. The msgstr is not used at all. Set it to +#. whatever you like once you have updated your copy of the file. +#: C/index.docbook:310 +msgctxt "_" +msgid "" +"external ref='figures/charpick_characters.png' " +"md5='27cda1064725bd9127561255f0590b83'" +msgstr "" + +#. (itstool) path: screenshot/mediaobject +#: C/index.docbook:307 +msgid "" +"<imageobject> <imagedata fileref=\"figures/charpick_characters.png\" " +"format=\"PNG\"/> </imageobject> <textobject> <phrase>Shows character groups " +"associated with various keyboard keys. </phrase> </textobject>" +msgstr "" + +#. (itstool) path: sect1/title +#: C/index.docbook:323 +msgid "Customizing Character Palette" +msgstr "" + +#. (itstool) path: figure/title +#: C/index.docbook:325 +msgid "Character Palette Preferences" +msgstr "" + +#. (itstool) path: imageobject/imagedata +#. This is a reference to an external file such as an image or video. When +#. the file changes, the md5 hash will change to let you know you need to +#. update your localized copy. The msgstr is not used at all. Set it to +#. whatever you like once you have updated your copy of the file. +#: C/index.docbook:329 +msgctxt "_" +msgid "" +"external ref='figures/charpick-preferences.png' " +"md5='ba55588e1ebe38cfc3d2b7bc7c2b023f'" +msgstr "" + +#. (itstool) path: screenshot/mediaobject +#: C/index.docbook:327 +msgid "" +"<imageobject><imagedata fileref=\"figures/charpick-preferences.png\" " +"format=\"PNG\"/> </imageobject> <textobject> <phrase>Character Palette " +"Preferences</phrase> </textobject>" +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:334 +msgid "Configuring Palettes" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:335 +msgid "" +"To configure <application>Character Palette</application>, right-click on " +"the applet, then choose <guimenuitem>Preferences</guimenuitem>. The " +"<guilabel>Character Palette Preferences</guilabel> dialog contains the " +"<guilabel>Palettes</guilabel> list box, which lists the palettes that are " +"available from the applet. To close the <guilabel>Character Palette " +"Preferences</guilabel> dialog, click <guibutton>Close</guibutton>." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:337 +msgid "" +"To add a new palette to the applet, click on the <guibutton>Add</guibutton> " +"button. See <xref linkend=\"charpick-default-new\"/> for more information." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:338 +msgid "" +"To delete a palette from the applet, select the palette, then click on the " +"<guibutton>Delete</guibutton> button." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:339 +msgid "" +"To modify a palette, select the palette, then click on the " +"<guibutton>Edit</guibutton> button. Modify the palette in the <guilabel>Edit" +" Palette</guilabel> dialog, then click <guibutton>OK</guibutton>." +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:343 +msgid "Setting Up a New Palette of Characters" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:344 +msgid "" +"You can use a character selection application such as <application>Character" +" Map</application> to set up a new palette of characters. For example, to " +"create a new palette with <application>Character Map</application>, perform " +"the following steps:" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:347 +msgid "" +"Right-click on the applet, then choose " +"<guimenuitem>Preferences</guimenuitem>. The <guilabel>Character Palette " +"Preferences</guilabel> dialog is displayed." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:350 +msgid "" +"Click on the <guibutton>Add</guibutton> button and the <guilabel>Add " +"Palette</guilabel> dialog is displayed." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:353 +msgid "" +"Open <application>Character Map</application>, then select the characters " +"that you want to display in the new palette. You can select up to 25 " +"characters." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:356 +msgid "" +"Copy the contents of the <guilabel>Text to copy</guilabel> text box from " +"<application>Character Map</application> to the <guilabel>Palette</guilabel>" +" text box in the <guilabel>Add Palette</guilabel> window." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:359 +msgid "Click <guibutton>OK</guibutton>." +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:362 +msgid "" +"<application>Character Palette</application> adds the new palette of " +"characters to the list of available palettes." +msgstr "" + +#. (itstool) path: para/ulink +#: C/legal.xml:9 +msgid "link" +msgstr "連結" + +#. (itstool) path: legalnotice/para +#: C/legal.xml:2 +msgid "" +"Permission is granted to copy, distribute and/or modify this document under " +"the terms of the GNU Free Documentation License (GFDL), Version 1.1 or any " +"later version published by the Free Software Foundation with no Invariant " +"Sections, no Front-Cover Texts, and no Back-Cover Texts. You can find a copy" +" of the GFDL at this <_:ulink-1/> or in the file COPYING-DOCS distributed " +"with this manual." +msgstr "" + +#. (itstool) path: legalnotice/para +#: C/legal.xml:12 +msgid "" +"This manual is part of a collection of MATE manuals distributed under the " +"GFDL. If you want to distribute this manual separately from the collection, " +"you can do so by adding a copy of the license to the manual, as described in" +" section 6 of the license." +msgstr "" + +#. (itstool) path: legalnotice/para +#: C/legal.xml:19 +msgid "" +"Many of the names used by companies to distinguish their products and " +"services are claimed as trademarks. Where those names appear in any MATE " +"documentation, and the members of the MATE Documentation Project are made " +"aware of those trademarks, then the names are in capital letters or initial " +"capital letters." +msgstr "" + +#. (itstool) path: listitem/para +#: C/legal.xml:35 +msgid "" +"DOCUMENT IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, " +"EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT " +"THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS " +"MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE " +"RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR " +"MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR " +"MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL " +"WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY " +"SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN " +"ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED VERSION " +"OF THE DOCUMENT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER; AND" +msgstr "" + +#. (itstool) path: listitem/para +#: C/legal.xml:55 +msgid "" +"UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING" +" NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY " +"CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE " +"DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON " +"FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF " +"ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, " +"WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES" +" OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED " +"VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE" +" POSSIBILITY OF SUCH DAMAGES." +msgstr "" + +#. (itstool) path: legalnotice/para +#: C/legal.xml:28 +msgid "" +"DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS " +"OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: " +"<_:orderedlist-1/>" +msgstr "" diff --git a/charpick/help/nb/nb.po b/charpick/help/nb/nb.po index 0a271408..ae3de2dc 100644 --- a/charpick/help/nb/nb.po +++ b/charpick/help/nb/nb.po @@ -3,7 +3,7 @@ # Stefano Karapetsas <[email protected]>, 2018 # Allan Nordhøy <[email protected]>, 2018 # Imre Kristoffer Eilertsen <[email protected]>, 2018 -# heskjestad <[email protected]>, 2019 +# Kaci Heskjestad, 2019 # Jan Sherdahl, 2021 # msgid "" @@ -12,7 +12,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: Jan Sherdahl, 2021\n" -"Language-Team: Norwegian Bokmål (https://www.transifex.com/mate/teams/13566/nb/)\n" +"Language-Team: Norwegian Bokmål (https://app.transifex.com/mate/teams/13566/nb/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/nds/nds.po b/charpick/help/nds/nds.po index 1ab3b97a..7d0ded90 100644 --- a/charpick/help/nds/nds.po +++ b/charpick/help/nds/nds.po @@ -8,7 +8,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Low German (https://www.transifex.com/mate/teams/13566/nds/)\n" +"Language-Team: Low German (https://app.transifex.com/mate/teams/13566/nds/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/ne/ne.po b/charpick/help/ne/ne.po index 6d17aecc..2ef80f29 100644 --- a/charpick/help/ne/ne.po +++ b/charpick/help/ne/ne.po @@ -9,7 +9,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: chautari <[email protected]>, 2018\n" -"Language-Team: Nepali (https://www.transifex.com/mate/teams/13566/ne/)\n" +"Language-Team: Nepali (https://app.transifex.com/mate/teams/13566/ne/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/nl/nl.po b/charpick/help/nl/nl.po index 1433f34a..c467934e 100644 --- a/charpick/help/nl/nl.po +++ b/charpick/help/nl/nl.po @@ -12,7 +12,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: kaasknak, 2021\n" -"Language-Team: Dutch (https://www.transifex.com/mate/teams/13566/nl/)\n" +"Language-Team: Dutch (https://app.transifex.com/mate/teams/13566/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/nn/nn.po b/charpick/help/nn/nn.po index 4e69d678..208a7f2b 100644 --- a/charpick/help/nn/nn.po +++ b/charpick/help/nn/nn.po @@ -10,7 +10,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: Andrew Rabbitt <[email protected]>, 2020\n" -"Language-Team: Norwegian Nynorsk (https://www.transifex.com/mate/teams/13566/nn/)\n" +"Language-Team: Norwegian Nynorsk (https://app.transifex.com/mate/teams/13566/nn/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/nso/nso.po b/charpick/help/nso/nso.po index a5037526..ba577521 100644 --- a/charpick/help/nso/nso.po +++ b/charpick/help/nso/nso.po @@ -8,7 +8,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Northern Sotho (https://www.transifex.com/mate/teams/13566/nso/)\n" +"Language-Team: Northern Sotho (https://app.transifex.com/mate/teams/13566/nso/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/oc/oc.po b/charpick/help/oc/oc.po index d3ac8c0b..1d00c988 100644 --- a/charpick/help/oc/oc.po +++ b/charpick/help/oc/oc.po @@ -2,16 +2,15 @@ # Translators: # Stefano Karapetsas <[email protected]>, 2018 # Wolfgang Ulbrich <[email protected]>, 2018 -# 48c2de07903ce5a77a8e90265f95c4c2_8909374 <837c8d0ab97b27e737893c19f79bd4de_348476>, 2018 -# Quentin PAGÈS, 2021 +# Quentin PAGÈS, 2023 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" -"Last-Translator: Quentin PAGÈS, 2021\n" -"Language-Team: Occitan (post 1500) (https://www.transifex.com/mate/teams/13566/oc/)\n" +"Last-Translator: Quentin PAGÈS, 2023\n" +"Language-Team: Occitan (post 1500) (https://app.transifex.com/mate/teams/13566/oc/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -23,7 +22,7 @@ msgctxt "_" msgid "translator-credits" msgstr "" "Yannig Marchegay (Kokoyaya) <[email protected]> & Cédric Valmary " -"(totenoc.eu) <[email protected]>" +"(totenoc.eu) <[email protected]>, Quentin PAGÈS" #. (itstool) path: articleinfo/title #: C/index.docbook:21 diff --git a/charpick/help/or/or.po b/charpick/help/or/or.po index 11e65289..27a1dbca 100644 --- a/charpick/help/or/or.po +++ b/charpick/help/or/or.po @@ -8,7 +8,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Odia (https://www.transifex.com/mate/teams/13566/or/)\n" +"Language-Team: Odia (https://app.transifex.com/mate/teams/13566/or/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/pa/pa.po b/charpick/help/pa/pa.po index 2a3222af..9b14d97d 100644 --- a/charpick/help/pa/pa.po +++ b/charpick/help/pa/pa.po @@ -9,7 +9,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: Wolfgang Ulbrich <[email protected]>, 2018\n" -"Language-Team: Panjabi (Punjabi) (https://www.transifex.com/mate/teams/13566/pa/)\n" +"Language-Team: Panjabi (Punjabi) (https://app.transifex.com/mate/teams/13566/pa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/pl/pl.po b/charpick/help/pl/pl.po index cf30a67b..44e8eca9 100644 --- a/charpick/help/pl/pl.po +++ b/charpick/help/pl/pl.po @@ -17,7 +17,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: Daniel Tokarzewski <[email protected]>, 2021\n" -"Language-Team: Polish (https://www.transifex.com/mate/teams/13566/pl/)\n" +"Language-Team: Polish (https://app.transifex.com/mate/teams/13566/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/ps/ps.po b/charpick/help/ps/ps.po index e14ade28..2e036e6d 100644 --- a/charpick/help/ps/ps.po +++ b/charpick/help/ps/ps.po @@ -8,7 +8,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Pashto (https://www.transifex.com/mate/teams/13566/ps/)\n" +"Language-Team: Pashto (https://app.transifex.com/mate/teams/13566/ps/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/pt/pt.po b/charpick/help/pt/pt.po index 68ce91b2..aa09afc6 100644 --- a/charpick/help/pt/pt.po +++ b/charpick/help/pt/pt.po @@ -14,7 +14,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: José Vieira <[email protected]>, 2021\n" -"Language-Team: Portuguese (https://www.transifex.com/mate/teams/13566/pt/)\n" +"Language-Team: Portuguese (https://app.transifex.com/mate/teams/13566/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/pt_BR/pt_BR.po b/charpick/help/pt_BR/pt_BR.po index ae77c6ce..061ba552 100644 --- a/charpick/help/pt_BR/pt_BR.po +++ b/charpick/help/pt_BR/pt_BR.po @@ -20,7 +20,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: Luciano Luck, 2022\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/mate/teams/13566/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (https://app.transifex.com/mate/teams/13566/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/ro/ro.po b/charpick/help/ro/ro.po index 13f2ff0d..15414cab 100644 --- a/charpick/help/ro/ro.po +++ b/charpick/help/ro/ro.po @@ -10,7 +10,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: sidro <[email protected]>, 2021\n" -"Language-Team: Romanian (https://www.transifex.com/mate/teams/13566/ro/)\n" +"Language-Team: Romanian (https://app.transifex.com/mate/teams/13566/ro/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/ru/ru.po b/charpick/help/ru/ru.po index fcb5a187..dc5f046a 100644 --- a/charpick/help/ru/ru.po +++ b/charpick/help/ru/ru.po @@ -9,15 +9,16 @@ # Александр Кураченко <[email protected]>, 2019 # Aleksey Kabanov <[email protected]>, 2020 # Иван Л. <[email protected]>, 2021 -# Ser82, 2022 +# Andrei Stepanov, 2022 +# Sergej A. <[email protected]>, 2022 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" -"Last-Translator: Ser82, 2022\n" -"Language-Team: Russian (https://www.transifex.com/mate/teams/13566/ru/)\n" +"Last-Translator: Sergej A. <[email protected]>, 2022\n" +"Language-Team: Russian (https://app.transifex.com/mate/teams/13566/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -513,6 +514,9 @@ msgid "" " default palette to a predefined palette of characters. To display a palette" " of predefined characters, perform the following steps:" msgstr "" +"Вы можете изменить отображаемые приложением символы из шаблона по умолчанию " +"в символы доступных шаблонов. Чтобы отобразить символы доступных шаблонов, " +"выполните следующие действия:" #. (itstool) path: listitem/para #: C/index.docbook:292 @@ -520,11 +524,12 @@ msgid "" "Click on the <guibutton>Available palettes</guibutton> button on the " "application, the down arrow on the left." msgstr "" +"Щёлкните в апплете по кнопке <guibutton>Доступные шаблоны</guibutton>." #. (itstool) path: listitem/para #: C/index.docbook:295 msgid "Click on the palette that you want to display." -msgstr "" +msgstr "Щёлкните по палитре, которую вы хотите отобразить." #. (itstool) path: sect2/para #: C/index.docbook:298 @@ -533,6 +538,8 @@ msgid "" " that is displayed in the application, then insert the character into your " "text string." msgstr "" +"Вы можете выбрать нужный символ из шаблона отображаемых в апплете символов, " +"затем вставить его в текстовую строку." #. (itstool) path: sect2/title #: C/index.docbook:302 @@ -547,6 +554,10 @@ msgid "" "section in the chart. The character groups that are associated with each " "keyboard character are shown in the other columns." msgstr "" +"Следующая таблица показывает символы клавиатуры и связанные с ними группы " +"символов. Символы клавиатуры перечислены в первой колонке каждой секции. " +"Группы символов, относящиеся к каждому символу клавиатуры, показаны в другой" +" колонке." #. (itstool) path: figure/title #: C/index.docbook:305 @@ -629,6 +640,13 @@ msgid "" "available from the applet. To close the <guilabel>Character Palette " "Preferences</guilabel> dialog, click <guibutton>Close</guibutton>." msgstr "" +"Чтобы настроить <application>Кассу символов</application>, щёлкните правой " +"кнопкой мыши на апплете, затем выберите " +"<guimenuitem>Параметры</guimenuitem>. Диалоговое окно <guilabel>Параметры " +"«Кассы символов»</guilabel> содержит список <guilabel>Шаблонов</guilabel>, " +"который содержит доступные шаблоны из апплета. Чтобы закрыть диалоговое окно" +" <guilabel>Параметры «Кассы символов»</guilabel>, нажмите " +"<guibutton>Закрыть</guibutton>." #. (itstool) path: listitem/para #: C/index.docbook:337 @@ -656,11 +674,15 @@ msgid "" "<guibutton>Edit</guibutton> button. Modify the palette in the <guilabel>Edit" " Palette</guilabel> dialog, then click <guibutton>OK</guibutton>." msgstr "" +"Чтобы изменить шаблон, выберите его, затем нажмите кнопку " +"<guibutton>Изменить</guibutton>. Отредактируйте шаблон в диалоговом окне " +"<guilabel>Редактирование шаблона</guilabel>, затем нажмите " +"<guibutton>OK</guibutton>." #. (itstool) path: sect2/title #: C/index.docbook:343 msgid "Setting Up a New Palette of Characters" -msgstr "" +msgstr "Настраивается новая палитра символов" #. (itstool) path: sect2/para #: C/index.docbook:344 @@ -670,6 +692,10 @@ msgid "" "create a new palette with <application>Character Map</application>, perform " "the following steps:" msgstr "" +"Вы можете использовать приложение для выбора символов, такое, как " +"<application>Таблица символов</application>, чтобы установить новый шаблон " +"символов. Например, чтобы создать новый шаблон с помощью " +"<application>Таблицы символов</application>, выполните следующие действия:" #. (itstool) path: listitem/para #: C/index.docbook:347 @@ -678,6 +704,9 @@ msgid "" "<guimenuitem>Preferences</guimenuitem>. The <guilabel>Character Palette " "Preferences</guilabel> dialog is displayed." msgstr "" +"Правой кнопкой мыши щёлкните по апплету, затем выберите " +"<guimenuitem>Параметры</guimenuitem>. Откроется диалоговое окно " +"<guilabel>Параметры «Кассы символов»</guilabel>." #. (itstool) path: listitem/para #: C/index.docbook:350 @@ -685,6 +714,8 @@ msgid "" "Click on the <guibutton>Add</guibutton> button and the <guilabel>Add " "Palette</guilabel> dialog is displayed." msgstr "" +"Нажмите кнопку <guibutton>Добавить</guibutton> и будет показан диалог " +"<guilabel>Добавить палитру</guilabel>." #. (itstool) path: listitem/para #: C/index.docbook:353 @@ -693,6 +724,9 @@ msgid "" "that you want to display in the new palette. You can select up to 25 " "characters." msgstr "" +"Откройте <application>Таблицу символов</application>, затем выберите " +"символы, которые хотите отобразить в новой палитре. Вы можете выбрать до 25 " +"символов." #. (itstool) path: listitem/para #: C/index.docbook:356 @@ -701,6 +735,10 @@ msgid "" "<application>Character Map</application> to the <guilabel>Palette</guilabel>" " text box in the <guilabel>Add Palette</guilabel> window." msgstr "" +"Копируйте содержимое текстового блока <guilabel>Текст для " +"копирования</guilabel> из <application>Таблицы символов</application> в " +"текстовое поле <guilabel>Шаблон</guilabel> в окне <guilabel>Добавление " +"шаблона</guilabel>." #. (itstool) path: listitem/para #: C/index.docbook:359 diff --git a/charpick/help/si/si.po b/charpick/help/si/si.po index 5a1239c4..42560cd9 100644 --- a/charpick/help/si/si.po +++ b/charpick/help/si/si.po @@ -8,7 +8,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Sinhala (https://www.transifex.com/mate/teams/13566/si/)\n" +"Language-Team: Sinhala (https://app.transifex.com/mate/teams/13566/si/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/sk/sk.po b/charpick/help/sk/sk.po index 9890bdeb..dc909145 100644 --- a/charpick/help/sk/sk.po +++ b/charpick/help/sk/sk.po @@ -11,7 +11,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: Ján Ďanovský <[email protected]>, 2020\n" -"Language-Team: Slovak (https://www.transifex.com/mate/teams/13566/sk/)\n" +"Language-Team: Slovak (https://app.transifex.com/mate/teams/13566/sk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/sl/sl.po b/charpick/help/sl/sl.po index 8dfc891d..b44ae017 100644 --- a/charpick/help/sl/sl.po +++ b/charpick/help/sl/sl.po @@ -11,7 +11,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: Damir Mevkić 52K <[email protected]>, 2020\n" -"Language-Team: Slovenian (https://www.transifex.com/mate/teams/13566/sl/)\n" +"Language-Team: Slovenian (https://app.transifex.com/mate/teams/13566/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/sq/sq.po b/charpick/help/sq/sq.po index 2c8ee841..d6426601 100644 --- a/charpick/help/sq/sq.po +++ b/charpick/help/sq/sq.po @@ -11,7 +11,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: Ardit Dani <[email protected]>, 2021\n" -"Language-Team: Albanian (https://www.transifex.com/mate/teams/13566/sq/)\n" +"Language-Team: Albanian (https://app.transifex.com/mate/teams/13566/sq/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/sr/sr.po b/charpick/help/sr/sr.po index c7d41301..c99debe7 100644 --- a/charpick/help/sr/sr.po +++ b/charpick/help/sr/sr.po @@ -9,7 +9,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: Мирослав Николић <[email protected]>, 2021\n" -"Language-Team: Serbian (https://www.transifex.com/mate/teams/13566/sr/)\n" +"Language-Team: Serbian (https://app.transifex.com/mate/teams/13566/sr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/sr@latin/[email protected] b/charpick/help/sr@latin/[email protected] index 64d2dd85..d2ceb13c 100644 --- a/charpick/help/sr@latin/[email protected] +++ b/charpick/help/sr@latin/[email protected] @@ -9,7 +9,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: Ivan Pejić <[email protected]>, 2018\n" -"Language-Team: Serbian (Latin) (https://www.transifex.com/mate/teams/13566/sr@latin/)\n" +"Language-Team: Serbian (Latin) (https://app.transifex.com/mate/teams/13566/sr@latin/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/sv/sv.po b/charpick/help/sv/sv.po index 88e228d0..a2e8f6f4 100644 --- a/charpick/help/sv/sv.po +++ b/charpick/help/sv/sv.po @@ -5,7 +5,7 @@ # Daniel Gullbransen, 2018 # crash <[email protected]>, 2019 # eckeman <[email protected]>, 2020 -# Luna Jernberg <[email protected]>, 2021 +# Luna Jernberg <[email protected]>, 2021 # Kristoffer Grundström <[email protected]>, 2021 # msgid "" @@ -14,7 +14,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: Kristoffer Grundström <[email protected]>, 2021\n" -"Language-Team: Swedish (https://www.transifex.com/mate/teams/13566/sv/)\n" +"Language-Team: Swedish (https://app.transifex.com/mate/teams/13566/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/ta/ta.po b/charpick/help/ta/ta.po index 74c1ba4e..8604e1f9 100644 --- a/charpick/help/ta/ta.po +++ b/charpick/help/ta/ta.po @@ -8,7 +8,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Tamil (https://www.transifex.com/mate/teams/13566/ta/)\n" +"Language-Team: Tamil (https://app.transifex.com/mate/teams/13566/ta/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/te/te.po b/charpick/help/te/te.po index 55371ce8..d5835df9 100644 --- a/charpick/help/te/te.po +++ b/charpick/help/te/te.po @@ -9,7 +9,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Telugu (https://www.transifex.com/mate/teams/13566/te/)\n" +"Language-Team: Telugu (https://app.transifex.com/mate/teams/13566/te/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/th/th.po b/charpick/help/th/th.po index 7d1fdb69..fe58465b 100644 --- a/charpick/help/th/th.po +++ b/charpick/help/th/th.po @@ -10,7 +10,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: Akom <[email protected]>, 2018\n" -"Language-Team: Thai (https://www.transifex.com/mate/teams/13566/th/)\n" +"Language-Team: Thai (https://app.transifex.com/mate/teams/13566/th/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/tr/tr.po b/charpick/help/tr/tr.po index fd9b29e4..87e8538a 100644 --- a/charpick/help/tr/tr.po +++ b/charpick/help/tr/tr.po @@ -14,7 +14,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: Gurbuzguven <[email protected]>, 2021\n" -"Language-Team: Turkish (https://www.transifex.com/mate/teams/13566/tr/)\n" +"Language-Team: Turkish (https://app.transifex.com/mate/teams/13566/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/ug/ug.po b/charpick/help/ug/ug.po index 19c546bb..480df4a4 100644 --- a/charpick/help/ug/ug.po +++ b/charpick/help/ug/ug.po @@ -8,7 +8,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Uyghur (https://www.transifex.com/mate/teams/13566/ug/)\n" +"Language-Team: Uyghur (https://app.transifex.com/mate/teams/13566/ug/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/uk/uk.po b/charpick/help/uk/uk.po index 101c021c..01c7d31d 100644 --- a/charpick/help/uk/uk.po +++ b/charpick/help/uk/uk.po @@ -12,7 +12,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: Sergiy <[email protected]>, 2022\n" -"Language-Team: Ukrainian (https://www.transifex.com/mate/teams/13566/uk/)\n" +"Language-Team: Ukrainian (https://app.transifex.com/mate/teams/13566/uk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/ur/ur.po b/charpick/help/ur/ur.po index 8d60bf50..3c6da45b 100644 --- a/charpick/help/ur/ur.po +++ b/charpick/help/ur/ur.po @@ -8,7 +8,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: mauron, 2018\n" -"Language-Team: Urdu (https://www.transifex.com/mate/teams/13566/ur/)\n" +"Language-Team: Urdu (https://app.transifex.com/mate/teams/13566/ur/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/uz/uz.po b/charpick/help/uz/uz.po index f568893f..f1a3fc5f 100644 --- a/charpick/help/uz/uz.po +++ b/charpick/help/uz/uz.po @@ -9,7 +9,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: Muzaffar Habibullayev <[email protected]>, 2018\n" -"Language-Team: Uzbek (https://www.transifex.com/mate/teams/13566/uz/)\n" +"Language-Team: Uzbek (https://app.transifex.com/mate/teams/13566/uz/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/vi/vi.po b/charpick/help/vi/vi.po index e9f0b57c..8300904e 100644 --- a/charpick/help/vi/vi.po +++ b/charpick/help/vi/vi.po @@ -9,7 +9,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: Duy Truong Nguyen <[email protected]>, 2018\n" -"Language-Team: Vietnamese (https://www.transifex.com/mate/teams/13566/vi/)\n" +"Language-Team: Vietnamese (https://app.transifex.com/mate/teams/13566/vi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/wa/wa.po b/charpick/help/wa/wa.po index 1fe42d5e..41725fbc 100644 --- a/charpick/help/wa/wa.po +++ b/charpick/help/wa/wa.po @@ -8,7 +8,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Walloon (https://www.transifex.com/mate/teams/13566/wa/)\n" +"Language-Team: Walloon (https://app.transifex.com/mate/teams/13566/wa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/xh/xh.po b/charpick/help/xh/xh.po index b7439588..8996889f 100644 --- a/charpick/help/xh/xh.po +++ b/charpick/help/xh/xh.po @@ -8,7 +8,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Xhosa (https://www.transifex.com/mate/teams/13566/xh/)\n" +"Language-Team: Xhosa (https://app.transifex.com/mate/teams/13566/xh/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/yo/yo.po b/charpick/help/yo/yo.po index 28ca11f9..832da29a 100644 --- a/charpick/help/yo/yo.po +++ b/charpick/help/yo/yo.po @@ -8,7 +8,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Yoruba (https://www.transifex.com/mate/teams/13566/yo/)\n" +"Language-Team: Yoruba (https://app.transifex.com/mate/teams/13566/yo/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/zh-Hans/zh-Hans.po b/charpick/help/zh-Hans/zh-Hans.po index e864997d..94c2c71c 100644 --- a/charpick/help/zh-Hans/zh-Hans.po +++ b/charpick/help/zh-Hans/zh-Hans.po @@ -9,7 +9,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: 敏超 马 <[email protected]>, 2021\n" -"Language-Team: Chinese Simplified (https://www.transifex.com/mate/teams/13566/zh-Hans/)\n" +"Language-Team: Chinese Simplified (https://app.transifex.com/mate/teams/13566/zh-Hans/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/zh_CN/zh_CN.po b/charpick/help/zh_CN/zh_CN.po index 3994dd56..d70d0f99 100644 --- a/charpick/help/zh_CN/zh_CN.po +++ b/charpick/help/zh_CN/zh_CN.po @@ -16,7 +16,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: OkayPJ <[email protected]>, 2021\n" -"Language-Team: Chinese (China) (https://www.transifex.com/mate/teams/13566/zh_CN/)\n" +"Language-Team: Chinese (China) (https://app.transifex.com/mate/teams/13566/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/zh_HK/zh_HK.po b/charpick/help/zh_HK/zh_HK.po index e292ae97..a3fd0c1c 100644 --- a/charpick/help/zh_HK/zh_HK.po +++ b/charpick/help/zh_HK/zh_HK.po @@ -8,7 +8,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Chinese (Hong Kong) (https://www.transifex.com/mate/teams/13566/zh_HK/)\n" +"Language-Team: Chinese (Hong Kong) (https://app.transifex.com/mate/teams/13566/zh_HK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/zh_TW/zh_TW.po b/charpick/help/zh_TW/zh_TW.po index 4d5dfea0..e6b6aebd 100644 --- a/charpick/help/zh_TW/zh_TW.po +++ b/charpick/help/zh_TW/zh_TW.po @@ -13,7 +13,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: 黃柏諺 <[email protected]>, 2019\n" -"Language-Team: Chinese (Taiwan) (https://www.transifex.com/mate/teams/13566/zh_TW/)\n" +"Language-Team: Chinese (Taiwan) (https://app.transifex.com/mate/teams/13566/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/help/zu/zu.po b/charpick/help/zu/zu.po index 742740ea..e9b77731 100644 --- a/charpick/help/zu/zu.po +++ b/charpick/help/zu/zu.po @@ -8,7 +8,7 @@ msgstr "" "POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:10+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Zulu (https://www.transifex.com/mate/teams/13566/zu/)\n" +"Language-Team: Zulu (https://app.transifex.com/mate/teams/13566/zu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/charpick/org.mate.applets.CharpickerApplet.mate-panel-applet.desktop.in.in b/charpick/org.mate.applets.CharpickerApplet.mate-panel-applet.desktop.in.in index 65a3c76d..d8713c17 100644 --- a/charpick/org.mate.applets.CharpickerApplet.mate-panel-applet.desktop.in.in +++ b/charpick/org.mate.applets.CharpickerApplet.mate-panel-applet.desktop.in.in @@ -1,6 +1,7 @@ [Applet Factory] Id=CharpickerAppletFactory -Location=@LIBEXECDIR@/mate-charpick-applet +Location=@APPLET_LOCATION@ +InProcess=@APPLET_IN_PROCESS@ Name=Charpicker Applet Factory Description=Charpicker Applet Factory @@ -10,6 +11,7 @@ Description=Insert characters # Translators: Do NOT translate or transliterate this text (this is an icon file name)! Icon=accessories-character-map MateComponentId=OAFIID:MATE_CharpickerApplet +Platforms=X11;Wayland; X-MATE-Bugzilla-Bugzilla=MATE X-MATE-Bugzilla-Product=mate-applets X-MATE-Bugzilla-Component=charpick diff --git a/charpick/org.mate.panel.applet.CharpickerAppletFactory.service.in b/charpick/org.mate.panel.applet.CharpickerAppletFactory.service.in index 531430b2..417b1bd4 100644 --- a/charpick/org.mate.panel.applet.CharpickerAppletFactory.service.in +++ b/charpick/org.mate.panel.applet.CharpickerAppletFactory.service.in @@ -1,3 +1,3 @@ [D-BUS Service] Name=org.mate.panel.applet.CharpickerAppletFactory -Exec=@LIBEXECDIR@/mate-charpick-applet +Exec=@APPLET_LOCATION@ |