diff options
Diffstat (limited to 'stickynotes')
139 files changed, 16807 insertions, 7974 deletions
diff --git a/stickynotes/Makefile.am b/stickynotes/Makefile.am index 6cc2c530..6f51c130 100644 --- a/stickynotes/Makefile.am +++ b/stickynotes/Makefile.am @@ -1,13 +1,6 @@ -SUBDIRS = pixmaps docs +NULL = -ui_files = stickynotes-applet-menu.xml -builder_files = \ - sticky-notes-delete.ui \ - sticky-notes-delete-all.ui \ - sticky-notes-note.ui \ - sticky-notes-preferences.ui \ - sticky-notes-properties.ui \ - $(NULL) +SUBDIRS = pixmaps docs applet_in_files = org.mate.applets.StickyNotesApplet.mate-panel-applet.desktop.in service_in_files = org.mate.panel.applet.StickyNotesAppletFactory.service.in @@ -21,14 +14,15 @@ AM_CPPFLAGS = \ $(MATE_APPLETS4_CFLAGS) \ $(LIBWNCK_CFLAGS) \ $(XML2_CFLAGS) \ - -DSTICKYNOTES_MENU_UI_DIR=\""$(uidir)"\" \ -DGRESOURCE=\""/org/mate/mate-applets/sticky-notes/\"" \ ${WARN_CFLAGS} \ $(NULL) -libexec_PROGRAMS = stickynotes-applet - -stickynotes_applet_SOURCES = \ +BUILT_SOURCES = \ + sticky-notes-resources.c \ + sticky-notes-resources.h \ + $(NULL) +APPLET_SOURCES = \ util.h \ util.c \ stickynotes.h \ @@ -39,11 +33,9 @@ stickynotes_applet_SOURCES = \ stickynotes_callbacks.c \ stickynotes_applet.c \ stickynotes_applet_callbacks.c \ - sticky-notes-resources.c \ - sticky-notes-resources.h \ $(NULL) -stickynotes_applet_LDADD = \ +APPLET_LIBS = \ $(STICKYNOTES_LIBS) \ $(MATE_APPLETS4_LIBS) \ $(LIBWNCK_LIBS) \ @@ -51,8 +43,30 @@ stickynotes_applet_LDADD = \ -lX11 \ $(NULL) -uidir = $(datadir)/mate/ui -ui_DATA = $(ui_files) +if ENABLE_IN_PROCESS +APPLET_LOCATION = $(pkglibdir)/libmate-stickynotes-applet.so +pkglib_LTLIBRARIES = libmate-stickynotes-applet.la +nodist_libmate_stickynotes_applet_la_SOURCES = $(BUILT_SOURCES) +libmate_stickynotes_applet_la_SOURCES = $(APPLET_SOURCES) +libmate_stickynotes_applet_la_CFLAGS = $(AM_CFLAGS) +libmate_stickynotes_applet_la_LDFLAGS = -module -avoid-version +libmate_stickynotes_applet_la_LIBADD = $(APPLET_LIBS) +else !ENABLE_IN_PROCESS +APPLET_LOCATION = $(libexecdir)/stickynotes-applet +libexec_PROGRAMS = stickynotes-applet +nodist_stickynotes_applet_SOURCES = $(BUILT_SOURCES) +stickynotes_applet_SOURCES = $(APPLET_SOURCES) +stickynotes_applet_CFLAGS = $(AM_CFLAGS) +stickynotes_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 stickynotes_gschema_in_files = org.mate.stickynotes.gschema.xml.in gsettings_SCHEMAS = $(stickynotes_gschema_in_files:.xml.in=.xml) @@ -67,23 +81,16 @@ sticky-notes-resources.h: sticky-notes-resources.gresource.xml $(shell $(GLIB_CO appletdir = $(datadir)/mate-panel/applets applet_DATA = $(applet_in_files:.mate-panel-applet.desktop.in=.mate-panel-applet) -$(applet_in_files): $(applet_in_files).in Makefile +$(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_DATA = $(service_in_files:.service.in=.service) - -org.mate.panel.applet.StickyNotesAppletFactory.service: $(service_in_files) - $(AM_V_GEN)sed \ - -e "s|\@LIBEXECDIR\@|$(libexecdir)|" \ - $< > $@ - CLEANFILES = \ $(applet_DATA) \ $(applet_in_files) \ @@ -92,18 +99,22 @@ CLEANFILES = \ sticky-notes-resources.c \ sticky-notes-resources.h \ *.gschema.valid \ + $(BUILT_SOURCES) \ $(NULL) endif EXTRA_DIST = \ - $(builder_files) \ - $(ui_files) \ $(stickynotes_gschema_in_files) \ $(service_in_files) \ - $(applet_in_files).in \ - sticky-notes-resources.gresource.xml \ + $(applet_in_files:=.in) \ + sticky-notes-delete.ui \ + sticky-notes-delete-all.ui \ + sticky-notes-note.ui \ + sticky-notes-preferences.ui \ + sticky-notes-properties.ui \ + sticky-notes-resources.gresource.xml \ + stickynotes-applet-menu.xml \ $(NULL) - -include $(top_srcdir)/git.mk diff --git a/stickynotes/docs/C/index.docbook b/stickynotes/docs/C/index.docbook index 06adce9d..c32e4ddb 100644 --- a/stickynotes/docs/C/index.docbook +++ b/stickynotes/docs/C/index.docbook @@ -23,7 +23,7 @@ Template last modified Mar 12, 2002 </abstract> <copyright> - <year>2015-2020</year> + <year>2015-2021</year> <holder>MATE Documentation Project</holder> </copyright> <copyright> @@ -353,11 +353,44 @@ Template last modified Mar 12, 2002 </variablelist> </sect2> + <sect2 id="stickynotes-keyboard"> + <title>Keyboard navigation</title> + <para>Basic keyboard navigation is supported.</para> + <variablelist> + <varlistentry> + <term>Creating Sticky notes with the keyboard</term> + <listitem><para>Use + <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> + to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut> + or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> + keys to access the Sticky notes applet. Then open its context menu through either + <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the + <shortcut><keysym>Menu</keysym></shortcut> key, and select + <guimenuitem><guilabel>New Note</guilabel></guimenuitem>.</para></listitem> + </varlistentry> + <varlistentry> + <term>Accessing Sticky notes with the keyboard</term> + <listitem><para>Use + <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> + several times to switch between your panels and your existing sticky notes. + When a sticky note is focused, you can navigate between the text area and the + title bar (where the <guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the + <guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) with the + <shortcut><keysym>F6</keysym></shortcut> key.</para> + <para>Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, + <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the + <shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, + which allows to access the individual note’s + <guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog.</para></listitem> + </varlistentry> + </variablelist> + </sect2> + </sect1> -<sect1 id="stickynotes-advanced-settings"> +<sect1 id="stickynotes-advanced-settings"> <title>Preferences</title> - + <figure id="stickynotes-prefs-fig"> <title>&applet; Preferences</title> <screenshot> diff --git a/stickynotes/docs/af/af.po b/stickynotes/docs/af/af.po index f2c50beb..57b0af62 100644 --- a/stickynotes/docs/af/af.po +++ b/stickynotes/docs/af/af.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+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" @@ -37,7 +37,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -486,13 +486,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "Voorkeure" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "" @@ -501,7 +555,7 @@ msgstr "" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -509,7 +563,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -517,12 +571,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -531,36 +585,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -568,12 +622,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -581,7 +635,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -589,12 +643,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -602,7 +656,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -610,12 +664,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -623,7 +677,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -631,12 +685,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -645,7 +699,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -655,7 +709,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -664,12 +718,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -678,7 +732,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -686,7 +740,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -694,7 +748,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -704,30 +758,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -735,7 +789,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -743,12 +797,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -756,7 +810,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/am/am.po b/stickynotes/docs/am/am.po index 3e8a5cff..b4ce205c 100644 --- a/stickynotes/docs/am/am.po +++ b/stickynotes/docs/am/am.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+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" @@ -34,7 +34,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -483,13 +483,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "ምርጫዎች" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "የ ተጣባቂ ማስታወሻ ምርጫዎች" @@ -498,7 +552,7 @@ msgstr "የ ተጣባቂ ማስታወሻ ምርጫዎች" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -506,7 +560,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -514,12 +568,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -528,36 +582,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -565,12 +619,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -578,7 +632,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -586,12 +640,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -599,7 +653,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -607,12 +661,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -620,7 +674,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -628,12 +682,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -642,7 +696,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -652,7 +706,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -661,12 +715,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -675,7 +729,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -683,7 +737,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -691,7 +745,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -701,30 +755,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -732,7 +786,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -740,12 +794,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -753,7 +807,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/ar/ar.po b/stickynotes/docs/ar/ar.po index a4a0a55b..53943495 100644 --- a/stickynotes/docs/ar/ar.po +++ b/stickynotes/docs/ar/ar.po @@ -5,14 +5,15 @@ # Wolfgang Ulbrich <[email protected]>, 2018 # مهدي السطيفي <[email protected]>, 2018 # Ahmad Dakhlallah <[email protected]>, 2019 +# Ahmd go <[email protected]>, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+0000\n" -"Last-Translator: Ahmad Dakhlallah <[email protected]>, 2019\n" -"Language-Team: Arabic (https://www.transifex.com/mate/teams/13566/ar/)\n" +"Last-Translator: Ahmd go <[email protected]>, 2021\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" @@ -40,7 +41,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -121,7 +122,7 @@ msgstr "" #. (itstool) path: revdescription/para #: C/index.docbook:125 msgid "MATE Documentation Team" -msgstr "" +msgstr "فريق متّة التوثيقي " #. (itstool) path: revhistory/revision #: C/index.docbook:121 @@ -489,13 +490,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "تفضيلات" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "تفضيلات الملاحظات اللاصقة" @@ -504,7 +559,7 @@ msgstr "تفضيلات الملاحظات اللاصقة" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -512,7 +567,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -520,12 +575,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -534,36 +589,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -571,12 +626,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -584,7 +639,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -592,12 +647,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -605,7 +660,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -613,12 +668,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -626,7 +681,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -634,12 +689,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -648,7 +703,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -658,7 +713,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -667,12 +722,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -681,7 +736,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -689,7 +744,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -697,7 +752,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -707,30 +762,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -738,7 +793,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -746,12 +801,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -759,7 +814,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/as/as.po b/stickynotes/docs/as/as.po index af3ec8b6..52778f8f 100644 --- a/stickynotes/docs/as/as.po +++ b/stickynotes/docs/as/as.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+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" @@ -34,7 +34,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -483,13 +483,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "পছন্দসমূহ" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "Sticky Notes সম্বন্ধীয় বৈশিষ্ট্যাবলী" @@ -498,7 +552,7 @@ msgstr "Sticky Notes সম্বন্ধীয় বৈশিষ্ট্যা� #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -506,7 +560,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -514,12 +568,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -528,36 +582,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -565,12 +619,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -578,7 +632,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -586,12 +640,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -599,7 +653,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -607,12 +661,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -620,7 +674,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -628,12 +682,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -642,7 +696,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -652,7 +706,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -661,12 +715,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -675,7 +729,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -683,7 +737,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -691,7 +745,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -701,30 +755,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -732,7 +786,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -740,12 +794,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -753,7 +807,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/ast/ast.po b/stickynotes/docs/ast/ast.po index 6a1092ad..95ec68a3 100644 --- a/stickynotes/docs/ast/ast.po +++ b/stickynotes/docs/ast/ast.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+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" @@ -35,7 +35,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -484,13 +484,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "Preferencies" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "Preferencies de les notes" @@ -499,7 +553,7 @@ msgstr "Preferencies de les notes" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -507,7 +561,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -515,12 +569,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -529,36 +583,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -566,12 +620,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -579,7 +633,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -587,12 +641,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -600,7 +654,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -608,12 +662,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -621,7 +675,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -629,12 +683,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -643,7 +697,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -653,7 +707,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -662,12 +716,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -676,7 +730,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -684,7 +738,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -692,7 +746,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -702,30 +756,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -733,7 +787,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -741,12 +795,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -754,7 +808,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/az/az.po b/stickynotes/docs/az/az.po index e0d28a61..8035bb42 100644 --- a/stickynotes/docs/az/az.po +++ b/stickynotes/docs/az/az.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+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" @@ -38,7 +38,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -487,13 +487,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "Qurğular" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "Yapışqan Qeydlərin Xassələri" @@ -502,7 +556,7 @@ msgstr "Yapışqan Qeydlərin Xassələri" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -510,7 +564,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -518,12 +572,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -532,36 +586,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -569,12 +623,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -582,7 +636,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -590,12 +644,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -603,7 +657,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -611,12 +665,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -624,7 +678,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -632,12 +686,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -646,7 +700,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -656,7 +710,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -665,12 +719,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -679,7 +733,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -687,7 +741,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -695,7 +749,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -705,30 +759,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -736,7 +790,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -744,12 +798,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -757,7 +811,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/be/be.po b/stickynotes/docs/be/be.po index d14cf4f0..7f010c68 100644 --- a/stickynotes/docs/be/be.po +++ b/stickynotes/docs/be/be.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+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" @@ -37,7 +37,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -486,13 +486,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "Настáўленні" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "Настáўленні ліпучых нататак" @@ -501,7 +555,7 @@ msgstr "Настáўленні ліпучых нататак" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -509,7 +563,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -517,12 +571,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -531,36 +585,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -568,12 +622,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -581,7 +635,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -589,12 +643,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -602,7 +656,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -610,12 +664,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -623,7 +677,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -631,12 +685,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -645,7 +699,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -655,7 +709,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -664,12 +718,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -678,7 +732,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -686,7 +740,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -694,7 +748,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -704,30 +758,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -735,7 +789,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -743,12 +797,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -756,7 +810,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/bg/bg.po b/stickynotes/docs/bg/bg.po index cb77f05d..7bb2b4da 100644 --- a/stickynotes/docs/bg/bg.po +++ b/stickynotes/docs/bg/bg.po @@ -9,10 +9,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+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" @@ -46,7 +46,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -495,13 +495,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "Настройки" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "Настройки на лепкавите бележки" @@ -510,7 +564,7 @@ msgstr "Настройки на лепкавите бележки" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -518,7 +572,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -526,12 +580,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -540,36 +594,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -577,12 +631,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -590,7 +644,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -598,12 +652,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -611,7 +665,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -619,12 +673,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -632,7 +686,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -640,12 +694,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -654,7 +708,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -664,7 +718,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -673,12 +727,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -687,7 +741,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -695,7 +749,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -703,7 +757,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -713,30 +767,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -744,7 +798,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -752,12 +806,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -765,7 +819,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/bn/bn.po b/stickynotes/docs/bn/bn.po index 6ab6bde3..755c016e 100644 --- a/stickynotes/docs/bn/bn.po +++ b/stickynotes/docs/bn/bn.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+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" @@ -39,7 +39,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -488,13 +488,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "পছন্দতালিকা" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "স্টিকি নোট সম্বন্ধীয় বৈশিষ্ট্যাবলী" @@ -503,7 +557,7 @@ msgstr "স্টিকি নোট সম্বন্ধীয় বৈশিষ #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -511,7 +565,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -519,12 +573,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -533,36 +587,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -570,12 +624,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -583,7 +637,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -591,12 +645,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -604,7 +658,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -612,12 +666,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -625,7 +679,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -633,12 +687,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -647,7 +701,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -657,7 +711,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -666,12 +720,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -680,7 +734,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -688,7 +742,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -696,7 +750,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -706,30 +760,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -737,7 +791,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -745,12 +799,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -758,7 +812,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/bn_IN/bn_IN.po b/stickynotes/docs/bn_IN/bn_IN.po index a7c448a9..2bc1d8ab 100644 --- a/stickynotes/docs/bn_IN/bn_IN.po +++ b/stickynotes/docs/bn_IN/bn_IN.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+0000\n" "Last-Translator: umesh agarwal <[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" @@ -38,7 +38,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -487,13 +487,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "प्राथमिकताएं" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "Sticky Note সম্বন্ধীয় পছন্দ" @@ -502,7 +556,7 @@ msgstr "Sticky Note সম্বন্ধীয় পছন্দ" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -510,7 +564,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -518,12 +572,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -532,36 +586,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -569,12 +623,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -582,7 +636,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -590,12 +644,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -603,7 +657,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -611,12 +665,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -624,7 +678,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -632,12 +686,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -646,7 +700,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -656,7 +710,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -665,12 +719,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -679,7 +733,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -687,7 +741,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -695,7 +749,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -705,30 +759,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -736,7 +790,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -744,12 +798,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -757,7 +811,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/br/br.po b/stickynotes/docs/br/br.po index 0b3cce9a..58715576 100644 --- a/stickynotes/docs/br/br.po +++ b/stickynotes/docs/br/br.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+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" @@ -35,7 +35,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -484,13 +484,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "Gwellvezioù" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "Gwellvezioù ar pegsoñj" @@ -499,7 +553,7 @@ msgstr "Gwellvezioù ar pegsoñj" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -507,7 +561,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -515,12 +569,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -529,36 +583,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -566,12 +620,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -579,7 +633,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -587,12 +641,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -600,7 +654,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -608,12 +662,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -621,7 +675,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -629,12 +683,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -643,7 +697,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -653,7 +707,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -662,12 +716,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -676,7 +730,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -684,7 +738,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -692,7 +746,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -702,30 +756,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -733,7 +787,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -741,12 +795,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -754,7 +808,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/bs/bs.po b/stickynotes/docs/bs/bs.po index 761f776a..503c0d91 100644 --- a/stickynotes/docs/bs/bs.po +++ b/stickynotes/docs/bs/bs.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+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" @@ -35,7 +35,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -484,13 +484,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "Postavke" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "Osobine bilješki" @@ -499,7 +553,7 @@ msgstr "Osobine bilješki" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -507,7 +561,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -515,12 +569,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -529,36 +583,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -566,12 +620,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -579,7 +633,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -587,12 +641,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -600,7 +654,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -608,12 +662,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -621,7 +675,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -629,12 +683,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -643,7 +697,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -653,7 +707,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -662,12 +716,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -676,7 +730,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -684,7 +738,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -692,7 +746,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -702,30 +756,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -733,7 +787,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -741,12 +795,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -754,7 +808,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/ca/ca.po b/stickynotes/docs/ca/ca.po index e96622dd..4dc94bfb 100644 --- a/stickynotes/docs/ca/ca.po +++ b/stickynotes/docs/ca/ca.po @@ -2,15 +2,15 @@ # Translators: # Stefano Karapetsas <[email protected]>, 2018 # Francesc Famadas, 2018 -# Robert Antoni Buj Gelonch <[email protected]>, 2020 +# Robert Antoni Buj i Gelonch <[email protected]>, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+0000\n" -"Last-Translator: Robert Antoni Buj Gelonch <[email protected]>, 2020\n" -"Language-Team: Catalan (https://www.transifex.com/mate/teams/13566/ca/)\n" +"Last-Translator: Robert Antoni Buj i Gelonch <[email protected]>, 2021\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" @@ -40,9 +40,9 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" -"<year>2015-2020</year> <holder>Projecte de documentació de MATE</holder>" +"<year>2015-2021</year> <holder>Projecte de documentació de MATE</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:29 @@ -591,13 +591,67 @@ msgstr "" " al menú emergent. També podeu eliminar una nota adhesiva fent clic al botó " "<guibutton>x</guibutton> al cantó superior esquerre." +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "Preferències" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "Preferències de les notes adhesives" @@ -606,7 +660,7 @@ msgstr "Preferències de les notes adhesives" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -616,7 +670,7 @@ msgstr "" "md5='0263f6ed6b0242d2d24a45b5d403e007'" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -627,12 +681,12 @@ msgstr "" "de les notes adhesives</phrase></textobject>" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "Ajustar la mida" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -641,36 +695,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "<guilabel>Amplada</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "<guilabel>Alçada</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "Canviar el color i la lletra" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -678,12 +732,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "<guilabel>Color del text</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -691,7 +745,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -699,12 +753,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "<guilabel>Color de la nota</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -716,7 +770,7 @@ msgstr "" "les notes adhesives." #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -724,12 +778,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "<guilabel>Lletra</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -737,7 +791,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -745,12 +799,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "Personalitzar el comportament" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -759,7 +813,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -769,7 +823,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -778,12 +832,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "Personalitzar notes individuals" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "Preferències de les notes adhesives" @@ -792,7 +846,7 @@ msgstr "Preferències de les notes adhesives" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -802,7 +856,7 @@ msgstr "" "md5='e2214cbb04d62d60ea0385a5dfa1630c'" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -813,7 +867,7 @@ msgstr "" "nota adhesiva</phrase></textobject>" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -823,33 +877,33 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "<guilabel>Títol</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "<guilabel>Utilitza el color predeterminat</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" "Seleccioneu aquesta opció per utilitzar el color base predeterminat per a " "aquesta nota adhesiva. Per obtenir més informació sobre com establir el " "color base predeterminat, consulteu <xref linkend=\"stickynotes-color\"/>." #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -857,7 +911,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -865,12 +919,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "<guilabel>Utilitza la lletra predeterminada</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -878,7 +932,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/ca@valencia/[email protected] b/stickynotes/docs/ca@valencia/[email protected] index e0455804..4203bd9e 100644 --- a/stickynotes/docs/ca@valencia/[email protected] +++ b/stickynotes/docs/ca@valencia/[email protected] @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+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" @@ -43,7 +43,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -492,13 +492,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "Preferències" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "Preferències de les notes adhesives" @@ -507,7 +561,7 @@ msgstr "Preferències de les notes adhesives" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -515,7 +569,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -523,12 +577,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -537,36 +591,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -574,12 +628,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -587,7 +641,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -595,12 +649,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -608,7 +662,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -616,12 +670,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -629,7 +683,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -637,12 +691,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -651,7 +705,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -661,7 +715,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -670,12 +724,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -684,7 +738,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -692,7 +746,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -700,7 +754,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -710,30 +764,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -741,7 +795,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -749,12 +803,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -762,7 +816,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/cmn/cmn.po b/stickynotes/docs/cmn/cmn.po index 5a18a7d6..2c549b9e 100644 --- a/stickynotes/docs/cmn/cmn.po +++ b/stickynotes/docs/cmn/cmn.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+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" @@ -37,7 +37,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -486,13 +486,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "偏好設定" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "便條偏好設定" @@ -501,7 +555,7 @@ msgstr "便條偏好設定" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -509,7 +563,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -517,12 +571,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -531,36 +585,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -568,12 +622,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -581,7 +635,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -589,12 +643,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -602,7 +656,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -610,12 +664,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -623,7 +677,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -631,12 +685,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -645,7 +699,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -655,7 +709,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -664,12 +718,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -678,7 +732,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -686,7 +740,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -694,7 +748,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -704,30 +758,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -735,7 +789,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -743,12 +797,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -756,7 +810,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/crh/crh.po b/stickynotes/docs/crh/crh.po index 1614a26e..69acc536 100644 --- a/stickynotes/docs/crh/crh.po +++ b/stickynotes/docs/crh/crh.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+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" @@ -36,7 +36,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -485,13 +485,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "Tercihler" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "Yapışkan Notlar Tercihleri" @@ -500,7 +554,7 @@ msgstr "Yapışkan Notlar Tercihleri" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -508,7 +562,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -516,12 +570,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -530,36 +584,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -567,12 +621,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -580,7 +634,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -588,12 +642,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -601,7 +655,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -609,12 +663,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -622,7 +676,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -630,12 +684,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -644,7 +698,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -654,7 +708,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -663,12 +717,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -677,7 +731,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -685,7 +739,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -693,7 +747,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -703,30 +757,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -734,7 +788,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -742,12 +796,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -755,7 +809,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/cs/cs.po b/stickynotes/docs/cs/cs.po index 7552641d..535a2491 100644 --- a/stickynotes/docs/cs/cs.po +++ b/stickynotes/docs/cs/cs.po @@ -3,16 +3,17 @@ # Stefano Karapetsas <[email protected]>, 2018 # ToMáš Marný, 2018 # Wolfgang Ulbrich <[email protected]>, 2018 -# LiberteCzech <[email protected]>, 2018 -# Lucas Lommer <[email protected]>, 2020 +# LiberteCzech <[email protected]>, 2018 +# Roman Horník <[email protected]>, 2021 +# Lukáš Lommer <[email protected]>, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+0000\n" -"Last-Translator: Lucas Lommer <[email protected]>, 2020\n" -"Language-Team: Czech (https://www.transifex.com/mate/teams/13566/cs/)\n" +"Last-Translator: Lukáš Lommer <[email protected]>, 2021\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" @@ -49,8 +50,8 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" -msgstr "<year>2015-2020</year> <holder>Dokumentační projekt MATE</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" +msgstr "<year>2015-2021</year> <holder>Projekt dokumentace MATE</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:29 @@ -503,13 +504,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "Předvolby" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "Předvolby lepicích poznámek" @@ -518,7 +573,7 @@ msgstr "Předvolby lepicích poznámek" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -526,7 +581,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -534,12 +589,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -548,36 +603,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -585,12 +640,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -598,7 +653,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -606,12 +661,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -619,7 +674,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -627,12 +682,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -640,7 +695,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -648,12 +703,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -662,7 +717,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -672,7 +727,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -681,12 +736,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -695,7 +750,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -703,7 +758,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -711,7 +766,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -721,30 +776,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -752,7 +807,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -760,12 +815,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -773,7 +828,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " @@ -871,3 +926,5 @@ msgid "" "OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: " "<_:orderedlist-1/>" msgstr "" +"DOKUMENT A JEHO UPRAVENÉ VERZE JSOU ŠÍŘENY V SOULADU SE ZNĚNÍM LICENCE GNU " +"FREE DOCUMENTATION LICENSE S NÁSLEDUJÍCÍM USTANOVENÍM: <_:orderedlist-1/>" diff --git a/stickynotes/docs/cy/cy.po b/stickynotes/docs/cy/cy.po index d0eb0bab..e617e1b5 100644 --- a/stickynotes/docs/cy/cy.po +++ b/stickynotes/docs/cy/cy.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+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" @@ -37,7 +37,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -486,13 +486,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "Hoffterau" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "Hoffterau Nodiadau Gludiog" @@ -501,7 +555,7 @@ msgstr "Hoffterau Nodiadau Gludiog" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -509,7 +563,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -517,12 +571,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -531,36 +585,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -568,12 +622,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -581,7 +635,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -589,12 +643,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -602,7 +656,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -610,12 +664,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -623,7 +677,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -631,12 +685,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -645,7 +699,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -655,7 +709,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -664,12 +718,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -678,7 +732,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -686,7 +740,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -694,7 +748,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -704,30 +758,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -735,7 +789,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -743,12 +797,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -756,7 +810,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/da/da.po b/stickynotes/docs/da/da.po index d6490be6..7c8058f2 100644 --- a/stickynotes/docs/da/da.po +++ b/stickynotes/docs/da/da.po @@ -1,15 +1,15 @@ # # Translators: # Stefano Karapetsas <[email protected]>, 2018 -# Joe Hansen <[email protected]>, 2020 +# Joe Hansen <[email protected]>, 2023 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+0000\n" -"Last-Translator: Joe Hansen <[email protected]>, 2020\n" -"Language-Team: Danish (https://www.transifex.com/mate/teams/13566/da/)\n" +"Last-Translator: Joe Hansen <[email protected]>, 2023\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" @@ -20,10 +20,10 @@ msgstr "" msgctxt "_" msgid "translator-credits" msgstr "" -"\"Joe Hansen, 2012, 2013, 2014, 2015, 2016, 2017, 2018.\\n\"\n" -"\"\\n\"\n" -"\"Dansk-gruppen <[email protected]>\\n\"\n" -"\"Mere info: http://www.dansk-gruppen.dk\"" +"Joe Hansen 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021.\n" +"\n" +"Dansk-gruppen <[email protected]>\n" +"Mere info: http://www.dansk-gruppen.dk" #. (itstool) path: articleinfo/title #: C/index.docbook:19 @@ -41,8 +41,8 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" -msgstr "<year>2015-2020</year> <holder>MATE-dokumentationsprojektet</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" +msgstr "<year>2015-2021</year> <holder>MATE-dokumentationsprojektet</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:29 @@ -582,13 +582,87 @@ msgstr "" "<guimenuitem>Slet note</guimenuitem> fra pop op-menuen. Du kan også slette " "en note ved at klikke på <guibutton>x</guibutton> i øverste højre hjørne." +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "Tastaturnavigation" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "Grundlæggende tastaturnavigation er understøttet." + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "Oprettelse af klæbende noter med tastaturet" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" +"Brug <shortcut><keycombo><keysym>Ctrl-Alt-" +"Indryk</keysym></keycombo></shortcut> for at tilgå MATE-panelet, brug så " +"<shortcut><keysym>Indryk</keysym></shortcut> eller " +"<shortcut><keycombo><keysym>Pile</keysym></keycombo></shortcut>-tasterne for" +" at tilgå panelprogrammet Klæbende noter. Åbn så kontekstmenuen enten via " +"<shortcut><keycombo><keysym>Skift-F10</keysym></keycombo></shortcut> eller " +"<shortcut><keysym>Menu</keysym></shortcut>-tasten, og vælg " +"<guimenuitem><guilabel>Ny note</guilabel></guimenuitem>." + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "Tilgå klæbende noter via tastaturet" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" +"Brug <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut>" +" flere gange for at skifte mellem dine paneler og dine eksisterende klæbende" +" noter. Når en klæbende note er i fokus, så kan du navigere mellem " +"tekstområdet og titellinjen (hvor " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem>- og " +"<guimenuitem><guilabel>Slet</guilabel></guimenuitem>-knapperne er placeret) " +"med <shortcut><keysym>F6</keysym></shortcut>-tasten." + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" +"I titellinjen, brug <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Skift-F10</keysym></keycombo></shortcut> eller " +"<shortcut><keysym>Menu</keysym></shortcut>-tasten for at åbne " +"kontekstmenuen, der tillader adgang til de individuelle noters " +"<guimenuitem><guilabel>Egenskaber</guilabel></guimenuitem>-dialog." + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "Præferencer" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "Indstillinger for notessedler" @@ -597,7 +671,7 @@ msgstr "Indstillinger for notessedler" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -607,7 +681,7 @@ msgstr "" "md5='0263f6ed6b0242d2d24a45b5d403e007'" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -618,12 +692,12 @@ msgstr "" "præferencer</phrase></textobject>" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "Justering af størrelse" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -635,12 +709,12 @@ msgstr "" "Dialogen <application>Blivende Noter-præferencer</application> vises." #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "<guilabel>Bredde</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." @@ -649,12 +723,12 @@ msgstr "" "billedpunkter." #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "<guilabel>Højde</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." @@ -663,12 +737,12 @@ msgstr "" "billedpunkter." #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "Ændre farve og skrifttype" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -679,12 +753,12 @@ msgstr "" "Dialogen <application>Blivende noter-præferencer</application> vises." #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "<guilabel>Skriftfarve</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -695,7 +769,7 @@ msgstr "" "standardfarven for noterne." #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -706,12 +780,12 @@ msgstr "" "standarder." #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "<guilabel>Notefarve</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -722,7 +796,7 @@ msgstr "" "standardfarven for blivende noter." #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -733,12 +807,12 @@ msgstr "" "standarder." #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "<guilabel>Skrifttype</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -749,7 +823,7 @@ msgstr "" "blivende noter." #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -760,12 +834,12 @@ msgstr "" "brugt, og du vil ikke kunne vælge nye standarder." #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "Tilpasse opførsel" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -778,7 +852,7 @@ msgstr "" "vises." #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -792,7 +866,7 @@ msgstr "" "arbejdsrum, så bliver alle noter synlige på alle arbejdsrum." #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -802,16 +876,16 @@ msgstr "" "Indstillingen, <guilabel>Brug standardfarve og skrifttype på " "noter</guilabel>, vil gøre at alle noter på dit skrivebord vil bruge farven " "og skriftindstillingerne angivet i " -"<guilabel>Standardnoteegenskaber</guilabel> ovenfor (se <xref linkend" -"=\"stickynotes-color\"/>)." +"<guilabel>Standardnoteegenskaber</guilabel> ovenfor (se <xref " +"linkend=\"stickynotes-color\"/>)." #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "Tilpasning af individuelle noter" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "Præferencer for blivende noter" @@ -820,7 +894,7 @@ msgstr "Præferencer for blivende noter" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -830,7 +904,7 @@ msgstr "" "md5='e2214cbb04d62d60ea0385a5dfa1630c'" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -841,7 +915,7 @@ msgstr "" " noter</phrase></textobject>" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -856,33 +930,33 @@ msgstr "" "<application>Blivende noters egenskaber</application> bliver vist." #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "<guilabel>Titel</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "Brug denne tekstboks til at angive titlen for noten." #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "<guilabel>Brug standardfarve</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" "Vælg denne indstilling for at bruge grundfarven for denne note. For " "information om at angive grundfarven, se <xref linkend=\"stickynotes-" "color\"/>." #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -893,7 +967,7 @@ msgstr "" "skriftfarven for denne note." #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -904,23 +978,23 @@ msgstr "" "grundfarven for denne note." #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "<guilabel>Brug standardskrifttypen</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" "color\"/>." msgstr "" "Vælg denne indstilling for at bruge standardskrifttypen for denne note. For " -"information om at angive standardskrifttypen, se <xref linkend" -"=\"stickynotes-color\"/>." +"information om at angive standardskrifttypen, se <xref " +"linkend=\"stickynotes-color\"/>." #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/de/de.po b/stickynotes/docs/de/de.po index 47e9643f..f12b1931 100644 --- a/stickynotes/docs/de/de.po +++ b/stickynotes/docs/de/de.po @@ -5,16 +5,16 @@ # Tobias Bannert <[email protected]>, 2018 # Wolfgang Ulbrich <[email protected]>, 2018 # Julian Rüger <[email protected]>, 2018 -# Marcel Artz <[email protected]>, 2019 -# Michael Hartmann, 2020 +# Marcel Artz, 2019 +# Xpistian <[email protected]>, 2023 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+0000\n" -"Last-Translator: Michael Hartmann, 2020\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" @@ -47,8 +47,8 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" -msgstr "<year>2015-2020</year> <holder>MATE Dokumentations Projekt</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" +msgstr "<year>2015-2021</year> <holder>Mate-Dokumentationsprojekt</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:29 @@ -501,13 +501,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "Einstellungen" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "Einstellungen der Klebezettel" @@ -516,7 +570,7 @@ msgstr "Einstellungen der Klebezettel" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -524,7 +578,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -532,12 +586,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -546,36 +600,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -583,12 +637,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -596,7 +650,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -604,12 +658,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -617,7 +671,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -625,12 +679,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -638,7 +692,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -646,12 +700,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -660,7 +714,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -670,7 +724,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -679,12 +733,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -693,7 +747,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -701,7 +755,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -709,7 +763,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -719,30 +773,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -750,7 +804,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -758,12 +812,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -771,7 +825,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/dz/dz.po b/stickynotes/docs/dz/dz.po index 19c1c922..64a81ae7 100644 --- a/stickynotes/docs/dz/dz.po +++ b/stickynotes/docs/dz/dz.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+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" @@ -37,7 +37,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -486,13 +486,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "དགའ་གདམ་ཚུ།" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "སྦྱར་རྩི་ཅན་གྱི་དྲན་འཛིན་ཚུ་གི་ དགའ་གདམ་ཚུ།" @@ -501,7 +555,7 @@ msgstr "སྦྱར་རྩི་ཅན་གྱི་དྲན་འཛིན #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -509,7 +563,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -517,12 +571,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -531,36 +585,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -568,12 +622,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -581,7 +635,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -589,12 +643,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -602,7 +656,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -610,12 +664,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -623,7 +677,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -631,12 +685,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -645,7 +699,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -655,7 +709,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -664,12 +718,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -678,7 +732,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -686,7 +740,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -694,7 +748,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -704,30 +758,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -735,7 +789,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -743,12 +797,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -756,7 +810,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/el/el.po b/stickynotes/docs/el/el.po index 97825ff2..4c31ed29 100644 --- a/stickynotes/docs/el/el.po +++ b/stickynotes/docs/el/el.po @@ -7,14 +7,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: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+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" @@ -44,8 +45,8 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" -msgstr "" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" +msgstr "<year>2015-2021</year> <holder>Έργο Τεκμηρίωσης MATE</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:29 @@ -493,13 +494,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "Προτιμήσεις" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "Προτιμήσεις Sticky Notes" @@ -508,7 +563,7 @@ msgstr "Προτιμήσεις Sticky Notes" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -516,7 +571,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -524,12 +579,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -538,36 +593,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "<guilabel>Πλάτος</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "<guilabel>Ύψος</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -575,12 +630,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -588,7 +643,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -596,12 +651,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -609,7 +664,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -617,12 +672,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -630,7 +685,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -638,12 +693,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -652,7 +707,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -662,7 +717,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -671,12 +726,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -685,7 +740,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -693,7 +748,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -701,7 +756,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -711,30 +766,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -742,7 +797,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -750,12 +805,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -763,7 +818,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/en_AU/en_AU.po b/stickynotes/docs/en_AU/en_AU.po index f6f36a9c..1da5ffb3 100644 --- a/stickynotes/docs/en_AU/en_AU.po +++ b/stickynotes/docs/en_AU/en_AU.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+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" @@ -34,7 +34,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -483,13 +483,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "Preferences" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "Sticky Notes Preferences" @@ -498,7 +552,7 @@ msgstr "Sticky Notes Preferences" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -506,7 +560,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -514,12 +568,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -528,36 +582,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -565,12 +619,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -578,7 +632,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -586,12 +640,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -599,7 +653,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -607,12 +661,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -620,7 +674,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -628,12 +682,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -642,7 +696,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -652,7 +706,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -661,12 +715,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -675,7 +729,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -683,7 +737,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -691,7 +745,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -701,30 +755,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -732,7 +786,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -740,12 +794,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -753,7 +807,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/en_CA/en_CA.po b/stickynotes/docs/en_CA/en_CA.po index a7de1550..3a049094 100644 --- a/stickynotes/docs/en_CA/en_CA.po +++ b/stickynotes/docs/en_CA/en_CA.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+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" @@ -34,7 +34,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -483,13 +483,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "Preferences" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "Sticky Notes Preferences" @@ -498,7 +552,7 @@ msgstr "Sticky Notes Preferences" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -506,7 +560,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -514,12 +568,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -528,36 +582,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -565,12 +619,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -578,7 +632,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -586,12 +640,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -599,7 +653,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -607,12 +661,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -620,7 +674,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -628,12 +682,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -642,7 +696,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -652,7 +706,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -661,12 +715,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -675,7 +729,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -683,7 +737,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -691,7 +745,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -701,30 +755,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -732,7 +786,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -740,12 +794,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -753,7 +807,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/en_GB/en_GB.po b/stickynotes/docs/en_GB/en_GB.po index 0716d0ed..23b0c34f 100644 --- a/stickynotes/docs/en_GB/en_GB.po +++ b/stickynotes/docs/en_GB/en_GB.po @@ -1,16 +1,15 @@ # # Translators: # Stefano Karapetsas <[email protected]>, 2018 -# Martin Wimpress <[email protected]>, 2018 -# Andi Chandler <[email protected]>, 2020 +# Andi Chandler <[email protected]>, 2023 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+0000\n" -"Last-Translator: Andi Chandler <[email protected]>, 2020\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:19 msgid "Sticky Notes Manual" -msgstr "" +msgstr "Sticky Notes Manual" #. (itstool) path: abstract/para #: C/index.docbook:21 @@ -33,11 +34,13 @@ msgid "" "Sticky Notes enables you to create, view, and manage sticky notes on your " "desktop." msgstr "" +"Sticky Notes enables you to create, view, and manage sticky notes on your " +"desktop." #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" -msgstr "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" +msgstr "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:29 @@ -47,12 +50,12 @@ msgstr "<year>2005</year> <holder>Davyd Madeley</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:33 msgid "<year>2004</year> <holder>Shaun McCance</holder>" -msgstr "" +msgstr "<year>2004</year> <holder>Shaun McCance</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:37 msgid "<year>2004</year> <holder>Angela Boyle</holder>" -msgstr "" +msgstr "<year>2004</year> <holder>Angela Boyle</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:41 @@ -62,7 +65,7 @@ msgstr "<year>2003</year> <year>2004</year> <holder>Sun Microsystems</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:46 msgid "<year>2003</year> <holder>Loban A Rahman</holder>" -msgstr "" +msgstr "<year>2003</year> <holder>Loban A Rahman</holder>" #. (itstool) path: publisher/publishername #. (itstool) path: revdescription/para @@ -93,6 +96,9 @@ msgid "" "<orgname>GNOME Documentation Project</orgname> " "<address><email>[email protected]</email></address> </affiliation>" msgstr "" +"<firstname>Shaun</firstname> <surname>McCance</surname> <affiliation> " +"<orgname>GNOME Documentation Project</orgname> " +"<address><email>[email protected]</email></address> </affiliation>" #. (itstool) path: authorgroup/author #: C/index.docbook:83 @@ -100,6 +106,8 @@ msgid "" "<firstname>Angela</firstname> <surname>Boyle</surname> <affiliation> " "<address><email>[email protected]</email></address> </affiliation>" msgstr "" +"<firstname>Angela</firstname> <surname>Boyle</surname> <affiliation> " +"<address><email>[email protected]</email></address> </affiliation>" #. (itstool) path: authorgroup/author #: C/index.docbook:90 @@ -107,6 +115,8 @@ msgid "" "<firstname>Loban</firstname> <surname>Rahman</surname> <affiliation> " "<address><email>[email protected]</email></address> </affiliation>" msgstr "" +"<firstname>Loban</firstname> <surname>Rahman</surname> <affiliation> " +"<address><email>[email protected]</email></address> </affiliation>" #. (itstool) path: authorgroup/author #: C/index.docbook:97 @@ -130,6 +140,8 @@ msgid "" "<revnumber>Sticky Notes Applet Manual V2.7</revnumber> <date>July " "2015</date> <_:revdescription-1/>" msgstr "" +"<revnumber>Sticky Notes Applet Manual V2.7</revnumber> <date>July " +"2015</date> <_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:133 C/index.docbook:140 @@ -142,6 +154,8 @@ msgid "" "<revnumber>Sticky Notes Applet Manual V2.6</revnumber> <date>September " "2005</date> <_:revdescription-1/>" msgstr "" +"<revnumber>Sticky Notes Applet Manual V2.6</revnumber> <date>September " +"2005</date> <_:revdescription-1/>" #. (itstool) path: revhistory/revision #: C/index.docbook:136 @@ -149,11 +163,13 @@ msgid "" "<revnumber>Sticky Notes Applet Manual V2.5</revnumber> <date>March " "2005</date> <_:revdescription-1/>" msgstr "" +"<revnumber>Sticky Notes Applet Manual V2.5</revnumber> <date>March " +"2005</date> <_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:147 msgid "Angela Boyle" -msgstr "" +msgstr "Angela Boyle" #. (itstool) path: revhistory/revision #: C/index.docbook:143 @@ -161,11 +177,13 @@ msgid "" "<revnumber>Sticky Notes Applet Manual V2.4</revnumber> <date>September " "2004</date> <_:revdescription-1/>" msgstr "" +"<revnumber>Sticky Notes Applet Manual V2.4</revnumber> <date>September " +"2004</date> <_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:155 C/index.docbook:163 C/index.docbook:171 msgid "Sun GNOME Documentation Team" -msgstr "" +msgstr "Sun GNOME Documentation Team" #. (itstool) path: revhistory/revision #: C/index.docbook:151 @@ -173,6 +191,8 @@ msgid "" "<revnumber>Sticky Notes Applet Manual V2.3</revnumber> <date>February " "2004</date> <_:revdescription-1/>" msgstr "" +"<revnumber>Sticky Notes Applet Manual V2.3</revnumber> <date>February " +"2004</date> <_:revdescription-1/>" #. (itstool) path: revhistory/revision #: C/index.docbook:159 @@ -180,6 +200,8 @@ msgid "" "<revnumber>Sticky Notes Applet Manual V2.2</revnumber> <date>November " "2003</date> <_:revdescription-1/>" msgstr "" +"<revnumber>Sticky Notes Applet Manual V2.2</revnumber> <date>November " +"2003</date> <_:revdescription-1/>" #. (itstool) path: revhistory/revision #: C/index.docbook:167 @@ -187,11 +209,13 @@ msgid "" "<revnumber>Sticky Notes Applet Manual V2.1</revnumber> <date>August " "2003</date> <_:revdescription-1/>" msgstr "" +"<revnumber>Sticky Notes Applet Manual V2.1</revnumber> <date>August " +"2003</date> <_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:179 msgid "Loban A Rahman <email>[email protected]</email>" -msgstr "" +msgstr "Loban A Rahman <email>[email protected]</email>" #. (itstool) path: revhistory/revision #: C/index.docbook:175 @@ -199,11 +223,13 @@ msgid "" "<revnumber>Sticky Notes Applet Manual V2.0</revnumber> <date>May 2003</date>" " <_:revdescription-1/>" msgstr "" +"<revnumber>Sticky Notes Applet Manual V2.0</revnumber> <date>May 2003</date>" +" <_:revdescription-1/>" #. (itstool) path: articleinfo/releaseinfo #: C/index.docbook:186 msgid "This manual describes version 1.10.2 of Sticky Notes." -msgstr "" +msgstr "This manual describes version 1.10.2 of Sticky Notes." #. (itstool) path: legalnotice/title #: C/index.docbook:189 @@ -218,11 +244,15 @@ msgid "" " <ulink url=\"help:mate-user-guide/feedback\" type=\"help\">MATE Feedback " "Page</ulink>." msgstr "" +"To report a bug or make a suggestion regarding the <application>Sticky " +"Notes</application> 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:195 msgid "<primary>Sticky Notes</primary>" -msgstr "" +msgstr "<primary>Sticky Notes</primary>" #. (itstool) path: sect1/title #: C/index.docbook:200 @@ -245,6 +275,8 @@ msgid "" "external ref='figures/stickynotes_applet.png' " "md5='9c1c425752e613ff9e1523aac27a7282'" msgstr "" +"external ref='figures/stickynotes_applet.png' " +"md5='9c1c425752e613ff9e1523aac27a7282'" #. (itstool) path: screenshot/mediaobject #: C/index.docbook:204 @@ -253,6 +285,9 @@ msgid "" "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky " "Notes</phrase></textobject>" msgstr "" +"<imageobject> <imagedata fileref=\"figures/stickynotes_applet.png\" " +"format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky " +"Notes</phrase></textobject>" #. (itstool) path: sect1/para #: C/index.docbook:213 @@ -264,11 +299,17 @@ msgid "" "are saved and reopened in the same position with the same dimensions and " "style." msgstr "" +"The <application>Sticky Notes</application> panel application enables you to" +" create, view, and manage sticky notes on your desktop. You can edit the " +"title, contents, dimensions, and style of sticky notes. When the panel is " +"restarted, for example when you log out and log in again, all sticky notes " +"are saved and reopened in the same position with the same dimensions and " +"style." #. (itstool) path: sect2/title #: C/index.docbook:222 msgid "To Add Sticky Notes to a Panel" -msgstr "" +msgstr "To Add Sticky Notes to a Panel" #. (itstool) path: sect2/para #: C/index.docbook:223 @@ -276,11 +317,13 @@ msgid "" "To add <application>Sticky Notes</application> to a panel, perform the " "following steps:" msgstr "" +"To add <application>Sticky Notes</application> to a panel, perform the " +"following steps:" #. (itstool) path: listitem/para #: C/index.docbook:229 msgid "Right-click on the panel." -msgstr "" +msgstr "Right-click on the panel." #. (itstool) path: listitem/para #: C/index.docbook:234 @@ -293,6 +336,8 @@ msgid "" "Scroll down the list of items in the <guilabel>Add to Panel</guilabel> " "dialog, then select <guilabel>Sticky Notes</guilabel>." msgstr "" +"Scroll down the list of items in the <guilabel>Add to Panel</guilabel> " +"dialogue, then select <guilabel>Sticky Notes</guilabel>." #. (itstool) path: listitem/para #: C/index.docbook:245 @@ -305,16 +350,18 @@ msgid "" "The layout of the <application>Sticky Notes</application> applet varies " "depending on the size and type of panel in which the applet resides." msgstr "" +"The layout of the <application>Sticky Notes</application> applet varies " +"depending on the size and type of panel in which the applet resides." #. (itstool) path: sect1/title #: C/index.docbook:258 msgid "Using Sticky Notes" -msgstr "" +msgstr "Using Sticky Notes" #. (itstool) path: sect2/title #: C/index.docbook:261 msgid "Showing and Hiding Sticky Notes" -msgstr "" +msgstr "Showing and Hiding Sticky Notes" #. (itstool) path: sect2/para #: C/index.docbook:262 @@ -323,6 +370,9 @@ msgid "" "<application>Sticky Notes</application> applet and choose <guimenuitem>Hide " "Notes</guimenuitem>." msgstr "" +"To hide all your notes, either click on the desktop, or right-click the " +"<application>Sticky Notes</application> applet and choose <guimenuitem>Hide " +"Notes</guimenuitem>." #. (itstool) path: sect2/para #: C/index.docbook:264 @@ -330,16 +380,18 @@ msgid "" "To show all your notes, click the <application>Sticky Notes</application> " "applet." msgstr "" +"To show all your notes, click the <application>Sticky Notes</application> " +"applet." #. (itstool) path: sect2/title #: C/index.docbook:268 msgid "Creating a Sticky Note" -msgstr "" +msgstr "Creating a Sticky Note" #. (itstool) path: figure/title #: C/index.docbook:270 msgid "creating a new sticky note" -msgstr "" +msgstr "creating a new sticky note" #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -352,6 +404,8 @@ msgid "" "external ref='figures/stickynote-right-menu-new.png' " "md5='5b53056bfdc7a8ffa5dc8013116d2b9f'" msgstr "" +"external ref='figures/stickynote-right-menu-new.png' " +"md5='5b53056bfdc7a8ffa5dc8013116d2b9f'" #. (itstool) path: screenshot/mediaobject #: C/index.docbook:272 @@ -360,6 +414,9 @@ msgid "" "format=\"PNG\"/> </imageobject> <textobject><phrase>creating a new sticky " "note</phrase></textobject>" msgstr "" +"<imageobject> <imagedata fileref=\"figures/stickynote-right-menu-new.png\" " +"format=\"PNG\"/> </imageobject> <textobject><phrase>creating a new sticky " +"note</phrase></textobject>" #. (itstool) path: sect2/para #: C/index.docbook:280 @@ -367,16 +424,18 @@ msgid "" "You can create a sticky note by right-clicking on the sticky note icon and " "selecting <guilabel>New Note</guilabel>, or by double-clicking the applet." msgstr "" +"You can create a sticky note by right-clicking on the sticky note icon and " +"selecting <guilabel>New Note</guilabel>, or by double-clicking the applet." #. (itstool) path: sect2/para #: C/index.docbook:282 msgid "Creating a note causes all hidden notes to be shown." -msgstr "" +msgstr "Creating a note causes all hidden notes to be shown." #. (itstool) path: sect2/title #: C/index.docbook:286 msgid "Locking and Unlocking Sticky Notes" -msgstr "" +msgstr "Locking and Unlocking Sticky Notes" #. (itstool) path: sect2/para #: C/index.docbook:287 @@ -385,16 +444,19 @@ msgid "" " unlock individual sticky notes. Locking a sticky note prevents you from " "accidentally changing the contents of the note." msgstr "" +"You can lock or unlock all sticky notes at the same time, or you can lock or" +" unlock individual sticky notes. Locking a sticky note prevents you from " +"accidentally changing the contents of the note." #. (itstool) path: varlistentry/term #: C/index.docbook:292 msgid "<phrase>To Lock or Unlock All Sticky Notes</phrase>" -msgstr "" +msgstr "<phrase>To Lock or Unlock All Sticky Notes</phrase>" #. (itstool) path: figure/title #: C/index.docbook:295 msgid "Right Clicking on the Icon" -msgstr "" +msgstr "Right Clicking on the Icon" #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -407,6 +469,8 @@ msgid "" "external ref='figures/stickynote-right-menu-lock.png' " "md5='d304b4412e3ad7e2b9590e816a25f24e'" msgstr "" +"external ref='figures/stickynote-right-menu-lock.png' " +"md5='d304b4412e3ad7e2b9590e816a25f24e'" #. (itstool) path: screenshot/mediaobject #: C/index.docbook:297 @@ -415,6 +479,9 @@ msgid "" "format=\"PNG\"/> </imageobject> <textobject><phrase>Right Clicking on the " "Icon</phrase></textobject>" msgstr "" +"<imageobject> <imagedata fileref=\"figures/stickynote-right-menu-lock.png\" " +"format=\"PNG\"/> </imageobject> <textobject><phrase>Right Clicking on the " +"Icon</phrase></textobject>" #. (itstool) path: listitem/para #: C/index.docbook:305 @@ -425,6 +492,11 @@ msgid "" "<guimenuitem>Lock Notes</guimenuitem> from the icon right-click menu again " "so that there is not a check mark next to it." msgstr "" +"To lock all sticky notes so that the notes cannot be edited, choose " +"<guimenuitem>Lock Notes</guimenuitem> from the icon right-click menu so that" +" there is a check mark next to it. To unlock all sticky notes, choose " +"<guimenuitem>Lock Notes</guimenuitem> from the icon right-click menu again " +"so that there is not a check mark next to it." #. (itstool) path: listitem/para #: C/index.docbook:311 @@ -434,11 +506,15 @@ msgid "" "of the panel application on the panel. Do not confuse this with the " "<guimenuitem>Lock Notes</guimenuitem> item." msgstr "" +"Note that all panel applications have the <guimenuitem>Lock to " +"Panel</guimenuitem> item in the right-click menu, which locks the position " +"of the panel application on the panel. Do not confuse this with the " +"<guimenuitem>Lock Notes</guimenuitem> item." #. (itstool) path: varlistentry/term #: C/index.docbook:320 msgid "<phrase>To Lock or Unlock Individual Sticky Notes</phrase>" -msgstr "" +msgstr "<phrase>To Lock or Unlock Individual Sticky Notes</phrase>" #. (itstool) path: listitem/para #: C/index.docbook:321 @@ -450,11 +526,17 @@ msgid "" "also toggle the lock/unlock state of a sticky note by clicking the lock " "button in the top left corner of the sticky note." msgstr "" +"To lock an individual sticky note, right-click on the title of the note, " +"then choose <guimenuitem>Lock Note</guimenuitem> from the popup menu. To " +"unlock an individual note, right-click on the title of the note, then choose" +" <guimenuitem>Unlock Note</guimenuitem> from the popup menu again. You can " +"also toggle the lock/unlock state of a sticky note by clicking the lock " +"button in the top left corner of the sticky note." #. (itstool) path: sect2/title #: C/index.docbook:334 msgid "Deleting Sticky Notes" -msgstr "" +msgstr "Deleting Sticky Notes" #. (itstool) path: sect2/para #: C/index.docbook:335 @@ -462,11 +544,13 @@ msgid "" "You can delete all sticky notes at the same time, or you can delete " "individual sticky notes." msgstr "" +"You can delete all sticky notes at the same time, or you can delete " +"individual sticky notes." #. (itstool) path: varlistentry/term #: C/index.docbook:339 msgid "To Delete All Sticky Notes" -msgstr "" +msgstr "To Delete All Sticky Notes" #. (itstool) path: listitem/para #: C/index.docbook:340 @@ -475,11 +559,14 @@ msgid "" "from the icon right-click menu. A confirmation dialog will appear; click on " "the <guibutton>Delete All</guibutton> button to confirm the deletion." msgstr "" +"To delete all sticky notes, choose <guimenuitem>Delete Notes</guimenuitem> " +"from the icon right-click menu. A confirmation dialogue will appear; click " +"on the <guibutton>Delete All</guibutton> button to confirm the deletion." #. (itstool) path: varlistentry/term #: C/index.docbook:346 msgid "To Delete Individual Sticky Notes" -msgstr "" +msgstr "To Delete Individual Sticky Notes" #. (itstool) path: listitem/para #: C/index.docbook:347 @@ -489,14 +576,91 @@ msgid "" "can also delete a sticky note by clicking the <guibutton>x</guibutton> in " "the top right corner." msgstr "" +"To delete an individual sticky note, right-click on the title of the note, " +"then choose <guimenuitem>Delete Note</guimenuitem> from the popup menu. You " +"can also delete a sticky note by clicking the <guibutton>x</guibutton> in " +"the top right corner." + +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "Keyboard navigation" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "Basic keyboard navigation is supported." + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "Creating Sticky notes with the keyboard" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "Accessing Sticky notes with the keyboard" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialogue." #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "Preferences" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "Sticky Notes Preferences" @@ -505,151 +669,189 @@ msgstr "Sticky Notes Preferences" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " "md5='0263f6ed6b0242d2d24a45b5d403e007'" msgstr "" +"external ref='figures/stickynotes-prefs.png' " +"md5='0263f6ed6b0242d2d24a45b5d403e007'" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " "preferences</phrase></textobject>" msgstr "" +"<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " +"format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " +"preferences</phrase></textobject>" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" -msgstr "" +msgstr "Adjusting Size" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" " menu. The <application>Sticky Notes Preferences</application> dialog is " "displayed." msgstr "" +"To configure the default size for all sticky notes, right-click on the " +"sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" +" menu. The <application>Sticky Notes Preferences</application> dialogue is " +"displayed." #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" -msgstr "" +msgstr "<guilabel>Width</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" +"Use this spin box to specify the default width of new sticky notes, in " +"pixels." #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" -msgstr "" +msgstr "<guilabel>Height</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" +"Use this spin box to specify the default height of new sticky notes, in " +"pixels." #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" -msgstr "" +msgstr "Changing Colour and Font" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " "<application>Sticky Notes Preferences</application> dialog is displayed." msgstr "" +"To configure the colour and font for all sticky notes, right-click on the " +"icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " +"<application>Sticky Notes Preferences</application> dialogue is displayed." #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" -msgstr "" +msgstr "<guilabel>Font Colour</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " "default font color for stickynotes." msgstr "" +"Click on the colour selector button to display the colour selector dialogue." +" On the colour selector dialogue, use the colour wheel or spin boxes to " +"choose the default font colour for stickynotes." #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " "select new defaults." msgstr "" +"If you have selected, <guilabel>Use colour from the system theme</guilabel>," +" then the current theme colours will be used and you will not be able to " +"select new defaults." #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" -msgstr "" +msgstr "<guilabel>Note Colour</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " "default base color for sticky notes." msgstr "" +"Click on the colour selector button to display the colour selector dialogue." +" On the colour selector dialogue, use the colour wheel or spin boxes to " +"choose the default base colour for sticky notes." #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " "new defaults." msgstr "" +"If you have selected, <guilabel>Use colour from the system theme</guilabel>," +" then the current theme colours will be used and you will not able to select" +" new defaults." #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" -msgstr "" +msgstr "<guilabel>Font</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " "sticky notes." msgstr "" +"Click on the font selector button to display the font selector dialogue. On " +"the font selector dialogue, use the list boxes to choose the default font " +"for sticky notes." #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " "you will not be able to select new defaults." msgstr "" +"If you have selected, <guilabel>Use font from the system theme</guilabel>, " +"then the current Application Font set in Font Preferences will be used and " +"you will not be able to select new defaults." #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" -msgstr "" +msgstr "Customising Behaviour" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" " menu. The <application>Sticky Notes Preferences</application> dialog is " "displayed." msgstr "" +"To customise the behaviour of <application>Sticky Notes</application>, " +"right-click on the icon, then choose <guimenu>Preferences</guimenu> from the" +" popup menu. The <application>Sticky Notes Preferences</application> " +"dialogue is displayed." #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -657,48 +859,62 @@ msgid "" "multiple workspaces, this will cause all sticky notes to be visible on all " "workspaces." msgstr "" +"To specify that sticky notes are visible on all workspaces on the desktop, " +"select <guilabel>Put notes on all workspaces</guilabel> in the " +"<guilabel>Sticky Notes Preferences</guilabel> dialogue. If you are using " +"multiple workspaces, this will cause all sticky notes to be visible on all " +"workspaces." #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " "specified in the <guilabel>Default Note Properties</guilabel> above (see " "<xref linkend=\"stickynotes-color\"/>)." msgstr "" +"The option, <guilabel>Force default colour and font on notes</guilabel>, " +"will force all sticky notes on your desktop to use the colour and font " +"settings specified in the <guilabel>Default Note Properties</guilabel> above" +" (see <xref linkend=\"stickynotes-color\"/>)." #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" -msgstr "" +msgstr "Customising Individual Notes" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" -msgstr "" +msgstr "Sticky Note Preferences" #. (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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " "md5='e2214cbb04d62d60ea0385a5dfa1630c'" msgstr "" +"external ref='figures/stickynotes-note-prefs.png' " +"md5='e2214cbb04d62d60ea0385a5dfa1630c'" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " "preferences</phrase></textobject>" msgstr "" +"<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " +"format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " +"preferences</phrase></textobject>" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -706,66 +922,87 @@ msgid "" "note's title, then choose <guimenu>Properties</guimenu> from the popup menu." " The <application>Sticky Note Properties</application> dialog is displayed." msgstr "" +"You can customise the look of each individual sticky note. This can be " +"useful for visually distinguishing different types of notes quickly. To " +"configure the settings for an individual sticky note, right-click on the " +"note's title, then choose <guimenu>Properties</guimenu> from the popup menu." +" The <application>Sticky Note Properties</application> dialogue is " +"displayed." #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" -msgstr "" +msgstr "<guilabel>Title</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." -msgstr "" +msgstr "Use this text box to specify the title of the sticky note." #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" -msgstr "" +msgstr "<guilabel>Use default colour</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" +"Select this option to use the default base colour for this sticky note. For " +"information on setting the default base colour, see <xref " +"linkend=\"stickynotes-color\"/>." #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " "font color for this sticky note." msgstr "" +"Click on the colour selector button to display the colour selector dialogue." +" On the colour selector dialogue, use the colour wheel or spin boxes to " +"choose the font colour for this sticky note." #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " "base color for this sticky note." msgstr "" +"Click on the colour selector button to display the colour selector dialogue." +" On the colour selector dialogue, use the colour wheel or spin boxes to " +"choose the base colour for this sticky note." #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" -msgstr "" +msgstr "<guilabel>Use default font</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" "color\"/>." msgstr "" +"Select this option to use the default font for this sticky note. For " +"information on setting the default font, see <xref linkend=\"stickynotes-" +"color\"/>." #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " "sticky note." msgstr "" +"Click on the font selector button to display the font selector dialogue. On " +"the font selector dialogue, use the list boxes to choose the font for this " +"sticky note." #. (itstool) path: para/ulink #: C/legal.xml:9 diff --git a/stickynotes/docs/eo/eo.po b/stickynotes/docs/eo/eo.po index e2e1eb89..c4d8c5ff 100644 --- a/stickynotes/docs/eo/eo.po +++ b/stickynotes/docs/eo/eo.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+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" @@ -45,7 +45,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -494,13 +494,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "Agordoj" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "Algluiĝaj notaj preferoj" @@ -509,7 +563,7 @@ msgstr "Algluiĝaj notaj preferoj" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -517,7 +571,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -525,12 +579,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -539,36 +593,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -576,12 +630,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -589,7 +643,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -597,12 +651,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -610,7 +664,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -618,12 +672,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -631,7 +685,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -639,12 +693,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -653,7 +707,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -663,7 +717,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -672,12 +726,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -686,7 +740,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -694,7 +748,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -702,7 +756,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -712,30 +766,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -743,7 +797,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -751,12 +805,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -764,7 +818,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/es/es.po b/stickynotes/docs/es/es.po index 8e34bc70..621582aa 100644 --- a/stickynotes/docs/es/es.po +++ b/stickynotes/docs/es/es.po @@ -6,20 +6,22 @@ # Joel Barrios <[email protected]>, 2018 # Andres Sanchez <[email protected]>, 2018 # Luis Zárate <[email protected]>, 2019 -# Toni Estévez <[email protected]>, 2020 +# seacat <[email protected]>, 2021 +# Adolfo Jayme-Barrientos, 2021 +# Toni Estévez <[email protected]>, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+0000\n" -"Last-Translator: Toni Estévez <[email protected]>, 2020\n" -"Language-Team: Spanish (https://www.transifex.com/mate/teams/13566/es/)\n" +"Last-Translator: Toni Estévez <[email protected]>, 2021\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" "Language: es\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #. Put one translator per line, in the form NAME <EMAIL>, YEAR1, YEAR2 msgctxt "_" @@ -44,9 +46,9 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" -"<year>2015-2020</year> <holder>Proyecto de documentación de MATE</holder>" +"<year>2015-2021</year> <holder>Proyecto de documentación de MATE</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:29 @@ -162,7 +164,7 @@ msgstr "" #. (itstool) path: revdescription/para #: C/index.docbook:147 msgid "Angela Boyle" -msgstr "" +msgstr "Angela Boyle" #. (itstool) path: revhistory/revision #: C/index.docbook:143 @@ -505,13 +507,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "Preferencias" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "Preferencias de las notas adhesivas" @@ -520,7 +576,7 @@ msgstr "Preferencias de las notas adhesivas" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -530,7 +586,7 @@ msgstr "" "md5='0263f6ed6b0242d2d24a45b5d403e007'" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -538,12 +594,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -552,36 +608,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" -msgstr "" +msgstr "<guilabel>Ancho</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" -msgstr "" +msgstr "<guilabel>Alto</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -589,12 +645,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -602,7 +658,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -610,12 +666,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -623,7 +679,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -631,12 +687,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -644,7 +700,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -652,12 +708,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -666,7 +722,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -676,7 +732,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -685,12 +741,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -699,7 +755,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -709,7 +765,7 @@ msgstr "" "md5='e2214cbb04d62d60ea0385a5dfa1630c'" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -717,7 +773,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -727,30 +783,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -758,7 +814,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -766,12 +822,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -779,7 +835,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " @@ -830,9 +886,9 @@ msgid "" "aware of those trademarks, then the names are in capital letters or initial " "capital letters." msgstr "" -"Muchos de los nombres utilizados por las empresas para distinguir sus " -"productos y servicios se consideran marcas comerciales. Cuando esos nombres " -"aparecen en cualquier documentación de MATE y los miembros del proyecto de " +"Muchos de los nombres usados por las empresas para distinguir sus productos " +"y servicios se consideran marcas comerciales. Cuando esos nombres aparecen " +"en cualquier documentación de MATE y los miembros del proyecto de " "documentación de MATE son conscientes de que se trata de marcas registradas," " dichos nombres se escriben en letras mayúsculas o con inical mayúscula." diff --git a/stickynotes/docs/es_AR/es_AR.po b/stickynotes/docs/es_AR/es_AR.po index d8172b4e..2607e7d6 100644 --- a/stickynotes/docs/es_AR/es_AR.po +++ b/stickynotes/docs/es_AR/es_AR.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+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" "Language: es_AR\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #. Put one translator per line, in the form NAME <EMAIL>, YEAR1, YEAR2 msgctxt "_" @@ -38,7 +38,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -487,13 +487,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "Preferencias" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "Preferencias de las notas adhesivas" @@ -502,7 +556,7 @@ msgstr "Preferencias de las notas adhesivas" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -510,7 +564,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -518,12 +572,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -532,36 +586,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -569,12 +623,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -582,7 +636,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -590,12 +644,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -603,7 +657,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -611,12 +665,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -624,7 +678,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -632,12 +686,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -646,7 +700,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -656,7 +710,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -665,12 +719,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -679,7 +733,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -687,7 +741,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -695,7 +749,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -705,30 +759,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -736,7 +790,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -744,12 +798,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -757,7 +811,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/es_CL/es_CL.po b/stickynotes/docs/es_CL/es_CL.po index 7473f0f8..91cda1d8 100644 --- a/stickynotes/docs/es_CL/es_CL.po +++ b/stickynotes/docs/es_CL/es_CL.po @@ -1,22 +1,22 @@ # # Translators: # Stefano Karapetsas <[email protected]>, 2018 -# prflr88 <[email protected]>, 2018 +# Pablo Lezaeta Reyes <[email protected]>, 2018 # Alejo_K <[email protected]>, 2018 # Robert Petitpas <[email protected]>, 2018 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+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" "Language: es_CL\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #. Put one translator per line, in the form NAME <EMAIL>, YEAR1, YEAR2 msgctxt "_" @@ -37,7 +37,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -486,13 +486,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "Preferencias" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "Preferencias de las notas adhesivas" @@ -501,7 +555,7 @@ msgstr "Preferencias de las notas adhesivas" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -509,7 +563,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -517,12 +571,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -531,36 +585,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -568,12 +622,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -581,7 +635,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -589,12 +643,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -602,7 +656,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -610,12 +664,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -623,7 +677,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -631,12 +685,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -645,7 +699,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -655,7 +709,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -664,12 +718,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -678,7 +732,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -686,7 +740,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -694,7 +748,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -704,30 +758,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -735,7 +789,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -743,12 +797,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -756,7 +810,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/es_CO/es_CO.po b/stickynotes/docs/es_CO/es_CO.po index 1e9471be..9d4ac726 100644 --- a/stickynotes/docs/es_CO/es_CO.po +++ b/stickynotes/docs/es_CO/es_CO.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+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" "Language: es_CO\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #. Put one translator per line, in the form NAME <EMAIL>, YEAR1, YEAR2 msgctxt "_" @@ -36,7 +36,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -485,13 +485,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "Preferencias" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "Preferencias de las notas adhesivas" @@ -500,7 +554,7 @@ msgstr "Preferencias de las notas adhesivas" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -508,7 +562,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -516,12 +570,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -530,36 +584,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -567,12 +621,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -580,7 +634,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -588,12 +642,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -601,7 +655,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -609,12 +663,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -622,7 +676,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -630,12 +684,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -644,7 +698,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -654,7 +708,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -663,12 +717,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -677,7 +731,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -685,7 +739,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -693,7 +747,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -703,30 +757,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -734,7 +788,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -742,12 +796,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -755,7 +809,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/es_CR/es_CR.po b/stickynotes/docs/es_CR/es_CR.po index f439a01b..ec0d4ba3 100644 --- a/stickynotes/docs/es_CR/es_CR.po +++ b/stickynotes/docs/es_CR/es_CR.po @@ -5,15 +5,15 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+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" "Language: es_CR\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #. Put one translator per line, in the form NAME <EMAIL>, YEAR1, YEAR2 msgctxt "_" @@ -36,7 +36,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -485,13 +485,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "Preferencias de las notas adhesivas" @@ -500,7 +554,7 @@ msgstr "Preferencias de las notas adhesivas" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -508,7 +562,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -516,12 +570,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -530,36 +584,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -567,12 +621,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -580,7 +634,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -588,12 +642,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -601,7 +655,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -609,12 +663,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -622,7 +676,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -630,12 +684,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -644,7 +698,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -654,7 +708,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -663,12 +717,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -677,7 +731,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -685,7 +739,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -693,7 +747,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -703,30 +757,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -734,7 +788,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -742,12 +796,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -755,7 +809,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/es_DO/es_DO.po b/stickynotes/docs/es_DO/es_DO.po index 78f012d7..4e15977c 100644 --- a/stickynotes/docs/es_DO/es_DO.po +++ b/stickynotes/docs/es_DO/es_DO.po @@ -5,15 +5,15 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+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" "Language: es_DO\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #. Put one translator per line, in the form NAME <EMAIL>, YEAR1, YEAR2 msgctxt "_" @@ -36,7 +36,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -485,13 +485,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "Preferencias de las notas adhesivas" @@ -500,7 +554,7 @@ msgstr "Preferencias de las notas adhesivas" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -508,7 +562,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -516,12 +570,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -530,36 +584,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -567,12 +621,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -580,7 +634,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -588,12 +642,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -601,7 +655,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -609,12 +663,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -622,7 +676,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -630,12 +684,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -644,7 +698,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -654,7 +708,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -663,12 +717,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -677,7 +731,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -685,7 +739,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -693,7 +747,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -703,30 +757,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -734,7 +788,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -742,12 +796,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -755,7 +809,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/es_EC/es_EC.po b/stickynotes/docs/es_EC/es_EC.po index a44026c5..702ea29d 100644 --- a/stickynotes/docs/es_EC/es_EC.po +++ b/stickynotes/docs/es_EC/es_EC.po @@ -5,15 +5,15 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+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" "Language: es_EC\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #. Put one translator per line, in the form NAME <EMAIL>, YEAR1, YEAR2 msgctxt "_" @@ -36,7 +36,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -485,13 +485,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "Preferencias de las notas adhesivas" @@ -500,7 +554,7 @@ msgstr "Preferencias de las notas adhesivas" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -508,7 +562,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -516,12 +570,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -530,36 +584,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -567,12 +621,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -580,7 +634,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -588,12 +642,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -601,7 +655,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -609,12 +663,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -622,7 +676,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -630,12 +684,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -644,7 +698,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -654,7 +708,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -663,12 +717,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -677,7 +731,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -685,7 +739,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -693,7 +747,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -703,30 +757,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -734,7 +788,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -742,12 +796,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -755,7 +809,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/es_ES/es_ES.po b/stickynotes/docs/es_ES/es_ES.po index 5db58d1b..b3174621 100644 --- a/stickynotes/docs/es_ES/es_ES.po +++ b/stickynotes/docs/es_ES/es_ES.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+0000\n" "Last-Translator: Jose11091 <[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" "Language: es_ES\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #. Put one translator per line, in the form NAME <EMAIL>, YEAR1, YEAR2 msgctxt "_" @@ -37,7 +37,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -486,13 +486,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "Preferencias" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "Preferencias de las notas adhesivas" @@ -501,7 +555,7 @@ msgstr "Preferencias de las notas adhesivas" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -509,7 +563,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -517,12 +571,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -531,36 +585,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -568,12 +622,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -581,7 +635,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -589,12 +643,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -602,7 +656,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -610,12 +664,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -623,7 +677,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -631,12 +685,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -645,7 +699,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -655,7 +709,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -664,12 +718,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -678,7 +732,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -686,7 +740,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -694,7 +748,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -704,30 +758,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -735,7 +789,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -743,12 +797,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -756,7 +810,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/es_MX/es_MX.po b/stickynotes/docs/es_MX/es_MX.po index 4c2d12ae..6e9e185a 100644 --- a/stickynotes/docs/es_MX/es_MX.po +++ b/stickynotes/docs/es_MX/es_MX.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+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" "Language: es_MX\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #. Put one translator per line, in the form NAME <EMAIL>, YEAR1, YEAR2 msgctxt "_" @@ -43,7 +43,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -492,13 +492,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "Preferencias" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "Preferencias de las notas adhesivas" @@ -507,7 +561,7 @@ msgstr "Preferencias de las notas adhesivas" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -515,7 +569,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -523,12 +577,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -537,36 +591,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -574,12 +628,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -587,7 +641,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -595,12 +649,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -608,7 +662,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -616,12 +670,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -629,7 +683,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -637,12 +691,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -651,7 +705,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -661,7 +715,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -670,12 +724,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -684,7 +738,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -692,7 +746,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -700,7 +754,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -710,30 +764,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -741,7 +795,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -749,12 +803,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -762,7 +816,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/es_NI/es_NI.po b/stickynotes/docs/es_NI/es_NI.po index 699b1bf7..1e4919d2 100644 --- a/stickynotes/docs/es_NI/es_NI.po +++ b/stickynotes/docs/es_NI/es_NI.po @@ -5,15 +5,15 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+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" "Language: es_NI\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #. Put one translator per line, in the form NAME <EMAIL>, YEAR1, YEAR2 msgctxt "_" @@ -36,7 +36,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -485,13 +485,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "Preferencias de las notas adhesivas" @@ -500,7 +554,7 @@ msgstr "Preferencias de las notas adhesivas" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -508,7 +562,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -516,12 +570,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -530,36 +584,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -567,12 +621,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -580,7 +634,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -588,12 +642,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -601,7 +655,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -609,12 +663,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -622,7 +676,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -630,12 +684,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -644,7 +698,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -654,7 +708,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -663,12 +717,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -677,7 +731,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -685,7 +739,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -693,7 +747,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -703,30 +757,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -734,7 +788,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -742,12 +796,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -755,7 +809,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/es_PA/es_PA.po b/stickynotes/docs/es_PA/es_PA.po index f3aa090e..dcfcc075 100644 --- a/stickynotes/docs/es_PA/es_PA.po +++ b/stickynotes/docs/es_PA/es_PA.po @@ -5,15 +5,15 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+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" "Language: es_PA\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #. Put one translator per line, in the form NAME <EMAIL>, YEAR1, YEAR2 msgctxt "_" @@ -36,7 +36,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -485,13 +485,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "Preferencias de las notas adhesivas" @@ -500,7 +554,7 @@ msgstr "Preferencias de las notas adhesivas" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -508,7 +562,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -516,12 +570,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -530,36 +584,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -567,12 +621,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -580,7 +634,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -588,12 +642,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -601,7 +655,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -609,12 +663,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -622,7 +676,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -630,12 +684,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -644,7 +698,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -654,7 +708,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -663,12 +717,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -677,7 +731,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -685,7 +739,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -693,7 +747,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -703,30 +757,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -734,7 +788,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -742,12 +796,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -755,7 +809,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/es_PE/es_PE.po b/stickynotes/docs/es_PE/es_PE.po index 224da218..e4439692 100644 --- a/stickynotes/docs/es_PE/es_PE.po +++ b/stickynotes/docs/es_PE/es_PE.po @@ -5,15 +5,15 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+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" "Language: es_PE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #. Put one translator per line, in the form NAME <EMAIL>, YEAR1, YEAR2 msgctxt "_" @@ -36,7 +36,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -485,13 +485,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "Preferencias de las notas adhesivas" @@ -500,7 +554,7 @@ msgstr "Preferencias de las notas adhesivas" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -508,7 +562,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -516,12 +570,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -530,36 +584,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -567,12 +621,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -580,7 +634,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -588,12 +642,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -601,7 +655,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -609,12 +663,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -622,7 +676,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -630,12 +684,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -644,7 +698,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -654,7 +708,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -663,12 +717,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -677,7 +731,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -685,7 +739,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -693,7 +747,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -703,30 +757,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -734,7 +788,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -742,12 +796,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -755,7 +809,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/es_PR/es_PR.po b/stickynotes/docs/es_PR/es_PR.po index b9415b8f..a2e36853 100644 --- a/stickynotes/docs/es_PR/es_PR.po +++ b/stickynotes/docs/es_PR/es_PR.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+0000\n" "Last-Translator: Neverest <[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" "Language: es_PR\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #. Put one translator per line, in the form NAME <EMAIL>, YEAR1, YEAR2 msgctxt "_" @@ -37,7 +37,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -486,13 +486,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "Preferencias" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "Preferencias de las notas adhesivas" @@ -501,7 +555,7 @@ msgstr "Preferencias de las notas adhesivas" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -509,7 +563,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -517,12 +571,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -531,36 +585,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -568,12 +622,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -581,7 +635,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -589,12 +643,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -602,7 +656,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -610,12 +664,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -623,7 +677,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -631,12 +685,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -645,7 +699,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -655,7 +709,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -664,12 +718,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -678,7 +732,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -686,7 +740,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -694,7 +748,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -704,30 +758,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -735,7 +789,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -743,12 +797,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -756,7 +810,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/es_SV/es_SV.po b/stickynotes/docs/es_SV/es_SV.po index 01397140..9cfccd13 100644 --- a/stickynotes/docs/es_SV/es_SV.po +++ b/stickynotes/docs/es_SV/es_SV.po @@ -5,15 +5,15 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+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" "Language: es_SV\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #. Put one translator per line, in the form NAME <EMAIL>, YEAR1, YEAR2 msgctxt "_" @@ -36,7 +36,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -485,13 +485,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "Preferencias de las notas adhesivas" @@ -500,7 +554,7 @@ msgstr "Preferencias de las notas adhesivas" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -508,7 +562,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -516,12 +570,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -530,36 +584,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -567,12 +621,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -580,7 +634,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -588,12 +642,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -601,7 +655,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -609,12 +663,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -622,7 +676,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -630,12 +684,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -644,7 +698,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -654,7 +708,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -663,12 +717,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -677,7 +731,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -685,7 +739,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -693,7 +747,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -703,30 +757,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -734,7 +788,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -742,12 +796,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -755,7 +809,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/es_UY/es_UY.po b/stickynotes/docs/es_UY/es_UY.po index e6fc577f..5e1bea52 100644 --- a/stickynotes/docs/es_UY/es_UY.po +++ b/stickynotes/docs/es_UY/es_UY.po @@ -5,15 +5,15 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+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" "Language: es_UY\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #. Put one translator per line, in the form NAME <EMAIL>, YEAR1, YEAR2 msgctxt "_" @@ -36,7 +36,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -485,13 +485,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "Preferencias de las notas adhesivas" @@ -500,7 +554,7 @@ msgstr "Preferencias de las notas adhesivas" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -508,7 +562,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -516,12 +570,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -530,36 +584,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -567,12 +621,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -580,7 +634,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -588,12 +642,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -601,7 +655,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -609,12 +663,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -622,7 +676,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -630,12 +684,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -644,7 +698,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -654,7 +708,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -663,12 +717,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -677,7 +731,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -685,7 +739,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -693,7 +747,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -703,30 +757,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -734,7 +788,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -742,12 +796,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -755,7 +809,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/es_VE/es_VE.po b/stickynotes/docs/es_VE/es_VE.po index 489e223b..bbc51447 100644 --- a/stickynotes/docs/es_VE/es_VE.po +++ b/stickynotes/docs/es_VE/es_VE.po @@ -5,15 +5,15 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+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" "Language: es_VE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #. Put one translator per line, in the form NAME <EMAIL>, YEAR1, YEAR2 msgctxt "_" @@ -36,7 +36,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -485,13 +485,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "Preferencias de las notas adhesivas" @@ -500,7 +554,7 @@ msgstr "Preferencias de las notas adhesivas" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -508,7 +562,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -516,12 +570,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -530,36 +584,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -567,12 +621,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -580,7 +634,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -588,12 +642,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -601,7 +655,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -609,12 +663,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -622,7 +676,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -630,12 +684,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -644,7 +698,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -654,7 +708,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -663,12 +717,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -677,7 +731,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -685,7 +739,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -693,7 +747,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -703,30 +757,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -734,7 +788,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -742,12 +796,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -755,7 +809,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/et/et.po b/stickynotes/docs/et/et.po index ee70f576..0b685bd5 100644 --- a/stickynotes/docs/et/et.po +++ b/stickynotes/docs/et/et.po @@ -7,10 +7,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+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" @@ -41,7 +41,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -490,13 +490,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "Eelistused" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "Märkmepaberite eelistused" @@ -505,7 +559,7 @@ msgstr "Märkmepaberite eelistused" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -513,7 +567,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -521,12 +575,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -535,36 +589,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -572,12 +626,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -585,7 +639,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -593,12 +647,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -606,7 +660,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -614,12 +668,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -627,7 +681,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -635,12 +689,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -649,7 +703,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -659,7 +713,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -668,12 +722,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -682,7 +736,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -690,7 +744,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -698,7 +752,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -708,30 +762,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -739,7 +793,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -747,12 +801,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -760,7 +814,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/eu/eu.po b/stickynotes/docs/eu/eu.po index 12705b71..c8681d63 100644 --- a/stickynotes/docs/eu/eu.po +++ b/stickynotes/docs/eu/eu.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+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" @@ -39,7 +39,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -488,13 +488,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "Hobespenak" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "Ohar itsaskorren hobespenak" @@ -503,7 +557,7 @@ msgstr "Ohar itsaskorren hobespenak" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -511,7 +565,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -519,12 +573,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -533,36 +587,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -570,12 +624,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -583,7 +637,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -591,12 +645,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -604,7 +658,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -612,12 +666,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -625,7 +679,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -633,12 +687,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -647,7 +701,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -657,7 +711,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -666,12 +720,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -680,7 +734,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -688,7 +742,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -696,7 +750,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -706,30 +760,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -737,7 +791,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -745,12 +799,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -758,7 +812,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/fa/fa.po b/stickynotes/docs/fa/fa.po index 1a07c7a0..c35c941e 100644 --- a/stickynotes/docs/fa/fa.po +++ b/stickynotes/docs/fa/fa.po @@ -7,10 +7,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+0000\n" "Last-Translator: Mahdi Pourghasem <[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" @@ -36,7 +36,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -485,13 +485,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "تنظیمات" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "ترجیحات یادداشت چسبان" @@ -500,7 +554,7 @@ msgstr "ترجیحات یادداشت چسبان" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -508,7 +562,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -516,12 +570,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -530,36 +584,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -567,12 +621,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -580,7 +634,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -588,12 +642,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -601,7 +655,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -609,12 +663,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -622,7 +676,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -630,12 +684,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -644,7 +698,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -654,7 +708,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -663,12 +717,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -677,7 +731,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -685,7 +739,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -693,7 +747,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -703,30 +757,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -734,7 +788,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -742,12 +796,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -755,7 +809,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/fi/fi.po b/stickynotes/docs/fi/fi.po index 2e47dc5e..2db7f0df 100644 --- a/stickynotes/docs/fi/fi.po +++ b/stickynotes/docs/fi/fi.po @@ -9,10 +9,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+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" @@ -43,7 +43,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -492,13 +492,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "Asetukset" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "Muistilappujen asetukset" @@ -507,7 +561,7 @@ msgstr "Muistilappujen asetukset" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -515,7 +569,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -523,12 +577,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -537,36 +591,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -574,12 +628,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -587,7 +641,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -595,12 +649,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -608,7 +662,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -616,12 +670,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -629,7 +683,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -637,12 +691,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -651,7 +705,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -661,7 +715,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -670,12 +724,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -684,7 +738,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -692,7 +746,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -700,7 +754,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -710,30 +764,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -741,7 +795,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -749,12 +803,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -762,7 +816,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/fr/fr.po b/stickynotes/docs/fr/fr.po index 9f420682..17e6be54 100644 --- a/stickynotes/docs/fr/fr.po +++ b/stickynotes/docs/fr/fr.po @@ -2,29 +2,28 @@ # Translators: # Stefano Karapetsas <[email protected]>, 2018 # Wolfgang Ulbrich <[email protected]>, 2018 -# Xorg, 2018 +# df3de0cb43d289cd23a753345b3743cd_a20684f, 2018 # Guillaume Fayard <[email protected]>, 2018 # Laurent Napias <[email protected]>, 2018 # Étienne Deparis <[email protected]>, 2018 -# Robert Antoni Buj Gelonch <[email protected]>, 2019 -# Stéphane PETRUS <[email protected]>, 2019 # Jérôme JACQUIN <[email protected]>, 2020 -# Laurent Napias, 2020 # Jerom Turible <[email protected]>, 2020 # Kent Joseph Miller <[email protected]>, 2020 +# Tubuntu, 2020 +# Stéphane PETRUS <[email protected]>, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+0000\n" -"Last-Translator: Kent Joseph Miller <[email protected]>, 2020\n" -"Language-Team: French (https://www.transifex.com/mate/teams/13566/fr/)\n" +"Last-Translator: Stéphane PETRUS <[email protected]>, 2021\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" "Language: fr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #. Put one translator per line, in the form NAME <EMAIL>, YEAR1, YEAR2 msgctxt "_" @@ -61,8 +60,8 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" -msgstr "<year>2015-2020</year> <holder>Projet de documentation MATE</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" +msgstr "<year>2015-2021</year> <holder>Projet de documentation MATE</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:29 @@ -555,13 +554,67 @@ msgstr "" "supprimer un pense-bête en cliquant sur le bouton <guibutton>x</guibutton> " "dans le coin supérieur droit du pense-bête." +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "Préférences" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "Préférences des pense-bêtes" @@ -570,7 +623,7 @@ msgstr "Préférences des pense-bêtes" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -578,7 +631,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -586,12 +639,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "Réglage de la taille" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -604,12 +657,12 @@ msgstr "" "<application>Préférences des pense-bêtes</application> s'affiche." #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "<guilabel>Largeur</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." @@ -618,12 +671,12 @@ msgstr "" "défaut des nouveaux pense-bêtes, en pixels." #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "<guilabel>Hauteur</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." @@ -632,12 +685,12 @@ msgstr "" "défaut des nouveaux pense-bêtes, en pixels." #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "Modification de la couleur et de la police" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -649,12 +702,12 @@ msgstr "" "<application>Préférences des pense-bêtes</application> s'affiche." #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -666,7 +719,7 @@ msgstr "" "pense-bêtes." #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -677,12 +730,12 @@ msgstr "" "ne pouvez pas en utiliser d'autres." #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -693,7 +746,7 @@ msgstr "" "les champs de saisie pour choisir la couleur par défaut des pense-bêtes." #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -704,12 +757,12 @@ msgstr "" " ne pouvez pas en utiliser d'autres." #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -720,7 +773,7 @@ msgstr "" " définir la police par défaut des pense-bêtes." #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -732,12 +785,12 @@ msgstr "" "autre." #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "Personnalisation du comportement" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -750,7 +803,7 @@ msgstr "" "<application>Préférences des pense-bêtes</application> s'affiche." #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -766,7 +819,7 @@ msgstr "" "espaces de travail." #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -780,12 +833,12 @@ msgstr "" "<xref linkend=\"stickynotes-color\"/>)." #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr ">Personnalisation individuelle des pense-bêtes" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "Préférence d'un pense-bête" @@ -794,7 +847,7 @@ msgstr "Préférence d'un pense-bête" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -802,7 +855,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -810,7 +863,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -826,33 +879,33 @@ msgstr "" "pense-bête</application> s'affiche." #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "Utilisez ce champ de saisie pour définir le titre du pense-bête." #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" "Cochez cette option pour que ce pense-bête utilise la couleur par défaut. " "Pour plus d'informations sur le réglage de la couleur par défaut, consultez " "<xref linkend=\"stickynotes-color\"/>." #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -863,7 +916,7 @@ msgstr "" "les champs de saisie pour choisir la couleur de la police de ce pense-bête." #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -874,12 +927,12 @@ msgstr "" "les champs de saisie pour choisir la couleur de ce pense-bête." #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -890,7 +943,7 @@ msgstr "" "<xref linkend=\"stickynotes-color\"/>." #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " @@ -915,13 +968,14 @@ msgid "" " of the GFDL at this <_:ulink-1/> or in the file COPYING-DOCS distributed " "with this manual." msgstr "" -"Permission vous est donnée de copier, distribuer et/ou modifier ce document " -"selon les termes de la Licence GNU Free Documentation License, Version 1.1 " -"ou ultérieure publiée par la Free Software Foundation sans section " -"inaltérable, sans texte de première page de couverture ni texte de dernière " -"page de couverture. Vous trouverez un exemplaire de cette licence en suivant" -" ce <_:ulink-1/> ou dans le fichier COPYING-DOCS fourni avec le présent " -"manuel." +"Permission est accordée de copier, distribuer et/ou modifier ce document " +"selon les termes de la Licence GNU de documentation libre (GFDL), Version " +"1.1 ou ultérieure publiée par la Free Software Foundation sans section " +"inaltérable, sans texte de première page ni de dernière page de couverture. " +"Vous trouverez une copie (en anglais) de la GFDL en suivant ce <ulink " +"type=\"help\" url=\"https://www.gnu.org/licenses/old-" +"licenses/fdl-1.1.html\">lien</ulink> ou dans le fichier COPYING-DOCS fourni " +"avec le présent manuel." #. (itstool) path: legalnotice/para #: C/legal.xml:12 diff --git a/stickynotes/docs/fur/fur.po b/stickynotes/docs/fur/fur.po index 6ecd65f4..67e5e128 100644 --- a/stickynotes/docs/fur/fur.po +++ b/stickynotes/docs/fur/fur.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+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" @@ -34,7 +34,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -483,13 +483,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "Preferencis" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "" @@ -498,7 +552,7 @@ msgstr "" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -506,7 +560,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -514,12 +568,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -528,36 +582,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -565,12 +619,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -578,7 +632,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -586,12 +640,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -599,7 +653,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -607,12 +661,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -620,7 +674,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -628,12 +682,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -642,7 +696,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -652,7 +706,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -661,12 +715,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -675,7 +729,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -683,7 +737,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -691,7 +745,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -701,30 +755,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -732,7 +786,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -740,12 +794,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -753,7 +807,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/fy/fy.po b/stickynotes/docs/fy/fy.po index 06c953ae..0815a6ff 100644 --- a/stickynotes/docs/fy/fy.po +++ b/stickynotes/docs/fy/fy.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+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" @@ -37,7 +37,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -486,13 +486,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "Ynstellingen" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "" @@ -501,7 +555,7 @@ msgstr "" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -509,7 +563,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -517,12 +571,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -531,36 +585,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -568,12 +622,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -581,7 +635,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -589,12 +643,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -602,7 +656,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -610,12 +664,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -623,7 +677,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -631,12 +685,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -645,7 +699,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -655,7 +709,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -664,12 +718,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -678,7 +732,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -686,7 +740,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -694,7 +748,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -704,30 +758,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -735,7 +789,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -743,12 +797,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -756,7 +810,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/ga/ga.po b/stickynotes/docs/ga/ga.po index 9970893c..7e7dce6d 100644 --- a/stickynotes/docs/ga/ga.po +++ b/stickynotes/docs/ga/ga.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+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" @@ -37,7 +37,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -486,13 +486,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "Sainroghanna" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "Airíonna Nótaí Greamaitheacha" @@ -501,7 +555,7 @@ msgstr "Airíonna Nótaí Greamaitheacha" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -509,7 +563,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -517,12 +571,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -531,36 +585,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -568,12 +622,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -581,7 +635,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -589,12 +643,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -602,7 +656,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -610,12 +664,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -623,7 +677,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -631,12 +685,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -645,7 +699,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -655,7 +709,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -664,12 +718,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -678,7 +732,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -686,7 +740,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -694,7 +748,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -704,30 +758,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -735,7 +789,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -743,12 +797,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -756,7 +810,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/gl/gl.po b/stickynotes/docs/gl/gl.po index d21909f5..617de1f4 100644 --- a/stickynotes/docs/gl/gl.po +++ b/stickynotes/docs/gl/gl.po @@ -2,16 +2,16 @@ # Translators: # Stefano Karapetsas <[email protected]>, 2018 # Wolfgang Ulbrich <[email protected]>, 2018 -# Robert Antoni Buj Gelonch <[email protected]>, 2019 -# Miguel Anxo Bouzada <[email protected]>, 2020 +# Robert Antoni Buj i Gelonch <[email protected]>, 2019 +# Miguel Anxo Bouzada <[email protected]>, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+0000\n" -"Last-Translator: Miguel Anxo Bouzada <[email protected]>, 2020\n" -"Language-Team: Galician (https://www.transifex.com/mate/teams/13566/gl/)\n" +"Last-Translator: Miguel Anxo Bouzada <[email protected]>, 2021\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" @@ -39,9 +39,9 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" -"<year>2015-2020</year> <holder>Proxecto de documentación do MATE</holder>" +"<year>2015-2021</year> <holder>Proxecto de documentación do MATE</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:29 @@ -500,13 +500,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "Preferencias" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "Preferencias das notas adhesivas" @@ -515,7 +569,7 @@ msgstr "Preferencias das notas adhesivas" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -525,7 +579,7 @@ msgstr "" "md5='0263f6ed6b0242d2d24a45b5d403e007'" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -533,12 +587,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -547,36 +601,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "<guilabel>Largo</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "<guilabel>Alto</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -584,12 +638,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -597,7 +651,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -605,12 +659,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -618,7 +672,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -626,12 +680,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "<guilabel>Tipo de letra</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -639,7 +693,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -647,12 +701,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -661,7 +715,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -671,7 +725,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -680,12 +734,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -694,7 +748,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -704,7 +758,7 @@ msgstr "" "md5='e2214cbb04d62d60ea0385a5dfa1630c'" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -712,7 +766,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -722,30 +776,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -753,7 +807,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -761,12 +815,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -774,7 +828,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/gu/gu.po b/stickynotes/docs/gu/gu.po index b927ca3e..7d8ace52 100644 --- a/stickynotes/docs/gu/gu.po +++ b/stickynotes/docs/gu/gu.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+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" @@ -35,7 +35,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -484,13 +484,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "પસંદગીઓ" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "સ્ટીકી નોંધો પસંદગીઓ" @@ -499,7 +553,7 @@ msgstr "સ્ટીકી નોંધો પસંદગીઓ" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -507,7 +561,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -515,12 +569,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -529,36 +583,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -566,12 +620,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -579,7 +633,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -587,12 +641,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -600,7 +654,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -608,12 +662,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -621,7 +675,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -629,12 +683,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -643,7 +697,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -653,7 +707,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -662,12 +716,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -676,7 +730,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -684,7 +738,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -692,7 +746,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -702,30 +756,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -733,7 +787,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -741,12 +795,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -754,7 +808,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/ha/ha.po b/stickynotes/docs/ha/ha.po index 8a6b983c..40fa458d 100644 --- a/stickynotes/docs/ha/ha.po +++ b/stickynotes/docs/ha/ha.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+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" @@ -34,7 +34,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -483,13 +483,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "Fifiko" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "" @@ -498,7 +552,7 @@ msgstr "" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -506,7 +560,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -514,12 +568,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -528,36 +582,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -565,12 +619,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -578,7 +632,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -586,12 +640,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -599,7 +653,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -607,12 +661,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -620,7 +674,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -628,12 +682,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -642,7 +696,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -652,7 +706,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -661,12 +715,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -675,7 +729,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -683,7 +737,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -691,7 +745,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -701,30 +755,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -732,7 +786,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -740,12 +794,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -753,7 +807,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/he/he.po b/stickynotes/docs/he/he.po index 1a258eb7..e68bdadf 100644 --- a/stickynotes/docs/he/he.po +++ b/stickynotes/docs/he/he.po @@ -4,20 +4,20 @@ # בר בוכובזה <[email protected]>, 2018 # Yaron Shahrabani <[email protected]>, 2020 # shy tzedaka <[email protected]>, 2020 -# Omer, 2020 +# 63f334ffc0709ba0fc2361b80bf3c0f0_00ffd1e <ab96c93ca0ac55ba7fa06385427e60dd_878890>, 2020 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+0000\n" -"Last-Translator: Omer, 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 "_" @@ -38,8 +38,8 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" -msgstr "<year>2019-2020</year> <holder>מיזם התיעוד של MATE</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" +msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:29 @@ -282,7 +282,7 @@ msgstr "קליק ימני על הלוח." #. (itstool) path: listitem/para #: C/index.docbook:234 msgid "Choose <guimenuitem>Add to Panel</guimenuitem>." -msgstr "" +msgstr "בחירת ב<guimenuitem>הוספה ללוח</guimenuitem>." #. (itstool) path: listitem/para #: C/index.docbook:239 @@ -294,7 +294,7 @@ msgstr "" #. (itstool) path: listitem/para #: C/index.docbook:245 msgid "Click <guibutton>Add</guibutton>." -msgstr "" +msgstr "לחיצה על <guibutton>הוספה</guibutton>." #. (itstool) path: sect2/para #: C/index.docbook:250 @@ -487,13 +487,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "העדפות" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "העדפות פתקיות דביקות" @@ -502,7 +556,7 @@ msgstr "העדפות פתקיות דביקות" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -510,7 +564,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -518,12 +572,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -532,36 +586,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -569,12 +623,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -582,7 +636,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -590,12 +644,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -603,7 +657,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -611,12 +665,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -624,7 +678,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -632,12 +686,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -646,7 +700,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -656,7 +710,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -665,12 +719,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -679,7 +733,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -687,7 +741,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -695,7 +749,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -705,30 +759,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -736,7 +790,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -744,12 +798,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -757,7 +811,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/hi/hi.po b/stickynotes/docs/hi/hi.po index 21be89df..12a456c9 100644 --- a/stickynotes/docs/hi/hi.po +++ b/stickynotes/docs/hi/hi.po @@ -7,10 +7,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+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" @@ -40,7 +40,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -489,13 +489,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "वरीयताएँ" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "स्टिकी नोट्स वरीयताएँ" @@ -504,7 +558,7 @@ msgstr "स्टिकी नोट्स वरीयताएँ" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -512,7 +566,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -520,12 +574,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -534,36 +588,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -571,12 +625,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -584,7 +638,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -592,12 +646,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -605,7 +659,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -613,12 +667,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -626,7 +680,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -634,12 +688,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -648,7 +702,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -658,7 +712,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -667,12 +721,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -681,7 +735,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -689,7 +743,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -697,7 +751,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -707,30 +761,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -738,7 +792,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -746,12 +800,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -759,7 +813,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/hr/hr.po b/stickynotes/docs/hr/hr.po index 7d67873f..ca3f7880 100644 --- a/stickynotes/docs/hr/hr.po +++ b/stickynotes/docs/hr/hr.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+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" @@ -60,8 +60,8 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" -msgstr "<year>2015-2020</year> <holder>MATE dokumentacijski projekt</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" +msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:29 @@ -521,13 +521,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "Prilagodbe" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "" @@ -536,7 +590,7 @@ msgstr "" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -544,7 +598,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -552,12 +606,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -566,36 +620,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -603,12 +657,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -616,7 +670,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -624,12 +678,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -637,7 +691,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -645,12 +699,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -658,7 +712,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -666,12 +720,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -680,7 +734,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -690,7 +744,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -699,12 +753,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -713,7 +767,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -721,7 +775,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -729,7 +783,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -739,30 +793,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -770,7 +824,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -778,12 +832,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -791,7 +845,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/hu/hu.po b/stickynotes/docs/hu/hu.po index a56be4c8..303eff2d 100644 --- a/stickynotes/docs/hu/hu.po +++ b/stickynotes/docs/hu/hu.po @@ -6,17 +6,16 @@ # Balázs Meskó <[email protected]>, 2018 # KAMI KAMI <[email protected]>, 2018 # Wolfgang Ulbrich <[email protected]>, 2019 -# Robert Antoni Buj Gelonch <[email protected]>, 2019 +# Robert Antoni Buj i Gelonch <[email protected]>, 2019 # Csaba Székely <[email protected]>, 2019 -# Szabó Máté <[email protected]>, 2020 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+0000\n" -"Last-Translator: Szabó Máté <[email protected]>, 2020\n" -"Language-Team: Hungarian (https://www.transifex.com/mate/teams/13566/hu/)\n" +"Last-Translator: Csaba Székely <[email protected]>, 2019\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" @@ -52,8 +51,8 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" -msgstr "<year>2015-2020</year> <holder>MATE Dokumentációs Projekt</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" +msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:29 @@ -559,13 +558,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "Beállítások" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "Ragadós cetlik beállításai" @@ -574,7 +627,7 @@ msgstr "Ragadós cetlik beállításai" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -584,7 +637,7 @@ msgstr "" "md5='0263f6ed6b0242d2d24a45b5d403e007'" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -595,12 +648,12 @@ msgstr "" "preferenciáit</phrase></textobject>" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "Állítsa be a méretet" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -609,12 +662,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "<guilabel>Szélesség</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." @@ -623,12 +676,12 @@ msgstr "" "szélességét pixelben." #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "<guilabel>Magasság</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." @@ -637,12 +690,12 @@ msgstr "" "magasságát pixelben." #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "A szín és a betűtípus változtatása" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -650,12 +703,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "<guilabel>Betűtípus színe</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -663,7 +716,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -671,12 +724,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "<guilabel>Jegyzet színe</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -688,7 +741,7 @@ msgstr "" "kiválasztásához." #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -696,12 +749,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "<guilabel>Betűtípus</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -712,7 +765,7 @@ msgstr "" "dobozokat a ragadós cetlik alapértelmezett betűtípusának kiválasztásához." #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -720,12 +773,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "Viselkedés testreszabása" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -734,7 +787,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -744,7 +797,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -753,12 +806,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "Egyenként testre szabhatja a jegyzeteket" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "Ragadós cetli preferenciák" @@ -767,7 +820,7 @@ msgstr "Ragadós cetli preferenciák" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -777,7 +830,7 @@ msgstr "" "md5='e2214cbb04d62d60ea0385a5dfa1630c'" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -785,7 +838,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -795,30 +848,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "<guilabel>Cím</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "<guilabel>Használja az alapértelmezett színt</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -826,7 +879,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -834,12 +887,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "<guilabel>Használja az alapértelmezett betűtípust</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -847,7 +900,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/hy/hy.po b/stickynotes/docs/hy/hy.po index a3b6c523..383dc67e 100644 --- a/stickynotes/docs/hy/hy.po +++ b/stickynotes/docs/hy/hy.po @@ -7,10 +7,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+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" @@ -36,7 +36,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -485,13 +485,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "Հատկություններ" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "Կպչուն գրառման պարամետրերը" @@ -500,7 +554,7 @@ msgstr "Կպչուն գրառման պարամետրերը" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -508,7 +562,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -516,12 +570,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -530,36 +584,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -567,12 +621,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -580,7 +634,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -588,12 +642,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -601,7 +655,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -609,12 +663,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -622,7 +676,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -630,12 +684,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -644,7 +698,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -654,7 +708,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -663,12 +717,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -677,7 +731,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -685,7 +739,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -693,7 +747,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -703,30 +757,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -734,7 +788,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -742,12 +796,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -755,7 +809,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/ia/ia.po b/stickynotes/docs/ia/ia.po index f4d5c302..b8ed8f57 100644 --- a/stickynotes/docs/ia/ia.po +++ b/stickynotes/docs/ia/ia.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+0000\n" "Last-Translator: SoftInterlingua <>, 2020\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" @@ -35,7 +35,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -484,13 +484,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "Preferentias" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "" @@ -499,7 +553,7 @@ msgstr "" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -507,7 +561,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -515,12 +569,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -529,36 +583,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -566,12 +620,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -579,7 +633,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -587,12 +641,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -600,7 +654,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -608,12 +662,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -621,7 +675,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -629,12 +683,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -643,7 +697,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -653,7 +707,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -662,12 +716,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -676,7 +730,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -684,7 +738,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -692,7 +746,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -702,30 +756,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -733,7 +787,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -741,12 +795,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -754,7 +808,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/id/id.po b/stickynotes/docs/id/id.po index 2b506ebd..ec9a9c63 100644 --- a/stickynotes/docs/id/id.po +++ b/stickynotes/docs/id/id.po @@ -4,16 +4,16 @@ # Willy Sudiarto Raharjo <[email protected]>, 2018 # Wolfgang Ulbrich <[email protected]>, 2018 # Kukuh Syafaat <[email protected]>, 2018 -# Andika Triwidada <[email protected]>, 2020 # Chotibul Studio <[email protected]>, 2020 +# Andika Triwidada <[email protected]>, 2022 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+0000\n" -"Last-Translator: Chotibul Studio <[email protected]>, 2020\n" -"Language-Team: Indonesian (https://www.transifex.com/mate/teams/13566/id/)\n" +"Last-Translator: Andika Triwidada <[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" @@ -44,13 +44,13 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" -msgstr "<year>2015-2020</year> <holder>Projek Dokumentasi MATE</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" +msgstr "<year>2015-2021</year> <holder>Projek Dokumentasi MATE</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:29 msgid "<year>2005</year> <holder>Davyd Madeley</holder>" -msgstr "" +msgstr "<year>2005</year> <holder>Davyd Madeley</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:33 @@ -60,12 +60,12 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:37 msgid "<year>2004</year> <holder>Angela Boyle</holder>" -msgstr "" +msgstr "<year>2004</year> <holder>Angela Boyle</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:41 msgid "<year>2003</year> <year>2004</year> <holder>Sun Microsystems</holder>" -msgstr "" +msgstr "<year>2003</year> <year>2004</year> <holder>Sun Microsystems</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:46 @@ -91,6 +91,8 @@ msgid "" "<firstname>MATE Documentation Team</firstname> <surname/> <affiliation> " "<orgname>MATE Desktop</orgname> </affiliation>" msgstr "" +"<firstname>Tim Dokumentasi MATE </firstname> <surname/> <affiliation> " +"<orgname>MATE Desktop</orgname> </affiliation>" #. (itstool) path: authorgroup/author #: C/index.docbook:75 @@ -121,6 +123,9 @@ msgid "" "<orgname>GNOME Project</orgname> " "<address><email>[email protected]</email></address> </affiliation>" msgstr "" +"<firstname>Davyd</firstname><surname>Madeley</surname> <affiliation> " +"<orgname>GNOME Project</orgname> " +"<address><email>[email protected]</email></address> </affiliation>" #. (itstool) path: revdescription/para #: C/index.docbook:125 @@ -137,7 +142,7 @@ msgstr "" #. (itstool) path: revdescription/para #: C/index.docbook:133 C/index.docbook:140 msgid "Davyd Madeley" -msgstr "" +msgstr "Davyd Madeley" #. (itstool) path: revhistory/revision #: C/index.docbook:129 @@ -156,7 +161,7 @@ msgstr "" #. (itstool) path: revdescription/para #: C/index.docbook:147 msgid "Angela Boyle" -msgstr "" +msgstr "Angela Boyle" #. (itstool) path: revhistory/revision #: C/index.docbook:143 @@ -283,12 +288,12 @@ msgstr "" #. (itstool) path: listitem/para #: C/index.docbook:229 msgid "Right-click on the panel." -msgstr "" +msgstr "Klik kanan pada panel." #. (itstool) path: listitem/para #: C/index.docbook:234 msgid "Choose <guimenuitem>Add to Panel</guimenuitem>." -msgstr "" +msgstr "Pilih <guimenuitem>Tambah ke Panel</guimenuitem>." #. (itstool) path: listitem/para #: C/index.docbook:239 @@ -300,7 +305,7 @@ msgstr "" #. (itstool) path: listitem/para #: C/index.docbook:245 msgid "Click <guibutton>Add</guibutton>." -msgstr "" +msgstr "Klik <guibutton>Tambah</guibutton>." #. (itstool) path: sect2/para #: C/index.docbook:250 @@ -493,13 +498,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "Preferensi" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "Preferensi Catatan Tempel" @@ -508,7 +567,7 @@ msgstr "Preferensi Catatan Tempel" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -516,7 +575,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -524,12 +583,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -538,36 +597,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" -msgstr "" +msgstr "<guilabel>Lebar</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" -msgstr "" +msgstr "<guilabel>Tinggi</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -575,12 +634,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -588,7 +647,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -596,12 +655,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -609,7 +668,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -617,12 +676,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" -msgstr "" +msgstr "<guilabel>Fonta</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -630,7 +689,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -638,12 +697,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -652,7 +711,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -662,7 +721,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -671,12 +730,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -685,7 +744,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -693,7 +752,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -701,7 +760,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -711,30 +770,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -742,7 +801,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -750,12 +809,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -763,7 +822,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " @@ -785,6 +844,13 @@ msgid "" " of the GFDL at this <_:ulink-1/> or in the file COPYING-DOCS distributed " "with this manual." msgstr "" +"Hak diberikan untuk menyalin, mendistribusikan, dan/atau mengubah dokumen " +"ini di bawah persyaratan GNU Free Documentation License (GFDL, Lisensi " +"Dokumentasi Bebas GNU), Versi 1.1 atau sebarang versi setelahnya yang " +"dipublikasikan oleh Free Software Foundation tanpa Invariant Section, tanpa " +"Front-Cover Texts, dan tanpa Back-Cover Texts. Anda dapat menemukan salinan " +"dari GFDL pada <_:ulink-1/> atau di dalam berkas COPYING-DOCS yang " +"didistribusikan bersama manual ini." #. (itstool) path: legalnotice/para #: C/legal.xml:12 diff --git a/stickynotes/docs/ie/ie.po b/stickynotes/docs/ie/ie.po index 3bdd12c3..f7f834ed 100644 --- a/stickynotes/docs/ie/ie.po +++ b/stickynotes/docs/ie/ie.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+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" @@ -34,7 +34,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -483,13 +483,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "Preferenties" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "Proprietás de Notes adhesiv" @@ -498,7 +552,7 @@ msgstr "Proprietás de Notes adhesiv" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -506,7 +560,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -514,12 +568,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -528,36 +582,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -565,12 +619,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -578,7 +632,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -586,12 +640,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -599,7 +653,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -607,12 +661,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -620,7 +674,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -628,12 +682,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -642,7 +696,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -652,7 +706,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -661,12 +715,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -675,7 +729,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -683,7 +737,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -691,7 +745,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -701,30 +755,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -732,7 +786,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -740,12 +794,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -753,7 +807,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/ig/ig.po b/stickynotes/docs/ig/ig.po index f6bfe3d2..3eb77b49 100644 --- a/stickynotes/docs/ig/ig.po +++ b/stickynotes/docs/ig/ig.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+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" @@ -34,7 +34,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -483,13 +483,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "Nkarachọ" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "" @@ -498,7 +552,7 @@ msgstr "" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -506,7 +560,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -514,12 +568,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -528,36 +582,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -565,12 +619,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -578,7 +632,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -586,12 +640,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -599,7 +653,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -607,12 +661,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -620,7 +674,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -628,12 +682,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -642,7 +696,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -652,7 +706,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -661,12 +715,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -675,7 +729,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -683,7 +737,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -691,7 +745,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -701,30 +755,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -732,7 +786,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -740,12 +794,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -753,7 +807,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/is/is.po b/stickynotes/docs/is/is.po index 184e0a90..1a7d0e6b 100644 --- a/stickynotes/docs/is/is.po +++ b/stickynotes/docs/is/is.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+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" @@ -38,7 +38,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -487,13 +487,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "Kjörstillingar" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "Stillingar fyrir minnismiða" @@ -502,7 +556,7 @@ msgstr "Stillingar fyrir minnismiða" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -510,7 +564,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -518,12 +572,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -532,36 +586,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -569,12 +623,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -582,7 +636,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -590,12 +644,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -603,7 +657,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -611,12 +665,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -624,7 +678,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -632,12 +686,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -646,7 +700,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -656,7 +710,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -665,12 +719,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -679,7 +733,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -687,7 +741,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -695,7 +749,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -705,30 +759,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -736,7 +790,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -744,12 +798,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -757,7 +811,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/it/it.po b/stickynotes/docs/it/it.po index 16ac28fe..078bca2d 100644 --- a/stickynotes/docs/it/it.po +++ b/stickynotes/docs/it/it.po @@ -4,35 +4,35 @@ # Wolfgang Ulbrich <[email protected]>, 2018 # Marco Z. <[email protected]>, 2018 # talorno <[email protected]>, 2018 -# Giuseppe Pignataro <[email protected]>, 2018 +# Giuseppe Pignataro (Fastbyte01) <[email protected]>, 2018 # andrea pittaro <[email protected]>, 2019 # Enrico B. <[email protected]>, 2019 -# Alessandro Volturno <[email protected]>, 2020 +# Alessandro Volturno <[email protected]>, 2023 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+0000\n" -"Last-Translator: Alessandro Volturno <[email protected]>, 2020\n" -"Language-Team: Italian (https://www.transifex.com/mate/teams/13566/it/)\n" +"Last-Translator: Alessandro Volturno <[email protected]>, 2023\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" "Language: it\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #. Put one translator per line, in the form NAME <EMAIL>, YEAR1, YEAR2 msgctxt "_" msgid "translator-credits" msgstr "" "Enrico Bella, 2019\n" -"Alessandro Volturno, 2020" +"Alessandro Volturno, 2020, 2022" #. (itstool) path: articleinfo/title #: C/index.docbook:19 msgid "Sticky Notes Manual" -msgstr "Manuale di Note Adesive" +msgstr "Manuale di Sticky Notes" #. (itstool) path: abstract/para #: C/index.docbook:21 @@ -40,14 +40,14 @@ msgid "" "Sticky Notes enables you to create, view, and manage sticky notes on your " "desktop." msgstr "" -"Note Adesive consente di creare, visualizzare e gestire note adesive sul " +"Sticky Notes consente di creare, visualizzare e gestire note adesive sul " "desktop." #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" -"<year>2015-2020</year> <holder>Progetto Documentazione di MATE</holder>" +"<year>2015-2021</year> <holder>Progetto Documentazione di MATE</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:29 @@ -147,7 +147,7 @@ msgid "" "<revnumber>Sticky Notes Applet Manual V2.7</revnumber> <date>July " "2015</date> <_:revdescription-1/>" msgstr "" -"<revnumber>Manuale di Note adesive V2.7</revnumber> <date>Luglio 2015</date>" +"<revnumber>Manuale di Sticky Notes V2.7</revnumber> <date>Luglio 2015</date>" " <_:revdescription-1/>" #. (itstool) path: revdescription/para @@ -161,7 +161,7 @@ msgid "" "<revnumber>Sticky Notes Applet Manual V2.6</revnumber> <date>September " "2005</date> <_:revdescription-1/>" msgstr "" -"<revnumber>Manuale di Note adesive V2.6</revnumber> <date>Settembre " +"<revnumber>Manuale di Sticky Notes V2.6</revnumber> <date>Settembre " "2005</date> <_:revdescription-1/>" #. (itstool) path: revhistory/revision @@ -170,7 +170,7 @@ msgid "" "<revnumber>Sticky Notes Applet Manual V2.5</revnumber> <date>March " "2005</date> <_:revdescription-1/>" msgstr "" -"<revnumber>Manuale di Note adesive V2.5</revnumber> <date>Marzo 2005</date> " +"<revnumber>Manuale diSticky Notes V2.5</revnumber> <date>Marzo 2005</date> " "<_:revdescription-1/>" #. (itstool) path: revdescription/para @@ -184,7 +184,7 @@ msgid "" "<revnumber>Sticky Notes Applet Manual V2.4</revnumber> <date>September " "2004</date> <_:revdescription-1/>" msgstr "" -"<revnumber>Manuale di Note adesive V2.4</revnumber> <date>Settembre " +"<revnumber>Manuale di Sticky Notes V2.4</revnumber> <date>Settembre " "2004</date> <_:revdescription-1/>" #. (itstool) path: revdescription/para @@ -198,7 +198,7 @@ msgid "" "<revnumber>Sticky Notes Applet Manual V2.3</revnumber> <date>February " "2004</date> <_:revdescription-1/>" msgstr "" -"<revnumber>Manuale di Note adesive V2.3</revnumber> <date>Febbraio " +"<revnumber>Manuale di Sticky Notes V2.3</revnumber> <date>Febbraio " "2004</date> <_:revdescription-1/>" #. (itstool) path: revhistory/revision @@ -207,7 +207,7 @@ msgid "" "<revnumber>Sticky Notes Applet Manual V2.2</revnumber> <date>November " "2003</date> <_:revdescription-1/>" msgstr "" -"<revnumber>Manuale di Note adesive V2.2</revnumber> <date>Novembre " +"<revnumber>Manuale di Sticky Notese V2.2</revnumber> <date>Novembre " "2003</date> <_:revdescription-1/>" #. (itstool) path: revhistory/revision @@ -216,7 +216,7 @@ msgid "" "<revnumber>Sticky Notes Applet Manual V2.1</revnumber> <date>August " "2003</date> <_:revdescription-1/>" msgstr "" -"<revnumber>Manuale di Note adesive V2.1</revnumber> <date>Agosto 2003</date>" +"<revnumber>Manuale di Sticky Notes V2.1</revnumber> <date>Agosto 2003</date>" " <_:revdescription-1/>" #. (itstool) path: revdescription/para @@ -230,13 +230,13 @@ msgid "" "<revnumber>Sticky Notes Applet Manual V2.0</revnumber> <date>May 2003</date>" " <_:revdescription-1/>" msgstr "" -"<revnumber>Manuale di Note adesive V2.0</revnumber> <date>Maggio 2003</date>" +"<revnumber>Manuale di Sticky Notes V2.0</revnumber> <date>Maggio 2003</date>" " <_:revdescription-1/>" #. (itstool) path: articleinfo/releaseinfo #: C/index.docbook:186 msgid "This manual describes version 1.10.2 of Sticky Notes." -msgstr "Questo manuale è relativo alla versione 1.10.2 di Note adesive" +msgstr "Questo manuale è relativo alla versione 1.10.2 di Sticky Notes" #. (itstool) path: legalnotice/title #: C/index.docbook:189 @@ -251,15 +251,15 @@ msgid "" " <ulink url=\"help:mate-user-guide/feedback\" type=\"help\">MATE Feedback " "Page</ulink>." msgstr "" -"Per segnalare un malfunzionamento o un suggerimento per <application>Note " -"Adesive</application> o su questo manuale, seguire le indicazioni nella " -"<ulink url=\"help:mate-user-guide/feedback\" type=\"help\">Pagina di " -"feedback di MATE</ulink>." +"Per segnalare un malfunzionamento o dare suggerimenti per " +"<application>Sticky Notes</application> o su questo manuale, seguire le " +"indicazioni nella <ulink url=\"help:mate-user-guide/feedback\" " +"type=\"help\">Pagina di feedback di MATE</ulink>." #. (itstool) path: article/indexterm #: C/index.docbook:195 msgid "<primary>Sticky Notes</primary>" -msgstr "<primary>Note Adesive</primary>" +msgstr "<primary>Sticky Notes</primary>" #. (itstool) path: sect1/title #: C/index.docbook:200 @@ -269,7 +269,7 @@ msgstr "Introduzione" #. (itstool) path: figure/title #: C/index.docbook:202 msgid "Sticky Notes" -msgstr "Note adesive" +msgstr "Sticky Notes" #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -293,8 +293,8 @@ msgid "" "Notes</phrase></textobject>" msgstr "" "<imageobject> <imagedata fileref=\"figures/stickynotes_applet.png\" " -"format=\"PNG\"/> </imageobject> <textobject><phrase>Mostra Note " -"Adesive</phrase></textobject>" +"format=\"PNG\"/> </imageobject> <textobject><phrase>Mostra Sticky " +"Notes</phrase></textobject>" #. (itstool) path: sect1/para #: C/index.docbook:213 @@ -306,17 +306,17 @@ msgid "" "are saved and reopened in the same position with the same dimensions and " "style." msgstr "" -"L'applicazione <application>Note Adesive</application> consente di creare, " -"visualizzare e gestire note adesive sul desktop. È possibile modificare il " -"titolo, il contenuto, le dimensioni e lo stile delle note. Quando il " -"pannello viene riavviato, ad esempio quando ci si disconnette e si effettua " -"nuovamente l'accesso, tutte le note adesive vengono salvate e riaperte con " -"la stessa posizione, dimensione e stile. " +"L'applicazione per pannello <application>Sticky Notes</application> consente" +" di creare, visualizzare e gestire note adesive sul desktop. È possibile " +"modificare il titolo, il contenuto, le dimensioni e lo stile delle note. " +"Quando il pannello viene riavviato, ad esempio quando ci si disconnette e si" +" effettua nuovamente l'accesso, tutte le note adesive vengono salvate e " +"riaperte con la stessa posizione, dimensione e stile. " #. (itstool) path: sect2/title #: C/index.docbook:222 msgid "To Add Sticky Notes to a Panel" -msgstr "Aggiungere Note Adesive al pannello" +msgstr "Aggiungere Sticky Notes al pannello" #. (itstool) path: sect2/para #: C/index.docbook:223 @@ -324,7 +324,7 @@ msgid "" "To add <application>Sticky Notes</application> to a panel, perform the " "following steps:" msgstr "" -"Per aggiungere <application>Note Adesive</application> al pannello seguire " +"Per aggiungere <application>Sticky Notes</application> al pannello seguire " "questi passaggi:" #. (itstool) path: listitem/para @@ -344,7 +344,7 @@ msgid "" "dialog, then select <guilabel>Sticky Notes</guilabel>." msgstr "" "Scorrere in basso la lista di <guilabel>Aggiungi al pannello</guilabel>, e " -"selezionare <guilabel>Note Adesive</guilabel>." +"selezionare <guilabel>Sticky Notes</guilabel>." #. (itstool) path: listitem/para #: C/index.docbook:245 @@ -357,13 +357,13 @@ msgid "" "The layout of the <application>Sticky Notes</application> applet varies " "depending on the size and type of panel in which the applet resides." msgstr "" -"Il layout della applet <application>Note Adesive</application> varia in base" -" alla dimensione e al tipo di pannello in cui viene inserito." +"Il layout dell'applet <application>Sticky Notes</application> varia in base " +"alla dimensione e al tipo di pannello in cui viene inserito." #. (itstool) path: sect1/title #: C/index.docbook:258 msgid "Using Sticky Notes" -msgstr "Usare Note Adesive" +msgstr "Utilizzare Sticky Notes" #. (itstool) path: sect2/title #: C/index.docbook:261 @@ -378,7 +378,7 @@ msgid "" "Notes</guimenuitem>." msgstr "" "Per nascondere tutte le note fare clic sul desktop oppure fare clic con il " -"tasto destro del mouse sull'applet <application>Note Adesive</application> e" +"tasto destro del mouse sull'applet <application>Sticky Notes</application> e" " selezionare <guimenuitem>Nascondi Note</guimenuitem>." #. (itstool) path: sect2/para @@ -387,8 +387,8 @@ msgid "" "To show all your notes, click the <application>Sticky Notes</application> " "applet." msgstr "" -"Per mostrare tutte le note fai clic sulla applet <application>Note " -"adesive</application>." +"Per mostrare tutte le note fare clic sull'applet <application>Sticky " +"Notes</application>." #. (itstool) path: sect2/title #: C/index.docbook:268 @@ -422,8 +422,8 @@ msgid "" "note</phrase></textobject>" msgstr "" "<imageobject> <imagedata fileref=\"figures/stickynote-right-menu-new.png\" " -"format=\"PNG\"/> </imageobject> <textobject><phrase>creazione di una nota " -"adesiva</phrase></textobject>" +"format=\"PNG\"/> </imageobject> <textobject><phrase>creazione di una nuova " +"nota adesiva</phrase></textobject>" #. (itstool) path: sect2/para #: C/index.docbook:280 @@ -527,7 +527,7 @@ msgstr "" #. (itstool) path: varlistentry/term #: C/index.docbook:320 msgid "<phrase>To Lock or Unlock Individual Sticky Notes</phrase>" -msgstr "<phrase>Bloccare o sbloccare note adesive singole</phrase>" +msgstr "<phrase>Bloccare o sbloccare note adesive individuali</phrase>" #. (itstool) path: listitem/para #: C/index.docbook:321 @@ -540,12 +540,12 @@ msgid "" "button in the top left corner of the sticky note." msgstr "" "Per bloccare una singola nota adesiva, fare clic con il tasto destro sul " -"titolo della nota, quindi selezionare dal menu che compare: " +"titolo della nota, quindi selezionare dal menù a comparsa " "<guimenuitem>Blocca nota</guimenuitem>. Per sbloccare una singola nota, " -"ripetere l'operazione precedente, ma selezionare <guimenuitem>Sblocca " -"nota</guimenuitem>dal menu. È possibile eseguire le operazioni di " -"blocco/sblocco di una nota adesiva facendo clic sul pulsante contrassegnato " -"da un lucchetto in alto a sinistra della nota." +"ripetere l'operazione precedente, ma selezionare dal menù " +"<guimenuitem>Sblocca nota</guimenuitem>. È possibile eseguire le operazioni " +"di blocco/sblocco di una nota adesiva facendo clic sul pulsante " +"contrassegnato da un lucchetto in alto a sinistra della nota." #. (itstool) path: sect2/title #: C/index.docbook:334 @@ -592,19 +592,96 @@ msgid "" "can also delete a sticky note by clicking the <guibutton>x</guibutton> in " "the top right corner." msgstr "" -"Per eliminare una singola nota adesiva, fareclic con il tasto destro sul " +"Per eliminare una singola nota adesiva, fare clic con il tasto destro sul " "titolo della nota, quindi selezionare <guimenuitem>Elimina " "nota...</guimenuitem> dal menu che appare. È anche possibile eliminare una " "nota adesiva facendo clic sulla <guibutton>x </guibutton> nell'angolo in " "alto a destra." +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "Navigazione da tastiera" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "È supportata la navigazione da tastiera basilare." + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "Creare note adesive con la tastiera" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" +"Utilizzare <shortcut><keycombo><keysym>Ctrl-Alt-" +"Tab</keysym></keycombo></shortcut> per accedere al pannello di MATE, poi " +"usare <shortcut><keysym>Tab</keysym></shortcut> o i tasti " +"<shortcut><keycombo><keysym>Freccia</keysym></keycombo></shortcut> per " +"accedere all'applet Sticky notes. Aprire quindi il suo menù contestuale con " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> o con " +"il tasto<shortcut><keysym>Menù</keysym></shortcut>, e selezionare " +"<guimenuitem><guilabel>Nuova Nota</guilabel></guimenuitem>." + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "Accedere a Sticky Notes con la tastiera" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" +"Utilizzare <shortcut><keycombo><keysym>Ctrl-Alt-" +"Tab</keysym></keycombo></shortcut> più volte per muoversi tra i pannelli e " +"le note adesive esistenti. Quando una nota adesiva prende il focus, sarà " +"possibile navigare tra l'area di testo e la barra del titolo (dove sono " +"posizionati i pulsanti " +"<guimenuitem><guilabel>Blocca</guilabel></guimenuitem> ed " +"<guimenuitem><guilabel>Elimina</guilabel></guimenuitem>) con il tasto " +"<shortcut><keysym>F6</keysym></shortcut>." + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" +"Una volta entrati nella barra del titolo, utilizzare " +"<shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> o il " +"tasto <shortcut><keysym>Menù</keysym></shortcut> per aprire il menù " +"contestuale che consente di accedere alla finestra di dialogo " +"<guimenuitem><guilabel>Proprietà</guilabel></guimenuitem> della singola " +"nota." + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "Preferenze" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "Preferenze di Note adesive" @@ -613,7 +690,7 @@ msgstr "Preferenze di Note adesive" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -623,7 +700,7 @@ msgstr "" "md5='0263f6ed6b0242d2d24a45b5d403e007'" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -634,12 +711,12 @@ msgstr "" "Note Adesive</phrase></textobject>" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "Definire la dimensione" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -648,16 +725,16 @@ msgid "" msgstr "" "Per configurare le dimensioni predefinite per tutte le note adesive, fare " "clic col pulsante destro del mouse sull'icona delle note adesive, quindi " -"selezionare <guimenu>Preferenze</guimenu> dal menu. Viene visualizzata la " +"selezionare <guimenu>Preferenze</guimenu> dal menù. Viene visualizzata la " "finestra di dialogo <application>Preferenze di Note Adesive</application>." #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "<guilabel>Larghezza</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." @@ -666,12 +743,12 @@ msgstr "" "nuove note adesive, in pixel." #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "<guilabel>Altezza</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." @@ -680,29 +757,29 @@ msgstr "" "note adesive, in pixel." #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" -msgstr "Cambiare il tipo di carattere ed il colore" +msgstr "Cambiare il font ed il colore" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " "<application>Sticky Notes Preferences</application> dialog is displayed." msgstr "" -"Per configurare il colore e il carattere di tutte le note adesive, fare clic" -" con il tasto destro del mouse sull'icona dell'applet, quindi selezionare " -"<guimenu>Preferenze</guimenu> dal menu. Viene visualizzata la finestra di " +"Per configurare il colore e il font di tutte le note adesive, fare clic con " +"il tasto destro del mouse sull'icona dell'applet, quindi selezionare " +"<guimenu>Preferenze</guimenu> dal menù. Viene visualizzata la finestra di " "dialogo <application>Preferenze di Note Adesive</application>." #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "<guilabel>Colore del carattere</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -714,7 +791,7 @@ msgstr "" "carattere predefinito da utilizzare per le note adesive." #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -725,12 +802,12 @@ msgstr "" "non sarà possibile selezionare nuovi valori predefiniti." #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "<guilabel>Colore della nota</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -742,23 +819,23 @@ msgstr "" "sfondo predefinito da utilizzare per le note adesive." #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " "new defaults." msgstr "" -"Se hai selezionato <guilabel>Usare il colore del tema " +"Se è stato selezionato <guilabel>Usare il colore del tema " "dell'ambiente</guilabel>, verranno utilizzati i colori del tema corrente e " "non sarà possibile selezionare nuovi valori predefiniti." #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" -msgstr "<guilabel>Tipo di carattere</guilabel>" +msgstr "<guilabel>Font</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -770,37 +847,37 @@ msgstr "" "note adesive." #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " "you will not be able to select new defaults." msgstr "" "Se è stato selezionato <guilabel>Usare il tipo di carattere del tema " -"dell'ambiente</guilabel>, verrà usato il carattere del tema corrente " +"dell'ambiente</guilabel>, verrà utilizzato il carattere del tema corrente " "definito nelle Preferenze di sistema e non sarà possibile selezionare nuovi " "valori predefiniti." #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" -msgstr "Comportamento personalizzato" +msgstr "Personalizzare il comportamento" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" " menu. The <application>Sticky Notes Preferences</application> dialog is " "displayed." msgstr "" -"Per personalizzare il comportamento di <application>Note " -"Adesive</application>, fare clic destro sull'icona e selezionare " +"Per personalizzare il comportamento di <application>Sticky " +"Notes</application>, fare clic destro sull'icona e selezionare " "<guimenu>Preferenze</guimenu> dal menu che appare. Verranno mostrate le " "<application>Preferenze di Note Adesive</application>." #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -815,7 +892,7 @@ msgstr "" "saranno visibili su tutti gli spazi di lavoro." #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -824,26 +901,26 @@ msgid "" msgstr "" "L'opzione <guilabel>Forza il colore e il tipo di carattere predefiniti sulle" " note</guilabel>, costringerà tutte le note adesive sul desktop ad " -"utilizzare le impostazioni di colore e tipo di carattere definite nelle " +"utilizzare le impostazioni di colore e font definite nelle " "<guilabel>Proprietà predefinite note</guilabel> di cui sopra (vedere <xref " "linkend=\"stickynotes-color\"/>)." #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "Personalizzare note singole" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" -msgstr "Preferenze di Note Adesive" +msgstr "Preferenze di Sticky Notes" #. (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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -853,18 +930,18 @@ msgstr "" "md5='e2214cbb04d62d60ea0385a5dfa1630c'" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " "preferences</phrase></textobject>" msgstr "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " -"format=\"PNG\"/> </imageobject> <textobject><phrase>Una preferenza di Note " -"Adesive</phrase></textobject>" +"format=\"PNG\"/> </imageobject> <textobject><phrase>Una preferenza di Sticky" +" Notes</phrase></textobject>" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -874,50 +951,50 @@ msgid "" msgstr "" "È possibile personalizzare l'aspetto di ogni singola nota al fine di " "distinguerle visivamente in modo rapido. Per configurare le impostazioni di " -"una singola nota adesiva, fai clic destro sul titolo della nota, quindi " -"scegli <guimenu>Properietà</guimenu> dal menu che appare. Verrà mostrata la " -"finestra <application>Proprietà di Note Adesive</application>." +"una singola nota adesiva, fare clic destro sul titolo della nota, quindi " +"selezionare <guimenu>Properietà</guimenu> dal menù a comparsa. Verrà " +"mostrata la finestra <application>Proprietà di Note Adesive</application>." #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "<guilabel>Titolo</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "Usare questa casella di testo per specificare il titolo della nota." #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "<guilabel>Usa colore predefinito</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" "Selezionare questa casella per utilizzare il colore di sfondo predefinito in" " questa nota adesiva. Per informazioni sull'impostazione del colore di " "sfondo predefinito vedere <xref linkend=\"stickynotes-color\"/>." #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " "font color for this sticky note." msgstr "" "Fare clic sul pulsante di selezione del colore per visualizzare la relativa " -"finestra di dialogo. Nella finestra di selezione del colore, utilizza la " +"finestra di dialogo. Nella finestra di selezione del colore, utilizzare la " "tavolozza dei colori o le caselle per scegliere il colore del carattere da " "utilizzare per questa nota adesiva." #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -929,12 +1006,12 @@ msgstr "" "utilizzare per questa nota adesiva." #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "<guilabel>Usa il carattere predefinito</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -945,7 +1022,7 @@ msgstr "" "vedere <xref linkend=\"stickynotes-color\"/>." #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " @@ -953,7 +1030,7 @@ msgid "" msgstr "" "Fare clic sul pulsante di selezione dei caratteri per visualizzare la " "relativa finestra di dialogo. Nella finestra di selezione dei caratteri, " -"utilizzare le caselle per scegliere il carattere da usare in questa nota " +"utilizzare le caselle per scegliere il font da utilizzare in questa nota " "adesiva." #. (itstool) path: para/ulink @@ -973,10 +1050,10 @@ msgid "" msgstr "" "È concesso il permesso di copiare, distribuire e/o modificare questo " "documento in base ai termini della GNU Free Documentation License (GFDL), " -"Versione 1.1 o qualsiasi versione successiva pubblicata dalla Free Software " -"Foundation senza sezioni invarianti, senza testi di copertina e nessun testo" -" di retro copertina. Puoi trovare una copia del GFDL qui <_:ulink-1/> o nel " -"file COPYING-DOCS distribuito con questo manuale." +"Versione 1.1 o una qualsiasi versione successiva pubblicata dalla Free " +"Software Foundation senza sezioni invarianti, senza testi di copertina e " +"nessun testo di retro copertina. Puoi trovare una copia del GFDL qui " +"<_:ulink-1/> o nel file COPYING-DOCS distribuito con questo manuale." #. (itstool) path: legalnotice/para #: C/legal.xml:12 @@ -1033,7 +1110,7 @@ msgstr "" "REDATTORE INIZIALE, DELL'AUTORE O DI ALTRI COLLABORATORI). QUESTA " "LIMITAZIONE DELLA GARANZIA COSTITUISCE PARTE ESSENZIALE DELLA LICENZA. L'USO" " DEL DOCUMENTO O DELLE SUE VERSIONI MODIFICATE È CONSENTITO SOLO ENTRO I " -"TERMINI DI QUESTA LIMITAZIONE DELLA GARANZIA;" +"TERMINI DI QUESTA LIMITAZIONE DELLA GARANZIA; E" #. (itstool) path: listitem/para #: C/legal.xml:55 diff --git a/stickynotes/docs/ja/ja.po b/stickynotes/docs/ja/ja.po index 5ca5a093..0c4febfc 100644 --- a/stickynotes/docs/ja/ja.po +++ b/stickynotes/docs/ja/ja.po @@ -2,17 +2,16 @@ # Translators: # Stefano Karapetsas <[email protected]>, 2018 # ABE Tsunehiko, 2018 -# あわしろいくや <[email protected]>, 2018 # Wolfgang Ulbrich <[email protected]>, 2018 -# Aefgh Threenine <[email protected]>, 2019 +# Green <[email protected]>, 2023 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+0000\n" -"Last-Translator: Aefgh Threenine <[email protected]>, 2019\n" -"Language-Team: Japanese (https://www.transifex.com/mate/teams/13566/ja/)\n" +"Last-Translator: Green <[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" @@ -23,72 +22,74 @@ msgstr "" msgctxt "_" msgid "translator-credits" msgstr "" -"相花 毅 <[email protected]>\n" -"佐藤 暁 <[email protected]>\n" -"KAMAGASAKO Masatoshi <[email protected]>\n" -"Akira TAGOH <[email protected]>\n" -"Yukihiro Nakai <[email protected]>\n" -"Yuusuke Tahara <[email protected]>\n" -"Akira Higuchi <[email protected]>\n" -"やまね ひでき <[email protected]>\n" -"草野 貴之 <[email protected]>\n" -"松澤 二郎 <[email protected]>\n" -"日本GNOMEユーザー会 http://www.gnome.gr.jp/" +"相花 毅 \n" +"佐藤 暁 \n" +"KAMAGASAKO Masatoshi \n" +"Akira TAGOH \n" +"Yukihiro Nakai \n" +"Yuusuke Tahara \n" +"Akira Higuchi \n" +"やまね ひでき \n" +"草野 貴之 \n" +"松澤 二郎 \n" +"Green, alias usergreen\n" +"日本GNOMEユーザー会 http://www.gnome.gr.jp/\n" +"MATE 文書化チーム https://www.transifex.com/mate/ " #. (itstool) path: articleinfo/title #: C/index.docbook:19 msgid "Sticky Notes Manual" -msgstr "" +msgstr "付箋マニュアル" #. (itstool) path: abstract/para #: C/index.docbook:21 msgid "" "Sticky Notes enables you to create, view, and manage sticky notes on your " "desktop." -msgstr "" +msgstr "付箋アプレットは、デスクトップ上で付箋紙の作成/表示/管理を行います。" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" -msgstr "" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" +msgstr "<year>2015年-2021年</year> <holder>MATE 文書化プロジェクト</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:29 msgid "<year>2005</year> <holder>Davyd Madeley</holder>" -msgstr "" +msgstr "<year>2005年</year> <holder>Davyd Madeley</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:33 msgid "<year>2004</year> <holder>Shaun McCance</holder>" -msgstr "" +msgstr "<year>2004年</year> <holder>Shaun McCance</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:37 msgid "<year>2004</year> <holder>Angela Boyle</holder>" -msgstr "" +msgstr "<year>2004年</year> <holder>Angela Boyle</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:41 msgid "<year>2003</year> <year>2004</year> <holder>Sun Microsystems</holder>" -msgstr "" +msgstr "<year>2003年</year> <year>2004年</year> <holder>サン・マイクロシステムズ</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:46 msgid "<year>2003</year> <holder>Loban A Rahman</holder>" -msgstr "" +msgstr "<year>2003年</year> <holder>Loban A Rahman</holder>" #. (itstool) path: publisher/publishername #. (itstool) path: revdescription/para #: C/index.docbook:59 C/index.docbook:126 msgid "MATE Documentation Project" -msgstr "MATE ドキュメンテーション・プロジェクト" +msgstr "MATE 文書化プロジェクト" #. (itstool) path: publisher/publishername #. (itstool) path: revdescription/para #: C/index.docbook:62 C/index.docbook:148 C/index.docbook:156 #: C/index.docbook:164 C/index.docbook:172 msgid "GNOME Documentation Project" -msgstr "GNOME ドキュメンテーション・プロジェクト" +msgstr "GNOME 文書化プロジェクト" #. (itstool) path: authorgroup/author #: C/index.docbook:68 @@ -96,6 +97,8 @@ msgid "" "<firstname>MATE Documentation Team</firstname> <surname/> <affiliation> " "<orgname>MATE Desktop</orgname> </affiliation>" msgstr "" +"<firstname>MATE 文書化チーム</firstname> <surname/> <affiliation><orgname>MATE " +"デスクトップ</orgname></affiliation>" #. (itstool) path: authorgroup/author #: C/index.docbook:75 @@ -104,6 +107,9 @@ msgid "" "<orgname>GNOME Documentation Project</orgname> " "<address><email>[email protected]</email></address> </affiliation>" msgstr "" +"<firstname>Shaun</firstname> <surname>McCance</surname> <affiliation> " +"<orgname>GNOME 文書化プロジェクト</orgname> " +"<address><email>[email protected]</email></address> </affiliation>" #. (itstool) path: authorgroup/author #: C/index.docbook:83 @@ -111,6 +117,8 @@ msgid "" "<firstname>Angela</firstname> <surname>Boyle</surname> <affiliation> " "<address><email>[email protected]</email></address> </affiliation>" msgstr "" +"<firstname>Angela</firstname> <surname>Boyle</surname> <affiliation> " +"<address><email>[email protected]</email></address> </affiliation>" #. (itstool) path: authorgroup/author #: C/index.docbook:90 @@ -118,6 +126,8 @@ msgid "" "<firstname>Loban</firstname> <surname>Rahman</surname> <affiliation> " "<address><email>[email protected]</email></address> </affiliation>" msgstr "" +"<firstname>Loban</firstname> <surname>Rahman</surname> <affiliation> " +"<address><email>[email protected]</email></address> </affiliation>" #. (itstool) path: authorgroup/author #: C/index.docbook:97 @@ -126,11 +136,14 @@ msgid "" "<orgname>GNOME Project</orgname> " "<address><email>[email protected]</email></address> </affiliation>" msgstr "" +"<firstname>Davyd</firstname><surname>Madeley</surname> <affiliation> " +"<orgname>GNOME プロジェクト</orgname> " +"<address><email>[email protected]</email></address> </affiliation>" #. (itstool) path: revdescription/para #: C/index.docbook:125 msgid "MATE Documentation Team" -msgstr "MATE ドキュメンテーション・チーム" +msgstr "MATE 文書化チーム" #. (itstool) path: revhistory/revision #: C/index.docbook:121 @@ -138,11 +151,13 @@ msgid "" "<revnumber>Sticky Notes Applet Manual V2.7</revnumber> <date>July " "2015</date> <_:revdescription-1/>" msgstr "" +"<revnumber>付箋アプレットマニュアル 2.7 版</revnumber> <date>2015年7月</date> " +"<_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:133 C/index.docbook:140 msgid "Davyd Madeley" -msgstr "" +msgstr "Davyd Madeley" #. (itstool) path: revhistory/revision #: C/index.docbook:129 @@ -150,6 +165,8 @@ msgid "" "<revnumber>Sticky Notes Applet Manual V2.6</revnumber> <date>September " "2005</date> <_:revdescription-1/>" msgstr "" +"<revnumber>付箋アプレットマニュアル 2.6 版</revnumber> <date>2005年9月</date> " +"<_:revdescription-1/>" #. (itstool) path: revhistory/revision #: C/index.docbook:136 @@ -157,11 +174,13 @@ msgid "" "<revnumber>Sticky Notes Applet Manual V2.5</revnumber> <date>March " "2005</date> <_:revdescription-1/>" msgstr "" +"<revnumber>付箋アプレットマニュアル 2.5 版</revnumber> <date>2005年3月</date> " +"<_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:147 msgid "Angela Boyle" -msgstr "" +msgstr "Angela Boyle" #. (itstool) path: revhistory/revision #: C/index.docbook:143 @@ -169,11 +188,13 @@ msgid "" "<revnumber>Sticky Notes Applet Manual V2.4</revnumber> <date>September " "2004</date> <_:revdescription-1/>" msgstr "" +"<revnumber>付箋アプレットマニュアル 2.4 版</revnumber> <date>2004年9月</date> " +"<_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:155 C/index.docbook:163 C/index.docbook:171 msgid "Sun GNOME Documentation Team" -msgstr "Sun GNOME ドキュメンテーション・チーム" +msgstr "Sun GNOME 文書化チーム" #. (itstool) path: revhistory/revision #: C/index.docbook:151 @@ -181,6 +202,8 @@ msgid "" "<revnumber>Sticky Notes Applet Manual V2.3</revnumber> <date>February " "2004</date> <_:revdescription-1/>" msgstr "" +"<revnumber>付箋アプレットマニュアル 2.3 版</revnumber> <date>2004年2月</date> " +"<_:revdescription-1/>" #. (itstool) path: revhistory/revision #: C/index.docbook:159 @@ -188,6 +211,8 @@ msgid "" "<revnumber>Sticky Notes Applet Manual V2.2</revnumber> <date>November " "2003</date> <_:revdescription-1/>" msgstr "" +"<revnumber>付箋アプレットマニュアル 2.2 版</revnumber> <date>2003年11月</date> " +"<_:revdescription-1/>" #. (itstool) path: revhistory/revision #: C/index.docbook:167 @@ -195,11 +220,13 @@ msgid "" "<revnumber>Sticky Notes Applet Manual V2.1</revnumber> <date>August " "2003</date> <_:revdescription-1/>" msgstr "" +"<revnumber>付箋アプレットマニュアル 2.1 版</revnumber> <date>2003年8月</date> " +"<_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:179 msgid "Loban A Rahman <email>[email protected]</email>" -msgstr "" +msgstr "Loban A Rahman <email>[email protected]</email>" #. (itstool) path: revhistory/revision #: C/index.docbook:175 @@ -207,11 +234,13 @@ msgid "" "<revnumber>Sticky Notes Applet Manual V2.0</revnumber> <date>May 2003</date>" " <_:revdescription-1/>" msgstr "" +"<revnumber>付箋アプレットマニュアル 2.0 版</revnumber> <date>2003年5月</date> " +"<_:revdescription-1/>" #. (itstool) path: articleinfo/releaseinfo #: C/index.docbook:186 msgid "This manual describes version 1.10.2 of Sticky Notes." -msgstr "" +msgstr "本マニュアルは、付箋 1.10.2 版について説明しています。" #. (itstool) path: legalnotice/title #: C/index.docbook:189 @@ -226,11 +255,14 @@ msgid "" " <ulink url=\"help:mate-user-guide/feedback\" type=\"help\">MATE Feedback " "Page</ulink>." msgstr "" +"<application>付箋</application>アプリやこのマニュアルに関する不具合や提案を報告するには、<ulink " +"url=\"help:mate-user-guide/feedback\" type=\"help\">MATE " +"フィードバック・ページ</ulink>の方法に従ってください。" #. (itstool) path: article/indexterm #: C/index.docbook:195 msgid "<primary>Sticky Notes</primary>" -msgstr "" +msgstr "<primary>付箋</primary>" #. (itstool) path: sect1/title #: C/index.docbook:200 @@ -240,7 +272,7 @@ msgstr "はじめに" #. (itstool) path: figure/title #: C/index.docbook:202 msgid "Sticky Notes" -msgstr "付箋紙" +msgstr "付箋" #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -253,6 +285,8 @@ msgid "" "external ref='figures/stickynotes_applet.png' " "md5='9c1c425752e613ff9e1523aac27a7282'" msgstr "" +"external ref='figures/stickynotes_applet.png' " +"md5='9c1c425752e613ff9e1523aac27a7282'" #. (itstool) path: screenshot/mediaobject #: C/index.docbook:204 @@ -261,6 +295,9 @@ msgid "" "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky " "Notes</phrase></textobject>" msgstr "" +"<imageobject> <imagedata fileref=\"figures/stickynotes_applet.png\" " +"format=\"PNG\"/> </imageobject> " +"<textobject><phrase>付箋を表示</phrase></textobject>" #. (itstool) path: sect1/para #: C/index.docbook:213 @@ -272,28 +309,29 @@ msgid "" "are saved and reopened in the same position with the same dimensions and " "style." msgstr "" +"<application>付箋</application>を使用すると、デスクトップ上で付箋を作成、表示および管理できます。付箋の見出し、内容、寸法および様式を編集できます。ログアウト後に再度ログインするなどしてパネルを再起動したとき、すべての付箋が保存され、同じ寸法と様式のまま同じ位置で再び開きます。" #. (itstool) path: sect2/title #: C/index.docbook:222 msgid "To Add Sticky Notes to a Panel" -msgstr "" +msgstr "付箋をパネルに追加するには" #. (itstool) path: sect2/para #: C/index.docbook:223 msgid "" "To add <application>Sticky Notes</application> to a panel, perform the " "following steps:" -msgstr "" +msgstr "<application>付箋</application>をパネルに追加するには、次の手順にしたがってください。" #. (itstool) path: listitem/para #: C/index.docbook:229 msgid "Right-click on the panel." -msgstr "" +msgstr "パネル上で右クリックします。" #. (itstool) path: listitem/para #: C/index.docbook:234 msgid "Choose <guimenuitem>Add to Panel</guimenuitem>." -msgstr "" +msgstr "<guimenuitem>パネルに追加</guimenuitem>を選びます。" #. (itstool) path: listitem/para #: C/index.docbook:239 @@ -301,11 +339,12 @@ msgid "" "Scroll down the list of items in the <guilabel>Add to Panel</guilabel> " "dialog, then select <guilabel>Sticky Notes</guilabel>." msgstr "" +"<guilabel>パネルに追加</guilabel>ダイアログの項目一覧を下にスクロールし、<guilabel>付箋</guilabel>を選択します。" #. (itstool) path: listitem/para #: C/index.docbook:245 msgid "Click <guibutton>Add</guibutton>." -msgstr "" +msgstr "<guibutton>追加</guibutton>をクリックします。" #. (itstool) path: sect2/para #: C/index.docbook:250 @@ -313,16 +352,17 @@ msgid "" "The layout of the <application>Sticky Notes</application> applet varies " "depending on the size and type of panel in which the applet resides." msgstr "" +"<application>付箋</application>アプレットのレイアウトは、このアプレットが置かれているパネルの大きさや種類によって異なります。" #. (itstool) path: sect1/title #: C/index.docbook:258 msgid "Using Sticky Notes" -msgstr "" +msgstr "付箋を使うには" #. (itstool) path: sect2/title #: C/index.docbook:261 msgid "Showing and Hiding Sticky Notes" -msgstr "" +msgstr "付箋を表示する/表示しない" #. (itstool) path: sect2/para #: C/index.docbook:262 @@ -331,23 +371,24 @@ msgid "" "<application>Sticky Notes</application> applet and choose <guimenuitem>Hide " "Notes</guimenuitem>." msgstr "" +"すべての付箋を非表示にするには、デスクトップをクリックするか、<application>付箋紙</application>アプレットを右クリックして<guimenuitem>付箋を隠す</guimenuitem>を選択します。" #. (itstool) path: sect2/para #: C/index.docbook:264 msgid "" "To show all your notes, click the <application>Sticky Notes</application> " "applet." -msgstr "" +msgstr "すべての付箋を表示するには、<application>付箋紙</application>アプレットをクリックします。" #. (itstool) path: sect2/title #: C/index.docbook:268 msgid "Creating a Sticky Note" -msgstr "" +msgstr "付箋を作成する" #. (itstool) path: figure/title #: C/index.docbook:270 msgid "creating a new sticky note" -msgstr "" +msgstr "新しい付箋を作成する" #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -360,6 +401,8 @@ msgid "" "external ref='figures/stickynote-right-menu-new.png' " "md5='5b53056bfdc7a8ffa5dc8013116d2b9f'" msgstr "" +"external ref='figures/stickynote-right-menu-new.png' " +"md5='5b53056bfdc7a8ffa5dc8013116d2b9f'" #. (itstool) path: screenshot/mediaobject #: C/index.docbook:272 @@ -368,6 +411,9 @@ msgid "" "format=\"PNG\"/> </imageobject> <textobject><phrase>creating a new sticky " "note</phrase></textobject>" msgstr "" +"<imageobject> <imagedata fileref=\"figures/stickynote-right-menu-new.png\" " +"format=\"PNG\"/> </imageobject> " +"<textobject><phrase>新しい付箋の作成</phrase></textobject>" #. (itstool) path: sect2/para #: C/index.docbook:280 @@ -375,16 +421,17 @@ msgid "" "You can create a sticky note by right-clicking on the sticky note icon and " "selecting <guilabel>New Note</guilabel>, or by double-clicking the applet." msgstr "" +"付箋を作成するには、付箋のアイコンを右クリックして<guilabel>新しい付箋</guilabel>を選択するか、またはアイコンをダブルクリックします。" #. (itstool) path: sect2/para #: C/index.docbook:282 msgid "Creating a note causes all hidden notes to be shown." -msgstr "" +msgstr "付箋を作成すると、隠れた付箋がすべて表示されます。" #. (itstool) path: sect2/title #: C/index.docbook:286 msgid "Locking and Unlocking Sticky Notes" -msgstr "" +msgstr "付箋のロックとロック解除" #. (itstool) path: sect2/para #: C/index.docbook:287 @@ -393,16 +440,17 @@ msgid "" " unlock individual sticky notes. Locking a sticky note prevents you from " "accidentally changing the contents of the note." msgstr "" +"すべての付箋を同時にロックまたはロック解除することも、個々の付箋をロックまたはロック解除することもできます。付箋をロックすると、内容が誤って変更されるのを防止できます。" #. (itstool) path: varlistentry/term #: C/index.docbook:292 msgid "<phrase>To Lock or Unlock All Sticky Notes</phrase>" -msgstr "" +msgstr "<phrase>すべての付箋をロック/ロック解除するには</phrase>" #. (itstool) path: figure/title #: C/index.docbook:295 msgid "Right Clicking on the Icon" -msgstr "" +msgstr "アイコン上で右クリック" #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -415,6 +463,8 @@ msgid "" "external ref='figures/stickynote-right-menu-lock.png' " "md5='d304b4412e3ad7e2b9590e816a25f24e'" msgstr "" +"external ref='figures/stickynote-right-menu-lock.png' " +"md5='d304b4412e3ad7e2b9590e816a25f24e'" #. (itstool) path: screenshot/mediaobject #: C/index.docbook:297 @@ -423,6 +473,9 @@ msgid "" "format=\"PNG\"/> </imageobject> <textobject><phrase>Right Clicking on the " "Icon</phrase></textobject>" msgstr "" +"<imageobject> <imagedata fileref=\"figures/stickynote-right-menu-lock.png\" " +"format=\"PNG\"/> </imageobject> " +"<textobject><phrase>アイコン上で右クリック</phrase></textobject>" #. (itstool) path: listitem/para #: C/index.docbook:305 @@ -433,6 +486,7 @@ msgid "" "<guimenuitem>Lock Notes</guimenuitem> from the icon right-click menu again " "so that there is not a check mark next to it." msgstr "" +"すべての付箋をロックして編集できないようにするには、アイコンの右クリックメニューから<guimenuitem>付箋のロック</guimenuitem>を選択し、その横にチェックマークを付けます。すべての付箋をロック解除するには、再び右クリックメニューから<guimenuitem>付箋のロック</guimenuitem>を選択し、その横のチェックマークを外します。" #. (itstool) path: listitem/para #: C/index.docbook:311 @@ -442,11 +496,12 @@ msgid "" "of the panel application on the panel. Do not confuse this with the " "<guimenuitem>Lock Notes</guimenuitem> item." msgstr "" +"すべてのパネル・アプリケーションには、右クリック・メニューの中にパネルの位置をロックする<guimenuitem>ロックする</guimenuitem>項目があります。したがって、<guimenuitem>付箋のロック</guimenuitem>項目と混同しないよう注意してください。" #. (itstool) path: varlistentry/term #: C/index.docbook:320 msgid "<phrase>To Lock or Unlock Individual Sticky Notes</phrase>" -msgstr "" +msgstr "<phrase>個々の付箋をロック/ロック解除するには</phrase>" #. (itstool) path: listitem/para #: C/index.docbook:321 @@ -458,23 +513,24 @@ msgid "" "also toggle the lock/unlock state of a sticky note by clicking the lock " "button in the top left corner of the sticky note." msgstr "" +"個々の付箋をロックするには、ノートの見出しを右クリックし、ポップアップ・メニューから<guimenuitem>付箋のロック</guimenuitem>を選択します。個々の付箋のロックを解除するには、再び付箋の見出しを右クリックし、ポップアップ・メニューから<guimenuitem>付箋のロック解除</guimenuitem>を選択します。または、ノートの左上角にあるロック・ボタンをクリックしても、ロック/ロック解除状態を切り替えることができます。" #. (itstool) path: sect2/title #: C/index.docbook:334 msgid "Deleting Sticky Notes" -msgstr "" +msgstr "付箋を削除する" #. (itstool) path: sect2/para #: C/index.docbook:335 msgid "" "You can delete all sticky notes at the same time, or you can delete " "individual sticky notes." -msgstr "" +msgstr "すべての付箋を同時に削除することも、個別に付箋を削除することもできます。" #. (itstool) path: varlistentry/term #: C/index.docbook:339 msgid "To Delete All Sticky Notes" -msgstr "" +msgstr "すべての付箋を削除するには" #. (itstool) path: listitem/para #: C/index.docbook:340 @@ -483,11 +539,12 @@ msgid "" "from the icon right-click menu. A confirmation dialog will appear; click on " "the <guibutton>Delete All</guibutton> button to confirm the deletion." msgstr "" +"すべての付箋を削除するには、アイコンの右クリック・メニューから<guimenuitem>付箋の削除</guimenuitem>を選択します。確認ダイアログが表示されます。<guibutton>すべて削除</guibutton>ボタンをクリックして削除を確認します。" #. (itstool) path: varlistentry/term #: C/index.docbook:346 msgid "To Delete Individual Sticky Notes" -msgstr "" +msgstr "個別に付箋を削除するには" #. (itstool) path: listitem/para #: C/index.docbook:347 @@ -497,167 +554,247 @@ msgid "" "can also delete a sticky note by clicking the <guibutton>x</guibutton> in " "the top right corner." msgstr "" +"個々の付箋を削除するには、付箋の見出しを右クリックし、ポップアップ・メニューから<guimenuitem>付箋の削除</guimenuitem>を選択します。付箋を削除するのは、右上角の" +" <guibutton>x</guibutton> をクリックすることもできます。" + +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "キーボード操作" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "基本的なキーボード操作をサポートしています。" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "キーボードを操作して付箋を作成する" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" +"<shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> で " +"MATE パネルにアクセスし、次に <shortcut><keysym>Tab</keysym></shortcut> " +"キーまたは<shortcut><keycombo><keysym>矢印</keysym></keycombo></shortcut>キーで付箋アプレットにアクセスします。<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut>" +" " +"または<shortcut><keysym>メニュー</keysym></shortcut>キーでコンテキストメニューを開いて、<guimenuitem><guilabel>新しい付箋</guilabel></guimenuitem>を選択します。" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "キーボードを使って付箋にアクセスするには" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" +"パネルと既存の付箋を切り替えるには、<shortcut><keycombo><keysym>Ctrl-Alt-" +"Tab</keysym></keycombo></shortcut> " +"を数回使います。付箋がフォーカスされているときは、<shortcut><keysym>F6</keysym></shortcut> " +"キーでテキスト領域とタイトルバー(<guimenuitem><guilabel>ロック</guilabel></guimenuitem>と<guimenuitem><guilabel>削除</guilabel></guimenuitem>のボタンのある場所)の間を移動できます。" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" +"タイトルバーで、<shortcut><keysym>F10</keysym></shortcut>、<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut>、または<shortcut><keysym>メニュー</keysym></shortcut>キーを使ってコンテキストメニューを開くと、各ノートの<guimenuitem><guilabel>プロパティ</guilabel></guimenuitem>ダイアログにアクセスできます。" #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "設定" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" -msgstr "付箋紙の設定" +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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " "md5='0263f6ed6b0242d2d24a45b5d403e007'" msgstr "" +"external ref='figures/stickynotes-prefs.png' " +"md5='0263f6ed6b0242d2d24a45b5d403e007'" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " "preferences</phrase></textobject>" msgstr "" +"<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " +"format=\"PNG\"/> </imageobject> " +"<textobject><phrase>付箋の設定を表示</phrase></textobject>" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" -msgstr "" +msgstr "大きさを調節する" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" " menu. The <application>Sticky Notes Preferences</application> dialog is " "displayed." msgstr "" +"すべての付箋の標準サイズを構成するには、付箋アイコンを右クリックし、ポップアップ・メニューから<guimenu>設定</guimenu>を選択します。<application>付箋の設定</application>ダイアログが表示されます。" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" -msgstr "" +msgstr "<guilabel>幅</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." -msgstr "" +msgstr "このスピンボックスを使用して、新しい付箋の標準の幅をピクセル単位で指定します。" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" -msgstr "" +msgstr "<guilabel>高さ</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." -msgstr "" +msgstr "このスピンボックスを使用して、新しい付箋の標準の高さをピクセル単位で指定します。" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" -msgstr "" +msgstr "色とフォントを変更する" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " "<application>Sticky Notes Preferences</application> dialog is displayed." msgstr "" +"すべての付箋の色とフォントを設定するには、アイコンを右クリックし、ポップアップ・メニューから<guimenu>設定</guimenu>を選択します。<application>付箋の設定</application>ダイアログが表示されます。" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" -msgstr "" +msgstr "<guilabel>フォントの色</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " "default font color for stickynotes." msgstr "" +"「付箋の色」ボタンをクリックして、色の選択ダイアログを表示します。このダイアログで、色相環またはスピンボックスを使用して、付箋の標準のフォント色を選択します。" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " "select new defaults." msgstr "" +"もし<guilabel>システムのテーマの色を使用する</guilabel>を選択した場合は、現在のテーマの色が使用され、新しい既定値は選択できません。" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" -msgstr "" +msgstr "<guilabel>付箋の色</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " "default base color for sticky notes." msgstr "" +"色の選択ボタンをクリックして、色の選択ダイアログボックスを表示します。このダイアログボックスで、色相環またはスピンボックスを使用して、付箋の標準にするの基本色を選択します。" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " "new defaults." msgstr "" +"<guilabel>システムのテーマの色を使用する</guilabel>を選択した場合は、現在のテーマの色が使用され、新しい標準の色を設定することはできません。" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" -msgstr "" +msgstr "<guilabel>フォント</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " "sticky notes." msgstr "" +"フォント選択ボタンをクリックして、フォント選択ダイアログを表示します。フォントの選択ダイアログで、リストボックスを使用して標準のフォントを選択します。" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " "you will not be able to select new defaults." msgstr "" +"もし<guilabel>システムのフォントを使用する</guilabel>を選択した場合は、現在のアプリケーションのの色が使用され、新しい既定値は設定できません。" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" -msgstr "" +msgstr "振る舞いをカスタマイズする" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" " menu. The <application>Sticky Notes Preferences</application> dialog is " "displayed." msgstr "" +"<application>付箋</application>の振る舞いをカスタマイズするには、アイコンを右クリックし、ポップアップ・メニューから<guimenu>設定</guimenu>を選択します。<application>付箋の設定</application>ダイアログが表示されます。" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -665,48 +802,56 @@ msgid "" "multiple workspaces, this will cause all sticky notes to be visible on all " "workspaces." msgstr "" +"デスクトップ上のすべてのワークスペースで付箋を表示するように指定するには、<guilabel>付箋の設定</guilabel>ダイアログで<guilabel>付箋をすべてのワークスペースに貼り付ける</guilabel>を選択します。複数のワークスペースを使用している場合には、すべてのワークスペースで表示されます。" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " "specified in the <guilabel>Default Note Properties</guilabel> above (see " "<xref linkend=\"stickynotes-color\"/>)." msgstr "" +"<guilabel>標準の色とフォントを適用する</guilabel>オプションを選択すると、デスクトップ上のすべての付箋で、上記の<guilabel>標準の付箋の設定</guilabel>で指定した色とフォントの設定が使用されます(<xref" +" linkend=\"stickynotes-color\"/>参照)。" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" -msgstr "" +msgstr "各々の付箋ごとにカスタマイズする" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" -msgstr "" +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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " "md5='e2214cbb04d62d60ea0385a5dfa1630c'" msgstr "" +"external ref='figures/stickynotes-note-prefs.png' " +"md5='e2214cbb04d62d60ea0385a5dfa1630c'" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " "preferences</phrase></textobject>" msgstr "" +"<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " +"format=\"PNG\"/> </imageobject> " +"<textobject><phrase>付箋の設定</phrase></textobject>" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -714,66 +859,74 @@ msgid "" "note's title, then choose <guimenu>Properties</guimenu> from the popup menu." " The <application>Sticky Note Properties</application> dialog is displayed." msgstr "" +"個々の付箋の外観をカスタマイズできます。これは、様々なタイプの付箋を視覚的に速く識別する場合に便利です。付箋を個別に設定を構成するには、見出しを右クリックし、ポップアップ・メニューから<guimenu>設定</guimenu>を選択します。<application>付箋の設定</application>ダイアログ・ボックスが表示されます。" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" -msgstr "" +msgstr "<guilabel>見出し</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." -msgstr "" +msgstr "このテキストボックスを使用して、付箋の見出しを付けます。" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" -msgstr "" +msgstr "<guilabel>システムのテーマの色を使用する</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" +"このオプションを選択して、付箋に適用する標準の基本色を選びます。既定の基本色の設定については、<xref linkend=\"stickynotes-" +"color\"/>を参照してください。" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " "font color for this sticky note." msgstr "" +"色の選択ボタンをクリックして、色の選択ダイアログボックスを表示します。色の選択ダイアログボックスで、色相環またはスピンボックスを使用して、この付箋のフォントの色を選択します。" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " "base color for this sticky note." msgstr "" +"色の選択ボタンをクリックして、色の選択ダイアログボックスを表示します。色の選択ダイアログボックスで、色相環またはスピンボックスを使用して、この付箋の基本色を選択します。" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" -msgstr "" +msgstr "<guilabel>システムのフォントを使う</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" "color\"/>." msgstr "" +"この付箋に標準のフォントを使用するには、このオプションを選択します。標準のフォントを設定する方法については、<xref " +"linkend=\"stickynotes-color\"/>を参照してください。" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " "sticky note." msgstr "" +"フォントの選択ボタンをクリックして、フォントの選択ダイアログを表示します。このダイアログで、リストボックスからこの付箋に使うフォントを選択します。" #. (itstool) path: para/ulink #: C/legal.xml:9 @@ -790,6 +943,9 @@ msgid "" " of the GFDL at this <_:ulink-1/> or in the file COPYING-DOCS distributed " "with this manual." msgstr "" +"この文書をフリーソフトウェア財団発行の GNU 自由文書ライセンス(第 1.1 " +"版かそれ以降から1つを選択)が定める条件の下で複製、頒布、あるいは改変することを許可します。変更不可部分、表カバーテキスト、裏カバーテキストは存在しません。このライセンスの複製物は<_:ulink-1/>、またはこの文書と共に配布されている" +" COPYING-DOCS というファイルに中に記載されています。" #. (itstool) path: legalnotice/para #: C/legal.xml:12 @@ -799,9 +955,8 @@ msgid "" "you can do so by adding a copy of the license to the manual, as described in" " section 6 of the license." msgstr "" -"本ドキュメントは GFDL の下で配布されているその他の MATE " -"マニュアル集の一部である。これらのマニュアルとは別に本ドキュメントを別個に配布する場合は、GFDL " -"のセクション6で説明しているように、そのマニュアル集に対するライセンスの複製を添付することで実現できる。" +"本文書は GFDL の下で配布されているその他の MATE マニュアル集の一部です。これらのマニュアルとは別に本文書を別個に配布する場合は、GFDL " +"の第6節で説明しているように、そのマニュアル集に対してライセンスの複製を添付してください。" #. (itstool) path: legalnotice/para #: C/legal.xml:19 @@ -812,9 +967,9 @@ msgid "" "aware of those trademarks, then the names are in capital letters or initial " "capital letters." msgstr "" -"企業は自分達の製品とサービスを区別するために使用する多くの名称が登録商標であると主張している。これらの名称が MATE " -"のドキュメントの中に表記されていたり、これらの登録商標が MATE " -"ドキュメンテーション・プロジェクトのメンバに提示している箇所は全部を大文字または最初の文字を大文字にしている。" +"企業が自らの製品とサービスを区別する目的で使用する名称の多くは、登録商標であると主張しています。こうした名称が MATE " +"の文書の中に記載されていて、この登録商標が MATE " +"文書化プロジェクトのメンバーによって了解されている箇所については、名称を大文字または頭文字を大文字で表示しています。" #. (itstool) path: listitem/para #: C/legal.xml:35 @@ -875,3 +1030,5 @@ msgid "" "OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: " "<_:orderedlist-1/>" msgstr "" +"この文書およびその修正版は、以下の点を理解したという前提で、GNU 自由文書ライセンス " +"の条件の下で配布されています:<_:orderedlist-1/>" diff --git a/stickynotes/docs/ka/ka.po b/stickynotes/docs/ka/ka.po index dbdffda4..edc02859 100644 --- a/stickynotes/docs/ka/ka.po +++ b/stickynotes/docs/ka/ka.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+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" @@ -34,7 +34,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -483,13 +483,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "პარამეტრები" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "წებოვანი შენიშვნების პარამეტრები" @@ -498,7 +552,7 @@ msgstr "წებოვანი შენიშვნების პარა� #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -506,7 +560,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -514,12 +568,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -528,36 +582,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -565,12 +619,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -578,7 +632,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -586,12 +640,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -599,7 +653,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -607,12 +661,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -620,7 +674,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -628,12 +682,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -642,7 +696,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -652,7 +706,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -661,12 +715,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -675,7 +729,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -683,7 +737,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -691,7 +745,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -701,30 +755,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -732,7 +786,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -740,12 +794,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -753,7 +807,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/kab/kab.po b/stickynotes/docs/kab/kab.po index 1d52d47c..8d5628fd 100644 --- a/stickynotes/docs/kab/kab.po +++ b/stickynotes/docs/kab/kab.po @@ -1,14 +1,14 @@ # # Translators: -# Slimane Selyan AMIRI <[email protected]>, 2020 +# Slimane Selyan AMIRI <[email protected]>, 2020 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+0000\n" -"Last-Translator: Slimane Selyan AMIRI <[email protected]>, 2020\n" -"Language-Team: Kabyle (https://www.transifex.com/mate/teams/13566/kab/)\n" +"Last-Translator: Slimane Selyan AMIRI <[email protected]>, 2020\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" @@ -37,7 +37,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -486,13 +486,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "Ismenyifen" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "" @@ -501,7 +555,7 @@ msgstr "" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -509,7 +563,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -517,12 +571,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -531,36 +585,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -568,12 +622,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -581,7 +635,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -589,12 +643,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -602,7 +656,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -610,12 +664,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -623,7 +677,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -631,12 +685,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -645,7 +699,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -655,7 +709,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -664,12 +718,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -678,7 +732,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -686,7 +740,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -694,7 +748,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -704,30 +758,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -735,7 +789,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -743,12 +797,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -756,7 +810,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/kk/kk.po b/stickynotes/docs/kk/kk.po index f1e3ff2a..9c3c9d5e 100644 --- a/stickynotes/docs/kk/kk.po +++ b/stickynotes/docs/kk/kk.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+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" @@ -35,7 +35,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -484,13 +484,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "Баптаулар" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "" @@ -499,7 +553,7 @@ msgstr "" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -507,7 +561,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -515,12 +569,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -529,36 +583,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -566,12 +620,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -579,7 +633,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -587,12 +641,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -600,7 +654,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -608,12 +662,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -621,7 +675,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -629,12 +683,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -643,7 +697,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -653,7 +707,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -662,12 +716,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -676,7 +730,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -684,7 +738,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -692,7 +746,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -702,30 +756,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -733,7 +787,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -741,12 +795,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -754,7 +808,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/kn/kn.po b/stickynotes/docs/kn/kn.po index e7dbdb69..c1e67388 100644 --- a/stickynotes/docs/kn/kn.po +++ b/stickynotes/docs/kn/kn.po @@ -7,10 +7,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+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" @@ -37,7 +37,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -486,13 +486,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "ಆದ್ಯತೆಗಳು" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "ಸ್ಟಿಕಿ ಟಿಪ್ಪಣಿಗಳ ಆದ್ಯತೆಗಳು" @@ -501,7 +555,7 @@ msgstr "ಸ್ಟಿಕಿ ಟಿಪ್ಪಣಿಗಳ ಆದ್ಯತೆಗಳ� #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -509,7 +563,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -517,12 +571,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -531,36 +585,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -568,12 +622,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -581,7 +635,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -589,12 +643,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -602,7 +656,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -610,12 +664,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -623,7 +677,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -631,12 +685,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -645,7 +699,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -655,7 +709,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -664,12 +718,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -678,7 +732,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -686,7 +740,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -694,7 +748,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -704,30 +758,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -735,7 +789,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -743,12 +797,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -756,7 +810,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/ko/ko.po b/stickynotes/docs/ko/ko.po index 32eb592e..14da0dd7 100644 --- a/stickynotes/docs/ko/ko.po +++ b/stickynotes/docs/ko/ko.po @@ -2,17 +2,17 @@ # Translators: # Seong-ho Cho <[email protected]>, 2018 # Stefano Karapetsas <[email protected]>, 2018 +# 1763f4a4329a2376c933c5e919a36cbc_341ca53 <1f851310383599d03339229d772e1290_119292>, 2018 # Wolfgang Ulbrich <[email protected]>, 2018 -# HanSol Park <[email protected]>, 2018 -# 박정규(Jung-Kyu Park) <[email protected]>, 2019 +# Junghee Lee <[email protected]>, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+0000\n" -"Last-Translator: 박정규(Jung-Kyu Park) <[email protected]>, 2019\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" @@ -28,6 +28,7 @@ msgstr "" "Yoo Duk Nam https://launchpad.net/~yoo2001818\n" "onlyeriko https://launchpad.net/~onlyeriko\n" "Seong-ho Cho <[email protected]>\n" +"JungHee Lee <[email protected]>\n" "MATE Desktop Environment Team <https://www.transifex.com/mate/teams/13566/ko/>" #. (itstool) path: articleinfo/title @@ -44,8 +45,8 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" -msgstr "" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" +msgstr "<year>2015-2021</year> <holder>MATE 문서화 프로젝트</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:29 @@ -65,7 +66,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:41 msgid "<year>2003</year> <year>2004</year> <holder>Sun Microsystems</holder>" -msgstr "" +msgstr "<year>2003</year> <year>2004</year> <holder>Sun Microsystems</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:46 @@ -76,14 +77,14 @@ msgstr "" #. (itstool) path: revdescription/para #: C/index.docbook:59 C/index.docbook:126 msgid "MATE Documentation Project" -msgstr "그놈 문서 프로젝트" +msgstr "MATE 문서화 프로젝트" #. (itstool) path: publisher/publishername #. (itstool) path: revdescription/para #: C/index.docbook:62 C/index.docbook:148 C/index.docbook:156 #: C/index.docbook:164 C/index.docbook:172 msgid "GNOME Documentation Project" -msgstr "그놈 문서 프로젝트" +msgstr "GNOME 문서화 프로젝트" #. (itstool) path: authorgroup/author #: C/index.docbook:68 @@ -91,6 +92,8 @@ msgid "" "<firstname>MATE Documentation Team</firstname> <surname/> <affiliation> " "<orgname>MATE Desktop</orgname> </affiliation>" msgstr "" +"<firstname>MATE 문서화 팀</firstname> <surname/> <affiliation> <orgname>MATE " +"데스크톱</orgname> </affiliation>" #. (itstool) path: authorgroup/author #: C/index.docbook:75 @@ -99,6 +102,9 @@ msgid "" "<orgname>GNOME Documentation Project</orgname> " "<address><email>[email protected]</email></address> </affiliation>" msgstr "" +"<firstname>Shaun</firstname> <surname>McCance</surname> <affiliation> " +"<orgname>GNOME 문서화 프로젝트</orgname> " +"<address><email>[email protected]</email></address> </affiliation>" #. (itstool) path: authorgroup/author #: C/index.docbook:83 @@ -106,6 +112,8 @@ msgid "" "<firstname>Angela</firstname> <surname>Boyle</surname> <affiliation> " "<address><email>[email protected]</email></address> </affiliation>" msgstr "" +"<firstname>Angela</firstname> <surname>Boyle</surname> <affiliation> " +"<address><email>[email protected]</email></address> </affiliation>" #. (itstool) path: authorgroup/author #: C/index.docbook:90 @@ -113,6 +121,8 @@ msgid "" "<firstname>Loban</firstname> <surname>Rahman</surname> <affiliation> " "<address><email>[email protected]</email></address> </affiliation>" msgstr "" +"<firstname>Loban</firstname> <surname>Rahman</surname> <affiliation> " +"<address><email>[email protected]</email></address> </affiliation>" #. (itstool) path: authorgroup/author #: C/index.docbook:97 @@ -121,11 +131,14 @@ msgid "" "<orgname>GNOME Project</orgname> " "<address><email>[email protected]</email></address> </affiliation>" msgstr "" +"<firstname>Davyd</firstname><surname>Madeley</surname> <affiliation> " +"<orgname>GNOME 프로젝트</orgname> " +"<address><email>[email protected]</email></address> </affiliation>" #. (itstool) path: revdescription/para #: C/index.docbook:125 msgid "MATE Documentation Team" -msgstr "MATE 문서 팀" +msgstr "MATE 문서화 팀" #. (itstool) path: revhistory/revision #: C/index.docbook:121 @@ -133,6 +146,8 @@ msgid "" "<revnumber>Sticky Notes Applet Manual V2.7</revnumber> <date>July " "2015</date> <_:revdescription-1/>" msgstr "" +"<revnumber>스티커 메모 애플릿 설명서 V2.7</revnumber> <date>2015년 7월</date> " +"<_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:133 C/index.docbook:140 @@ -145,6 +160,8 @@ msgid "" "<revnumber>Sticky Notes Applet Manual V2.6</revnumber> <date>September " "2005</date> <_:revdescription-1/>" msgstr "" +"<revnumber>스티커 메모 애플릿 설명서 V2.6</revnumber> <date>9월 2005</date> " +"<_:revdescription-1/>" #. (itstool) path: revhistory/revision #: C/index.docbook:136 @@ -152,6 +169,8 @@ msgid "" "<revnumber>Sticky Notes Applet Manual V2.5</revnumber> <date>March " "2005</date> <_:revdescription-1/>" msgstr "" +"<revnumber>스티커 메모 애플릿 설명서 V2.5</revnumber> <date>3월 2005</date> " +"<_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:147 @@ -164,11 +183,13 @@ msgid "" "<revnumber>Sticky Notes Applet Manual V2.4</revnumber> <date>September " "2004</date> <_:revdescription-1/>" msgstr "" +"<revnumber>스티커 메모 애플릿 설명서 V2.4</revnumber> <date>9월 2004</date> " +"<_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:155 C/index.docbook:163 C/index.docbook:171 msgid "Sun GNOME Documentation Team" -msgstr "" +msgstr "Sun GNOME 문서화 팀" #. (itstool) path: revhistory/revision #: C/index.docbook:151 @@ -176,6 +197,8 @@ msgid "" "<revnumber>Sticky Notes Applet Manual V2.3</revnumber> <date>February " "2004</date> <_:revdescription-1/>" msgstr "" +"<revnumber>스티커 메모 애플릿 설명서 V2.3</revnumber> <date>2월 2004</date> " +"<_:revdescription-1/>" #. (itstool) path: revhistory/revision #: C/index.docbook:159 @@ -183,6 +206,8 @@ msgid "" "<revnumber>Sticky Notes Applet Manual V2.2</revnumber> <date>November " "2003</date> <_:revdescription-1/>" msgstr "" +"<revnumber>스티커 메모 애플릿 설명서 V2.2</revnumber> <date>2003년 11월</date> " +"<_:revdescription-1/>" #. (itstool) path: revhistory/revision #: C/index.docbook:167 @@ -190,11 +215,13 @@ msgid "" "<revnumber>Sticky Notes Applet Manual V2.1</revnumber> <date>August " "2003</date> <_:revdescription-1/>" msgstr "" +"<revnumber>스티커 메모 애플릿 설명서 V2.1</revnumber> <date>8월 2003</date> " +"<_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:179 msgid "Loban A Rahman <email>[email protected]</email>" -msgstr "" +msgstr "Loban A Rahman <email>[email protected]</email>" #. (itstool) path: revhistory/revision #: C/index.docbook:175 @@ -202,6 +229,8 @@ msgid "" "<revnumber>Sticky Notes Applet Manual V2.0</revnumber> <date>May 2003</date>" " <_:revdescription-1/>" msgstr "" +"<revnumber>스티커 메모 애플릿 설명서 V2.0</revnumber> <date>5월 2003</date> " +"<_:revdescription-1/>" #. (itstool) path: articleinfo/releaseinfo #: C/index.docbook:186 @@ -225,7 +254,7 @@ msgstr "" #. (itstool) path: article/indexterm #: C/index.docbook:195 msgid "<primary>Sticky Notes</primary>" -msgstr "" +msgstr "<primary>스티커 메모</primary>" #. (itstool) path: sect1/title #: C/index.docbook:200 @@ -235,7 +264,7 @@ msgstr "소개" #. (itstool) path: figure/title #: C/index.docbook:202 msgid "Sticky Notes" -msgstr "메모지" +msgstr "스티커 메모" #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -248,6 +277,8 @@ msgid "" "external ref='figures/stickynotes_applet.png' " "md5='9c1c425752e613ff9e1523aac27a7282'" msgstr "" +"external ref='figures/stickynotes_applet.png' " +"md5='9c1c425752e613ff9e1523aac27a7282'" #. (itstool) path: screenshot/mediaobject #: C/index.docbook:204 @@ -256,6 +287,9 @@ msgid "" "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky " "Notes</phrase></textobject>" msgstr "" +"<imageobject> <imagedata fileref=\"figures/stickynotes_애플릿.png\" " +"format=\"PNG\"/> </imageobject> <textobject><phrase>스티커 메모 " +"표시하기</phrase></textobject>" #. (itstool) path: sect1/para #: C/index.docbook:213 @@ -355,6 +389,8 @@ msgid "" "external ref='figures/stickynote-right-menu-new.png' " "md5='5b53056bfdc7a8ffa5dc8013116d2b9f'" msgstr "" +"external ref='figures/stickynote-right-menu-new.png' " +"md5='5b53056bfdc7a8ffa5dc8013116d2b9f'" #. (itstool) path: screenshot/mediaobject #: C/index.docbook:272 @@ -363,6 +399,9 @@ msgid "" "format=\"PNG\"/> </imageobject> <textobject><phrase>creating a new sticky " "note</phrase></textobject>" msgstr "" +"<imageobject> <imagedata fileref=\"figures/stickynote-right-menu-new.png\" " +"format=\"PNG\"/> </imageobject> <textobject><phrase>새 스티커 메모 " +"만들기</phrase></textobject>" #. (itstool) path: sect2/para #: C/index.docbook:280 @@ -410,6 +449,8 @@ msgid "" "external ref='figures/stickynote-right-menu-lock.png' " "md5='d304b4412e3ad7e2b9590e816a25f24e'" msgstr "" +"external ref='figures/stickynote-right-menu-lock.png' " +"md5='d304b4412e3ad7e2b9590e816a25f24e'" #. (itstool) path: screenshot/mediaobject #: C/index.docbook:297 @@ -418,6 +459,9 @@ msgid "" "format=\"PNG\"/> </imageobject> <textobject><phrase>Right Clicking on the " "Icon</phrase></textobject>" msgstr "" +"<imageobject> <imagedata fileref=\"figures/stickynote-right-menu-lock.png\" " +"format=\"PNG\"/> </imageobject> <textobject><phrase>아이콘을 마우스 오른쪽 버튼으로 " +"클릭</phrase></textobject>" #. (itstool) path: listitem/para #: C/index.docbook:305 @@ -493,43 +537,102 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "기본 설정" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" -msgstr "메모지 기본 설정" +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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " "md5='0263f6ed6b0242d2d24a45b5d403e007'" msgstr "" +"external ref='figures/stickynotes-prefs.png' " +"md5='0263f6ed6b0242d2d24a45b5d403e007'" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " "preferences</phrase></textobject>" msgstr "" +"<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " +"format=\"PNG\"/> </imageobject> <textobject><phrase>스티커 메모 기본 설정 " +"표시하기</phrase></textobject>" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -538,36 +641,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -575,12 +678,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -588,7 +691,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -596,12 +699,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -609,7 +712,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -617,12 +720,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -630,7 +733,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -638,12 +741,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -652,7 +755,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -662,7 +765,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -671,12 +774,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -685,23 +788,28 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " "md5='e2214cbb04d62d60ea0385a5dfa1630c'" msgstr "" +"external ref='figures/stickynotes-note-prefs.png' " +"md5='e2214cbb04d62d60ea0385a5dfa1630c'" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " "preferences</phrase></textobject>" msgstr "" +"<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " +"format=\"PNG\"/> </imageobject> <textobject><phrase>스티커 메모의 기본 " +"설정</phrase></textobject>" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -711,30 +819,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -742,7 +850,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -750,12 +858,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -763,7 +871,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " @@ -785,6 +893,9 @@ msgid "" " of the GFDL at this <_:ulink-1/> or in the file COPYING-DOCS distributed " "with this manual." msgstr "" +"GNU 자유 문서화 사용 허가서(GFDL), 버전 1.1 또는 자유 소프트웨어 재단에서 게시한 모든 이후 버전의 조건에 따라 이 문서를 " +"복사, 배포 및/또는 수정할 수 있는 권한이 부여됩니다. 뒷 표지 텍스트 없음. GFDL의 사본은 여기 또는 이 설명서와 함께 배포된 " +"COPYING-DOCS 파일에서 찾을 수 있습니다." #. (itstool) path: legalnotice/para #: C/legal.xml:12 @@ -794,8 +905,8 @@ msgid "" "you can do so by adding a copy of the license to the manual, as described in" " section 6 of the license." msgstr "" -"본 설명서는 GFDL에 따라 배포된 그놈 설명서 컬렉션의 일부입니다. 본 설명서를 컬렉션과 별도로 배포하려는 경우에는 라이센스 조항 6에" -" 따라 라이센스 사본을 설명서에 추가하면 됩니다." +"본 설명서는 GFDL에 따라 배포된 MATE 설명서 컬렉션의 일부입니다. 본 설명서를 컬렉션과 별도로 배포하려는 경우에는 라이센스 조항 " +"6에 따라 라이센스 사본을 설명서에 추가하면 됩니다." #. (itstool) path: legalnotice/para #: C/legal.xml:19 @@ -806,8 +917,8 @@ msgid "" "aware of those trademarks, then the names are in capital letters or initial " "capital letters." msgstr "" -"기업의 제품과 서비스를 식별하기 위해 사용된 많은 이름은 상표로 간주됩니다. 그놈 문서에 사용된 이름과 그놈 문서 프로젝트의 구성원은 " -"해당 상표로, 모두 대문자로 표시되거나 첫 글자가 대문자로 표시되어 있습니다." +"기업의 제품과 서비스를 식별하기 위해 사용된 많은 이름은 상표로 간주됩니다. MATE 문서에 사용된 이름과 MATE 문서화 프로젝트의 " +"구성원은 해당 상표로, 모두 대문자로 표시되거나 첫 글자가 대문자로 표시되어 있습니다." #. (itstool) path: listitem/para #: C/legal.xml:35 @@ -855,3 +966,5 @@ msgid "" "OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: " "<_:orderedlist-1/>" msgstr "" +"문서의 문서 및 수정된 버전은 gnu 자유 문서 라이센스의 조건에 따라 제공되며, 다음 사항을 더 잘 이해하고 있습니다: " +"<_:orderedlist-1/>" diff --git a/stickynotes/docs/ku/ku.po b/stickynotes/docs/ku/ku.po index 6a6d610d..d50a67a9 100644 --- a/stickynotes/docs/ku/ku.po +++ b/stickynotes/docs/ku/ku.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+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" @@ -34,7 +34,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -483,13 +483,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "Vebijêrk" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "Vebijarkên Nîşeyên Mezeloqî" @@ -498,7 +552,7 @@ msgstr "Vebijarkên Nîşeyên Mezeloqî" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -506,7 +560,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -514,12 +568,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -528,36 +582,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -565,12 +619,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -578,7 +632,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -586,12 +640,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -599,7 +653,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -607,12 +661,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -620,7 +674,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -628,12 +682,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -642,7 +696,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -652,7 +706,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -661,12 +715,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -675,7 +729,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -683,7 +737,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -691,7 +745,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -701,30 +755,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -732,7 +786,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -740,12 +794,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -753,7 +807,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/ku_IQ/ku_IQ.po b/stickynotes/docs/ku_IQ/ku_IQ.po index c6a8fecf..dc1c41dc 100644 --- a/stickynotes/docs/ku_IQ/ku_IQ.po +++ b/stickynotes/docs/ku_IQ/ku_IQ.po @@ -1,13 +1,14 @@ +# # Translators: -# Rasti K5 <[email protected]>, 2018 +# Rasti K5 <[email protected]>, 2023 # msgid "" msgstr "" -"Project-Id-Version: MATE Desktop Environment\n" -"POT-Creation-Date: 2018-10-03 12:27+0200\n" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+0000\n" -"Last-Translator: Rasti K5 <[email protected]>, 2018\n" -"Language-Team: Kurdish (Iraq) (https://www.transifex.com/mate/teams/13566/ku_IQ/)\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" @@ -20,138 +21,69 @@ msgid "translator-credits" msgstr "" #. (itstool) path: articleinfo/title -#: C/index.docbook:20 +#: C/index.docbook:19 msgid "Sticky Notes Manual" msgstr "" #. (itstool) path: abstract/para -#: C/index.docbook:22 +#: C/index.docbook:21 msgid "" "Sticky Notes enables you to create, view, and manage sticky notes on your " "desktop." msgstr "" #. (itstool) path: articleinfo/copyright -#: C/index.docbook:26 -msgid "<year>2015</year> <holder>MATE Documentation Project</holder>" +#: C/index.docbook:25 +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright -#: C/index.docbook:30 +#: C/index.docbook:29 msgid "<year>2005</year> <holder>Davyd Madeley</holder>" msgstr "" #. (itstool) path: articleinfo/copyright -#: C/index.docbook:34 +#: C/index.docbook:33 msgid "<year>2004</year> <holder>Shaun McCance</holder>" msgstr "" #. (itstool) path: articleinfo/copyright -#: C/index.docbook:38 +#: C/index.docbook:37 msgid "<year>2004</year> <holder>Angela Boyle</holder>" msgstr "" #. (itstool) path: articleinfo/copyright -#: C/index.docbook:42 +#: C/index.docbook:41 msgid "<year>2003</year> <year>2004</year> <holder>Sun Microsystems</holder>" msgstr "" #. (itstool) path: articleinfo/copyright -#: C/index.docbook:47 +#: C/index.docbook:46 msgid "<year>2003</year> <holder>Loban A Rahman</holder>" msgstr "" #. (itstool) path: publisher/publishername #. (itstool) path: revdescription/para -#: C/index.docbook:60 C/index.docbook:127 +#: C/index.docbook:59 C/index.docbook:126 msgid "MATE Documentation Project" msgstr "" #. (itstool) path: publisher/publishername #. (itstool) path: revdescription/para -#: C/index.docbook:63 C/index.docbook:149 C/index.docbook:157 -#: C/index.docbook:165 C/index.docbook:173 +#: C/index.docbook:62 C/index.docbook:148 C/index.docbook:156 +#: C/index.docbook:164 C/index.docbook:172 msgid "GNOME Documentation Project" msgstr "" -#. (itstool) path: legalnotice/para -#: C/index.docbook: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 type=\"help\" url=\"help:fdl\">link</ulink> or " -"in the file COPYING-DOCS distributed with this manual." -msgstr "" - -#. (itstool) path: legalnotice/para -#: C/index.docbook:12 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/index.docbook:19 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/index.docbook:35 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/index.docbook:55 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/index.docbook:28 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 "" - #. (itstool) path: authorgroup/author -#: C/index.docbook:69 +#: C/index.docbook:68 msgid "" "<firstname>MATE Documentation Team</firstname> <surname/> <affiliation> " "<orgname>MATE Desktop</orgname> </affiliation>" msgstr "" #. (itstool) path: authorgroup/author -#: C/index.docbook:76 +#: C/index.docbook:75 msgid "" "<firstname>Shaun</firstname> <surname>McCance</surname> <affiliation> " "<orgname>GNOME Documentation Project</orgname> " @@ -159,21 +91,21 @@ msgid "" msgstr "" #. (itstool) path: authorgroup/author -#: C/index.docbook:84 +#: C/index.docbook:83 msgid "" "<firstname>Angela</firstname> <surname>Boyle</surname> <affiliation> " "<address><email>[email protected]</email></address> </affiliation>" msgstr "" #. (itstool) path: authorgroup/author -#: C/index.docbook:91 +#: C/index.docbook:90 msgid "" "<firstname>Loban</firstname> <surname>Rahman</surname> <affiliation> " "<address><email>[email protected]</email></address> </affiliation>" msgstr "" #. (itstool) path: authorgroup/author -#: C/index.docbook:98 +#: C/index.docbook:97 msgid "" "<firstname>Davyd</firstname><surname>Madeley</surname> <affiliation> " "<orgname>GNOME Project</orgname> " @@ -181,98 +113,98 @@ msgid "" msgstr "" #. (itstool) path: revdescription/para -#: C/index.docbook:126 +#: C/index.docbook:125 msgid "MATE Documentation Team" msgstr "" #. (itstool) path: revhistory/revision -#: C/index.docbook:122 +#: C/index.docbook:121 msgid "" "<revnumber>Sticky Notes Applet Manual V2.7</revnumber> <date>July " "2015</date> <_:revdescription-1/>" msgstr "" #. (itstool) path: revdescription/para -#: C/index.docbook:134 C/index.docbook:141 +#: C/index.docbook:133 C/index.docbook:140 msgid "Davyd Madeley" msgstr "" #. (itstool) path: revhistory/revision -#: C/index.docbook:130 +#: C/index.docbook:129 msgid "" "<revnumber>Sticky Notes Applet Manual V2.6</revnumber> <date>September " "2005</date> <_:revdescription-1/>" msgstr "" #. (itstool) path: revhistory/revision -#: C/index.docbook:137 +#: C/index.docbook:136 msgid "" "<revnumber>Sticky Notes Applet Manual V2.5</revnumber> <date>March " "2005</date> <_:revdescription-1/>" msgstr "" #. (itstool) path: revdescription/para -#: C/index.docbook:148 +#: C/index.docbook:147 msgid "Angela Boyle" msgstr "" #. (itstool) path: revhistory/revision -#: C/index.docbook:144 +#: C/index.docbook:143 msgid "" "<revnumber>Sticky Notes Applet Manual V2.4</revnumber> <date>September " "2004</date> <_:revdescription-1/>" msgstr "" #. (itstool) path: revdescription/para -#: C/index.docbook:156 C/index.docbook:164 C/index.docbook:172 +#: C/index.docbook:155 C/index.docbook:163 C/index.docbook:171 msgid "Sun GNOME Documentation Team" msgstr "" #. (itstool) path: revhistory/revision -#: C/index.docbook:152 +#: C/index.docbook:151 msgid "" "<revnumber>Sticky Notes Applet Manual V2.3</revnumber> <date>February " "2004</date> <_:revdescription-1/>" msgstr "" #. (itstool) path: revhistory/revision -#: C/index.docbook:160 +#: C/index.docbook:159 msgid "" "<revnumber>Sticky Notes Applet Manual V2.2</revnumber> <date>November " "2003</date> <_:revdescription-1/>" msgstr "" #. (itstool) path: revhistory/revision -#: C/index.docbook:168 +#: C/index.docbook:167 msgid "" "<revnumber>Sticky Notes Applet Manual V2.1</revnumber> <date>August " "2003</date> <_:revdescription-1/>" msgstr "" #. (itstool) path: revdescription/para -#: C/index.docbook:180 +#: C/index.docbook:179 msgid "Loban A Rahman <email>[email protected]</email>" msgstr "" #. (itstool) path: revhistory/revision -#: C/index.docbook:176 +#: C/index.docbook:175 msgid "" "<revnumber>Sticky Notes Applet Manual V2.0</revnumber> <date>May 2003</date>" " <_:revdescription-1/>" msgstr "" #. (itstool) path: articleinfo/releaseinfo -#: C/index.docbook:187 +#: C/index.docbook:186 msgid "This manual describes version 1.10.2 of Sticky Notes." msgstr "" #. (itstool) path: legalnotice/title -#: C/index.docbook:190 +#: C/index.docbook:189 msgid "Feedback" -msgstr "" +msgstr "پاشخورد" #. (itstool) path: legalnotice/para -#: C/index.docbook:191 +#: C/index.docbook:190 msgid "" "To report a bug or make a suggestion regarding the <application>Sticky " "Notes</application> application or this manual, follow the directions in the" @@ -281,17 +213,17 @@ msgid "" msgstr "" #. (itstool) path: article/indexterm -#: C/index.docbook:196 +#: C/index.docbook:195 msgid "<primary>Sticky Notes</primary>" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:201 +#: C/index.docbook:200 msgid "Introduction" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:203 +#: C/index.docbook:202 msgid "Sticky Notes" msgstr "" @@ -300,7 +232,7 @@ msgstr "" #. 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:207 +#: C/index.docbook:206 msgctxt "_" msgid "" "external ref='figures/stickynotes_applet.png' " @@ -308,7 +240,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:205 +#: C/index.docbook:204 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes_applet.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky " @@ -316,7 +248,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:214 +#: C/index.docbook:213 msgid "" "The <application>Sticky Notes</application> panel application enables you to" " create, view, and manage sticky notes on your desktop. You can edit the " @@ -327,58 +259,58 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:223 +#: C/index.docbook:222 msgid "To Add Sticky Notes to a Panel" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:224 +#: C/index.docbook:223 msgid "" "To add <application>Sticky Notes</application> to a panel, perform the " "following steps:" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:230 +#: C/index.docbook:229 msgid "Right-click on the panel." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:235 +#: C/index.docbook:234 msgid "Choose <guimenuitem>Add to Panel</guimenuitem>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:240 +#: C/index.docbook:239 msgid "" "Scroll down the list of items in the <guilabel>Add to Panel</guilabel> " "dialog, then select <guilabel>Sticky Notes</guilabel>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:246 +#: C/index.docbook:245 msgid "Click <guibutton>Add</guibutton>." msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:251 +#: C/index.docbook:250 msgid "" "The layout of the <application>Sticky Notes</application> applet varies " "depending on the size and type of panel in which the applet resides." msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:259 +#: C/index.docbook:258 msgid "Using Sticky Notes" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:262 +#: C/index.docbook:261 msgid "Showing and Hiding Sticky Notes" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:263 +#: C/index.docbook:262 msgid "" "To hide all your notes, either click on the desktop, or right-click the " "<application>Sticky Notes</application> applet and choose <guimenuitem>Hide " @@ -386,19 +318,19 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:265 +#: C/index.docbook:264 msgid "" "To show all your notes, click the <application>Sticky Notes</application> " "applet." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:269 +#: C/index.docbook:268 msgid "Creating a Sticky Note" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:271 +#: C/index.docbook:270 msgid "creating a new sticky note" msgstr "" @@ -407,7 +339,7 @@ msgstr "" #. 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:275 +#: C/index.docbook:274 msgctxt "_" msgid "" "external ref='figures/stickynote-right-menu-new.png' " @@ -415,7 +347,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:273 +#: C/index.docbook:272 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynote-right-menu-new.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>creating a new sticky " @@ -423,24 +355,24 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:281 +#: C/index.docbook:280 msgid "" "You can create a sticky note by right-clicking on the sticky note icon and " "selecting <guilabel>New Note</guilabel>, or by double-clicking the applet." msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:283 +#: C/index.docbook:282 msgid "Creating a note causes all hidden notes to be shown." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:287 +#: C/index.docbook:286 msgid "Locking and Unlocking Sticky Notes" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:288 +#: C/index.docbook:287 msgid "" "You can lock or unlock all sticky notes at the same time, or you can lock or" " unlock individual sticky notes. Locking a sticky note prevents you from " @@ -448,12 +380,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:293 +#: C/index.docbook:292 msgid "<phrase>To Lock or Unlock All Sticky Notes</phrase>" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:296 +#: C/index.docbook:295 msgid "Right Clicking on the Icon" msgstr "" @@ -462,7 +394,7 @@ msgstr "" #. 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:300 +#: C/index.docbook:299 msgctxt "_" msgid "" "external ref='figures/stickynote-right-menu-lock.png' " @@ -470,7 +402,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:298 +#: C/index.docbook:297 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynote-right-menu-lock.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Right Clicking on the " @@ -478,7 +410,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:306 +#: C/index.docbook:305 msgid "" "To lock all sticky notes so that the notes cannot be edited, choose " "<guimenuitem>Lock Notes</guimenuitem> from the icon right-click menu so that" @@ -488,7 +420,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:312 +#: C/index.docbook:311 msgid "" "Note that all panel applications have the <guimenuitem>Lock to " "Panel</guimenuitem> item in the right-click menu, which locks the position " @@ -497,40 +429,40 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:321 +#: C/index.docbook:320 msgid "<phrase>To Lock or Unlock Individual Sticky Notes</phrase>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:322 +#: C/index.docbook:321 msgid "" "To lock an individual sticky note, right-click on the title of the note, " "then choose <guimenuitem>Lock Note</guimenuitem> from the popup menu. To " "unlock an individual note, right-click on the title of the note, then choose" -" <guimenuitem>Lock Note</guimenuitem> from the popup menu again. You can " +" <guimenuitem>Unlock Note</guimenuitem> from the popup menu again. You can " "also toggle the lock/unlock state of a sticky note by clicking the lock " "button in the top left corner of the sticky note." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:335 +#: C/index.docbook:334 msgid "Deleting Sticky Notes" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:336 +#: C/index.docbook:335 msgid "" "You can delete all sticky notes at the same time, or you can delete " "individual sticky notes." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:340 +#: C/index.docbook:339 msgid "To Delete All Sticky Notes" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:341 +#: C/index.docbook:340 msgid "" "To delete all sticky notes, choose <guimenuitem>Delete Notes</guimenuitem> " "from the icon right-click menu. A confirmation dialog will appear; click on " @@ -538,12 +470,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:347 +#: C/index.docbook:346 msgid "To Delete Individual Sticky Notes" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:348 +#: C/index.docbook:347 msgid "" "To delete an individual sticky note, right-click on the title of the note, " "then choose <guimenuitem>Delete Note</guimenuitem> from the popup menu. You " @@ -551,13 +483,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:360 +#: C/index.docbook:392 msgid "Preferences" msgstr "هەڵبژاردنەکان" #. (itstool) path: figure/title -#: C/index.docbook:363 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "" @@ -566,7 +552,7 @@ msgstr "" #. 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:367 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -574,7 +560,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:365 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -582,12 +568,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:375 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:376 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -596,36 +582,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:381 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:382 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:386 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:387 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:394 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:395 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -633,12 +619,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:401 C/index.docbook:497 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:403 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -646,7 +632,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:408 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -654,12 +640,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:416 C/index.docbook:505 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:418 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -667,7 +653,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:421 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -675,12 +661,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:428 C/index.docbook:518 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:430 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -688,7 +674,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:433 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -696,12 +682,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:444 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:445 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -710,7 +696,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:449 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -720,7 +706,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:455 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -729,12 +715,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:466 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:468 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -743,7 +729,7 @@ msgstr "" #. 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:472 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -751,7 +737,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:470 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -759,7 +745,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:478 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -769,30 +755,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:486 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:487 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:491 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:492 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:499 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -800,7 +786,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:506 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -808,12 +794,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:512 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:513 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -821,7 +807,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:519 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " @@ -843,3 +829,61 @@ msgid "" " 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/stickynotes/docs/ky/ky.po b/stickynotes/docs/ky/ky.po index 30f7dbd5..cf461f42 100644 --- a/stickynotes/docs/ky/ky.po +++ b/stickynotes/docs/ky/ky.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+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" @@ -34,7 +34,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -483,13 +483,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "Ырастоолор" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "" @@ -498,7 +552,7 @@ msgstr "" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -506,7 +560,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -514,12 +568,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -528,36 +582,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -565,12 +619,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -578,7 +632,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -586,12 +640,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -599,7 +653,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -607,12 +661,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -620,7 +674,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -628,12 +682,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -642,7 +696,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -652,7 +706,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -661,12 +715,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -675,7 +729,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -683,7 +737,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -691,7 +745,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -701,30 +755,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -732,7 +786,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -740,12 +794,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -753,7 +807,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/la/la.po b/stickynotes/docs/la/la.po index 869aff8b..0bae850d 100644 --- a/stickynotes/docs/la/la.po +++ b/stickynotes/docs/la/la.po @@ -2,14 +2,15 @@ # Translators: # Stefano Karapetsas <[email protected]>, 2018 # Vendelín Slezák <[email protected]>, 2018 +# Roger Herikstad, 2023 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+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" @@ -35,7 +36,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -484,13 +485,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "Praeferentiae" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "" @@ -499,7 +554,7 @@ msgstr "" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -507,7 +562,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -515,12 +570,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -529,36 +584,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -566,12 +621,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -579,7 +634,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -587,12 +642,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -600,7 +655,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -608,12 +663,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -621,7 +676,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -629,12 +684,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -643,7 +698,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -653,7 +708,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -662,12 +717,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -676,7 +731,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -684,7 +739,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -692,7 +747,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -702,30 +757,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -733,7 +788,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -741,12 +796,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -754,7 +809,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " @@ -764,7 +819,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/stickynotes/docs/lt/lt.po b/stickynotes/docs/lt/lt.po index bf84fea4..297a43e3 100644 --- a/stickynotes/docs/lt/lt.po +++ b/stickynotes/docs/lt/lt.po @@ -1,16 +1,16 @@ # # Translators: # Stefano Karapetsas <[email protected]>, 2018 -# Moo, 2020 # Džiugas Grėbliūnas <[email protected]>, 2020 +# Moo, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+0000\n" -"Last-Translator: Džiugas Grėbliūnas <[email protected]>, 2020\n" -"Language-Team: Lithuanian (https://www.transifex.com/mate/teams/13566/lt/)\n" +"Last-Translator: Moo, 2021\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" @@ -47,8 +47,8 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" -msgstr "<year>2015-2020</year> <holder>MATE dokumentacijos projektas</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" +msgstr "<year>2015-2021</year> <holder>MATE dokumentacijos projektas</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:29 @@ -503,13 +503,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "Nustatymai" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "Lipnių raštelių nustatymai" @@ -518,7 +572,7 @@ msgstr "Lipnių raštelių nustatymai" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -526,7 +580,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -534,12 +588,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -548,36 +602,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -585,12 +639,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -598,7 +652,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -606,12 +660,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -619,7 +673,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -627,12 +681,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -640,7 +694,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -648,12 +702,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -662,7 +716,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -672,7 +726,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -681,12 +735,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -695,7 +749,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -703,7 +757,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -711,7 +765,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -721,30 +775,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -752,7 +806,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -760,12 +814,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -773,7 +827,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/lv/lv.po b/stickynotes/docs/lv/lv.po index d76c2cb2..65994ada 100644 --- a/stickynotes/docs/lv/lv.po +++ b/stickynotes/docs/lv/lv.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+0000\n" "Last-Translator: duck <[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" @@ -37,7 +37,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -486,13 +486,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "Iestatījumi" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "Līmlapiņu iestatījumi" @@ -501,7 +555,7 @@ msgstr "Līmlapiņu iestatījumi" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -509,7 +563,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -517,12 +571,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -531,36 +585,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -568,12 +622,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -581,7 +635,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -589,12 +643,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -602,7 +656,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -610,12 +664,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -623,7 +677,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -631,12 +685,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -645,7 +699,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -655,7 +709,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -664,12 +718,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -678,7 +732,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -686,7 +740,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -694,7 +748,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -704,30 +758,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -735,7 +789,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -743,12 +797,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -756,7 +810,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/mai/mai.po b/stickynotes/docs/mai/mai.po index d51b1b01..9b0cbce1 100644 --- a/stickynotes/docs/mai/mai.po +++ b/stickynotes/docs/mai/mai.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+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" @@ -34,7 +34,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -483,13 +483,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "वरीयतासभ" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "" @@ -498,7 +552,7 @@ msgstr "" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -506,7 +560,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -514,12 +568,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -528,36 +582,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -565,12 +619,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -578,7 +632,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -586,12 +640,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -599,7 +653,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -607,12 +661,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -620,7 +674,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -628,12 +682,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -642,7 +696,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -652,7 +706,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -661,12 +715,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -675,7 +729,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -683,7 +737,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -691,7 +745,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -701,30 +755,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -732,7 +786,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -740,12 +794,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -753,7 +807,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/mg/mg.po b/stickynotes/docs/mg/mg.po index 7ba69bd5..f31b0192 100644 --- a/stickynotes/docs/mg/mg.po +++ b/stickynotes/docs/mg/mg.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+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" @@ -34,7 +34,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -483,13 +483,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "Safidy" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "Safidy manokan'ny taratasin-tadidy" @@ -498,7 +552,7 @@ msgstr "Safidy manokan'ny taratasin-tadidy" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -506,7 +560,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -514,12 +568,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -528,36 +582,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -565,12 +619,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -578,7 +632,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -586,12 +640,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -599,7 +653,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -607,12 +661,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -620,7 +674,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -628,12 +682,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -642,7 +696,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -652,7 +706,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -661,12 +715,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -675,7 +729,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -683,7 +737,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -691,7 +745,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -701,30 +755,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -732,7 +786,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -740,12 +794,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -753,7 +807,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/mk/mk.po b/stickynotes/docs/mk/mk.po index a39baa67..4f67e6b8 100644 --- a/stickynotes/docs/mk/mk.po +++ b/stickynotes/docs/mk/mk.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+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" @@ -35,7 +35,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -484,13 +484,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "Параметри" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "" @@ -499,7 +553,7 @@ msgstr "" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -507,7 +561,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -515,12 +569,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -529,36 +583,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -566,12 +620,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -579,7 +633,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -587,12 +641,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -600,7 +654,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -608,12 +662,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -621,7 +675,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -629,12 +683,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -643,7 +697,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -653,7 +707,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -662,12 +716,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -676,7 +730,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -684,7 +738,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -692,7 +746,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -702,30 +756,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -733,7 +787,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -741,12 +795,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -754,7 +808,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/ml/ml.po b/stickynotes/docs/ml/ml.po index cb5c6493..d5565d79 100644 --- a/stickynotes/docs/ml/ml.po +++ b/stickynotes/docs/ml/ml.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+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" @@ -36,7 +36,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -485,13 +485,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "മുന്ഗണനകള്" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "സ്റ്റിക്കി കുറിപ്പുകള്ക്കുളള മുന്ഗണനകള്" @@ -500,7 +554,7 @@ msgstr "സ്റ്റിക്കി കുറിപ്പുകള്ക� #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -508,7 +562,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -516,12 +570,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -530,36 +584,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -567,12 +621,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -580,7 +634,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -588,12 +642,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -601,7 +655,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -609,12 +663,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -622,7 +676,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -630,12 +684,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -644,7 +698,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -654,7 +708,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -663,12 +717,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -677,7 +731,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -685,7 +739,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -693,7 +747,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -703,30 +757,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -734,7 +788,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -742,12 +796,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -755,7 +809,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/mn/mn.po b/stickynotes/docs/mn/mn.po index 0c609b74..c3a6f07b 100644 --- a/stickynotes/docs/mn/mn.po +++ b/stickynotes/docs/mn/mn.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+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" @@ -36,7 +36,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -485,13 +485,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "Тохиргоо" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "Наалттай Тэмдэглэгээ Харагдац" @@ -500,7 +554,7 @@ msgstr "Наалттай Тэмдэглэгээ Харагдац" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -508,7 +562,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -516,12 +570,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -530,36 +584,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -567,12 +621,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -580,7 +634,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -588,12 +642,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -601,7 +655,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -609,12 +663,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -622,7 +676,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -630,12 +684,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -644,7 +698,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -654,7 +708,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -663,12 +717,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -677,7 +731,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -685,7 +739,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -693,7 +747,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -703,30 +757,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -734,7 +788,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -742,12 +796,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -755,7 +809,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/mr/mr.po b/stickynotes/docs/mr/mr.po index d5b93ebb..55872dfc 100644 --- a/stickynotes/docs/mr/mr.po +++ b/stickynotes/docs/mr/mr.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+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" @@ -35,7 +35,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -484,13 +484,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "प्राधान्यक्रम" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "स्टिकी नोटस् आवड निवड" @@ -499,7 +553,7 @@ msgstr "स्टिकी नोटस् आवड निवड" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -507,7 +561,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -515,12 +569,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -529,36 +583,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -566,12 +620,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -579,7 +633,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -587,12 +641,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -600,7 +654,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -608,12 +662,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -621,7 +675,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -629,12 +683,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -643,7 +697,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -653,7 +707,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -662,12 +716,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -676,7 +730,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -684,7 +738,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -692,7 +746,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -702,30 +756,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -733,7 +787,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -741,12 +795,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -754,7 +808,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/ms/ms.po b/stickynotes/docs/ms/ms.po index 05e499cb..7f8dc81c 100644 --- a/stickynotes/docs/ms/ms.po +++ b/stickynotes/docs/ms/ms.po @@ -1,15 +1,15 @@ # # Translators: # Stefano Karapetsas <[email protected]>, 2018 -# abuyop <[email protected]>, 2020 +# abuyop <[email protected]>, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+0000\n" -"Last-Translator: abuyop <[email protected]>, 2020\n" -"Language-Team: Malay (https://www.transifex.com/mate/teams/13566/ms/)\n" +"Last-Translator: abuyop <[email protected]>, 2021\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" @@ -37,8 +37,8 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" -msgstr "<year>2015-2020</year> <holder>Pojek Dokumentasi MATE</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" +msgstr "<year>2015-2021</year> <holder>Projek Dokumentasi MATE</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:29 @@ -579,13 +579,67 @@ msgstr "" "juga boleh memadam nota lekat dengan mengklik tanda <guibutton>x</guibutton>" " pada bucu kanan-atas." +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "Keutamaan" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "Keutamaan Nota Lekat" @@ -594,7 +648,7 @@ msgstr "Keutamaan Nota Lekat" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -604,7 +658,7 @@ msgstr "" "md5='0263f6ed6b0242d2d24a45b5d403e007'" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -615,12 +669,12 @@ msgstr "" "Nota Lekat</phrase></textobject>" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "Melaras Saiz" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -632,12 +686,12 @@ msgstr "" "Dialog <application>Keutamaan Nota Lekat</application> dipaparkan." #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "<guilabel>Lebar</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." @@ -646,12 +700,12 @@ msgstr "" "dalam piksel." #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "<guilabel>Tinggi</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." @@ -660,12 +714,12 @@ msgstr "" "dalam piksel." #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "Mengubah Warna dan Fon" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -676,12 +730,12 @@ msgstr "" "<application>Keutamaan Nota Lekat</application> dipaparkan." #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "<guilabel>Warna Fon</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -692,7 +746,7 @@ msgstr "" "warna fon lalai bagi nota lekat." #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -703,12 +757,12 @@ msgstr "" " baharu." #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "<guilabel>Warna Nota</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -719,7 +773,7 @@ msgstr "" "warna dasar lalai bagi nota lekat." #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -730,12 +784,12 @@ msgstr "" " baharu." #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "<guilabel>Fon</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -745,7 +799,7 @@ msgstr "" "pemilih fon, gunakan kotak senarai untuk memilih fon lalai bagi nota lekat." #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -756,12 +810,12 @@ msgstr "" "tidak boleh memilih lalai baharu." #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "Menyuaikan Kelakuan" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -773,7 +827,7 @@ msgstr "" "Dialog <application>Keutamaan Nota Lekat</application> dipaparkan." #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -788,7 +842,7 @@ msgstr "" "ruang kerja." #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -801,12 +855,12 @@ msgstr "" "di atas (sila rujuk <xref linkend=\"stickynotes-color\"/>)." #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "Menyuaikan Nota secara Individu" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "Keutamaan Nota Lekat" @@ -815,7 +869,7 @@ msgstr "Keutamaan Nota Lekat" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -825,7 +879,7 @@ msgstr "" "md5='e2214cbb04d62d60ea0385a5dfa1630c'" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -836,7 +890,7 @@ msgstr "" "Lekat</phrase></textobject>" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -851,33 +905,33 @@ msgstr "" "Lekat</application> dipaparkan." #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "<guilabel>Tajuk</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "Guna kotak teks ini untuk tentukan tajuk bagi nota lekat." #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "<guilabel>Guna warna lalai</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" "Pilih pilihan ini untuk guna warna dasar lalai bagi nota lekat ini. Maklumat" -" lanjut berkenaan penetapan warna dasar lalai, boleh rujuk <xref linkend" -"=\"stickynotes-color\"/>." +" lanjut berkenaan penetapan warna dasar lalai, boleh rujuk <xref " +"linkend=\"stickynotes-color\"/>." #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -888,7 +942,7 @@ msgstr "" "warna fon bagi nota lekat ini." #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -899,12 +953,12 @@ msgstr "" "warna fon bagi nota lekat ini." #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "<guilabel>Guna fon lalai</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -915,7 +969,7 @@ msgstr "" "color\"/>." #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/nb/nb.po b/stickynotes/docs/nb/nb.po index 1f21c4c3..8bf7e407 100644 --- a/stickynotes/docs/nb/nb.po +++ b/stickynotes/docs/nb/nb.po @@ -3,15 +3,16 @@ # Stefano Karapetsas <[email protected]>, 2018 # Allan Nordhøy <[email protected]>, 2018 # Imre Kristoffer Eilertsen <[email protected]>, 2018 -# Kjell Cato Heskjestad <[email protected]>, 2019 +# Kaci Heskjestad, 2019 +# Jan Sherdahl, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+0000\n" -"Last-Translator: Kjell Cato Heskjestad <[email protected]>, 2019\n" -"Language-Team: Norwegian Bokmål (https://www.transifex.com/mate/teams/13566/nb/)\n" +"Last-Translator: Jan Sherdahl, 2021\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" @@ -47,7 +48,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -79,14 +80,14 @@ msgstr "" #. (itstool) path: revdescription/para #: C/index.docbook:59 C/index.docbook:126 msgid "MATE Documentation Project" -msgstr "" +msgstr "MATE dokumentasjonsprosjekt" #. (itstool) path: publisher/publishername #. (itstool) path: revdescription/para #: C/index.docbook:62 C/index.docbook:148 C/index.docbook:156 #: C/index.docbook:164 C/index.docbook:172 msgid "GNOME Documentation Project" -msgstr "" +msgstr "GNOME dokumentasjonsprosjekt" #. (itstool) path: authorgroup/author #: C/index.docbook:68 @@ -140,7 +141,7 @@ msgstr "" #. (itstool) path: revdescription/para #: C/index.docbook:133 C/index.docbook:140 msgid "Davyd Madeley" -msgstr "" +msgstr "Davyd Madeley" #. (itstool) path: revhistory/revision #: C/index.docbook:129 @@ -286,7 +287,7 @@ msgstr "" #. (itstool) path: listitem/para #: C/index.docbook:229 msgid "Right-click on the panel." -msgstr "" +msgstr "Høyreklikk på panelet." #. (itstool) path: listitem/para #: C/index.docbook:234 @@ -303,7 +304,7 @@ msgstr "" #. (itstool) path: listitem/para #: C/index.docbook:245 msgid "Click <guibutton>Add</guibutton>." -msgstr "" +msgstr "Klikk <guibutton>Legg til</guibutton>." #. (itstool) path: sect2/para #: C/index.docbook:250 @@ -496,13 +497,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "Innstillinger" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "Brukervalg for gule lapper" @@ -511,7 +566,7 @@ msgstr "Brukervalg for gule lapper" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -519,7 +574,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -527,12 +582,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -541,36 +596,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -578,12 +633,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -591,7 +646,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -599,12 +654,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -612,7 +667,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -620,12 +675,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -633,7 +688,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -641,12 +696,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -655,7 +710,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -665,7 +720,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -674,12 +729,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -688,7 +743,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -696,7 +751,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -704,7 +759,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -714,30 +769,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -745,7 +800,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -753,12 +808,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -766,7 +821,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/nds/nds.po b/stickynotes/docs/nds/nds.po index 60428107..aae46609 100644 --- a/stickynotes/docs/nds/nds.po +++ b/stickynotes/docs/nds/nds.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+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" @@ -37,7 +37,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -486,13 +486,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "Instellens" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "" @@ -501,7 +555,7 @@ msgstr "" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -509,7 +563,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -517,12 +571,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -531,36 +585,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -568,12 +622,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -581,7 +635,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -589,12 +643,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -602,7 +656,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -610,12 +664,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -623,7 +677,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -631,12 +685,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -645,7 +699,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -655,7 +709,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -664,12 +718,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -678,7 +732,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -686,7 +740,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -694,7 +748,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -704,30 +758,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -735,7 +789,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -743,12 +797,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -756,7 +810,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/ne/ne.po b/stickynotes/docs/ne/ne.po index cbd021a1..843d7d26 100644 --- a/stickynotes/docs/ne/ne.po +++ b/stickynotes/docs/ne/ne.po @@ -7,10 +7,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+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" @@ -38,7 +38,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -487,13 +487,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "प्राथमिकताहरू" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "स्टिकिनोट्स् प्राथमिकताहरू" @@ -502,7 +556,7 @@ msgstr "स्टिकिनोट्स् प्राथमिकताह� #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -510,7 +564,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -518,12 +572,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -532,36 +586,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -569,12 +623,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -582,7 +636,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -590,12 +644,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -603,7 +657,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -611,12 +665,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -624,7 +678,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -632,12 +686,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -646,7 +700,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -656,7 +710,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -665,12 +719,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -679,7 +733,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -687,7 +741,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -695,7 +749,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -705,30 +759,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -736,7 +790,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -744,12 +798,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -757,7 +811,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/nl/nl.po b/stickynotes/docs/nl/nl.po index e0476ec9..80a3dbc6 100644 --- a/stickynotes/docs/nl/nl.po +++ b/stickynotes/docs/nl/nl.po @@ -3,15 +3,17 @@ # Stefano Karapetsas <[email protected]>, 2018 # Pjotr <[email protected]>, 2018 # dragnadh, 2018 -# René Devers <[email protected]>, 2018 +# b9b0d258fa591da5350b6e67cf68cd68_9fecbb4 <28506b9ff23f99a34b566250ce31bbad_250479>, 2018 +# Ronald van Zuijlen, 2020 +# kaasknak, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+0000\n" -"Last-Translator: René Devers <[email protected]>, 2018\n" -"Language-Team: Dutch (https://www.transifex.com/mate/teams/13566/nl/)\n" +"Last-Translator: kaasknak, 2021\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" @@ -37,7 +39,7 @@ msgstr "" #. (itstool) path: articleinfo/title #: C/index.docbook:19 msgid "Sticky Notes Manual" -msgstr "" +msgstr "Sticky Notes Handleiding" #. (itstool) path: abstract/para #: C/index.docbook:21 @@ -45,10 +47,12 @@ msgid "" "Sticky Notes enables you to create, view, and manage sticky notes on your " "desktop." msgstr "" +"Sticky Notes stelt je in staat om sticky notes aan te maken, bekijken en " +"beheren op jouw desktop." #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -497,13 +501,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "Voorkeuren" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "Voorkeuren memo's" @@ -512,7 +570,7 @@ msgstr "Voorkeuren memo's" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -520,7 +578,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -528,12 +586,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" -msgstr "" +msgstr "Grootte aanpassen" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -542,36 +600,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "<guilabel>Breedte</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "<guilabel>Hoogte</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -579,12 +637,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -592,7 +650,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -600,12 +658,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -613,7 +671,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -621,12 +679,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -634,7 +692,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -642,12 +700,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -656,7 +714,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -666,7 +724,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -675,12 +733,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -689,7 +747,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -697,7 +755,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -705,7 +763,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -715,30 +773,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -746,7 +804,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -754,12 +812,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -767,7 +825,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " @@ -812,6 +870,11 @@ msgid "" "aware of those trademarks, then the names are in capital letters or initial " "capital letters." msgstr "" +"Vele van de namen zoals gebruikt bij bedrijven om hun producten en services " +"te onderscheiden zijn geclaimd als handelsmerken. Wanneer deze namen " +"voorkomen in enige MATE documentatie, en de leden van het MATE Documentatie " +"Project hiervan bewust zijn gemaakt, dan zullen deze namen in hoofdletters " +"zijn of beginnen met hoofdletters." #. (itstool) path: listitem/para #: C/legal.xml:35 @@ -828,6 +891,18 @@ msgid "" "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 "" +"HET DOCUMENT IS AANGEBODEN OP EEN \"ZOALS HET IS\" BASIS, ZONDER ENIGE VORM " +"VAN GARANTIE, ZOWEL UITGESPROKEN ALS GEÏMPLICEERD, INCLUSIEF, ZONDER " +"BEPERKINGEN, GARANTIES DAT HET DOCUMENT OF DE AANGEPASTE VERSIE VAN HET " +"DOCUMENT VRIJ VERHANDELBARE GEBREKEN OF GESCHIKT IS VOOR EEN BEPAALD DOEL " +"IS, OF GEEN INBREUK MAAKT. HET VOLLEDIGE RISICO BETREFFEND DE KWALITEIT, " +"ACCURAATHEID, EN PRESTATIES VAN HET DOCUMENT OF DE AANGEPASTE VERSIE VAN HET" +" DOCUMENT LIGT BIJ U. INDIEN HET DOCUMENT DEFECT BLIJKT TE ZIJN IN ENIGE " +"VORM, U (NIET DE INITIËLE SCHRIJVER, AUTEUR OF ENIGE BIJDRAGER) ZAL DE " +"KOSTEN KOSTEN VOOR ENIGE NODIGE SERVICE, REPARATIE OF CORRECTIE OP ZICH " +"NEMEN. DEZE DISCLAIMER BETREFT DE GARANTIE IS EEN ESSENTIEEL ONDERDEEL VAN " +"DEZE LICENTIE. GEEN ENKEL GEBRUIK VAN DIT DOCUMENT OF AANGEPASTE VERSIE VAN " +"HET DOCUMENT IS TOEGESTAAN ALS VOLGT ZONDER DEZE DISCLAIMER; EN" #. (itstool) path: listitem/para #: C/legal.xml:55 @@ -843,6 +918,17 @@ msgid "" "VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE" " POSSIBILITY OF SUCH DAMAGES." msgstr "" +"ONDER GEEN ENKELE OMSTANDIGHEDEN EN ONDER GEEN JURIDISCHE THEORIE, ZIJ HET " +"WETTELIJK (INCLUSIEF NALATIGHEID), CONTRACT, OF ANDERZIJDS ZAL DE AUTEUR, " +"INITIËLE AUTEUR, ENIGE BIJDRAGER VAN HET DOCUMENT OF DE AANPASTE VERSIE VAN " +"HET DOCUMENT, NOCH ENIGE LEVERANCIER VAN EEN VAN DEZE PARTIJEN, " +"AANSPRAKELIJK GEHOUDEN WORDEN DOOR ENIG PERSOON VOOR ENIGE DIRECTE, " +"INDIRECTE, SPECIALE, INCIDENTELE, OF GEVOLG SCHADE IN ELKE VORM INCLUSIEF, " +"ZONDER BEPERKING, SCHADE DOOR VERLIES VAN GOEDE WIL, WERK ONDERBREKING, " +"COMPUTER FALEN OF STORING, OF ENIGE ANDERE VORM VAN SCHADE OF VERLIES ALS " +"GEVOLGEN VAN HET GEBRUIKT VAN HET DOCUMENT EN DE AANGEPASTE VERSIES VAN HET " +"DOCUMENT, ZELFS ALS ZO EEN PARTIJ GEÏNFORMEERD ZOU ZIJN OVER DE MOGELIJKHEID" +" VAN ZULKE SCHADES." #. (itstool) path: legalnotice/para #: C/legal.xml:28 @@ -851,3 +937,6 @@ msgid "" "OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: " "<_:orderedlist-1/>" msgstr "" +"HET DOCUMENT EEN AANGEPASTE VERSIES VAN HET DOCUMENT WORDEN AANGEBODEN ONDER" +" DE VOORWAARDEN VAN DE GNU FREE DOCUMENTATION LICENTIE MET HET BEGRIP DAT: " +"<_:orderedlist-1/>" diff --git a/stickynotes/docs/nn/nn.po b/stickynotes/docs/nn/nn.po index 256b8ce5..348379cb 100644 --- a/stickynotes/docs/nn/nn.po +++ b/stickynotes/docs/nn/nn.po @@ -7,10 +7,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+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" @@ -38,8 +38,8 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" -msgstr "<year>2015-2020</year> <holder>MATE Dokumentasjonsprosjekt</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" +msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:29 @@ -487,13 +487,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "Innstillingar" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "Brukarval for lappar" @@ -502,7 +556,7 @@ msgstr "Brukarval for lappar" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -510,7 +564,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -518,12 +572,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -532,36 +586,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -569,12 +623,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -582,7 +636,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -590,12 +644,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -603,7 +657,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -611,12 +665,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -624,7 +678,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -632,12 +686,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -646,7 +700,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -656,7 +710,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -665,12 +719,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -679,7 +733,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -687,7 +741,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -695,7 +749,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -705,30 +759,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -736,7 +790,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -744,12 +798,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -757,7 +811,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/oc/oc.po b/stickynotes/docs/oc/oc.po index 6ea1fe36..49254b30 100644 --- a/stickynotes/docs/oc/oc.po +++ b/stickynotes/docs/oc/oc.po @@ -3,15 +3,15 @@ # Stefano Karapetsas <[email protected]>, 2018 # Wolfgang Ulbrich <[email protected]>, 2018 # 48c2de07903ce5a77a8e90265f95c4c2_8909374 <837c8d0ab97b27e737893c19f79bd4de_348476>, 2018 -# Quentin PAGÈS, 2020 +# Quentin PAGÈS, 2023 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+0000\n" -"Last-Translator: Quentin PAGÈS, 2020\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 +23,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:19 @@ -39,8 +39,8 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" -msgstr "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" +msgstr "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:29 @@ -493,13 +493,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "Preferéncias" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "Preferéncias dels bremba-tes" @@ -508,7 +562,7 @@ msgstr "Preferéncias dels bremba-tes" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -516,7 +570,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -524,12 +578,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -538,36 +592,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" -msgstr "" +msgstr "<guilabel>Largor</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" -msgstr "" +msgstr "<guilabel>Nautor</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -575,12 +629,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -588,7 +642,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -596,12 +650,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -609,7 +663,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -617,12 +671,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -630,7 +684,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -638,12 +692,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -652,7 +706,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -662,7 +716,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -671,12 +725,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -685,7 +739,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -693,7 +747,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -701,7 +755,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -711,30 +765,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -742,7 +796,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -750,12 +804,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -763,7 +817,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " @@ -785,6 +839,13 @@ msgid "" " of the GFDL at this <_:ulink-1/> or in the file COPYING-DOCS distributed " "with this manual." msgstr "" +"Autorizacion vos es donada de copiar, distribuir e/o modificar aqueste " +"document segon los tèrmes de la Licéncia GNU Free Documentation License " +"(GFDL), Version 1.1 o ulteriora publicada per la Free Software Foundation " +"sens seccion inalterabla, sens tèxt de primièra pagina de cubèrta ni tèxt de" +" darrièra pagina de cubèrta. Trobaretz un exemplari de la GFDL en seguissent" +" aqueste <_:ulink-1/> o dins lo fichièr COPYING-DOCS provesit amb lo present" +" manual." #. (itstool) path: legalnotice/para #: C/legal.xml:12 @@ -794,6 +855,11 @@ msgid "" "you can do so by adding a copy of the license to the manual, as described in" " section 6 of the license." msgstr "" +"Aqueste manual fa part de la colleccion de manuals de MATE distribuits jols " +"tèrmes de la licéncia de documentacion liura GNU. Se volètz distribuir " +"aqueste document a despart de la colleccion, o podètz far en ajustant un " +"exemplar de la licéncia al manual, coma indicat a la seccion 6 de la " +"licéncia." #. (itstool) path: legalnotice/para #: C/legal.xml:19 @@ -804,6 +870,11 @@ msgid "" "aware of those trademarks, then the names are in capital letters or initial " "capital letters." msgstr "" +"La màger part dels noms utilizats per las entrepresas per distinguir lors " +"produches e servicis son de marcas depausadas. Quand aqueles noms apareisson" +" dins la documentacion MATE e que los membres del projècte de Documentacion " +"MATE son informats de l’existéncia d’aquelas marcas depausadas, siá aqueles " +"noms entièrs, siá lor primièra letra es en majuscula." #. (itstool) path: listitem/para #: C/legal.xml:35 @@ -820,6 +891,19 @@ msgid "" "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 "" +"LO DOCUMENT ES PROVESIT « TAL COMA ES » SENS CAP DE GARANTIDA DE QUIN TIPE " +"QUE SIÁ, EXPLICITA O IMPLICADA, AQUÒ INCLUTZ, SENS CAP DE LIMIT, LAS " +"GARANTIDAS QUE LO DOCUMENT O UNA VERSION MODIFICADA NON AJA PAS CAP DE " +"DEFAUT, QUE SIÁ COMERCIABLE, QUE SIÁ ADAPTAT PER UN USATGE PARTICULAR O QUE " +"ENFRANGA PAS LA LEI. TOT LO RISC RESPÈCTE A LA QUALITAT, L’EXACTITUD O LAS " +"QUALITATS TECNICAS DEL DOCUMENT O DE SAS VERSIONS MODIFICADAS ES VÒSTRE. SE " +"PER CAS LO DOCUMENT O UNA VERSION MODIFICADA S’AVERÈSSE DEFECTUÓS AL " +"RESPÈCTE DE QUIN ASPÈCTE QUE SIÁ, VOSAUTRES (NON PAS LO REDACTOR INICIAL, " +"L’AUTOR O QUIN CONTRIBUIDOR QUE SIÁ) ASSUMISSÈTZ LO CÒST DE TOTA MANTENENÇA," +" REPARACION O CORRECCION NECESSÀRIA. AQUESTA DESCARGA DE GARANTIDA " +"CONSTITUÍS UNA PART ESSENCIALA D’AQUESTA LICÉNCIA. CAP D’UTILIZACION " +"D’AQUESTE DOCUMENT O VERSION MODIFICADA ES AUTORIZADA LEVAT JOS AQUESTA " +"DESCARGA DE GARANTIDA E" #. (itstool) path: listitem/para #: C/legal.xml:55 @@ -835,6 +919,16 @@ msgid "" "VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE" " POSSIBILITY OF SUCH DAMAGES." msgstr "" +"EN CAP DE CIRCONSTÀNCIA E JOS CAP D’INTERPRETACION LEGALA, QUE SIÁ DE " +"RESPONSABILITAT CIVILA (NEGLIGÉNCIA INCLUSA), CONTRACTUALA O AUTRA, L’AUTOR," +" LO REDACTOR INICIAL, TOT CONTRIBUIDOR E TOT DISTRIBUIDOR D’AQUESTE DOCUMENT" +" O DE SA VERSION MODIFICADA NI CAP DE PROVESIDOR D’AQUESTES PARTS SERÀN PAS " +"RESPONSABLES AL RESPÈCTE DE QUIN DAMATGE DIRÈCTE, INDIRÈCTE, ESPECIAL O " +"ACCIDENTAL QUE SIÁ DE TOT TIPE E TANBEN, SENS LIMITACION, LOS DAMATGES " +"LIGATS A LA PÈRDA DE CLIENTÈLA, LAS INTERRUPCIONS DE TRABALH, ALS " +"DEFALHIMENTS E DISFONCIONAMENTS INFORMATICS O TOTA AUTRA PÈRDA LIGADA A " +"L’UTILIZACION DEL DOCUMENT E DE SAS VERSIONS MODIFICADAS, ATAL METEIS " +"S’AQUESTES PART ÈRAN AVISATS DE LA POSSIBILITAT D’AQUESTES DAMATGES." #. (itstool) path: legalnotice/para #: C/legal.xml:28 @@ -844,4 +938,5 @@ msgid "" "<_:orderedlist-1/>" msgstr "" "LOS DOCUMENTS E LAS VERSIONS MODIFICADAS D’AQUESTE DOCUMENT SON FORNITS JOLS" -" TÈRMES DE LA LICÉNCIA DE DOCUMENTACION LIURA GNU ESTANT QUE :" +" TÈRMES DE LA LICÉNCIA DE DOCUMENTACION LIURA GNU ESTANT QUE : " +"<_:orderedlist-1/>" diff --git a/stickynotes/docs/or/or.po b/stickynotes/docs/or/or.po index 54897891..2ac1eee5 100644 --- a/stickynotes/docs/or/or.po +++ b/stickynotes/docs/or/or.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Oriya (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" @@ -34,7 +34,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -483,13 +483,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "ପସନ୍ଦ" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "ଷ୍ଟିକି ନୋଟ ପସନ୍ଦଗୁଡିକ" @@ -498,7 +552,7 @@ msgstr "ଷ୍ଟିକି ନୋଟ ପସନ୍ଦଗୁଡିକ" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -506,7 +560,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -514,12 +568,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -528,36 +582,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -565,12 +619,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -578,7 +632,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -586,12 +640,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -599,7 +653,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -607,12 +661,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -620,7 +674,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -628,12 +682,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -642,7 +696,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -652,7 +706,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -661,12 +715,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -675,7 +729,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -683,7 +737,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -691,7 +745,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -701,30 +755,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -732,7 +786,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -740,12 +794,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -753,7 +807,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/pa/pa.po b/stickynotes/docs/pa/pa.po index 1cba1c18..4d0a6681 100644 --- a/stickynotes/docs/pa/pa.po +++ b/stickynotes/docs/pa/pa.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+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" @@ -39,7 +39,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -488,13 +488,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "ਮੇਰੀ ਪਸੰਦ" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "ਸਟਿੱਕੀ ਨੋਟ ਪਸੰਦ" @@ -503,7 +557,7 @@ msgstr "ਸਟਿੱਕੀ ਨੋਟ ਪਸੰਦ" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -511,7 +565,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -519,12 +573,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -533,36 +587,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -570,12 +624,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -583,7 +637,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -591,12 +645,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -604,7 +658,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -612,12 +666,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -625,7 +679,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -633,12 +687,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -647,7 +701,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -657,7 +711,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -666,12 +720,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -680,7 +734,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -688,7 +742,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -696,7 +750,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -706,30 +760,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -737,7 +791,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -745,12 +799,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -758,7 +812,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/pl/pl.po b/stickynotes/docs/pl/pl.po index f74f5e32..4343f0ec 100644 --- a/stickynotes/docs/pl/pl.po +++ b/stickynotes/docs/pl/pl.po @@ -3,21 +3,22 @@ # Piotr Drąg <[email protected]>, 2018 # Piotr Strębski <[email protected]>, 2018 # Stefano Karapetsas <[email protected]>, 2018 -# pietrasagh <[email protected]>, 2018 # Adam Czabara <[email protected]>, 2018 # Dominik Adrian Grzywak, 2018 # Przemek P <[email protected]>, 2019 # Marcin GTriderXC <[email protected]>, 2019 # Jan Bońkowski <[email protected]>, 2019 -# Daniel Tokarzewski <[email protected]>, 2020 +# Szymon Blaut <[email protected]>, 2021 +# Daniel Tokarzewski <[email protected]>, 2021 +# pietrasagh <[email protected]>, 2022 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+0000\n" -"Last-Translator: Daniel Tokarzewski <[email protected]>, 2020\n" -"Language-Team: Polish (https://www.transifex.com/mate/teams/13566/pl/)\n" +"Last-Translator: pietrasagh <[email protected]>, 2022\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" @@ -47,8 +48,8 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" -msgstr "<year>2015-2020</year><holder>Projekt Dokumentacji MATE</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" +msgstr "<year>2015-2021</year> <holder>dokumentacja projektu MATE</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:29 @@ -68,7 +69,7 @@ msgstr "<year>2004</year> <holder>Angela Boyle</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:41 msgid "<year>2003</year> <year>2004</year> <holder>Sun Microsystems</holder>" -msgstr "" +msgstr "<year>2003</year> <year>2004</year> <holder>Sun Microsystems</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:46 @@ -496,13 +497,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "Preferencje" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "Preferencje programu Notatki" @@ -511,7 +566,7 @@ msgstr "Preferencje programu Notatki" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -519,7 +574,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -527,12 +582,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -541,36 +596,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -578,12 +633,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -591,7 +646,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -599,12 +654,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -612,7 +667,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -620,12 +675,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -633,7 +688,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -641,12 +696,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -655,7 +710,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -665,7 +720,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -674,12 +729,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -688,7 +743,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -696,7 +751,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -704,7 +759,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -714,30 +769,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -745,7 +800,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -753,12 +808,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -766,7 +821,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " @@ -838,6 +893,18 @@ msgid "" "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 "" +"DOKUMENT JEST DOSTARCZANY W STANIE „TAK JAK JEST”, BEZ JAKIEGOKOLWIEK " +"WYRAŻENIA, DOMNIEMANIA GWARANCJI, W TYM MIĘDZY INNYMI GWARANCJI, ŻE " +"DOKUMENT LUB ZMODYFIKOWANA WERSJA DOKUMENTU JEST WOLNA OD WAD HANDLOWYCH LUB" +" DO OKREŚLONEGO CELU -NARUSZENIE. CAŁKOWITE RYZYKO DOTYCZĄCE JAKOŚCI, " +"DOKŁADNOŚCI I WYDAJNOŚCI DOKUMENTU LUB ZMODYFIKOWANEJ WERSJI DOKUMENTU " +"SPOCZYWA NA UŻYTKOWNIKU. JEŻELI JAKIKOLWIEK DOKUMENT LUB ZMODYFIKOWANA " +"WERSJA OKAŻE SIĘ WADLIWA POD JAKIMKOLWIEK WZGLĘGEM, UŻYTKOWNIK (NIE WSTĘPNY " +"PISARZ, AUTOR CZY ŻADEN WSPÓŁPRACOWNIK) PONOSI KOSZTY WSZELKICH NIEZBĘDNYCH " +"SERWISÓW, NAPRAW LUB POPRAWEK. NINIEJSZE WYŁĄCZENIE GWARANCJI STANOWI " +"ISTOTNĄ CZĘŚĆ LICENCJI. ZGODNIE Z NINIEJSZYM WYŁĄCZENIEM ODPOWIEDZIALNOŚCI " +"NIE JEST ZEZWOLONE NA KORZYSTANIE Z JAKICHKOLWIEK DOKUMENTÓW LUB " +"ZMODYFIKOWANYCH WERSJI DOKUMENTU; ORAZ " #. (itstool) path: listitem/para #: C/legal.xml:55 @@ -853,6 +920,16 @@ msgid "" "VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE" " POSSIBILITY OF SUCH DAMAGES." msgstr "" +"W ŻADNYM PRZYPADKU I W ŻADNEJ TEORII PRAWNEJ, CZY W DZIAŁANIU CZYNNYM (W TYM" +" ZANIEDBANIA), UMOWY LUB W INNY SPOSÓB, AUTOR, PISARZ WSTĘPNY, " +"WSPÓŁPRACOWNIK ANI DYSTRYBUTOR DOKUMENTU LUB ZMODYFIKOWANA WERSJA DOKUMENTU " +"TAKICH STRON NIE PONOSI ODPOWIEDZIALNOŚCI WOBEC JAKICHKOLWIEK OSÓB ZA " +"JAKIEKOLWIEK BEZPOŚREDNIE, POŚREDNIE, SZCZEGÓLNE, PRZYPADKOWE LUB WTÓRNE " +"SZKODY JAKIEGOKOLWIEK CHARAKTERU, W TYM MIĘDZY INNYMI USZKODZENIA ZA UTRATĘ " +"WŁAŚCIWOŚCI, PRZERWY W PRACY, AWARIE LUB INNE USZKODZENIA KOMPUTERA LUB " +"STRATY WYNIKAJĄCE Z KORZYSTANIA Z DOKUMENTU I ZMODYFIKOWANYCH WERSJI " +"DOKUMENTU, NAWET JEŚLI STRONA ZOSTAŁA POINFORMOWANA O MOŻLIWOŚCI WYSTĄPIENIA" +" TAKICH SZKÓD." #. (itstool) path: legalnotice/para #: C/legal.xml:28 @@ -861,3 +938,6 @@ msgid "" "OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: " "<_:orderedlist-1/>" msgstr "" +"DOKUMENT I ZMODYFIKOWANE WERSJE DOKUMENTU SĄ DOSTARCZANE NA WARUNKACH " +"LICENCJI WOLNEJ DOKUMENTACJI GNU Z DALSZYM ZROZUMIENIEM, " +"ŻE:<_:orderedlist-1/>" diff --git a/stickynotes/docs/ps/ps.po b/stickynotes/docs/ps/ps.po index f6390ac9..10522744 100644 --- a/stickynotes/docs/ps/ps.po +++ b/stickynotes/docs/ps/ps.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Pushto (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" @@ -36,7 +36,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -485,13 +485,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "غوراوي" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "" @@ -500,7 +554,7 @@ msgstr "" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -508,7 +562,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -516,12 +570,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -530,36 +584,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -567,12 +621,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -580,7 +634,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -588,12 +642,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -601,7 +655,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -609,12 +663,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -622,7 +676,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -630,12 +684,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -644,7 +698,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -654,7 +708,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -663,12 +717,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -677,7 +731,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -685,7 +739,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -693,7 +747,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -703,30 +757,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -734,7 +788,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -742,12 +796,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -755,7 +809,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/pt/pt.po b/stickynotes/docs/pt/pt.po index 28587981..6f2aae2c 100644 --- a/stickynotes/docs/pt/pt.po +++ b/stickynotes/docs/pt/pt.po @@ -1,24 +1,24 @@ # # Translators: # Carlos Moreira, 2018 -# Manuela Silva <[email protected]>, 2018 +# Manuela Silva <[email protected]>, 2018 # Manel Tinoco <[email protected]>, 2018 # Rui <[email protected]>, 2018 -# José Vieira <[email protected]>, 2020 # Hugo Carvalho <[email protected]>, 2020 +# José Vieira <[email protected]>, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+0000\n" -"Last-Translator: Hugo Carvalho <[email protected]>, 2020\n" -"Language-Team: Portuguese (https://www.transifex.com/mate/teams/13566/pt/)\n" +"Last-Translator: José Vieira <[email protected]>, 2021\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" "Language: pt\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #. Put one translator per line, in the form NAME <EMAIL>, YEAR1, YEAR2 msgctxt "_" @@ -41,9 +41,9 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" -"<year>2015-2020</year> <holder>Projecto de Documentação do MATE</holder>" +"<year>2015-2021</year> <holder> Projecto de Documentação do MATE</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:29 @@ -578,13 +578,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "Preferências" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "Preferências das Notas Pegajosas" @@ -593,7 +647,7 @@ msgstr "Preferências das Notas Pegajosas" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -603,7 +657,7 @@ msgstr "" "md5='0263f6ed6b0242d2d24a45b5d403e007'" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -614,12 +668,12 @@ msgstr "" "das Notas Adesivas</phrase></textobject>" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "Ajustar Tamanho" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -632,12 +686,12 @@ msgstr "" " Adesivas</application>." #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "<guilabel>Largura</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." @@ -646,12 +700,12 @@ msgstr "" "novas notas adesivas, em píxeis." #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "<guilabel>Altura</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." @@ -660,12 +714,12 @@ msgstr "" "novas notas adesivas, em píxeis." #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "Alterar a Cor e o Tipo de Letra" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -677,12 +731,12 @@ msgstr "" "<application>Preferências das Notas Adesivas</application>." #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "<guilabel>Cor do Tipo de Letra</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -693,7 +747,7 @@ msgstr "" " do tipo de letra predefinida para as notas adesivas." #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -704,12 +758,12 @@ msgstr "" "cores predefinidas." #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "<guilabel>Cor da Nota</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -720,7 +774,7 @@ msgstr "" " da base predefinida para as notas adesivas." #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -731,12 +785,12 @@ msgstr "" "cores predefinidas." #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "<guilabel>Tipo de Letra</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -747,7 +801,7 @@ msgstr "" "tipo de letra predefinido para as notas adesivas." #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -759,12 +813,12 @@ msgstr "" "tipos de letra predefinidas." #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "Personalizar Comportamento" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -777,7 +831,7 @@ msgstr "" "janela <application>Preferências das Notas Adesivas</application>." #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -793,7 +847,7 @@ msgstr "" "áreas de trabalho." #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -802,12 +856,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -816,7 +870,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -826,7 +880,7 @@ msgstr "" "md5='e2214cbb04d62d60ea0385a5dfa1630c'" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -834,7 +888,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -844,30 +898,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -875,7 +929,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -883,12 +937,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -896,7 +950,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/pt_BR/pt_BR.po b/stickynotes/docs/pt_BR/pt_BR.po index 5eb097f0..7a4b3340 100644 --- a/stickynotes/docs/pt_BR/pt_BR.po +++ b/stickynotes/docs/pt_BR/pt_BR.po @@ -7,21 +7,22 @@ # b36c7cf4cf669a51ae00d04c19629819, 2018 # Italo Penaforte <[email protected]>, 2018 # Alceu Nogueira <[email protected]>, 2018 -# Robert Antoni Buj Gelonch <[email protected]>, 2019 -# George Silva <[email protected]>, 2020 +# Robert Antoni Buj i Gelonch <[email protected]>, 2019 +# George Silva <[email protected]>, 2019 +# Luciano Luck, 2022 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+0000\n" -"Last-Translator: George Silva <[email protected]>, 2020\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/mate/teams/13566/pt_BR/)\n" +"Last-Translator: Luciano Luck, 2022\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" "Language: pt_BR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #. Put one translator per line, in the form NAME <EMAIL>, YEAR1, YEAR2 msgctxt "_" @@ -65,8 +66,9 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" -msgstr "<year>2015-2020</year> <holder>MATE Projeto de documentação</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" +msgstr "" +"<year>2015-2021</year> <holder> Projecto de Documentação do MATE</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:29 @@ -532,13 +534,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "Preferências" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "Preferências de Notas" @@ -547,7 +603,7 @@ msgstr "Preferências de Notas" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -557,7 +613,7 @@ msgstr "" "md5='0263f6ed6b0242d2d24a45b5d403e007'" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -565,12 +621,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -579,36 +635,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "<guilabel>Largura</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "<guilabel>Altura</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -616,12 +672,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -629,7 +685,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -637,12 +693,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -650,7 +706,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -658,12 +714,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "<guilabel>Fonte</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -671,7 +727,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -679,12 +735,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -693,7 +749,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -703,7 +759,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -712,12 +768,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -726,7 +782,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -736,7 +792,7 @@ msgstr "" "md5='e2214cbb04d62d60ea0385a5dfa1630c'" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -744,7 +800,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -754,30 +810,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -785,7 +841,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -793,12 +849,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -806,7 +862,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/ro/ro.po b/stickynotes/docs/ro/ro.po index df646b10..be9464a5 100644 --- a/stickynotes/docs/ro/ro.po +++ b/stickynotes/docs/ro/ro.po @@ -2,14 +2,15 @@ # Translators: # Stefano Karapetsas <[email protected]>, 2018 # Daniel <[email protected]>, 2018 +# sidro <[email protected]>, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+0000\n" -"Last-Translator: Daniel <[email protected]>, 2018\n" -"Language-Team: Romanian (https://www.transifex.com/mate/teams/13566/ro/)\n" +"Last-Translator: sidro <[email protected]>, 2021\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" @@ -35,7 +36,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -116,7 +117,7 @@ msgstr "" #. (itstool) path: revdescription/para #: C/index.docbook:125 msgid "MATE Documentation Team" -msgstr "" +msgstr "Echipa de documentare MATE" #. (itstool) path: revhistory/revision #: C/index.docbook:121 @@ -484,13 +485,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "Preferințe" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "Preferințe „Notițe adezive”" @@ -499,7 +554,7 @@ msgstr "Preferințe „Notițe adezive”" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -507,7 +562,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -515,12 +570,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -529,36 +584,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -566,12 +621,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -579,7 +634,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -587,12 +642,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -600,7 +655,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -608,12 +663,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -621,7 +676,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -629,12 +684,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -643,7 +698,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -653,7 +708,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -662,12 +717,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -676,7 +731,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -684,7 +739,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -692,7 +747,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -702,30 +757,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -733,7 +788,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -741,12 +796,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -754,7 +809,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/ru/ru.po b/stickynotes/docs/ru/ru.po index ad2a6509..b77fe528 100644 --- a/stickynotes/docs/ru/ru.po +++ b/stickynotes/docs/ru/ru.po @@ -4,20 +4,23 @@ # Дмитрий Михирев, 2018 # AlexL <[email protected]>, 2018 # Wolfgang Ulbrich <[email protected]>, 2018 -# Михаил Ильинский <[email protected]>, 2018 -# Alex Putz, 2018 +# Михаил Ильинский (milinsky) <[email protected]>, 2018 +# Alex Puts, 2018 # Артур Мальцев <[email protected]>, 2019 # Александр Кураченко <[email protected]>, 2019 -# Olesya Gerasimenko <[email protected]>, 2020 +# Olesya Gerasimenko <[email protected]>, 2019 # Aleksey Kabanov <[email protected]>, 2020 +# Иван Л. <[email protected]>, 2021 +# Sergej A. <[email protected]>, 2022 +# Andrei Stepanov, 2023 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+0000\n" -"Last-Translator: Aleksey Kabanov <[email protected]>, 2020\n" -"Language-Team: Russian (https://www.transifex.com/mate/teams/13566/ru/)\n" +"Last-Translator: Andrei Stepanov, 2023\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" @@ -63,7 +66,7 @@ msgstr "" #. (itstool) path: articleinfo/title #: C/index.docbook:19 msgid "Sticky Notes Manual" -msgstr "" +msgstr "Руководство пользователя по «Липким запискам»" #. (itstool) path: abstract/para #: C/index.docbook:21 @@ -71,11 +74,13 @@ msgid "" "Sticky Notes enables you to create, view, and manage sticky notes on your " "desktop." msgstr "" +"Апплет «Липкие записки» позволяет создавать, просматривать и управлять " +"стикерами на рабочем столе." #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" -msgstr "<year>2015—2020</year> <holder>Проект документирования MATE</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" +msgstr "<year>2015-2021</year> <holder>Проект документирования MATE</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:29 @@ -85,7 +90,7 @@ msgstr "<year>2005</year> <holder>Дэвид Мэдли</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:33 msgid "<year>2004</year> <holder>Shaun McCance</holder>" -msgstr "" +msgstr "<year>2004</year> <holder>Shaun McCance</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:37 @@ -100,7 +105,7 @@ msgstr "<year>2003</year> <year>2004</year> <holder>Sun Microsystems</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:46 msgid "<year>2003</year> <holder>Loban A Rahman</holder>" -msgstr "" +msgstr "<year>2003</year> <holder>Loban A Rahman</holder>" #. (itstool) path: publisher/publishername #. (itstool) path: revdescription/para @@ -121,6 +126,8 @@ msgid "" "<firstname>MATE Documentation Team</firstname> <surname/> <affiliation> " "<orgname>MATE Desktop</orgname> </affiliation>" msgstr "" +"<firstname>Команда документирования MATE</firstname> <surname/> " +"<affiliation> <orgname>Рабочий стол MATE</orgname> </affiliation>" #. (itstool) path: authorgroup/author #: C/index.docbook:75 @@ -129,6 +136,9 @@ msgid "" "<orgname>GNOME Documentation Project</orgname> " "<address><email>[email protected]</email></address> </affiliation>" msgstr "" +"<firstname>Shaun</firstname> <surname>McCance</surname> <affiliation> " +"<orgname>Проект документирования GNOME</orgname> " +"<address><email>[email protected]</email></address> </affiliation>" #. (itstool) path: authorgroup/author #: C/index.docbook:83 @@ -136,6 +146,8 @@ msgid "" "<firstname>Angela</firstname> <surname>Boyle</surname> <affiliation> " "<address><email>[email protected]</email></address> </affiliation>" msgstr "" +"<firstname>Angela</firstname> <surname>Boyle</surname> <affiliation> " +"<address><email>[email protected]</email></address> </affiliation>" #. (itstool) path: authorgroup/author #: C/index.docbook:90 @@ -143,6 +155,8 @@ msgid "" "<firstname>Loban</firstname> <surname>Rahman</surname> <affiliation> " "<address><email>[email protected]</email></address> </affiliation>" msgstr "" +"<firstname>Loban</firstname> <surname>Rahman</surname> <affiliation> " +"<address><email>[email protected]</email></address> </affiliation>" #. (itstool) path: authorgroup/author #: C/index.docbook:97 @@ -151,6 +165,9 @@ msgid "" "<orgname>GNOME Project</orgname> " "<address><email>[email protected]</email></address> </affiliation>" msgstr "" +"<firstname>Davyd</firstname><surname>Madeley</surname> <affiliation> " +"<orgname>Проект GNOME</orgname> " +"<address><email>[email protected]</email></address> </affiliation>" #. (itstool) path: revdescription/para #: C/index.docbook:125 @@ -163,11 +180,13 @@ msgid "" "<revnumber>Sticky Notes Applet Manual V2.7</revnumber> <date>July " "2015</date> <_:revdescription-1/>" msgstr "" +"<revnumber>Руководство пользователя по апплету «Липкие записки» " +"V2.7</revnumber> <date>Июль 2015</date> <_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:133 C/index.docbook:140 msgid "Davyd Madeley" -msgstr "" +msgstr "Давид Мэдли" #. (itstool) path: revhistory/revision #: C/index.docbook:129 @@ -175,6 +194,8 @@ msgid "" "<revnumber>Sticky Notes Applet Manual V2.6</revnumber> <date>September " "2005</date> <_:revdescription-1/>" msgstr "" +"<revnumber>Руководство пользователя по апплету «Липкие записки» " +"V2.6</revnumber> <date>Сентябрь 2005</date> <_:revdescription-1/>" #. (itstool) path: revhistory/revision #: C/index.docbook:136 @@ -182,11 +203,13 @@ msgid "" "<revnumber>Sticky Notes Applet Manual V2.5</revnumber> <date>March " "2005</date> <_:revdescription-1/>" msgstr "" +"<revnumber>Руководство пользователя по апплету «Липкие записки» " +"V2.5</revnumber> <date>Март 2005</date> <_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:147 msgid "Angela Boyle" -msgstr "" +msgstr "Анджела Бойл " #. (itstool) path: revhistory/revision #: C/index.docbook:143 @@ -194,6 +217,8 @@ msgid "" "<revnumber>Sticky Notes Applet Manual V2.4</revnumber> <date>September " "2004</date> <_:revdescription-1/>" msgstr "" +"<revnumber>Руководство пользователя по апплету «Липкие записки» " +"V2.4</revnumber> <date>Сентябрь 2004</date> <_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:155 C/index.docbook:163 C/index.docbook:171 @@ -206,6 +231,8 @@ msgid "" "<revnumber>Sticky Notes Applet Manual V2.3</revnumber> <date>February " "2004</date> <_:revdescription-1/>" msgstr "" +"<revnumber>Руководство пользователя по апплету «Липкие записки» " +"V2.3</revnumber> <date>Февраль 2004</date> <_:revdescription-1/>" #. (itstool) path: revhistory/revision #: C/index.docbook:159 @@ -213,6 +240,8 @@ msgid "" "<revnumber>Sticky Notes Applet Manual V2.2</revnumber> <date>November " "2003</date> <_:revdescription-1/>" msgstr "" +"<revnumber>Руководство пользователя по апплету «Липкие записки» " +"V2.2</revnumber> <date>Ноябрь 2003</date> <_:revdescription-1/>" #. (itstool) path: revhistory/revision #: C/index.docbook:167 @@ -220,11 +249,13 @@ msgid "" "<revnumber>Sticky Notes Applet Manual V2.1</revnumber> <date>August " "2003</date> <_:revdescription-1/>" msgstr "" +"<revnumber>Руководство пользователя по апплету «Липкие записки» " +"V2.1</revnumber> <date>Август 2003</date> <_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:179 msgid "Loban A Rahman <email>[email protected]</email>" -msgstr "" +msgstr "Loban A Rahman <email>[email protected]</email>" #. (itstool) path: revhistory/revision #: C/index.docbook:175 @@ -232,11 +263,14 @@ msgid "" "<revnumber>Sticky Notes Applet Manual V2.0</revnumber> <date>May 2003</date>" " <_:revdescription-1/>" msgstr "" +"<revnumber>Руководство пользователя по апплету «Липкие записки» " +"V2.0</revnumber> <date>Май 2003</date> <_:revdescription-1/>" #. (itstool) path: articleinfo/releaseinfo #: C/index.docbook:186 msgid "This manual describes version 1.10.2 of Sticky Notes." msgstr "" +"В этом руководстве описывается версия 1.10.2 апплета «Липкие записки»." #. (itstool) path: legalnotice/title #: C/index.docbook:189 @@ -251,11 +285,15 @@ msgid "" " <ulink url=\"help:mate-user-guide/feedback\" type=\"help\">MATE Feedback " "Page</ulink>." msgstr "" +"Чтобы сообщить об ошибке или внести предложение относительно приложения " +"<application>Липкие записки</application> или этого руководства, следуйте " +"инструкциям на <ulink url=\"help:mate-user-guide/feedback\" " +"type=\"help\">Странице обратной связи MATE</ulink>." #. (itstool) path: article/indexterm #: C/index.docbook:195 msgid "<primary>Sticky Notes</primary>" -msgstr "" +msgstr "<primary>Липкие записки</primary>" #. (itstool) path: sect1/title #: C/index.docbook:200 @@ -278,6 +316,8 @@ msgid "" "external ref='figures/stickynotes_applet.png' " "md5='9c1c425752e613ff9e1523aac27a7282'" msgstr "" +"external ref='figures/stickynotes_applet.png' " +"md5='9c1c425752e613ff9e1523aac27a7282'" #. (itstool) path: screenshot/mediaobject #: C/index.docbook:204 @@ -286,6 +326,9 @@ msgid "" "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky " "Notes</phrase></textobject>" msgstr "" +"<imageobject> <imagedata fileref=\"figures/stickynotes_applet.png\" " +"format=\"PNG\"/> </imageobject> <textobject><phrase>Показан апплет «Липкие " +"записки»</phrase></textobject>" #. (itstool) path: sect1/para #: C/index.docbook:213 @@ -297,11 +340,17 @@ msgid "" "are saved and reopened in the same position with the same dimensions and " "style." msgstr "" +"Апплет <application>Липкие записки</application> позволяет создавать, " +"просматривать и управлять стикерами на рабочем столе. Вы можете изменять " +"название, содержание, размеры и стиль записок. При перезапуске панели, " +"например, когда вы выходите из системы и снова входите в неё, все записки " +"сохраняются и снова открываются в том же месте с теми же размерами и внешним" +" видом." #. (itstool) path: sect2/title #: C/index.docbook:222 msgid "To Add Sticky Notes to a Panel" -msgstr "" +msgstr "Добавление апплета «Липкие записки» на панель" #. (itstool) path: sect2/para #: C/index.docbook:223 @@ -309,6 +358,8 @@ msgid "" "To add <application>Sticky Notes</application> to a panel, perform the " "following steps:" msgstr "" +"Чтобы добавить апплет <application>Липкие записки</application> на панель, " +"выполните следующие действия:" #. (itstool) path: listitem/para #: C/index.docbook:229 @@ -326,6 +377,8 @@ msgid "" "Scroll down the list of items in the <guilabel>Add to Panel</guilabel> " "dialog, then select <guilabel>Sticky Notes</guilabel>." msgstr "" +"Прокрутите список элементов в диалоговом окне <guilabel>Добавить на " +"панель</guilabel> и выберите <guilabel>Липкие записки</guilabel>." #. (itstool) path: listitem/para #: C/index.docbook:245 @@ -338,16 +391,18 @@ msgid "" "The layout of the <application>Sticky Notes</application> applet varies " "depending on the size and type of panel in which the applet resides." msgstr "" +"Компоновка апплета <application>Липкие записки</application> может " +"изменяться в зависимости от размера и типа панели, на которую он помещён." #. (itstool) path: sect1/title #: C/index.docbook:258 msgid "Using Sticky Notes" -msgstr "" +msgstr "Использование «Липких записок»" #. (itstool) path: sect2/title #: C/index.docbook:261 msgid "Showing and Hiding Sticky Notes" -msgstr "" +msgstr "Показ и скрытие записок" #. (itstool) path: sect2/para #: C/index.docbook:262 @@ -356,6 +411,9 @@ msgid "" "<application>Sticky Notes</application> applet and choose <guimenuitem>Hide " "Notes</guimenuitem>." msgstr "" +"Чтобы скрыть все свои записки, щёлкните мышкой по рабочему столу или " +"щёлкните правой кнопкой мыши апплет <application>Липкие " +"записки</application> и выберите <guimenuitem>Скрыть записки</guimenuitem>." #. (itstool) path: sect2/para #: C/index.docbook:264 @@ -363,16 +421,18 @@ msgid "" "To show all your notes, click the <application>Sticky Notes</application> " "applet." msgstr "" +"Чтобы показать все записки, щёлкните мышкой апплет <application>Липкие " +"записки</application>." #. (itstool) path: sect2/title #: C/index.docbook:268 msgid "Creating a Sticky Note" -msgstr "" +msgstr "Создание липких записок" #. (itstool) path: figure/title #: C/index.docbook:270 msgid "creating a new sticky note" -msgstr "" +msgstr "создание новой липкой записки" #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -385,6 +445,8 @@ msgid "" "external ref='figures/stickynote-right-menu-new.png' " "md5='5b53056bfdc7a8ffa5dc8013116d2b9f'" msgstr "" +"external ref='figures/stickynote-right-menu-new.png' " +"md5='5b53056bfdc7a8ffa5dc8013116d2b9f'" #. (itstool) path: screenshot/mediaobject #: C/index.docbook:272 @@ -393,6 +455,9 @@ msgid "" "format=\"PNG\"/> </imageobject> <textobject><phrase>creating a new sticky " "note</phrase></textobject>" msgstr "" +"<imageobject> <imagedata fileref=\"figures/stickynote-right-menu-new.png\" " +"format=\"PNG\"/> </imageobject> <textobject><phrase>создание новой липкой " +"записки</phrase></textobject>" #. (itstool) path: sect2/para #: C/index.docbook:280 @@ -400,16 +465,18 @@ msgid "" "You can create a sticky note by right-clicking on the sticky note icon and " "selecting <guilabel>New Note</guilabel>, or by double-clicking the applet." msgstr "" +"Вы можете создать записку, щёлкнув правой кнопкой мыши значок апплета и " +"выбрав <guilabel>Создать записку</guilabel>, или двойным щелчком апплета." #. (itstool) path: sect2/para #: C/index.docbook:282 msgid "Creating a note causes all hidden notes to be shown." -msgstr "" +msgstr "Создание записки приводит к отображению всех скрытых записок." #. (itstool) path: sect2/title #: C/index.docbook:286 msgid "Locking and Unlocking Sticky Notes" -msgstr "" +msgstr "Блокировка и снятие блокировки с липких записок" #. (itstool) path: sect2/para #: C/index.docbook:287 @@ -418,16 +485,21 @@ msgid "" " unlock individual sticky notes. Locking a sticky note prevents you from " "accidentally changing the contents of the note." msgstr "" +"Вы можете заблокировать или снять блокировку со всех записок одновременно " +"или сделать это для каждой в отдельности. Блокировка предотвращает случайное" +" изменение содержимого записки." #. (itstool) path: varlistentry/term #: C/index.docbook:292 msgid "<phrase>To Lock or Unlock All Sticky Notes</phrase>" msgstr "" +"<phrase>Чтобы заблокировать или снять блокировку со всех липких " +"записок</phrase>" #. (itstool) path: figure/title #: C/index.docbook:295 msgid "Right Clicking on the Icon" -msgstr "" +msgstr "Щёлкните правой кнопкой мыши значок" #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -440,6 +512,8 @@ msgid "" "external ref='figures/stickynote-right-menu-lock.png' " "md5='d304b4412e3ad7e2b9590e816a25f24e'" msgstr "" +"external ref='figures/stickynote-right-menu-lock.png' " +"md5='d304b4412e3ad7e2b9590e816a25f24e'" #. (itstool) path: screenshot/mediaobject #: C/index.docbook:297 @@ -448,6 +522,9 @@ msgid "" "format=\"PNG\"/> </imageobject> <textobject><phrase>Right Clicking on the " "Icon</phrase></textobject>" msgstr "" +"<imageobject> <imagedata fileref=\"figures/stickynote-right-menu-lock.png\" " +"format=\"PNG\"/> </imageobject> <textobject><phrase>Щёлкните правой кнопкой " +"мыши значок</phrase></textobject>" #. (itstool) path: listitem/para #: C/index.docbook:305 @@ -458,6 +535,11 @@ msgid "" "<guimenuitem>Lock Notes</guimenuitem> from the icon right-click menu again " "so that there is not a check mark next to it." msgstr "" +"Чтобы заблокировать возможность редактирования сразу для всех записок, " +"щелчком правой кнопкой мыши по апплету вызовите контекстное меню, где " +"отметьте пункт <guimenuitem>Заблокировать записки</guimenuitem>. Чтобы снять" +" блокировку со всех записок, снова вызовите контекстное меню и снимите " +"отметку с пункта <guimenuitem>Заблокировать записки</guimenuitem>." #. (itstool) path: listitem/para #: C/index.docbook:311 @@ -467,11 +549,16 @@ msgid "" "of the panel application on the panel. Do not confuse this with the " "<guimenuitem>Lock Notes</guimenuitem> item." msgstr "" +"Обратите внимание, что все приложения, имеющиеся на панели, в контекстном " +"меню содержат пункт <guimenuitem>Прикрепить к панели</guimenuitem>. Не " +"путайте его с элементом <guimenuitem>Заблокировать записки</guimenuitem>." #. (itstool) path: varlistentry/term #: C/index.docbook:320 msgid "<phrase>To Lock or Unlock Individual Sticky Notes</phrase>" msgstr "" +"<phrase>Чтобы заблокировать или снять блокировку с определённой липкой " +"записки</phrase>" #. (itstool) path: listitem/para #: C/index.docbook:321 @@ -483,23 +570,30 @@ msgid "" "also toggle the lock/unlock state of a sticky note by clicking the lock " "button in the top left corner of the sticky note." msgstr "" +"Чтобы заблокировать определённую записку, щёлкните правой кнопкой мыши её " +"заголовок, затем выберите в выпадающем меню <guimenuitem>Заблокировать " +"записку</guimenuitem>. Чтобы разблокировать определённую записку, снова " +"щёлкните правой кнопкой мыши заголовок записки, затем выберите в выпадающем " +"меню <guimenuitem>Разблокировать записку</guimenuitem>. Вы также можете " +"переключать состояние блокировки записки нажатием кнопки блокировки в " +"верхнем левом углу записки." #. (itstool) path: sect2/title #: C/index.docbook:334 msgid "Deleting Sticky Notes" -msgstr "" +msgstr "Удаление липких записок" #. (itstool) path: sect2/para #: C/index.docbook:335 msgid "" "You can delete all sticky notes at the same time, or you can delete " "individual sticky notes." -msgstr "" +msgstr "Вы можете удалить сразу все записки или только отдельные." #. (itstool) path: varlistentry/term #: C/index.docbook:339 msgid "To Delete All Sticky Notes" -msgstr "" +msgstr "Чтобы удалить все липкие записки" #. (itstool) path: listitem/para #: C/index.docbook:340 @@ -508,11 +602,15 @@ msgid "" "from the icon right-click menu. A confirmation dialog will appear; click on " "the <guibutton>Delete All</guibutton> button to confirm the deletion." msgstr "" +"Чтобы удалить все записки, выберите <guimenuitem>Удалить " +"записки</guimenuitem> из контекстного меню значка апплета. Откроется " +"диалоговое окно для подтверждения; нажмите кнопку <guibutton>Удалить " +"все</guibutton>." #. (itstool) path: varlistentry/term #: C/index.docbook:346 msgid "To Delete Individual Sticky Notes" -msgstr "" +msgstr "Чтобы удалить определённую липкую записку" #. (itstool) path: listitem/para #: C/index.docbook:347 @@ -522,167 +620,264 @@ msgid "" "can also delete a sticky note by clicking the <guibutton>x</guibutton> in " "the top right corner." msgstr "" +"Чтобы удалить определённую записку, правой кнопкой мышки щёлкните заголовок " +"записки, затем выберите в контекстном меню <guimenuitem>Удалить " +"записку</guimenuitem>. Вы также можете удалить записку, нажав " +"<guibutton>x</guibutton> в правом верхнем углу." + +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "Клавиатурная навигация" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "Поддерживается базовая навигация с помощью клавиатуры." + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "Параметры" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" -msgstr "Параметры апплета Липкие записки" +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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " "md5='0263f6ed6b0242d2d24a45b5d403e007'" msgstr "" +"external ref='figures/stickynotes-prefs.png' " +"md5='0263f6ed6b0242d2d24a45b5d403e007'" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " "preferences</phrase></textobject>" msgstr "" +"<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " +"format=\"PNG\"/> </imageobject> <textobject><phrase>Показаны параметры " +"«Липких записок»</phrase></textobject>" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" -msgstr "" +msgstr "Настройка размера" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" " menu. The <application>Sticky Notes Preferences</application> dialog is " "displayed." msgstr "" +"Чтобы настроить размер по умолчанию для всех записок, правой кнопкой мыши " +"щёлкните по значку апплета и в выпадающем меню выберите " +"<guimenu>Параметры</guimenu>. Откроется диалоговое окно " +"<application>Параметры апплета «Липкие записки»</application>." #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "<guilabel>Ширина</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" +"Используйте это поле, чтобы установить по умолчанию ширину для новых записок" +" в пикселях." #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "<guilabel>Высота</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" +"Используйте это поле, чтобы установить по умолчанию высоту для новых записок" +" в пикселях." #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" -msgstr "" +msgstr "Изменение цвета и шрифта" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " "<application>Sticky Notes Preferences</application> dialog is displayed." msgstr "" +"Чтобы настроить цвет и шрифт сразу для всех записок, правой кнопкой мыши " +"щёлкните по значку апплета и в выпадающем меню выберите " +"<guimenu>Параметры</guimenu>. Откроется диалоговое окно " +"<application>Параметры апплета «Липкие записки»</application>." #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" -msgstr "" +msgstr "<guilabel>Цвет шрифта</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " "default font color for stickynotes." msgstr "" +"Нажмите кнопку переключателя цвета, чтобы отобразить диалоговое окно выбора " +"цвета. В этом окне используйте цветовой круг или счётчик, чтобы выбрать цвет" +" шрифта для липких записок." #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " "select new defaults." msgstr "" +"Если вы выбрали параметр <guilabel>Использовать цвет из системной " +"темы</guilabel>, то будут применены цвета текущей темы, и вы не сможете " +"выбрать новое значение, используемое по умолчанию." #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" -msgstr "" +msgstr "<guilabel>Цвет записки</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " "default base color for sticky notes." msgstr "" +"Нажмите кнопку переключателя цвета, чтобы отобразить диалоговое окно выбора " +"цвета. В этом окне используйте цветовой круг или счётчик, чтобы выбрать цвет" +" для липких записок." #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " "new defaults." msgstr "" +"Если вы выбрали параметр <guilabel>Использовать цвет из системной " +"темы</guilabel>, то будут применены цвета текущей темы, и вы не сможете " +"выбрать новое значение, используемое по умолчанию." #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" -msgstr "" +msgstr "<guilabel>Шрифт</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " "sticky notes." msgstr "" +"Нажмите кнопку с названием шрифта, чтобы открыть диалоговое окно выбора " +"шрифта. В этом окне используйте поле со списком, чтобы выбрать шрифт, " +"который будет использоваться по умолчанию для всех записок." #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " "you will not be able to select new defaults." msgstr "" +"Если вы выбрали параметр <guilabel>Использовать шрифт из системной " +"темы</guilabel>, то будут применён шрифт приложения из текущей темы, и вы " +"не сможете выбрать новое значение, используемое по умолчанию." #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" -msgstr "" +msgstr "Настройка поведения" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" " menu. The <application>Sticky Notes Preferences</application> dialog is " "displayed." msgstr "" +"Чтобы настроить поведение <application>Липких записок</application>, правой " +"кнопкой мыши щёлкните по значку апплета и в выпадающем меню выберите " +"<guimenu>Параметры</guimenu>. Откроется диалоговое окно " +"<application>Параметры апплета «Липкие записки»</application>." #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -690,48 +885,63 @@ msgid "" "multiple workspaces, this will cause all sticky notes to be visible on all " "workspaces." msgstr "" +"Чтобы записки были видны во всех рабочих пространствах на рабочем столе, " +"выберите параметр <guilabel>Показывать записки на всех рабочих " +"столах</guilabel> в диалоговом окне <guilabel>Параметры апплета «Липкие " +"записки»</guilabel>. Если вы используете несколько рабочих пространств, то " +"эта настройка приведёт к тому, что все липкие записки будут видны на всех " +"рабочих пространствах." #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " "specified in the <guilabel>Default Note Properties</guilabel> above (see " "<xref linkend=\"stickynotes-color\"/>)." msgstr "" +"Выбранный параметр <guilabel>Применить цвет и шрифт по умолчанию ко всем " +"запискам</guilabel> заставит все заметки на вашем рабочем столе использовать" +" настройки цвета и шрифта, указанные в <guilabel>Параметрах записок по " +"умолчанию</guilabel> (смотрите <xref linkend=\"stickynotes-color\"/>)." #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" -msgstr "" +msgstr "Настройка определённых записок" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" -msgstr "" +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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " "md5='e2214cbb04d62d60ea0385a5dfa1630c'" msgstr "" +"external ref='figures/stickynotes-note-prefs.png' " +"md5='e2214cbb04d62d60ea0385a5dfa1630c'" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " "preferences</phrase></textobject>" msgstr "" +"<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " +"format=\"PNG\"/> </imageobject> <textobject><phrase>параметры «Липких " +"записок»</phrase></textobject>" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -739,66 +949,87 @@ msgid "" "note's title, then choose <guimenu>Properties</guimenu> from the popup menu." " The <application>Sticky Note Properties</application> dialog is displayed." msgstr "" +"Вы можете настроить внешний вид каждой отдельной записки. Это может быть " +"полезно для быстрого визуального различения различных типов записок. Чтобы " +"настроить параметры определённой записки, щёлкните правой кнопкой мыши " +"заголовок записки, затем выберите <guimenu>Параметры</guimenu> в выпадающем " +"меню. После этого откроется окно <application>Параметры липкой " +"записки</application>." #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" -msgstr "" +msgstr "<guilabel>Заголовок</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." -msgstr "" +msgstr "Используйте это текстовое поле, чтобы указать заголовок записки." #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" -msgstr "" +msgstr "<guilabel>Использовать цвет по умолчанию</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" +"Выберите этот параметр, чтобы для этой записки использовать основной цвет, " +"установленный по умолчанию. Информацию о настройке основного цвета по " +"умолчанию смотрите <xref linkend=\"stickynotes-color\"/>." #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " "font color for this sticky note." msgstr "" +"Нажмите кнопку переключателя цвета, чтобы отобразить диалоговое окно выбора " +"цвета. В этом окне используйте цветовой круг или счётчик, чтобы выбрать цвет" +" шрифта для этой заметки." #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " "base color for this sticky note." msgstr "" +"Нажмите кнопку переключателя цвета, чтобы отобразить диалоговое окно выбора " +"цвета. В этом окне используйте цветовой круг или счётчик, чтобы выбрать " +"основной цвет для этой записки." #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" -msgstr "" +msgstr "<guilabel>Использовать шрифт по умолчанию</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" "color\"/>." msgstr "" +"Выберите этот параметр, чтобы для этой записки использовать шрифт, " +"установленный по умолчанию. Информацию о настройке шрифта по умолчанию " +"смотрите <xref linkend=\"stickynotes-color\"/>." #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " "sticky note." msgstr "" +"Нажмите кнопку с названием шрифта, чтобы открыть диалоговое окно выбора " +"шрифта. В этом окне используйте поле со списком шрифтов, чтобы выбрать " +"необходимый для этой записки." #. (itstool) path: para/ulink #: C/legal.xml:9 diff --git a/stickynotes/docs/si/si.po b/stickynotes/docs/si/si.po index 0041c88c..f7e84838 100644 --- a/stickynotes/docs/si/si.po +++ b/stickynotes/docs/si/si.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+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" @@ -34,7 +34,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -483,13 +483,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "අභිප්රේත" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "අලවන සටහන් අභිප්රේත" @@ -498,7 +552,7 @@ msgstr "අලවන සටහන් අභිප්රේත" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -506,7 +560,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -514,12 +568,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -528,36 +582,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -565,12 +619,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -578,7 +632,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -586,12 +640,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -599,7 +653,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -607,12 +661,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -620,7 +674,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -628,12 +682,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -642,7 +696,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -652,7 +706,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -661,12 +715,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -675,7 +729,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -683,7 +737,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -691,7 +745,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -701,30 +755,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -732,7 +786,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -740,12 +794,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -753,7 +807,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/sk/sk.po b/stickynotes/docs/sk/sk.po index 3de9ef98..4ab24ecf 100644 --- a/stickynotes/docs/sk/sk.po +++ b/stickynotes/docs/sk/sk.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+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" @@ -42,7 +42,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -491,13 +491,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "Nastavenia" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "Nastavenia poznámok" @@ -506,7 +560,7 @@ msgstr "Nastavenia poznámok" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -514,7 +568,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -522,12 +576,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -536,36 +590,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "<guilabel>Šírka</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "<guilabel>Dĺžka</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -573,12 +627,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -586,7 +640,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -594,12 +648,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -607,7 +661,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -615,12 +669,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -628,7 +682,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -636,12 +690,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -650,7 +704,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -660,7 +714,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -669,12 +723,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -683,7 +737,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -691,7 +745,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -699,7 +753,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -709,30 +763,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -740,7 +794,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -748,12 +802,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -761,7 +815,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/sl/sl.po b/stickynotes/docs/sl/sl.po index adebd3f6..9b1c3582 100644 --- a/stickynotes/docs/sl/sl.po +++ b/stickynotes/docs/sl/sl.po @@ -2,17 +2,17 @@ # Translators: # Stefano Karapetsas <[email protected]>, 2018 # jetomit <[email protected]>, 2018 -# Damir Mevkić <[email protected]>, 2019 +# Damir Mevkić 52K <[email protected]>, 2019 +# Arnold Marko <[email protected]>, 2019 # Helena S <[email protected]>, 2020 -# Arnold Marko <[email protected]>, 2020 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+0000\n" -"Last-Translator: Arnold Marko <[email protected]>, 2020\n" -"Language-Team: Slovenian (https://www.transifex.com/mate/teams/13566/sl/)\n" +"Last-Translator: Helena S <[email protected]>, 2020\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" @@ -38,8 +38,8 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" -msgstr "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" +msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:29 @@ -487,13 +487,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "Možnosti" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "Možnosti lepljivih sporočilc" @@ -502,7 +556,7 @@ msgstr "Možnosti lepljivih sporočilc" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -510,7 +564,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -518,12 +572,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -532,36 +586,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -569,12 +623,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -582,7 +636,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -590,12 +644,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -603,7 +657,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -611,12 +665,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -624,7 +678,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -632,12 +686,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -646,7 +700,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -656,7 +710,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -665,12 +719,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -679,7 +733,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -687,7 +741,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -695,7 +749,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -705,30 +759,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -736,7 +790,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -744,12 +798,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -757,7 +811,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/sq/sq.po b/stickynotes/docs/sq/sq.po index 7fae0788..1451ed41 100644 --- a/stickynotes/docs/sq/sq.po +++ b/stickynotes/docs/sq/sq.po @@ -3,15 +3,15 @@ # Stefano Karapetsas <[email protected]>, 2018 # Alban <[email protected]>, 2018 # Indrit Bashkimi <[email protected]>, 2018 -# Ardit Dani <[email protected]>, 2019 +# Ardit Dani <[email protected]>, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+0000\n" -"Last-Translator: Ardit Dani <[email protected]>, 2019\n" -"Language-Team: Albanian (https://www.transifex.com/mate/teams/13566/sq/)\n" +"Last-Translator: Ardit Dani <[email protected]>, 2021\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" @@ -40,7 +40,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -489,13 +489,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "Parapëlqimet" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "" @@ -504,7 +558,7 @@ msgstr "" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -512,7 +566,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -520,12 +574,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -534,36 +588,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -571,12 +625,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -584,7 +638,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -592,12 +646,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -605,7 +659,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -613,12 +667,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -626,7 +680,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -634,12 +688,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -648,7 +702,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -658,7 +712,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -667,12 +721,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -681,7 +735,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -689,7 +743,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -697,7 +751,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -707,30 +761,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -738,7 +792,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -746,12 +800,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -759,7 +813,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " @@ -790,6 +844,10 @@ msgid "" "you can do so by adding a copy of the license to the manual, as described in" " section 6 of the license." msgstr "" +"Ky manual është pjesë e një koleksioni të manualeve të MATE të shpërndara " +"nën GFDL. Nëse dëshironi ta shpërndani këtë manual veçmas nga koleksioni, " +"mund ta bëni duke shtuar një kopje të licencës në manual, siç përshkruhet në" +" seksionin 6 të licencës." #. (itstool) path: legalnotice/para #: C/legal.xml:19 diff --git a/stickynotes/docs/sr/sr.po b/stickynotes/docs/sr/sr.po index 281f843f..05ebc5d9 100644 --- a/stickynotes/docs/sr/sr.po +++ b/stickynotes/docs/sr/sr.po @@ -1,15 +1,15 @@ # # Translators: # Stefano Karapetsas <[email protected]>, 2018 -# Мирослав Николић <[email protected]>, 2020 +# Мирослав Николић <[email protected]>, 2023 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+0000\n" -"Last-Translator: Мирослав Николић <[email protected]>, 2020\n" -"Language-Team: Serbian (https://www.transifex.com/mate/teams/13566/sr/)\n" +"Last-Translator: Мирослав Николић <[email protected]>, 2023\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" @@ -24,7 +24,7 @@ msgstr "Мирослав Николић <[email protected]>" #. (itstool) path: articleinfo/title #: C/index.docbook:19 msgid "Sticky Notes Manual" -msgstr "" +msgstr "Упутство за лепљиве белешке" #. (itstool) path: abstract/para #: C/index.docbook:21 @@ -32,12 +32,14 @@ msgid "" "Sticky Notes enables you to create, view, and manage sticky notes on your " "desktop." msgstr "" +"Лепљиве белешке вам омогућавају да направите, прегледате и управљате " +"лепљивим белешкама на вашој радној површи." #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" -"<year>2015-2020</year> <holder>Пројекат Мејтове документације</holder>" +"<year>2015-2021</year> <holder>Пројекат Мејтове документације</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:29 @@ -47,22 +49,22 @@ msgstr "<year>2005</year> <holder>Дејвид Мадлеј</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:33 msgid "<year>2004</year> <holder>Shaun McCance</holder>" -msgstr "" +msgstr "<year>2004</year> <holder>Шон Мек Кенс</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:37 msgid "<year>2004</year> <holder>Angela Boyle</holder>" -msgstr "" +msgstr "<year>2004</year> <holder>Анђела Бојл</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:41 msgid "<year>2003</year> <year>2004</year> <holder>Sun Microsystems</holder>" -msgstr "" +msgstr "<year>2003</year> <year>2004</year> <holder>Sun Microsystems</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:46 msgid "<year>2003</year> <holder>Loban A Rahman</holder>" -msgstr "" +msgstr "<year>2003</year> <holder>Лобан А Раман</holder>" #. (itstool) path: publisher/publishername #. (itstool) path: revdescription/para @@ -93,6 +95,9 @@ msgid "" "<orgname>GNOME Documentation Project</orgname> " "<address><email>[email protected]</email></address> </affiliation>" msgstr "" +"<firstname>Шон</firstname> <surname>Мек Кенс</surname> <affiliation> " +"<orgname>Пројекат Гномове документације</orgname> " +"<address><email>[email protected]</email></address> </affiliation>" #. (itstool) path: authorgroup/author #: C/index.docbook:83 @@ -100,6 +105,8 @@ msgid "" "<firstname>Angela</firstname> <surname>Boyle</surname> <affiliation> " "<address><email>[email protected]</email></address> </affiliation>" msgstr "" +"<firstname>Анђела</firstname> <surname>Бојл</surname> <affiliation> " +"<address><email>[email protected]</email></address> </affiliation>" #. (itstool) path: authorgroup/author #: C/index.docbook:90 @@ -107,6 +114,8 @@ msgid "" "<firstname>Loban</firstname> <surname>Rahman</surname> <affiliation> " "<address><email>[email protected]</email></address> </affiliation>" msgstr "" +"<firstname>Лобан</firstname> <surname>Раман</surname> <affiliation> " +"<address><email>[email protected]</email></address> </affiliation>" #. (itstool) path: authorgroup/author #: C/index.docbook:97 @@ -130,6 +139,8 @@ msgid "" "<revnumber>Sticky Notes Applet Manual V2.7</revnumber> <date>July " "2015</date> <_:revdescription-1/>" msgstr "" +"<revnumber>Упутство програмчета лепљивих белешки и2.7</revnumber> <date>Јул " +"2015</date> <_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:133 C/index.docbook:140 @@ -142,6 +153,8 @@ msgid "" "<revnumber>Sticky Notes Applet Manual V2.6</revnumber> <date>September " "2005</date> <_:revdescription-1/>" msgstr "" +"<revnumber>Упутство програмчета лепљивих белешки и2.6</revnumber> " +"<date>Септембар 2005</date> <_:revdescription-1/>" #. (itstool) path: revhistory/revision #: C/index.docbook:136 @@ -149,11 +162,13 @@ msgid "" "<revnumber>Sticky Notes Applet Manual V2.5</revnumber> <date>March " "2005</date> <_:revdescription-1/>" msgstr "" +"<revnumber>Упутство програмчета лепљивих белешки и2.5</revnumber> <date>Март" +" 2005</date> <_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:147 msgid "Angela Boyle" -msgstr "" +msgstr "Анђела Бојл" #. (itstool) path: revhistory/revision #: C/index.docbook:143 @@ -161,11 +176,13 @@ msgid "" "<revnumber>Sticky Notes Applet Manual V2.4</revnumber> <date>September " "2004</date> <_:revdescription-1/>" msgstr "" +"<revnumber>Упутство програмчета лепљивих белешки и2.4</revnumber> " +"<date>Септембар 2004</date> <_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:155 C/index.docbook:163 C/index.docbook:171 msgid "Sun GNOME Documentation Team" -msgstr "" +msgstr "Тим Sun Гномове документације" #. (itstool) path: revhistory/revision #: C/index.docbook:151 @@ -173,6 +190,8 @@ msgid "" "<revnumber>Sticky Notes Applet Manual V2.3</revnumber> <date>February " "2004</date> <_:revdescription-1/>" msgstr "" +"<revnumber>Упутство програмчета лепљивих белешки и2.3</revnumber> " +"<date>Фебруар 2004</date> <_:revdescription-1/>" #. (itstool) path: revhistory/revision #: C/index.docbook:159 @@ -180,6 +199,8 @@ msgid "" "<revnumber>Sticky Notes Applet Manual V2.2</revnumber> <date>November " "2003</date> <_:revdescription-1/>" msgstr "" +"<revnumber>Упутство програмчета лепљивих белешки и2.2</revnumber> " +"<date>Новембар 2003</date> <_:revdescription-1/>" #. (itstool) path: revhistory/revision #: C/index.docbook:167 @@ -187,11 +208,13 @@ msgid "" "<revnumber>Sticky Notes Applet Manual V2.1</revnumber> <date>August " "2003</date> <_:revdescription-1/>" msgstr "" +"<revnumber>Упутство програмчета лепљивих белешки и2.1</revnumber> " +"<date>Август 2003</date> <_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:179 msgid "Loban A Rahman <email>[email protected]</email>" -msgstr "" +msgstr "Лобан А Раман <email>[email protected]</email>" #. (itstool) path: revhistory/revision #: C/index.docbook:175 @@ -199,11 +222,13 @@ msgid "" "<revnumber>Sticky Notes Applet Manual V2.0</revnumber> <date>May 2003</date>" " <_:revdescription-1/>" msgstr "" +"<revnumber>Упутство програмчета лепљивих белешки и2.0</revnumber> <date>Мај " +"2003</date> <_:revdescription-1/>" #. (itstool) path: articleinfo/releaseinfo #: C/index.docbook:186 msgid "This manual describes version 1.10.2 of Sticky Notes." -msgstr "" +msgstr "Ово упутство описује издање 1.10.2 Лепљивих белешки." #. (itstool) path: legalnotice/title #: C/index.docbook:189 @@ -218,11 +243,15 @@ msgid "" " <ulink url=\"help:mate-user-guide/feedback\" type=\"help\">MATE Feedback " "Page</ulink>." msgstr "" +"Да бисте пријавили грешку или дали предлог у вези програма " +"„<application>Лепљиве белешке</application>“ или овог упутства, пратите " +"смернице на <ulink url=\"help:mate-user-guide/feedback\" " +"type=\"help\">Мејтовој страници за примедбе</ulink>." #. (itstool) path: article/indexterm #: C/index.docbook:195 msgid "<primary>Sticky Notes</primary>" -msgstr "" +msgstr "<primary>Лепљиве белешке</primary>" #. (itstool) path: sect1/title #: C/index.docbook:200 @@ -245,6 +274,8 @@ msgid "" "external ref='figures/stickynotes_applet.png' " "md5='9c1c425752e613ff9e1523aac27a7282'" msgstr "" +"external ref='figures/stickynotes_applet.png' " +"md5='9c1c425752e613ff9e1523aac27a7282'" #. (itstool) path: screenshot/mediaobject #: C/index.docbook:204 @@ -253,6 +284,9 @@ msgid "" "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky " "Notes</phrase></textobject>" msgstr "" +"<imageobject> <imagedata fileref=\"figures/stickynotes_applet.png\" " +"format=\"PNG\"/> </imageobject> <textobject><phrase>Приказује лепљиве " +"белешке</phrase></textobject>" #. (itstool) path: sect1/para #: C/index.docbook:213 @@ -264,11 +298,17 @@ msgid "" "are saved and reopened in the same position with the same dimensions and " "style." msgstr "" +"Панелни програм „<application>Лепљиве белешке</application>“ вам омогућава " +"да направите, прегледате и управљате лепљиве белешке на радној површи. " +"Можете да уређујете наслов, садржај, величину и стич чепљивих белешки. " +"Приликом поновног покретања панела, на пример када се одјавите и поново " +"пријавите, све лепљиве белешке се чувају и поново отварају на истом месту са" +" истом величином и стилом." #. (itstool) path: sect2/title #: C/index.docbook:222 msgid "To Add Sticky Notes to a Panel" -msgstr "" +msgstr "Додавање Лепљивих белешки на панел" #. (itstool) path: sect2/para #: C/index.docbook:223 @@ -276,11 +316,13 @@ msgid "" "To add <application>Sticky Notes</application> to a panel, perform the " "following steps:" msgstr "" +"Да додате „<application>Лепљиве белешке</application>“ на панел, урадите " +"следеће:" #. (itstool) path: listitem/para #: C/index.docbook:229 msgid "Right-click on the panel." -msgstr "" +msgstr "Кликните десним тастером миша на панел." #. (itstool) path: listitem/para #: C/index.docbook:234 @@ -293,6 +335,8 @@ msgid "" "Scroll down the list of items in the <guilabel>Add to Panel</guilabel> " "dialog, then select <guilabel>Sticky Notes</guilabel>." msgstr "" +"Премакните на доле списак ставки у прозорчету „<guilabel>Додај на " +"панел</guilabel>“, затим изаберите „<guilabel>Лепљиве белешке</guilabel>“." #. (itstool) path: listitem/para #: C/index.docbook:245 @@ -305,16 +349,18 @@ msgid "" "The layout of the <application>Sticky Notes</application> applet varies " "depending on the size and type of panel in which the applet resides." msgstr "" +"Распоред програмчета „<application>Лепљиве белешке</application>“ се мења у " +"зависности од величине и врсте панела на коме се налази." #. (itstool) path: sect1/title #: C/index.docbook:258 msgid "Using Sticky Notes" -msgstr "" +msgstr "Коришћење лепљивих белешки" #. (itstool) path: sect2/title #: C/index.docbook:261 msgid "Showing and Hiding Sticky Notes" -msgstr "" +msgstr "Приказивање и скривање лепљивих белешки" #. (itstool) path: sect2/para #: C/index.docbook:262 @@ -323,6 +369,9 @@ msgid "" "<application>Sticky Notes</application> applet and choose <guimenuitem>Hide " "Notes</guimenuitem>." msgstr "" +"Да сакријете све ваше белешке, или кликните на радну површ, или десни клик " +"на програмче „<application>Лепљиве белешке</application>“ и изаберите " +"„<guimenuitem>Сакриј белешке</guimenuitem>“." #. (itstool) path: sect2/para #: C/index.docbook:264 @@ -330,16 +379,18 @@ msgid "" "To show all your notes, click the <application>Sticky Notes</application> " "applet." msgstr "" +"Да прикажете све ваше белешке, кликните на програмче „<application>Лепљиве " +"белешке</application>“." #. (itstool) path: sect2/title #: C/index.docbook:268 msgid "Creating a Sticky Note" -msgstr "" +msgstr "Прављење лепљиве белешке" #. (itstool) path: figure/title #: C/index.docbook:270 msgid "creating a new sticky note" -msgstr "" +msgstr "прављење нове лепљиве белешке" #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -352,6 +403,8 @@ msgid "" "external ref='figures/stickynote-right-menu-new.png' " "md5='5b53056bfdc7a8ffa5dc8013116d2b9f'" msgstr "" +"external ref='figures/stickynote-right-menu-new.png' " +"md5='5b53056bfdc7a8ffa5dc8013116d2b9f'" #. (itstool) path: screenshot/mediaobject #: C/index.docbook:272 @@ -360,6 +413,9 @@ msgid "" "format=\"PNG\"/> </imageobject> <textobject><phrase>creating a new sticky " "note</phrase></textobject>" msgstr "" +"<imageobject> <imagedata fileref=\"figures/stickynote-right-menu-new.png\" " +"format=\"PNG\"/> </imageobject> <textobject><phrase>прављење нове лепљиве " +"белешке</phrase></textobject>" #. (itstool) path: sect2/para #: C/index.docbook:280 @@ -367,16 +423,18 @@ msgid "" "You can create a sticky note by right-clicking on the sticky note icon and " "selecting <guilabel>New Note</guilabel>, or by double-clicking the applet." msgstr "" +"Можете да направите лепљиву белешку десним кликом на иконицу лепљиве белешке" +" и бирањем „<guilabel>Нова белешка</guilabel>“, или двокликом на програмче." #. (itstool) path: sect2/para #: C/index.docbook:282 msgid "Creating a note causes all hidden notes to be shown." -msgstr "" +msgstr "Прављење белешке доводи до приказивања свих скривених белешки." #. (itstool) path: sect2/title #: C/index.docbook:286 msgid "Locking and Unlocking Sticky Notes" -msgstr "" +msgstr "Закључавање и откључавање лепљивих белешки" #. (itstool) path: sect2/para #: C/index.docbook:287 @@ -385,16 +443,19 @@ msgid "" " unlock individual sticky notes. Locking a sticky note prevents you from " "accidentally changing the contents of the note." msgstr "" +"Можете да закључате или откључате све лепљиве белешке у исто време или " +"можете да закључате или откључате појединачне лепљиве белешке. Закључавање " +"лепљиве белешке вас спречава да случајно измените садржај белешке." #. (itstool) path: varlistentry/term #: C/index.docbook:292 msgid "<phrase>To Lock or Unlock All Sticky Notes</phrase>" -msgstr "" +msgstr "<phrase>Да закључате или откључате све лепљиве белешке</phrase>" #. (itstool) path: figure/title #: C/index.docbook:295 msgid "Right Clicking on the Icon" -msgstr "" +msgstr "Десни клик на иконицу" #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -407,6 +468,8 @@ msgid "" "external ref='figures/stickynote-right-menu-lock.png' " "md5='d304b4412e3ad7e2b9590e816a25f24e'" msgstr "" +"external ref='figures/stickynote-right-menu-lock.png' " +"md5='d304b4412e3ad7e2b9590e816a25f24e'" #. (itstool) path: screenshot/mediaobject #: C/index.docbook:297 @@ -415,6 +478,9 @@ msgid "" "format=\"PNG\"/> </imageobject> <textobject><phrase>Right Clicking on the " "Icon</phrase></textobject>" msgstr "" +"<imageobject> <imagedata fileref=\"figures/stickynote-right-menu-lock.png\" " +"format=\"PNG\"/> </imageobject> <textobject><phrase>Десни клик на " +"иконицу</phrase></textobject>" #. (itstool) path: listitem/para #: C/index.docbook:305 @@ -425,6 +491,11 @@ msgid "" "<guimenuitem>Lock Notes</guimenuitem> from the icon right-click menu again " "so that there is not a check mark next to it." msgstr "" +"Да закључате све лепљиве белешке тако да се не могу изменити, изаберите " +"„<guimenuitem>Закључај белешке</guimenuitem>“ из десног клика изборника " +"иконице тако да се појави ознака избора поред ње. Да откључате све лепљиве " +"белешке, поново изаберите „<guimenuitem>Закључај белешке</guimenuitem>“ из " +"десног клика изборника иконице тако да се поништи ознака избора поред ње." #. (itstool) path: listitem/para #: C/index.docbook:311 @@ -434,11 +505,16 @@ msgid "" "of the panel application on the panel. Do not confuse this with the " "<guimenuitem>Lock Notes</guimenuitem> item." msgstr "" +"Знајте да сви панелни програми имају ставку „<guimenuitem>Закључај на " +"панел</guimenuitem>“ у изборнику десног клика, која закључава положај " +"панелног програма на на панел. Немојте помешати ово са ставком " +"„<guimenuitem>Закључавај белешке</guimenuitem>“." #. (itstool) path: varlistentry/term #: C/index.docbook:320 msgid "<phrase>To Lock or Unlock Individual Sticky Notes</phrase>" msgstr "" +"<phrase>Да закључате или откључате појединачну лепљиву белешку</phrase>" #. (itstool) path: listitem/para #: C/index.docbook:321 @@ -450,11 +526,18 @@ msgid "" "also toggle the lock/unlock state of a sticky note by clicking the lock " "button in the top left corner of the sticky note." msgstr "" +"Да закључате појединачну лепљиву белешку, десни клик на наслов белешке, " +"затим изаберите „<guimenuitem>Закључај белешку</guimenuitem>“ из искочног " +"изборника. Да откључате појединачну белешку, десни клик на наслов белешке, " +"затим поново изаберите „<guimenuitem>Откључај белешку</guimenuitem>“ из " +"искочног изборника. Можете такође да окинете стање закључаности/откључаности" +" лепљиве белешке кликом на дугме катанца у горњем левом углу лепљиве " +"белешке." #. (itstool) path: sect2/title #: C/index.docbook:334 msgid "Deleting Sticky Notes" -msgstr "" +msgstr "Брисање лепљивих белешки" #. (itstool) path: sect2/para #: C/index.docbook:335 @@ -462,11 +545,13 @@ msgid "" "You can delete all sticky notes at the same time, or you can delete " "individual sticky notes." msgstr "" +"Можете да обришете све лепљиве белешке у исто време, или да обришете " +"појединачне лепљиве белешке." #. (itstool) path: varlistentry/term #: C/index.docbook:339 msgid "To Delete All Sticky Notes" -msgstr "" +msgstr "Да обришете све лепљиве белешке" #. (itstool) path: listitem/para #: C/index.docbook:340 @@ -475,11 +560,15 @@ msgid "" "from the icon right-click menu. A confirmation dialog will appear; click on " "the <guibutton>Delete All</guibutton> button to confirm the deletion." msgstr "" +"Да обришете све лепљиве белешке, изаберите „<guimenuitem>Обриши " +"белешке</guimenuitem>“ из изборника десног клика иконице. Појавиће се " +"прозорче за потврђивање; кликните на дугме „<guibutton>Обриши " +"све</guibutton>“ да потврдите брисање." #. (itstool) path: varlistentry/term #: C/index.docbook:346 msgid "To Delete Individual Sticky Notes" -msgstr "" +msgstr "Да обришете појединачне лепљиве белешке" #. (itstool) path: listitem/para #: C/index.docbook:347 @@ -489,14 +578,93 @@ msgid "" "can also delete a sticky note by clicking the <guibutton>x</guibutton> in " "the top right corner." msgstr "" +"Да обришете појединачну лепљиву белешку, десни клик на наслов белешке, затим" +" изаберите „<guimenuitem>Обриши белешку</guimenuitem>“ из искочног " +"изборника. Можете такође да обришете лепљиву белешку кликом на " +"<guibutton>x</guibutton> у горњем десном углу." + +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "Навигација тастатуром" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "Основна навигација тастатуром је подржана." + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "Прављење лепљивих белешки помоћу тастатуре" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" +"Користите <shortcut><keycombo><keysym>Ктрл-Алт-" +"Таб</keysym></keycombo></shortcut> да приступите Мејтовом панелу, затим " +"користите <shortcut><keysym>Таб</keysym></shortcut> или тастере " +"<shortcut><keycombo><keysym>стрелица</keysym></keycombo></shortcut> да " +"приступите програмчету лепљивих белешки. Затим отворите садржајни изборник " +"помоћу <shortcut><keycombo><keysym>Шифт-F10</keysym></keycombo></shortcut> " +"или тастером <shortcut><keysym>Изборник</keysym></shortcut>, и изаберите " +"<guimenuitem><guilabel>Нова белешка</guilabel></guimenuitem>." + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "Приступање Лепљивим белешкама помоћу тастатуре" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" +"Користите <shortcut><keycombo><keysym>Ктрл-Алт-" +"Таб</keysym></keycombo></shortcut> неколико пута да се пребацујете између " +"панела и постојећих лепљивих белешки. Када је лепљива белешка у првом плану," +" можете да се крећете између облати за текст и насловне траке (где се налазе" +" дугмад <guimenuitem><guilabel>Закључај</guilabel></guimenuitem> и " +"<guimenuitem><guilabel>Обриши</guilabel></guimenuitem>) помоћу тастера " +"<shortcut><keysym>F6</keysym></shortcut>." + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" +"Када сте на насловној траци, користите тастер " +"<shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Шифт-F10</keysym></keycombo></shortcut> или " +"<shortcut><keysym>Изборник</keysym></shortcut> да отворите садржајни " +"изборник, који омогућава да приступите прозорчету " +"<guimenuitem><guilabel>Својства</guilabel></guimenuitem> одређене белешке." #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "Поставке" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "Поставке за белешку" @@ -505,151 +673,188 @@ msgstr "Поставке за белешку" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " "md5='0263f6ed6b0242d2d24a45b5d403e007'" msgstr "" +"external ref='figures/stickynotes-prefs.png' " +"md5='0263f6ed6b0242d2d24a45b5d403e007'" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " "preferences</phrase></textobject>" msgstr "" +"<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " +"format=\"PNG\"/> </imageobject> <textobject><phrase>Приказује поставке " +"лепљивих белешки</phrase></textobject>" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" -msgstr "" +msgstr "Одређивање величине" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" " menu. The <application>Sticky Notes Preferences</application> dialog is " "displayed." msgstr "" +"Да подесите основну величину за све лепљиве белешке, десни клик на иконицу " +"лепљивих белешки, затим изаберите „<guimenu>Поставке</guimenu>“ из искочног " +"изборника. Приказаће се прозорче „<application>Поставке лепљивих " +"белешки</application>“." #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" -msgstr "" +msgstr "<guilabel>Ширина</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" +"Користите ову вртешку да одредите основну ширину нових лепљивих белешки, у " +"пикселима." #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" -msgstr "" +msgstr "<guilabel>Висина</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" +"Користите ову вртешку да одредите основну висину нових лепљивих белешки, у " +"пикселима." #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" -msgstr "" +msgstr "Промена боје и врсте слова" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " "<application>Sticky Notes Preferences</application> dialog is displayed." msgstr "" +"Да подесите боју и врсту слова за све лепљиве белешке, десни клик на " +"иконицу, затим изаберите „<guimenu>Поставке</guimenu>“ из искочног " +"изборника. Приказаће се прозорче „<application>Поставке лепљивих " +"белешки</application>“." #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" -msgstr "" +msgstr "<guilabel>Боја слова</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " "default font color for stickynotes." msgstr "" +"Кликните на дугме избора боје да прикажете прозорче бирача боје. У " +"прозорчету бирача боје, користите точкић боје или вртећке да изаберете " +"основну боју слова за лепљиве белешке." #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " "select new defaults." msgstr "" +"Ако сте изабрали, „<guilabel>Користи боју системске теме</guilabel>“, затим " +"ће се користити боје текуће теме и нећете моћи да изаберете нове основности." #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" -msgstr "" +msgstr "<guilabel>Боја белешке</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " "default base color for sticky notes." msgstr "" +"Кликните на дугме избора боје да прикажете прозорче бирача боје. У " +"прозорчету бирача боје, користите точкић боје или вртешке да изаберете " +"основну боју основе за лепљиве белешке." #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " "new defaults." msgstr "" +"Ако сте изабрали, „<guilabel>Користи боју системске теме</guilabel>“, затим " +"ће се користити боје текуће теме и нећете моћи да изаберете нове основности." #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "<guilabel>Словни лик</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " "sticky notes." msgstr "" +"Кликните на дугме избора слова да прикажете прозорче бирача слова. У " +"прозорчету бирача слова, користите поља списка да изаберете основну врсту " +"слова за лепљиве белешке." #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " "you will not be able to select new defaults." msgstr "" +"Ако сте изабрали, „<guilabel>Користи слова системске теме</guilabel>“, затим" +" ће се користити текући скуп слова програма у поставкама врсте слова и " +"нећете моћи да изаберете нове основности." #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" -msgstr "" +msgstr "Прилагођавање понашања" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" " menu. The <application>Sticky Notes Preferences</application> dialog is " "displayed." msgstr "" +"Да прилагодите понашање „<application>Лепљивих белешки</application>“, десни" +" клик на иконицу, затим изаберите „<guimenu>Постваке</guimenu>“ из искочног " +"изборника. Биће приказано прозорче „<application>Поставке лепљивих " +"белешки</application>“." #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -657,48 +862,62 @@ msgid "" "multiple workspaces, this will cause all sticky notes to be visible on all " "workspaces." msgstr "" +"Да одредите да се лепљиве белешке приказују на свим радним просторима на " +"радној површи, изаберите „<guilabel>Стави белешке на све радне " +"просторе</guilabel> у прозорчету „<guilabel>Поставке лепљивих " +"белешки</guilabel>“. Ако користите више радних простора, ово ће довести до " +"тога да се све лепљиве белешке приказују на свим радним просторима." #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " "specified in the <guilabel>Default Note Properties</guilabel> above (see " "<xref linkend=\"stickynotes-color\"/>)." msgstr "" +"Опција, „<guilabel>Присили основну боју и слова на белешкама</guilabel>“, " +"присилиће све лепљиве белешке на радној површи да користе поставке боје и " +"слова наведене у „<guilabel>Основна својства белешки</guilabel>“ изнад " +"(видите <xref linkend=\"stickynotes-color\"/>)." #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" -msgstr "" +msgstr "Прилагођавање појединачних белешки" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" -msgstr "" +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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " "md5='e2214cbb04d62d60ea0385a5dfa1630c'" msgstr "" +"external ref='figures/stickynotes-note-prefs.png' " +"md5='e2214cbb04d62d60ea0385a5dfa1630c'" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " "preferences</phrase></textobject>" msgstr "" +"<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " +"format=\"PNG\"/> </imageobject> <textobject><phrase>поставке лепљивих " +"белешки</phrase></textobject>" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -706,66 +925,86 @@ msgid "" "note's title, then choose <guimenu>Properties</guimenu> from the popup menu." " The <application>Sticky Note Properties</application> dialog is displayed." msgstr "" +"Можете да прилагодите изглед сваке појединачне лепљиве белешке. Ово може " +"бити корисно за брзо видно разлоковање различитих врста белешки. Да подесите" +" поставке за појединачну лепљиву белешку, десни клик на наслов белешке, " +"затим изаберите „<guimenu>Својства</guimenu>“ из искочног изборника. " +"Приказаће се прозорче „<application>Својства лепљиве белешке</application>“." #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" -msgstr "" +msgstr "<guilabel>Наслов</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." -msgstr "" +msgstr "Користите ово поље за текст да наведете наслов лепљиве белешке." #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" -msgstr "" +msgstr "<guilabel>Користи основну боју</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" +"Изаберите ову опцију да користите основну боју основе за ту лепљиву белешку." +" За информације о одређивању основне боје основе, видите <xref " +"linkend=\"stickynotes-color\"/>." #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " "font color for this sticky note." msgstr "" +"Кликните на дугме избора боје да прикажете прозорче бирача боје. У " +"прозорчету бирача боје, користите точкић боје или вртешке да изаберете боју " +"слова за лепљиву белешку." #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " "base color for this sticky note." msgstr "" +"Кликните на дугме избора боје да прикажете прозорче бирача боје. У " +"прозорчету бирача боје, користите точкић боје или вртешке да изаберете боју " +"основе за ту лепљиву белешку." #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" -msgstr "" +msgstr "<guilabel>Користи основну врсту слова</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" "color\"/>." msgstr "" +"Изаберите ову опцију да користите основну врсту слова за ту лепљиву белешку." +" За информације о одређивању основне врсте слова, видите <xref " +"linkend=\"stickynotes-color\"/>." #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " "sticky note." msgstr "" +"Кликните на дугме избора слова да прикажете прозорче бирача слова. У " +"прозорчету бирача слова, користите поља списка да изаберете врсту слова за " +"ту лепљиву белешку." #. (itstool) path: para/ulink #: C/legal.xml:9 @@ -782,6 +1021,12 @@ msgid "" " of the GFDL at this <_:ulink-1/> or in the file COPYING-DOCS distributed " "with this manual." msgstr "" +"Дозвољено је умножавање, расподела, вршење измена овог документа под " +"условима Гну-ове Лиценце Слободне Документације (ГЛСД), верзије 1.1 или било" +" које касније верзије без непромењивих одељака, текста на насловној и " +"последњој страни, а коју је објавила Задужбина Слободног Софтвера. Примерак " +"ГЛСД можете пронаћи на овој <_:ulink-1/> или у датотеци „COPYING-DOCS“ која " +"је приложена уз ово упутство." #. (itstool) path: legalnotice/para #: C/legal.xml:12 @@ -791,6 +1036,10 @@ msgid "" "you can do so by adding a copy of the license to the manual, as described in" " section 6 of the license." msgstr "" +"Ово упутство је део скупа Мејтових докумената објављених под GFDL. Уколико " +"желите да расподељујете ово упутство одвојено од скупа, то можете урадити " +"додавањем примерка лиценце документу, како је описано у одељку 6 саме " +"лиценце." #. (itstool) path: legalnotice/para #: C/legal.xml:19 @@ -801,6 +1050,11 @@ msgid "" "aware of those trademarks, then the names are in capital letters or initial " "capital letters." msgstr "" +"Многи називи које компаније користе у циљу препознатљивости својих производа" +" и услуга представљају робне марке. Када (уколико) се такви називи " +"појављују(спомињу) у било којем Мејтовом документу, а чланови Мејтовог " +"документационог пројекта имају сазнања о томе, тада су називи исписани " +"великим словима или са великим почетним словима." #. (itstool) path: listitem/para #: C/legal.xml:35 @@ -817,6 +1071,18 @@ msgid "" "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 @@ -832,6 +1098,15 @@ msgid "" "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 @@ -840,3 +1115,5 @@ msgid "" "OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: " "<_:orderedlist-1/>" msgstr "" +"OVAJ DOKUMENT I NJEGOVE IZMENJENE VERZIJE SU DOSTUPNE POD USLOVIMA GNU-OVE " +"SLOBODNE DOKUMENTACIONE DOZVOLE UZ DODATNU SAGLASNOST DA: <_:orderedlist-1/>" diff --git a/stickynotes/docs/sr@latin/[email protected] b/stickynotes/docs/sr@latin/[email protected] index 85f1828f..79ecf6d8 100644 --- a/stickynotes/docs/sr@latin/[email protected] +++ b/stickynotes/docs/sr@latin/[email protected] @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+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" @@ -38,7 +38,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -487,13 +487,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "Postavke" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "Postavke za belešku" @@ -502,7 +556,7 @@ msgstr "Postavke za belešku" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -510,7 +564,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -518,12 +572,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -532,36 +586,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -569,12 +623,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -582,7 +636,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -590,12 +644,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -603,7 +657,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -611,12 +665,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -624,7 +678,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -632,12 +686,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -646,7 +700,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -656,7 +710,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -665,12 +719,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -679,7 +733,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -687,7 +741,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -695,7 +749,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -705,30 +759,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -736,7 +790,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -744,12 +798,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -757,7 +811,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/sv/sv.po b/stickynotes/docs/sv/sv.po index 67a68fb8..fca5e4a3 100644 --- a/stickynotes/docs/sv/sv.po +++ b/stickynotes/docs/sv/sv.po @@ -1,21 +1,21 @@ # # Translators: -# Kristoffer Grundström <[email protected]>, 2018 # Stefano Karapetsas <[email protected]>, 2018 # Henrik Mattsson-Mårn <[email protected]>, 2018 # Wolfgang Ulbrich <[email protected]>, 2018 # Daniel Gullbransen, 2018 # crash <[email protected]>, 2019 # eckeman <[email protected]>, 2020 -# Luna Jernberg <[email protected]>, 2020 +# Luna Jernberg <[email protected]>, 2021 +# Kristoffer Grundström <[email protected]>, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+0000\n" -"Last-Translator: Luna Jernberg <[email protected]>, 2020\n" -"Language-Team: Swedish (https://www.transifex.com/mate/teams/13566/sv/)\n" +"Last-Translator: Kristoffer Grundström <[email protected]>, 2021\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" @@ -41,7 +41,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -52,7 +52,7 @@ msgstr "<year>2005</year><holder>Davyd Madeley</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:33 msgid "<year>2004</year> <holder>Shaun McCance</holder>" -msgstr "" +msgstr "<year>2004</year> <holder>Shaun McCance</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:37 @@ -62,12 +62,12 @@ msgstr "<year>2004</year><holder>Angela Boyle</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:41 msgid "<year>2003</year> <year>2004</year> <holder>Sun Microsystems</holder>" -msgstr "" +msgstr "<year>2003</year> <year>2004</year> <holder>Sun Microsystems</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:46 msgid "<year>2003</year> <holder>Loban A Rahman</holder>" -msgstr "" +msgstr "<year>2003</year> <holder>Loban A Rahman</holder>" #. (itstool) path: publisher/publishername #. (itstool) path: revdescription/para @@ -103,6 +103,8 @@ msgid "" "<firstname>Angela</firstname> <surname>Boyle</surname> <affiliation> " "<address><email>[email protected]</email></address> </affiliation>" msgstr "" +"<firstname>Angela</firstname> <surname>Boyle</surname> <affiliation> " +"<address><email>[email protected]</email></address> </affiliation>" #. (itstool) path: authorgroup/author #: C/index.docbook:90 @@ -110,6 +112,8 @@ msgid "" "<firstname>Loban</firstname> <surname>Rahman</surname> <affiliation> " "<address><email>[email protected]</email></address> </affiliation>" msgstr "" +"<firstname>Loban</firstname> <surname>Rahman</surname> <affiliation> " +"<address><email>[email protected]</email></address> </affiliation>" #. (itstool) path: authorgroup/author #: C/index.docbook:97 @@ -191,7 +195,7 @@ msgstr "" #. (itstool) path: revdescription/para #: C/index.docbook:179 msgid "Loban A Rahman <email>[email protected]</email>" -msgstr "" +msgstr "Loban A Rahman <email>[email protected]</email>" #. (itstool) path: revhistory/revision #: C/index.docbook:175 @@ -245,6 +249,8 @@ msgid "" "external ref='figures/stickynotes_applet.png' " "md5='9c1c425752e613ff9e1523aac27a7282'" msgstr "" +"external ref='figures/stickynotes_applet.png' " +"md5='9c1c425752e613ff9e1523aac27a7282'" #. (itstool) path: screenshot/mediaobject #: C/index.docbook:204 @@ -280,12 +286,12 @@ msgstr "" #. (itstool) path: listitem/para #: C/index.docbook:229 msgid "Right-click on the panel." -msgstr "" +msgstr "Högerklicka på panelen." #. (itstool) path: listitem/para #: C/index.docbook:234 msgid "Choose <guimenuitem>Add to Panel</guimenuitem>." -msgstr "" +msgstr "Välj <guimenuitem>Lägg till i panelen</guimenuitem>." #. (itstool) path: listitem/para #: C/index.docbook:239 @@ -297,7 +303,7 @@ msgstr "" #. (itstool) path: listitem/para #: C/index.docbook:245 msgid "Click <guibutton>Add</guibutton>." -msgstr "" +msgstr "Klicka på <guibutton>Lägg till</guibutton>." #. (itstool) path: sect2/para #: C/index.docbook:250 @@ -352,6 +358,8 @@ msgid "" "external ref='figures/stickynote-right-menu-new.png' " "md5='5b53056bfdc7a8ffa5dc8013116d2b9f'" msgstr "" +"external ref='figures/stickynote-right-menu-new.png' " +"md5='5b53056bfdc7a8ffa5dc8013116d2b9f'" #. (itstool) path: screenshot/mediaobject #: C/index.docbook:272 @@ -407,6 +415,8 @@ msgid "" "external ref='figures/stickynote-right-menu-lock.png' " "md5='d304b4412e3ad7e2b9590e816a25f24e'" msgstr "" +"external ref='figures/stickynote-right-menu-lock.png' " +"md5='d304b4412e3ad7e2b9590e816a25f24e'" #. (itstool) path: screenshot/mediaobject #: C/index.docbook:297 @@ -490,13 +500,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "Inställningar" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "Inställningar för Klisterlappar" @@ -505,15 +569,17 @@ msgstr "Inställningar för Klisterlappar" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " "md5='0263f6ed6b0242d2d24a45b5d403e007'" msgstr "" +"external ref='figures/stickynotes-prefs.png' " +"md5='0263f6ed6b0242d2d24a45b5d403e007'" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -521,12 +587,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -535,36 +601,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" -msgstr "" +msgstr "<guilabel>Bredd</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" -msgstr "" +msgstr "<guilabel>Höjd</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -572,12 +638,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -585,7 +651,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -593,12 +659,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -606,7 +672,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -614,12 +680,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" -msgstr "" +msgstr "<guilabel>Teckensnitt</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -627,7 +693,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -635,12 +701,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -649,7 +715,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -659,7 +725,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -668,12 +734,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -682,15 +748,17 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " "md5='e2214cbb04d62d60ea0385a5dfa1630c'" msgstr "" +"external ref='figures/stickynotes-note-prefs.png' " +"md5='e2214cbb04d62d60ea0385a5dfa1630c'" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -698,7 +766,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -708,30 +776,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -739,7 +807,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -747,12 +815,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -760,7 +828,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/ta/ta.po b/stickynotes/docs/ta/ta.po index d0650ee6..fb549d33 100644 --- a/stickynotes/docs/ta/ta.po +++ b/stickynotes/docs/ta/ta.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+0000\n" "Last-Translator: Mooglie <[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" @@ -38,7 +38,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -487,13 +487,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "விருப்ப தேர்வுகள் " #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "ஒட்டும் குறிப்புகள் முன்னுரிமைகள்" @@ -502,7 +556,7 @@ msgstr "ஒட்டும் குறிப்புகள் முன்ன� #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -510,7 +564,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -518,12 +572,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -532,36 +586,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -569,12 +623,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -582,7 +636,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -590,12 +644,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -603,7 +657,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -611,12 +665,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -624,7 +678,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -632,12 +686,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -646,7 +700,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -656,7 +710,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -665,12 +719,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -679,7 +733,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -687,7 +741,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -695,7 +749,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -705,30 +759,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -736,7 +790,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -744,12 +798,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -757,7 +811,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/te/te.po b/stickynotes/docs/te/te.po index d698411a..017238e2 100644 --- a/stickynotes/docs/te/te.po +++ b/stickynotes/docs/te/te.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+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" @@ -35,7 +35,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -484,13 +484,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "అభిరుచులు" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "చీటీ ప్రాధాన్యతలు" @@ -499,7 +553,7 @@ msgstr "చీటీ ప్రాధాన్యతలు" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -507,7 +561,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -515,12 +569,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -529,36 +583,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -566,12 +620,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -579,7 +633,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -587,12 +641,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -600,7 +654,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -608,12 +662,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -621,7 +675,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -629,12 +683,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -643,7 +697,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -653,7 +707,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -662,12 +716,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -676,7 +730,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -684,7 +738,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -692,7 +746,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -702,30 +756,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -733,7 +787,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -741,12 +795,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -754,7 +808,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/th/th.po b/stickynotes/docs/th/th.po index 935a949b..18b005a0 100644 --- a/stickynotes/docs/th/th.po +++ b/stickynotes/docs/th/th.po @@ -7,10 +7,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+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" @@ -36,7 +36,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -485,13 +485,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "การปรับแต่ง" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "ปรับแต่งโน้ตติดกาว" @@ -500,7 +554,7 @@ msgstr "ปรับแต่งโน้ตติดกาว" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -508,7 +562,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -516,12 +570,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -530,36 +584,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -567,12 +621,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -580,7 +634,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -588,12 +642,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -601,7 +655,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -609,12 +663,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -622,7 +676,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -630,12 +684,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -644,7 +698,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -654,7 +708,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -663,12 +717,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -677,7 +731,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -685,7 +739,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -693,7 +747,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -703,30 +757,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -734,7 +788,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -742,12 +796,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -755,7 +809,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/tr/tr.po b/stickynotes/docs/tr/tr.po index 7c368b2b..904d0746 100644 --- a/stickynotes/docs/tr/tr.po +++ b/stickynotes/docs/tr/tr.po @@ -1,17 +1,18 @@ # # Translators: # Stefano Karapetsas <[email protected]>, 2018 +# Butterfly <[email protected]>, 2018 # mauron, 2018 # 0d1bdb3b9a0d4e8f77bc854af8bf3dfc_e6913f4, 2019 -# Butterfly <[email protected]>, 2020 +# Gurbuzguven <[email protected]>, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+0000\n" -"Last-Translator: Butterfly <[email protected]>, 2020\n" -"Language-Team: Turkish (https://www.transifex.com/mate/teams/13566/tr/)\n" +"Last-Translator: Gurbuzguven <[email protected]>, 2021\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" @@ -47,8 +48,8 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" -msgstr "<year>2015-2020</year> <holder>MATE tBelgelendirme Projesi</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" +msgstr "<year>2015-2021</year><holder>MATE Belgelendirme Projesi</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:29 @@ -508,13 +509,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "Tercihler" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "Yapışkan Notlar Tercihleri" @@ -523,7 +578,7 @@ msgstr "Yapışkan Notlar Tercihleri" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -531,7 +586,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -539,12 +594,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -553,36 +608,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -590,12 +645,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -603,7 +658,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -611,12 +666,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -624,7 +679,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -632,12 +687,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -645,7 +700,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -653,12 +708,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -667,7 +722,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -677,7 +732,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -686,12 +741,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -700,7 +755,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -708,7 +763,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -716,7 +771,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -726,30 +781,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -757,7 +812,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -765,12 +820,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -778,7 +833,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/ug/ug.po b/stickynotes/docs/ug/ug.po index f27106bf..1cb8cbd9 100644 --- a/stickynotes/docs/ug/ug.po +++ b/stickynotes/docs/ug/ug.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+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" @@ -43,7 +43,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -492,13 +492,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "مايىللىق" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "خاتىرە چوققىلاش مايىللىقى" @@ -507,7 +561,7 @@ msgstr "خاتىرە چوققىلاش مايىللىقى" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -515,7 +569,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -523,12 +577,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -537,36 +591,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -574,12 +628,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -587,7 +641,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -595,12 +649,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -608,7 +662,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -616,12 +670,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -629,7 +683,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -637,12 +691,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -651,7 +705,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -661,7 +715,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -670,12 +724,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -684,7 +738,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -692,7 +746,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -700,7 +754,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -710,30 +764,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -741,7 +795,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -749,12 +803,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -762,7 +816,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/uk/uk.po b/stickynotes/docs/uk/uk.po index fa2f082b..11ea9c4b 100644 --- a/stickynotes/docs/uk/uk.po +++ b/stickynotes/docs/uk/uk.po @@ -3,14 +3,15 @@ # Stefano Karapetsas <[email protected]>, 2018 # Wolfgang Ulbrich <[email protected]>, 2018 # Микола Ткач <[email protected]>, 2018 +# Sergiy <[email protected]>, 2022 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+0000\n" -"Last-Translator: Микола Ткач <[email protected]>, 2018\n" -"Language-Team: Ukrainian (https://www.transifex.com/mate/teams/13566/uk/)\n" +"Last-Translator: Sergiy <[email protected]>, 2022\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" @@ -39,8 +40,8 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" -msgstr "" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" +msgstr "<year>2015-2021</year> <holder>Проект документування MATE</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:29 @@ -503,13 +504,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "Параметри" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "Параметри липких нотаток" @@ -518,7 +573,7 @@ msgstr "Параметри липких нотаток" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -528,7 +583,7 @@ msgstr "" "md5='0263f6ed6b0242d2d24a45b5d403e007'" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -536,12 +591,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -550,36 +605,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "<guilabel>Ширина</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "<guilabel>Висота</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -587,12 +642,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -600,7 +655,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -608,12 +663,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -621,7 +676,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -629,12 +684,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "<guilabel>Шрифт</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -642,7 +697,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -650,12 +705,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -664,7 +719,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -674,7 +729,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -683,12 +738,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -697,7 +752,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -707,7 +762,7 @@ msgstr "" "md5='e2214cbb04d62d60ea0385a5dfa1630c'" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -715,7 +770,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -725,30 +780,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -756,7 +811,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -764,12 +819,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -777,7 +832,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/ur/ur.po b/stickynotes/docs/ur/ur.po index 2a623740..5bf690f1 100644 --- a/stickynotes/docs/ur/ur.po +++ b/stickynotes/docs/ur/ur.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+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" @@ -40,7 +40,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -489,13 +489,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "ترجیحات" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "چسپاں نوٹ کی ترجیحات" @@ -504,7 +558,7 @@ msgstr "چسپاں نوٹ کی ترجیحات" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -512,7 +566,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -520,12 +574,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -534,36 +588,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -571,12 +625,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -584,7 +638,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -592,12 +646,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -605,7 +659,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -613,12 +667,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -626,7 +680,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -634,12 +688,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -648,7 +702,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -658,7 +712,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -667,12 +721,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -681,7 +735,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -689,7 +743,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -697,7 +751,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -707,30 +761,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -738,7 +792,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -746,12 +800,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -759,7 +813,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/uz/uz.po b/stickynotes/docs/uz/uz.po index b58e9dc6..705b483b 100644 --- a/stickynotes/docs/uz/uz.po +++ b/stickynotes/docs/uz/uz.po @@ -1,15 +1,15 @@ # # Translators: # Stefano Karapetsas <[email protected]>, 2018 -# muzaffar habibullayev <[email protected]>, 2018 +# Muzaffar Habibullayev <[email protected]>, 2018 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+0000\n" -"Last-Translator: muzaffar habibullayev <[email protected]>, 2018\n" -"Language-Team: Uzbek (https://www.transifex.com/mate/teams/13566/uz/)\n" +"Last-Translator: Muzaffar Habibullayev <[email protected]>, 2018\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" @@ -35,7 +35,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -484,13 +484,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "Parametrlar" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "" @@ -499,7 +553,7 @@ msgstr "" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -507,7 +561,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -515,12 +569,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -529,36 +583,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -566,12 +620,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -579,7 +633,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -587,12 +641,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -600,7 +654,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -608,12 +662,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -621,7 +675,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -629,12 +683,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -643,7 +697,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -653,7 +707,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -662,12 +716,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -676,7 +730,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -684,7 +738,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -692,7 +746,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -702,30 +756,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -733,7 +787,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -741,12 +795,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -754,7 +808,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/vi/vi.po b/stickynotes/docs/vi/vi.po index ee664368..06e3244b 100644 --- a/stickynotes/docs/vi/vi.po +++ b/stickynotes/docs/vi/vi.po @@ -7,10 +7,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+0000\n" "Last-Translator: Horazone Detex <[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" @@ -36,7 +36,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -485,13 +485,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "Tùy chỉnh" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "Tùy thích Ghi chép dính" @@ -500,7 +554,7 @@ msgstr "Tùy thích Ghi chép dính" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -508,7 +562,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -516,12 +570,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -530,36 +584,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -567,12 +621,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -580,7 +634,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -588,12 +642,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -601,7 +655,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -609,12 +663,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -622,7 +676,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -630,12 +684,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -644,7 +698,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -654,7 +708,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -663,12 +717,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -677,7 +731,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -685,7 +739,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -693,7 +747,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -703,30 +757,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -734,7 +788,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -742,12 +796,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -755,7 +809,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/wa/wa.po b/stickynotes/docs/wa/wa.po index a86eaee5..86c0099e 100644 --- a/stickynotes/docs/wa/wa.po +++ b/stickynotes/docs/wa/wa.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+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" @@ -34,7 +34,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -483,13 +483,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "Preferinces" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "" @@ -498,7 +552,7 @@ msgstr "" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -506,7 +560,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -514,12 +568,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -528,36 +582,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -565,12 +619,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -578,7 +632,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -586,12 +640,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -599,7 +653,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -607,12 +661,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -620,7 +674,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -628,12 +682,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -642,7 +696,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -652,7 +706,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -661,12 +715,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -675,7 +729,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -683,7 +737,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -691,7 +745,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -701,30 +755,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -732,7 +786,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -740,12 +794,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -753,7 +807,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/xh/xh.po b/stickynotes/docs/xh/xh.po index 5c697437..a6254ef3 100644 --- a/stickynotes/docs/xh/xh.po +++ b/stickynotes/docs/xh/xh.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+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" @@ -34,7 +34,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -483,13 +483,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "Uluhlu lwezinto ezikhethwayo" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "Okunokukhethwa kuko kwamaPhetshana aNcamathelayo" @@ -498,7 +552,7 @@ msgstr "Okunokukhethwa kuko kwamaPhetshana aNcamathelayo" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -506,7 +560,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -514,12 +568,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -528,36 +582,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -565,12 +619,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -578,7 +632,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -586,12 +640,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -599,7 +653,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -607,12 +661,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -620,7 +674,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -628,12 +682,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -642,7 +696,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -652,7 +706,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -661,12 +715,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -675,7 +729,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -683,7 +737,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -691,7 +745,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -701,30 +755,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -732,7 +786,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -740,12 +794,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -753,7 +807,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/yo/yo.po b/stickynotes/docs/yo/yo.po index 3d290043..608dd95c 100644 --- a/stickynotes/docs/yo/yo.po +++ b/stickynotes/docs/yo/yo.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+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" @@ -34,7 +34,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -483,13 +483,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "Àwọn ìkúndùn" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "" @@ -498,7 +552,7 @@ msgstr "" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -506,7 +560,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -514,12 +568,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -528,36 +582,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -565,12 +619,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -578,7 +632,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -586,12 +640,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -599,7 +653,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -607,12 +661,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -620,7 +674,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -628,12 +682,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -642,7 +696,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -652,7 +706,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -661,12 +715,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -675,7 +729,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -683,7 +737,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -691,7 +745,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -701,30 +755,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -732,7 +786,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -740,12 +794,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -753,7 +807,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/zh-Hans/zh-Hans.po b/stickynotes/docs/zh-Hans/zh-Hans.po new file mode 100644 index 00000000..a6f23871 --- /dev/null +++ b/stickynotes/docs/zh-Hans/zh-Hans.po @@ -0,0 +1,890 @@ +# +# Translators: +# Xiaoyuan Chen <[email protected]>, 2018 +# 敏超 马 <[email protected]>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" +"PO-Revision-Date: 2018-09-27 15:24+0000\n" +"Last-Translator: 敏超 马 <[email protected]>, 2021\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" +"Language: zh-Hans\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 "翻译人员-致谢" + +#. (itstool) path: articleinfo/title +#: C/index.docbook:19 +msgid "Sticky Notes Manual" +msgstr "" + +#. (itstool) path: abstract/para +#: C/index.docbook:21 +msgid "" +"Sticky Notes enables you to create, view, and manage sticky notes on your " +"desktop." +msgstr "" + +#. (itstool) path: articleinfo/copyright +#: C/index.docbook:25 +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" +msgstr "" + +#. (itstool) path: articleinfo/copyright +#: C/index.docbook:29 +msgid "<year>2005</year> <holder>Davyd Madeley</holder>" +msgstr "" + +#. (itstool) path: articleinfo/copyright +#: C/index.docbook:33 +msgid "<year>2004</year> <holder>Shaun McCance</holder>" +msgstr "" + +#. (itstool) path: articleinfo/copyright +#: C/index.docbook:37 +msgid "<year>2004</year> <holder>Angela Boyle</holder>" +msgstr "" + +#. (itstool) path: articleinfo/copyright +#: C/index.docbook:41 +msgid "<year>2003</year> <year>2004</year> <holder>Sun Microsystems</holder>" +msgstr "" + +#. (itstool) path: articleinfo/copyright +#: C/index.docbook:46 +msgid "<year>2003</year> <holder>Loban A Rahman</holder>" +msgstr "" + +#. (itstool) path: publisher/publishername +#. (itstool) path: revdescription/para +#: C/index.docbook:59 C/index.docbook:126 +msgid "MATE Documentation Project" +msgstr "MATE 文档项目" + +#. (itstool) path: publisher/publishername +#. (itstool) path: revdescription/para +#: C/index.docbook:62 C/index.docbook:148 C/index.docbook:156 +#: C/index.docbook:164 C/index.docbook:172 +msgid "GNOME Documentation Project" +msgstr "GNOME 文档项目" + +#. (itstool) path: authorgroup/author +#: C/index.docbook:68 +msgid "" +"<firstname>MATE Documentation Team</firstname> <surname/> <affiliation> " +"<orgname>MATE Desktop</orgname> </affiliation>" +msgstr "" + +#. (itstool) path: authorgroup/author +#: C/index.docbook:75 +msgid "" +"<firstname>Shaun</firstname> <surname>McCance</surname> <affiliation> " +"<orgname>GNOME Documentation Project</orgname> " +"<address><email>[email protected]</email></address> </affiliation>" +msgstr "" + +#. (itstool) path: authorgroup/author +#: C/index.docbook:83 +msgid "" +"<firstname>Angela</firstname> <surname>Boyle</surname> <affiliation> " +"<address><email>[email protected]</email></address> </affiliation>" +msgstr "" + +#. (itstool) path: authorgroup/author +#: C/index.docbook:90 +msgid "" +"<firstname>Loban</firstname> <surname>Rahman</surname> <affiliation> " +"<address><email>[email protected]</email></address> </affiliation>" +msgstr "" + +#. (itstool) path: authorgroup/author +#: C/index.docbook:97 +msgid "" +"<firstname>Davyd</firstname><surname>Madeley</surname> <affiliation> " +"<orgname>GNOME Project</orgname> " +"<address><email>[email protected]</email></address> </affiliation>" +msgstr "" + +#. (itstool) path: revdescription/para +#: C/index.docbook:125 +msgid "MATE Documentation Team" +msgstr "MATE 文档团队" + +#. (itstool) path: revhistory/revision +#: C/index.docbook:121 +msgid "" +"<revnumber>Sticky Notes Applet Manual V2.7</revnumber> <date>July " +"2015</date> <_:revdescription-1/>" +msgstr "" + +#. (itstool) path: revdescription/para +#: C/index.docbook:133 C/index.docbook:140 +msgid "Davyd Madeley" +msgstr "" + +#. (itstool) path: revhistory/revision +#: C/index.docbook:129 +msgid "" +"<revnumber>Sticky Notes Applet Manual V2.6</revnumber> <date>September " +"2005</date> <_:revdescription-1/>" +msgstr "" + +#. (itstool) path: revhistory/revision +#: C/index.docbook:136 +msgid "" +"<revnumber>Sticky Notes Applet Manual V2.5</revnumber> <date>March " +"2005</date> <_:revdescription-1/>" +msgstr "" + +#. (itstool) path: revdescription/para +#: C/index.docbook:147 +msgid "Angela Boyle" +msgstr "" + +#. (itstool) path: revhistory/revision +#: C/index.docbook:143 +msgid "" +"<revnumber>Sticky Notes Applet Manual V2.4</revnumber> <date>September " +"2004</date> <_:revdescription-1/>" +msgstr "" + +#. (itstool) path: revdescription/para +#: C/index.docbook:155 C/index.docbook:163 C/index.docbook:171 +msgid "Sun GNOME Documentation Team" +msgstr "" + +#. (itstool) path: revhistory/revision +#: C/index.docbook:151 +msgid "" +"<revnumber>Sticky Notes Applet Manual V2.3</revnumber> <date>February " +"2004</date> <_:revdescription-1/>" +msgstr "" + +#. (itstool) path: revhistory/revision +#: C/index.docbook:159 +msgid "" +"<revnumber>Sticky Notes Applet Manual V2.2</revnumber> <date>November " +"2003</date> <_:revdescription-1/>" +msgstr "" + +#. (itstool) path: revhistory/revision +#: C/index.docbook:167 +msgid "" +"<revnumber>Sticky Notes Applet Manual V2.1</revnumber> <date>August " +"2003</date> <_:revdescription-1/>" +msgstr "" + +#. (itstool) path: revdescription/para +#: C/index.docbook:179 +msgid "Loban A Rahman <email>[email protected]</email>" +msgstr "" + +#. (itstool) path: revhistory/revision +#: C/index.docbook:175 +msgid "" +"<revnumber>Sticky Notes Applet Manual V2.0</revnumber> <date>May 2003</date>" +" <_:revdescription-1/>" +msgstr "" + +#. (itstool) path: articleinfo/releaseinfo +#: C/index.docbook:186 +msgid "This manual describes version 1.10.2 of Sticky Notes." +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 <application>Sticky " +"Notes</application> 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:195 +msgid "<primary>Sticky Notes</primary>" +msgstr "" + +#. (itstool) path: sect1/title +#: C/index.docbook:200 +msgid "Introduction" +msgstr "" + +#. (itstool) path: figure/title +#: C/index.docbook:202 +msgid "Sticky Notes" +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:206 +msgctxt "_" +msgid "" +"external ref='figures/stickynotes_applet.png' " +"md5='9c1c425752e613ff9e1523aac27a7282'" +msgstr "" + +#. (itstool) path: screenshot/mediaobject +#: C/index.docbook:204 +msgid "" +"<imageobject> <imagedata fileref=\"figures/stickynotes_applet.png\" " +"format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky " +"Notes</phrase></textobject>" +msgstr "" + +#. (itstool) path: sect1/para +#: C/index.docbook:213 +msgid "" +"The <application>Sticky Notes</application> panel application enables you to" +" create, view, and manage sticky notes on your desktop. You can edit the " +"title, contents, dimensions, and style of sticky notes. When the panel is " +"restarted, for example when you log out and log in again, all sticky notes " +"are saved and reopened in the same position with the same dimensions and " +"style." +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:222 +msgid "To Add Sticky Notes to a Panel" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:223 +msgid "" +"To add <application>Sticky Notes</application> to a panel, perform the " +"following steps:" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:229 +msgid "Right-click on the panel." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:234 +msgid "Choose <guimenuitem>Add to Panel</guimenuitem>." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:239 +msgid "" +"Scroll down the list of items in the <guilabel>Add to Panel</guilabel> " +"dialog, then select <guilabel>Sticky Notes</guilabel>." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:245 +msgid "Click <guibutton>Add</guibutton>." +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:250 +msgid "" +"The layout of the <application>Sticky Notes</application> applet varies " +"depending on the size and type of panel in which the applet resides." +msgstr "" + +#. (itstool) path: sect1/title +#: C/index.docbook:258 +msgid "Using Sticky Notes" +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:261 +msgid "Showing and Hiding Sticky Notes" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:262 +msgid "" +"To hide all your notes, either click on the desktop, or right-click the " +"<application>Sticky Notes</application> applet and choose <guimenuitem>Hide " +"Notes</guimenuitem>." +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:264 +msgid "" +"To show all your notes, click the <application>Sticky Notes</application> " +"applet." +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:268 +msgid "Creating a Sticky Note" +msgstr "" + +#. (itstool) path: figure/title +#: C/index.docbook:270 +msgid "creating a new sticky note" +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:274 +msgctxt "_" +msgid "" +"external ref='figures/stickynote-right-menu-new.png' " +"md5='5b53056bfdc7a8ffa5dc8013116d2b9f'" +msgstr "" + +#. (itstool) path: screenshot/mediaobject +#: C/index.docbook:272 +msgid "" +"<imageobject> <imagedata fileref=\"figures/stickynote-right-menu-new.png\" " +"format=\"PNG\"/> </imageobject> <textobject><phrase>creating a new sticky " +"note</phrase></textobject>" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:280 +msgid "" +"You can create a sticky note by right-clicking on the sticky note icon and " +"selecting <guilabel>New Note</guilabel>, or by double-clicking the applet." +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:282 +msgid "Creating a note causes all hidden notes to be shown." +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:286 +msgid "Locking and Unlocking Sticky Notes" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:287 +msgid "" +"You can lock or unlock all sticky notes at the same time, or you can lock or" +" unlock individual sticky notes. Locking a sticky note prevents you from " +"accidentally changing the contents of the note." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:292 +msgid "<phrase>To Lock or Unlock All Sticky Notes</phrase>" +msgstr "" + +#. (itstool) path: figure/title +#: C/index.docbook:295 +msgid "Right Clicking on the Icon" +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:299 +msgctxt "_" +msgid "" +"external ref='figures/stickynote-right-menu-lock.png' " +"md5='d304b4412e3ad7e2b9590e816a25f24e'" +msgstr "" + +#. (itstool) path: screenshot/mediaobject +#: C/index.docbook:297 +msgid "" +"<imageobject> <imagedata fileref=\"figures/stickynote-right-menu-lock.png\" " +"format=\"PNG\"/> </imageobject> <textobject><phrase>Right Clicking on the " +"Icon</phrase></textobject>" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:305 +msgid "" +"To lock all sticky notes so that the notes cannot be edited, choose " +"<guimenuitem>Lock Notes</guimenuitem> from the icon right-click menu so that" +" there is a check mark next to it. To unlock all sticky notes, choose " +"<guimenuitem>Lock Notes</guimenuitem> from the icon right-click menu again " +"so that there is not a check mark next to it." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:311 +msgid "" +"Note that all panel applications have the <guimenuitem>Lock to " +"Panel</guimenuitem> item in the right-click menu, which locks the position " +"of the panel application on the panel. Do not confuse this with the " +"<guimenuitem>Lock Notes</guimenuitem> item." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:320 +msgid "<phrase>To Lock or Unlock Individual Sticky Notes</phrase>" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:321 +msgid "" +"To lock an individual sticky note, right-click on the title of the note, " +"then choose <guimenuitem>Lock Note</guimenuitem> from the popup menu. To " +"unlock an individual note, right-click on the title of the note, then choose" +" <guimenuitem>Unlock Note</guimenuitem> from the popup menu again. You can " +"also toggle the lock/unlock state of a sticky note by clicking the lock " +"button in the top left corner of the sticky note." +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:334 +msgid "Deleting Sticky Notes" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:335 +msgid "" +"You can delete all sticky notes at the same time, or you can delete " +"individual sticky notes." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:339 +msgid "To Delete All Sticky Notes" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:340 +msgid "" +"To delete all sticky notes, choose <guimenuitem>Delete Notes</guimenuitem> " +"from the icon right-click menu. A confirmation dialog will appear; click on " +"the <guibutton>Delete All</guibutton> button to confirm the deletion." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:346 +msgid "To Delete Individual Sticky Notes" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:347 +msgid "" +"To delete an individual sticky note, right-click on the title of the note, " +"then choose <guimenuitem>Delete Note</guimenuitem> from the popup menu. You " +"can also delete a sticky note by clicking the <guibutton>x</guibutton> in " +"the top right corner." +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + +#. (itstool) path: sect1/title +#: C/index.docbook:392 +msgid "Preferences" +msgstr "" + +#. (itstool) path: figure/title +#: C/index.docbook:395 +msgid "Sticky Notes 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:399 +msgctxt "_" +msgid "" +"external ref='figures/stickynotes-prefs.png' " +"md5='0263f6ed6b0242d2d24a45b5d403e007'" +msgstr "" + +#. (itstool) path: screenshot/mediaobject +#: C/index.docbook:397 +msgid "" +"<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " +"format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " +"preferences</phrase></textobject>" +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:407 +msgid "Adjusting Size" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:408 +msgid "" +"To configure the default size for all sticky notes, right-click on the " +"sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" +" menu. The <application>Sticky Notes Preferences</application> dialog is " +"displayed." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:413 +msgid "<guilabel>Width</guilabel>" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:414 +msgid "" +"Use this spin box to specify the default width of new sticky notes, in " +"pixels." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:418 +msgid "<guilabel>Height</guilabel>" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:419 +msgid "" +"Use this spin box to specify the default height of new sticky notes, in " +"pixels." +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:426 +msgid "Changing Color and Font" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:427 +msgid "" +"To configure the color and font for all sticky notes, right-click on the " +"icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " +"<application>Sticky Notes Preferences</application> dialog is displayed." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:433 C/index.docbook:529 +msgid "<guilabel>Font Color</guilabel>" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:435 +msgid "" +"Click on the color selector button to display the color selector dialog. On " +"the color selector dialog, use the color wheel or spin boxes to choose the " +"default font color for stickynotes." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:440 +msgid "" +"If you have selected, <guilabel>Use color from the system theme</guilabel>, " +"then the current theme colors will be used and you will not be able to " +"select new defaults." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:448 C/index.docbook:537 +msgid "<guilabel>Note Color</guilabel>" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:450 +msgid "" +"Click on the color selector button to display the color selector dialog. On " +"the color selector dialog, use the color wheel or spin boxes to choose the " +"default base color for sticky notes." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:453 +msgid "" +"If you have selected, <guilabel>Use color from the system theme</guilabel>, " +"then the current theme colors will be used and you will not able to select " +"new defaults." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:460 C/index.docbook:550 +msgid "<guilabel>Font</guilabel>" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:462 +msgid "" +"Click on the font selector button to display the font selector dialog. On " +"the font selector dialog, use the list boxes to choose the default font for " +"sticky notes." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:465 +msgid "" +"If you have selected, <guilabel>Use font from the system theme</guilabel>, " +"then the current Application Font set in Font Preferences will be used and " +"you will not be able to select new defaults." +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:476 +msgid "Customizing Behavior" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:477 +msgid "" +"To customize the behavior of <application>Sticky Notes</application>, right-" +"click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" +" menu. The <application>Sticky Notes Preferences</application> dialog is " +"displayed." +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:481 +msgid "" +"To specify that sticky notes are visible on all workspaces on the desktop, " +"select <guilabel>Put notes on all workspaces</guilabel> in the " +"<guilabel>Sticky Notes Preferences</guilabel> dialog. If you are using " +"multiple workspaces, this will cause all sticky notes to be visible on all " +"workspaces." +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:487 +msgid "" +"The option, <guilabel>Force default color and font on notes</guilabel>, will" +" force all sticky notes on your desktop to use the color and font settings " +"specified in the <guilabel>Default Note Properties</guilabel> above (see " +"<xref linkend=\"stickynotes-color\"/>)." +msgstr "" + +#. (itstool) path: sect1/title +#: C/index.docbook:498 +msgid "Customizing Individual Notes" +msgstr "" + +#. (itstool) path: figure/title +#: C/index.docbook:500 +msgid "Sticky Note 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:504 +msgctxt "_" +msgid "" +"external ref='figures/stickynotes-note-prefs.png' " +"md5='e2214cbb04d62d60ea0385a5dfa1630c'" +msgstr "" + +#. (itstool) path: screenshot/mediaobject +#: C/index.docbook:502 +msgid "" +"<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " +"format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " +"preferences</phrase></textobject>" +msgstr "" + +#. (itstool) path: sect1/para +#: C/index.docbook:510 +msgid "" +"You can customize the look of each individual sticky note. This can be " +"useful for visually distinguishing different types of notes quickly. To " +"configure the settings for an individual sticky note, right-click on the " +"note's title, then choose <guimenu>Properties</guimenu> from the popup menu." +" The <application>Sticky Note Properties</application> dialog is displayed." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:518 +msgid "<guilabel>Title</guilabel>" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:519 +msgid "Use this text box to specify the title of the sticky note." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:523 +msgid "<guilabel>Use default color</guilabel>" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:524 +msgid "" +"Select this option to use the default base color for this sticky note. For " +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:531 +msgid "" +"Click on the color selector button to display the color selector dialog. On " +"the color selector dialog, use the color wheel or spin boxes to choose the " +"font color for this sticky note." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:538 +msgid "" +"Click on the color selector button to display the color selector dialog. On " +"the color selector dialog, use the color wheel or spin boxes to choose the " +"base color for this sticky note." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:544 +msgid "<guilabel>Use default font</guilabel>" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:545 +msgid "" +"Select this option to use the default font for this sticky note. For " +"information on setting the default font, see <xref linkend=\"stickynotes-" +"color\"/>." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:551 +msgid "" +"Click on the font selector button to display the font selector dialog. On " +"the font selector dialog, use the list boxes to choose the font for this " +"sticky note." +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/stickynotes/docs/zh_CN/zh_CN.po b/stickynotes/docs/zh_CN/zh_CN.po index e09855f2..aea8af25 100644 --- a/stickynotes/docs/zh_CN/zh_CN.po +++ b/stickynotes/docs/zh_CN/zh_CN.po @@ -2,22 +2,24 @@ # Translators: # Stefano Karapetsas <[email protected]>, 2018 # Mingcong Bai <[email protected]>, 2018 -# liushuyu011 <[email protected]>, 2018 +# shuyu liu <[email protected]>, 2018 # Wolfgang Ulbrich <[email protected]>, 2018 # biqiu-ssw <[email protected]>, 2018 # CNAmira <[email protected]>, 2018 # Wenbin Lv <[email protected]>, 2019 # zhineng404 <[email protected]>, 2019 -# liulitchi <[email protected]>, 2019 -# 邢家朋 <[email protected]>, 2020 +# liu lizhi <[email protected]>, 2019 +# a73a47e368cc011d8f94528bd9d5d3f1_91fccdf <1b07f49e2a323989c85dd26d526f7bb9_871526>, 2020 +# OkayPJ <[email protected]>, 2021 +# Dasferco, 2022 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+0000\n" -"Last-Translator: 邢家朋 <[email protected]>, 2020\n" -"Language-Team: Chinese (China) (https://www.transifex.com/mate/teams/13566/zh_CN/)\n" +"Last-Translator: Dasferco, 2022\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" @@ -54,8 +56,8 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" -msgstr "<year>2015-2020</year> <holder>MATE 文档项目</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" +msgstr "<year>2015-2021</year> <holder>MATE 文档团队</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:29 @@ -508,13 +510,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "首选项" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "记事贴首选项" @@ -523,7 +579,7 @@ msgstr "记事贴首选项" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -531,7 +587,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -539,12 +595,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -553,36 +609,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "<guilabel>宽度</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "<guilabel>高度</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -590,12 +646,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" -msgstr "" +msgstr "<guilabel>字体颜色</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -603,7 +659,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -611,12 +667,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -624,7 +680,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -632,12 +688,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" -msgstr "" +msgstr "<guilabel>字体</guilabel>" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -645,7 +701,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -653,12 +709,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -667,7 +723,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -677,7 +733,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -686,12 +742,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -700,7 +756,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -708,7 +764,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -716,7 +772,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -726,30 +782,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -757,7 +813,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -765,12 +821,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -778,7 +834,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/zh_HK/zh_HK.po b/stickynotes/docs/zh_HK/zh_HK.po index d66948a2..6cb4b320 100644 --- a/stickynotes/docs/zh_HK/zh_HK.po +++ b/stickynotes/docs/zh_HK/zh_HK.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+0000\n" "Last-Translator: tomoe_musashi <[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" @@ -38,7 +38,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -487,13 +487,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "偏好設定" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "便條偏好設定" @@ -502,7 +556,7 @@ msgstr "便條偏好設定" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -510,7 +564,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -518,12 +572,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -532,36 +586,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -569,12 +623,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -582,7 +636,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -590,12 +644,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -603,7 +657,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -611,12 +665,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -624,7 +678,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -632,12 +686,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -646,7 +700,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -656,7 +710,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -665,12 +719,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -679,7 +733,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -687,7 +741,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -695,7 +749,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -705,30 +759,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -736,7 +790,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -744,12 +798,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -757,7 +811,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/docs/zh_TW/zh_TW.po b/stickynotes/docs/zh_TW/zh_TW.po index 6cfaa195..6755542c 100644 --- a/stickynotes/docs/zh_TW/zh_TW.po +++ b/stickynotes/docs/zh_TW/zh_TW.po @@ -9,10 +9,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2023-09-02 16:40+0200\n" "PO-Revision-Date: 2018-09-27 15:24+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" @@ -44,7 +44,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:25 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -493,13 +493,67 @@ msgid "" "the top right corner." msgstr "" +#. (itstool) path: sect2/title +#: C/index.docbook:357 +msgid "Keyboard navigation" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:358 +msgid "Basic keyboard navigation is supported." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:361 +msgid "Creating Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:362 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"to access the MATE panel, then use <shortcut><keysym>Tab</keysym></shortcut>" +" or the <shortcut><keycombo><keysym>Arrow</keysym></keycombo></shortcut> " +"keys to access the Sticky notes applet. Then open its context menu through " +"either <shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> " +"or the <shortcut><keysym>Menu</keysym></shortcut> key, and select " +"<guimenuitem><guilabel>New Note</guilabel></guimenuitem>." +msgstr "" + +#. (itstool) path: varlistentry/term +#: C/index.docbook:372 +msgid "Accessing Sticky notes with the keyboard" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:373 +msgid "" +"Use <shortcut><keycombo><keysym>Ctrl-Alt-Tab</keysym></keycombo></shortcut> " +"several times to switch between your panels and your existing sticky notes. " +"When a sticky note is focused, you can navigate between the text area and " +"the title bar (where the " +"<guimenuitem><guilabel>Lock</guilabel></guimenuitem> and the " +"<guimenuitem><guilabel>Delete</guilabel></guimenuitem> buttons are located) " +"with the <shortcut><keysym>F6</keysym></shortcut> key." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:380 +msgid "" +"Once in the title bar, use <shortcut><keysym>F10</keysym></shortcut>, " +"<shortcut><keycombo><keysym>Shift-F10</keysym></keycombo></shortcut> or the " +"<shortcut><keysym>Menu</keysym></shortcut> key to open the context menu, " +"which allows to access the individual note’s " +"<guimenuitem><guilabel>Properties</guilabel></guimenuitem> dialog." +msgstr "" + #. (itstool) path: sect1/title -#: C/index.docbook:359 +#: C/index.docbook:392 msgid "Preferences" msgstr "偏好設定" #. (itstool) path: figure/title -#: C/index.docbook:362 +#: C/index.docbook:395 msgid "Sticky Notes Preferences" msgstr "便條偏好設定" @@ -508,7 +562,7 @@ msgstr "便條偏好設定" #. 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:366 +#: C/index.docbook:399 msgctxt "_" msgid "" "external ref='figures/stickynotes-prefs.png' " @@ -516,7 +570,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:364 +#: C/index.docbook:397 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>Shows Sticky Notes " @@ -524,12 +578,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:374 +#: C/index.docbook:407 msgid "Adjusting Size" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:375 +#: C/index.docbook:408 msgid "" "To configure the default size for all sticky notes, right-click on the " "sticky notes icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -538,36 +592,36 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:380 +#: C/index.docbook:413 msgid "<guilabel>Width</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:381 +#: C/index.docbook:414 msgid "" "Use this spin box to specify the default width of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:385 +#: C/index.docbook:418 msgid "<guilabel>Height</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:386 +#: C/index.docbook:419 msgid "" "Use this spin box to specify the default height of new sticky notes, in " "pixels." msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:393 +#: C/index.docbook:426 msgid "Changing Color and Font" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:394 +#: C/index.docbook:427 msgid "" "To configure the color and font for all sticky notes, right-click on the " "icon, then choose <guimenu>Preferences</guimenu> from the popup menu. The " @@ -575,12 +629,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:400 C/index.docbook:496 +#: C/index.docbook:433 C/index.docbook:529 msgid "<guilabel>Font Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:402 +#: C/index.docbook:435 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -588,7 +642,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:407 +#: C/index.docbook:440 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not be able to " @@ -596,12 +650,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:415 C/index.docbook:504 +#: C/index.docbook:448 C/index.docbook:537 msgid "<guilabel>Note Color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:417 +#: C/index.docbook:450 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -609,7 +663,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:420 +#: C/index.docbook:453 msgid "" "If you have selected, <guilabel>Use color from the system theme</guilabel>, " "then the current theme colors will be used and you will not able to select " @@ -617,12 +671,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:427 C/index.docbook:517 +#: C/index.docbook:460 C/index.docbook:550 msgid "<guilabel>Font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:429 +#: C/index.docbook:462 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the default font for " @@ -630,7 +684,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:432 +#: C/index.docbook:465 msgid "" "If you have selected, <guilabel>Use font from the system theme</guilabel>, " "then the current Application Font set in Font Preferences will be used and " @@ -638,12 +692,12 @@ msgid "" msgstr "" #. (itstool) path: sect2/title -#: C/index.docbook:443 +#: C/index.docbook:476 msgid "Customizing Behavior" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:444 +#: C/index.docbook:477 msgid "" "To customize the behavior of <application>Sticky Notes</application>, right-" "click on the icon, then choose <guimenu>Preferences</guimenu> from the popup" @@ -652,7 +706,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:448 +#: C/index.docbook:481 msgid "" "To specify that sticky notes are visible on all workspaces on the desktop, " "select <guilabel>Put notes on all workspaces</guilabel> in the " @@ -662,7 +716,7 @@ msgid "" msgstr "" #. (itstool) path: sect2/para -#: C/index.docbook:454 +#: C/index.docbook:487 msgid "" "The option, <guilabel>Force default color and font on notes</guilabel>, will" " force all sticky notes on your desktop to use the color and font settings " @@ -671,12 +725,12 @@ msgid "" msgstr "" #. (itstool) path: sect1/title -#: C/index.docbook:465 +#: C/index.docbook:498 msgid "Customizing Individual Notes" msgstr "" #. (itstool) path: figure/title -#: C/index.docbook:467 +#: C/index.docbook:500 msgid "Sticky Note Preferences" msgstr "" @@ -685,7 +739,7 @@ msgstr "" #. 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:471 +#: C/index.docbook:504 msgctxt "_" msgid "" "external ref='figures/stickynotes-note-prefs.png' " @@ -693,7 +747,7 @@ msgid "" msgstr "" #. (itstool) path: screenshot/mediaobject -#: C/index.docbook:469 +#: C/index.docbook:502 msgid "" "<imageobject> <imagedata fileref=\"figures/stickynotes-note-prefs.png\" " "format=\"PNG\"/> </imageobject> <textobject><phrase>a Sticky Note's " @@ -701,7 +755,7 @@ msgid "" msgstr "" #. (itstool) path: sect1/para -#: C/index.docbook:477 +#: C/index.docbook:510 msgid "" "You can customize the look of each individual sticky note. This can be " "useful for visually distinguishing different types of notes quickly. To " @@ -711,30 +765,30 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:485 +#: C/index.docbook:518 msgid "<guilabel>Title</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:486 +#: C/index.docbook:519 msgid "Use this text box to specify the title of the sticky note." msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:490 +#: C/index.docbook:523 msgid "<guilabel>Use default color</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:491 +#: C/index.docbook:524 msgid "" "Select this option to use the default base color for this sticky note. For " -"information on setting the default base color, see <xref linkend" -"=\"stickynotes-color\"/>." +"information on setting the default base color, see <xref " +"linkend=\"stickynotes-color\"/>." msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:498 +#: C/index.docbook:531 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -742,7 +796,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:505 +#: C/index.docbook:538 msgid "" "Click on the color selector button to display the color selector dialog. On " "the color selector dialog, use the color wheel or spin boxes to choose the " @@ -750,12 +804,12 @@ msgid "" msgstr "" #. (itstool) path: varlistentry/term -#: C/index.docbook:511 +#: C/index.docbook:544 msgid "<guilabel>Use default font</guilabel>" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:512 +#: C/index.docbook:545 msgid "" "Select this option to use the default font for this sticky note. For " "information on setting the default font, see <xref linkend=\"stickynotes-" @@ -763,7 +817,7 @@ msgid "" msgstr "" #. (itstool) path: listitem/para -#: C/index.docbook:518 +#: C/index.docbook:551 msgid "" "Click on the font selector button to display the font selector dialog. On " "the font selector dialog, use the list boxes to choose the font for this " diff --git a/stickynotes/org.mate.applets.StickyNotesApplet.mate-panel-applet.desktop.in.in b/stickynotes/org.mate.applets.StickyNotesApplet.mate-panel-applet.desktop.in.in index 7e0725cf..44a1e460 100644 --- a/stickynotes/org.mate.applets.StickyNotesApplet.mate-panel-applet.desktop.in.in +++ b/stickynotes/org.mate.applets.StickyNotesApplet.mate-panel-applet.desktop.in.in @@ -1,6 +1,7 @@ [Applet Factory] Id=StickyNotesAppletFactory -Location=@LIBEXECDIR@/stickynotes-applet +Location=@APPLET_LOCATION@ +InProcess=@APPLET_IN_PROCESS@ Name=Sticky Notes Applet Factory Description=Sticky Notes Applet Factory @@ -10,6 +11,7 @@ Description=Create, view, and manage sticky notes on the desktop # Translators: Do NOT translate or transliterate this text (this is an icon file name)! Icon=mate-sticky-notes-applet MateComponentId=OAFIID:MATE_StickyNotesApplet +Platforms=X11;Wayland; X-MATE-Bugzilla-Bugzilla=MATE X-MATE-Bugzilla-Product=mate-applets X-MATE-Bugzilla-Component=stickynotes diff --git a/stickynotes/org.mate.panel.applet.StickyNotesAppletFactory.service.in b/stickynotes/org.mate.panel.applet.StickyNotesAppletFactory.service.in index 593c29c0..bde79ac3 100644 --- a/stickynotes/org.mate.panel.applet.StickyNotesAppletFactory.service.in +++ b/stickynotes/org.mate.panel.applet.StickyNotesAppletFactory.service.in @@ -1,3 +1,3 @@ [D-BUS Service] Name=org.mate.panel.applet.StickyNotesAppletFactory -Exec=@LIBEXECDIR@/stickynotes-applet +Exec=@APPLET_LOCATION@ diff --git a/stickynotes/org.mate.stickynotes.gschema.xml.in b/stickynotes/org.mate.stickynotes.gschema.xml.in index eb5d3927..c173f383 100644 --- a/stickynotes/org.mate.stickynotes.gschema.xml.in +++ b/stickynotes/org.mate.stickynotes.gschema.xml.in @@ -65,5 +65,10 @@ <summary>Whether to ask for confirmation when deleting a note</summary> <description>Empty notes are always deleted without confirmation.</description> </key> + <key name="click-hide" type="b"> + <default>true</default> + <summary>Whether to hide all notes when click the icon</summary> + <description>If this option is disabled, the note is not hidden when the icon is clicked.</description> + </key> </schema> </schemalist> diff --git a/stickynotes/sticky-notes-note.ui b/stickynotes/sticky-notes-note.ui index 4426c659..3a734cc1 100644 --- a/stickynotes/sticky-notes-note.ui +++ b/stickynotes/sticky-notes-note.ui @@ -2,9 +2,44 @@ <!-- Generated with glade 3.22.1 --> <interface> <requires lib="gtk+" version="3.22"/> - <requires lib="gtksourceview" version="3.0"/> - <object class="GtkSourceBuffer" id="body_buffer"> - <property name="max_undo_levels">-1</property> + <requires lib="GtkTextView" version="4.0"/> + <object class="GtkTextBuffer" id="body_buffer"> + </object> + <object class="GtkMenu" id="stickynote_menu"> + <child> + <object class="GtkMenuItem" id="popup_create"> + <property name="visible">True</property> + <property name="use-underline">True</property> + <property name="label" translatable="yes">_New Note</property> + </object> + </child> + <child> + <object class="GtkMenuItem" id="popup_destroy"> + <property name="visible">True</property> + <property name="use-underline">True</property> + <property name="label" translatable="yes">_Delete Note...</property> + </object> + </child> + <child> + <object class="GtkSeparatorMenuItem"/> + </child> + <child> + <object class="GtkCheckMenuItem" id="popup_toggle_lock"> + <property name="visible">True</property> + <property name="use-underline">True</property> + <property name="label" translatable="yes">_Lock Note</property> + </object> + </child> + <child> + <object class="GtkSeparatorMenuItem"/> + </child> + <child> + <object class="GtkMenuItem" id="popup_properties"> + <property name="visible">True</property> + <property name="use-underline">True</property> + <property name="label" translatable="yes">_Properties</property> + </object> + </child> </object> <object class="GtkWindow" id="stickynote_window"> <property name="can_focus">False</property> @@ -93,7 +128,7 @@ <property name="hscrollbar_policy">never</property> <property name="vscrollbar_policy">never</property> <child> - <object class="GtkSourceView" id="body_text"> + <object class="GtkTextView" id="body_text"> <property name="visible">True</property> <property name="can_focus">True</property> <property name="wrap_mode">word</property> diff --git a/stickynotes/sticky-notes-preferences.ui b/stickynotes/sticky-notes-preferences.ui index dcb5731f..25ebfe33 100644 --- a/stickynotes/sticky-notes-preferences.ui +++ b/stickynotes/sticky-notes-preferences.ui @@ -130,6 +130,7 @@ <property name="can_focus">False</property> <property name="label" translatable="yes">_Width:</property> <property name="use_underline">True</property> + <property name="mnemonic-widget">width_spin</property> <property name="xalign">0</property> </object> <packing> @@ -143,6 +144,7 @@ <property name="can_focus">False</property> <property name="label" translatable="yes">H_eight:</property> <property name="use_underline">True</property> + <property name="mnemonic-widget">height_spin</property> <property name="xalign">0</property> </object> <packing> @@ -202,6 +204,7 @@ <property name="can_focus">False</property> <property name="label" translatable="yes">Font Co_lor:</property> <property name="use_underline">True</property> + <property name="mnemonic-widget">prefs_font_color</property> <property name="xalign">0</property> </object> <packing> @@ -215,6 +218,7 @@ <property name="can_focus">False</property> <property name="label" translatable="yes">Note C_olor:</property> <property name="use_underline">True</property> + <property name="mnemonic-widget">default_color</property> <property name="xalign">0</property> </object> <packing> @@ -227,6 +231,8 @@ <property name="visible">True</property> <property name="can_focus">True</property> <property name="receives_default">False</property> + <property name="tooltip_text" translatable="yes">Choose a font color to use for all sticky notes</property> + <property name="title" translatable="yes">Pick a default font color</property> </object> <packing> <property name="left_attach">1</property> @@ -268,6 +274,7 @@ <property name="can_focus">False</property> <property name="label" translatable="yes">_Font:</property> <property name="use_underline">True</property> + <property name="mnemonic-widget">default_font</property> <property name="xalign">0</property> </object> <packing> diff --git a/stickynotes/sticky-notes-properties.ui b/stickynotes/sticky-notes-properties.ui index 3602821b..91e68438 100644 --- a/stickynotes/sticky-notes-properties.ui +++ b/stickynotes/sticky-notes-properties.ui @@ -116,6 +116,7 @@ <property name="can_focus">False</property> <property name="label" translatable="yes">_Title:</property> <property name="use_underline">True</property> + <property name="mnemonic-widget">title_entry</property> <property name="xalign">0</property> </object> <packing> @@ -157,6 +158,7 @@ <property name="margin_left">12</property> <property name="label" translatable="yes">Font C_olor:</property> <property name="use_underline">True</property> + <property name="mnemonic-widget">color_label</property> <property name="xalign">0</property> </object> <packing> @@ -199,6 +201,8 @@ <property name="visible">True</property> <property name="can_focus">True</property> <property name="receives_default">False</property> + <property name="tooltip_text" translatable="yes">Choose a font color for the note</property> + <property name="title" translatable="yes">Pick a font color for the sticky note</property> </object> <packing> <property name="left_attach">1</property> @@ -225,6 +229,7 @@ <property name="margin_left">12</property> <property name="label" translatable="yes">_Font:</property> <property name="use_underline">True</property> + <property name="mnemonic-widget">note_font</property> <property name="xalign">0</property> </object> <packing> diff --git a/stickynotes/sticky-notes-resources.gresource.xml b/stickynotes/sticky-notes-resources.gresource.xml index 8157b9a4..1146428a 100644 --- a/stickynotes/sticky-notes-resources.gresource.xml +++ b/stickynotes/sticky-notes-resources.gresource.xml @@ -6,5 +6,6 @@ <file compressed="true">sticky-notes-note.ui</file> <file compressed="true">sticky-notes-preferences.ui</file> <file compressed="true">sticky-notes-properties.ui</file> + <file compressed="true" alias="menu.xml">stickynotes-applet-menu.xml</file> </gresource> </gresources> diff --git a/stickynotes/stickynotes.c b/stickynotes/stickynotes.c index 0b163dc0..e1e1f8cb 100644 --- a/stickynotes/stickynotes.c +++ b/stickynotes/stickynotes.c @@ -27,8 +27,6 @@ #include <string.h> #include <sys/stat.h> -#include <gtksourceview/gtksource.h> - #include "stickynotes.h" #include "stickynotes_callbacks.h" #include "util.h" @@ -50,978 +48,1116 @@ set_icon_geometry (GdkWindow *window, int width, int height) { - gulong data[4]; - Display *dpy; - - dpy = gdk_x11_display_get_xdisplay (gdk_window_get_display (window)); - - data[0] = x; - data[1] = y; - data[2] = width; - data[3] = height; - - XChangeProperty (dpy, - GDK_WINDOW_XID (window), - gdk_x11_get_xatom_by_name_for_display ( - gdk_window_get_display (window), - "_NET_WM_ICON_GEOMETRY"), - XA_CARDINAL, 32, PropModeReplace, - (guchar *)&data, 4); + /*This is x11-only, so return in wayland or anything else*/ + GdkScreen *screen = gdk_screen_get_default(); + if (!(GDK_IS_X11_DISPLAY (gdk_screen_get_display (screen)))) + return; + + gulong data[4]; + Display *dpy; + + dpy = gdk_x11_display_get_xdisplay (gdk_window_get_display (window)); + + data[0] = x; + data[1] = y; + data[2] = width; + data[3] = height; + + XChangeProperty (dpy, + GDK_WINDOW_XID (window), + gdk_x11_get_xatom_by_name_for_display (gdk_window_get_display (window), + "_NET_WM_ICON_GEOMETRY"), + XA_CARDINAL, 32, PropModeReplace, + (guchar *)&data, 4); } /* Called when a timeout occurs. */ static gboolean timeout_happened (gpointer data) { - if (GPOINTER_TO_UINT (data) == stickynotes->last_timeout_data) - stickynotes_save (); - return FALSE; + if (GPOINTER_TO_UINT (data) == stickynotes->last_timeout_data) + stickynotes_save (); + + return FALSE; } /* Called when a text buffer is changed. */ static void -buffer_changed (GtkTextBuffer *buffer, StickyNote *note) +buffer_changed (GtkTextBuffer *buffer, + StickyNote *note) { - if ( (note->h + note->y) > stickynotes->max_height ) - gtk_scrolled_window_set_policy ( GTK_SCROLLED_WINDOW(note->w_scroller), - GTK_POLICY_NEVER, GTK_POLICY_AUTOMATIC); - - /* When a buffer is changed, we set a 10 second timer. When - the timer triggers, we will save the buffer if there have - been no subsequent changes. */ - ++stickynotes->last_timeout_data; - g_timeout_add_seconds (10, (GSourceFunc) timeout_happened, - GUINT_TO_POINTER (stickynotes->last_timeout_data)); + if ( (note->h + note->y) > stickynotes->max_height ) + gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (note->w_scroller), + GTK_POLICY_NEVER, GTK_POLICY_AUTOMATIC); + + /* When a buffer is changed, we set a 10 second timer. When + the timer triggers, we will save the buffer if there have + been no subsequent changes. */ + ++stickynotes->last_timeout_data; + g_timeout_add_seconds (10, (GSourceFunc) timeout_happened, + GUINT_TO_POINTER (stickynotes->last_timeout_data)); } /* Create a new (empty) Sticky Note at a specific position and with specific size */ static StickyNote * -stickynote_new_aux (GdkScreen *screen, gint x, gint y, gint w, gint h) +stickynote_new_aux (GdkScreen *screen, + gint x, + gint y, + gint w, + gint h) { - StickyNote *note; - GtkBuilder *builder; - - note = g_new (StickyNote, 1); - - builder = gtk_builder_new (); - gtk_builder_add_from_resource (builder, GRESOURCE "sticky-notes-note.ui", NULL); - gtk_builder_add_from_resource (builder, GRESOURCE "sticky-notes-properties.ui", NULL); - - note->w_window = GTK_WIDGET (gtk_builder_get_object (builder, "stickynote_window")); - gtk_window_set_screen(GTK_WINDOW(note->w_window),screen); - gtk_window_set_decorated (GTK_WINDOW (note->w_window), FALSE); - gtk_window_set_skip_taskbar_hint (GTK_WINDOW (note->w_window), TRUE); - gtk_window_set_skip_pager_hint (GTK_WINDOW (note->w_window), TRUE); - gtk_widget_add_events (note->w_window, GDK_BUTTON_PRESS_MASK); - - note->w_title = GTK_WIDGET (gtk_builder_get_object (builder, "title_label")); - note->w_body = GTK_WIDGET (gtk_builder_get_object (builder, "body_text")); - note->w_scroller = GTK_WIDGET (gtk_builder_get_object (builder, "body_scroller")); - note->w_lock = GTK_WIDGET (gtk_builder_get_object (builder, "lock_button")); - gtk_widget_add_events (note->w_lock, GDK_BUTTON_PRESS_MASK); - - note->buffer = GTK_SOURCE_BUFFER(gtk_text_view_get_buffer(GTK_TEXT_VIEW(note->w_body))); - - note->w_close = GTK_WIDGET (gtk_builder_get_object (builder, "close_button")); - gtk_widget_add_events (note->w_close, GDK_BUTTON_PRESS_MASK); - note->w_resize_se = GTK_WIDGET (gtk_builder_get_object (builder, "resize_se_box")); - gtk_widget_add_events (note->w_resize_se, GDK_BUTTON_PRESS_MASK); - note->w_resize_sw = GTK_WIDGET (gtk_builder_get_object (builder, "resize_sw_box")); - gtk_widget_add_events (note->w_resize_sw, GDK_BUTTON_PRESS_MASK); - - note->img_lock = GTK_IMAGE (gtk_builder_get_object (builder, - "lock_img")); - note->img_close = GTK_IMAGE (gtk_builder_get_object (builder, - "close_img")); - note->img_resize_se = GTK_IMAGE (gtk_builder_get_object (builder, - "resize_se_img")); - note->img_resize_sw = GTK_IMAGE (gtk_builder_get_object (builder, - "resize_sw_img")); - - /* deal with RTL environments */ - gtk_widget_set_direction (GTK_WIDGET (gtk_builder_get_object (builder, "resize_bar")), - GTK_TEXT_DIR_LTR); - - note->w_menu = GTK_WIDGET (gtk_builder_get_object (builder, "stickynote_menu")); - note->ta_lock_toggle_item = GTK_TOGGLE_ACTION (gtk_builder_get_object (builder, - "popup_toggle_lock")); - - note->w_properties = GTK_WIDGET (gtk_builder_get_object (builder, - "stickynote_properties")); - gtk_window_set_screen (GTK_WINDOW (note->w_properties), screen); - - note->w_entry = GTK_WIDGET (gtk_builder_get_object (builder, "title_entry")); - note->w_color = GTK_WIDGET (gtk_builder_get_object (builder, "note_color")); - note->w_color_label = GTK_WIDGET (gtk_builder_get_object (builder, "color_label")); - note->w_font_color = GTK_WIDGET (gtk_builder_get_object (builder, "font_color")); - note->w_font_color_label = GTK_WIDGET (gtk_builder_get_object (builder, - "font_color_label")); - note->w_font = GTK_WIDGET (gtk_builder_get_object (builder, "note_font")); - note->w_font_label = GTK_WIDGET (gtk_builder_get_object (builder, "font_label")); - note->w_def_color = GTK_WIDGET (>K_CHECK_BUTTON ( - gtk_builder_get_object (builder, - "def_color_check"))->toggle_button); - note->w_def_font = GTK_WIDGET (>K_CHECK_BUTTON ( - gtk_builder_get_object (builder, - "def_font_check"))->toggle_button); - - note->color = NULL; - note->font_color = NULL; - note->font = NULL; - note->locked = FALSE; - note->x = x; - note->y = y; - note->w = w; - note->h = h; - - /* Customize the window */ - if (g_settings_get_boolean (stickynotes->settings, "sticky")) - gtk_window_stick(GTK_WINDOW(note->w_window)); - - if (w == 0 || h == 0) - gtk_window_resize (GTK_WINDOW(note->w_window), - g_settings_get_int (stickynotes->settings, "default-width"), - g_settings_get_int (stickynotes->settings, "default-height")); - else - gtk_window_resize (GTK_WINDOW(note->w_window), - note->w, - note->h); - - if (x != -1 && y != -1) - gtk_window_move (GTK_WINDOW(note->w_window), - note->x, - note->y); - - /* Set the button images */ - gtk_image_set_from_icon_name (note->img_close, STICKYNOTES_STOCK_CLOSE, GTK_ICON_SIZE_MENU); - gtk_image_set_pixel_size (note->img_close, STICKYNOTES_ICON_SIZE); - - gtk_image_set_from_icon_name (note->img_resize_se, STICKYNOTES_STOCK_RESIZE_SE, GTK_ICON_SIZE_MENU); - gtk_image_set_pixel_size (note->img_resize_se, STICKYNOTES_ICON_SIZE); - - gtk_image_set_from_icon_name (note->img_resize_sw, STICKYNOTES_STOCK_RESIZE_SW, GTK_ICON_SIZE_MENU); - gtk_image_set_pixel_size (note->img_resize_sw, STICKYNOTES_ICON_SIZE); - - gtk_widget_show(note->w_lock); - gtk_widget_show(note->w_close); - gtk_widget_show(GTK_WIDGET (gtk_builder_get_object (builder, "resize_bar"))); - - /* Customize the title and colors, hide and unlock */ - stickynote_set_title(note, NULL); - stickynote_set_color(note, NULL, NULL, TRUE); - stickynote_set_font(note, NULL, TRUE); - stickynote_set_locked(note, FALSE); - - gtk_widget_realize (note->w_window); - - /* Connect a popup menu to all buttons and title */ - /* GtkBuilder holds and drops the references to all the widgets it - * creates for as long as it exist (GtkBuilder). Hence in our callback - * we would have an invalid GtkMenu. We need to ref it. - */ - g_object_ref (note->w_menu); - g_signal_connect (G_OBJECT (note->w_window), "button-press-event", - G_CALLBACK (stickynote_show_popup_menu), note->w_menu); - - g_signal_connect (G_OBJECT (note->w_lock), "button-press-event", - G_CALLBACK (stickynote_show_popup_menu), note->w_menu); - - g_signal_connect (G_OBJECT (note->w_close), "button-press-event", - G_CALLBACK (stickynote_show_popup_menu), note->w_menu); - - g_signal_connect (G_OBJECT (note->w_resize_se), "button-press-event", - G_CALLBACK (stickynote_show_popup_menu), note->w_menu); - - g_signal_connect (G_OBJECT (note->w_resize_sw), "button-press-event", - G_CALLBACK (stickynote_show_popup_menu), note->w_menu); - - /* Connect a properties dialog to the note */ - gtk_window_set_transient_for (GTK_WINDOW(note->w_properties), - GTK_WINDOW(note->w_window)); - gtk_dialog_set_default_response (GTK_DIALOG(note->w_properties), - GTK_RESPONSE_CLOSE); - g_signal_connect (G_OBJECT (note->w_properties), "response", - G_CALLBACK (response_cb), note); - - /* Connect signals to the sticky note */ - g_signal_connect (G_OBJECT (note->w_lock), "clicked", - G_CALLBACK (stickynote_toggle_lock_cb), note); - g_signal_connect (G_OBJECT (note->w_close), "clicked", - G_CALLBACK (stickynote_close_cb), note); - g_signal_connect (G_OBJECT (note->w_resize_se), "button-press-event", - G_CALLBACK (stickynote_resize_cb), note); - g_signal_connect (G_OBJECT (note->w_resize_sw), "button-press-event", - G_CALLBACK (stickynote_resize_cb), note); - - g_signal_connect (G_OBJECT (note->w_window), "button-press-event", - G_CALLBACK (stickynote_move_cb), note); - g_signal_connect (G_OBJECT (note->w_window), "configure-event", - G_CALLBACK (stickynote_configure_cb), note); - g_signal_connect (G_OBJECT (note->w_window), "delete-event", - G_CALLBACK (stickynote_delete_cb), note); - - g_signal_connect (gtk_builder_get_object (builder, - "popup_create"), "activate", - G_CALLBACK (popup_create_cb), note); - g_signal_connect (gtk_builder_get_object (builder, - "popup_destroy"), "activate", - G_CALLBACK (popup_destroy_cb), note); - g_signal_connect (gtk_builder_get_object (builder, - "popup_toggle_lock"), "toggled", - G_CALLBACK (popup_toggle_lock_cb), note); - g_signal_connect (gtk_builder_get_object (builder, - "popup_properties"), "activate", - G_CALLBACK (popup_properties_cb), note); - - g_signal_connect_swapped (G_OBJECT (note->w_entry), "changed", - G_CALLBACK (properties_apply_title_cb), note); - g_signal_connect (G_OBJECT (note->w_color), "color-set", - G_CALLBACK (properties_color_cb), note); - g_signal_connect (G_OBJECT (note->w_font_color), "color-set", - G_CALLBACK (properties_color_cb), note); - g_signal_connect_swapped (G_OBJECT (note->w_def_color), "toggled", - G_CALLBACK (properties_apply_color_cb), note); - g_signal_connect (G_OBJECT (note->w_font), "font-set", - G_CALLBACK (properties_font_cb), note); - g_signal_connect_swapped (G_OBJECT (note->w_def_font), "toggled", - G_CALLBACK (properties_apply_font_cb), note); - g_signal_connect (G_OBJECT (note->w_entry), "activate", - G_CALLBACK (properties_activate_cb), note); - g_signal_connect (G_OBJECT (note->w_properties), "delete-event", - G_CALLBACK (gtk_widget_hide), note); - - g_object_unref(builder); - - g_signal_connect_after (note->w_body, "button-press-event", - G_CALLBACK (gtk_true), note); - - g_signal_connect (gtk_text_view_get_buffer(GTK_TEXT_VIEW(note->w_body)), - "changed", - G_CALLBACK (buffer_changed), note); - - return note; + StickyNote *note; + GtkBuilder *builder; + + note = g_new (StickyNote, 1); + + builder = gtk_builder_new (); + gtk_builder_add_from_resource (builder, + GRESOURCE "sticky-notes-note.ui", + NULL); + gtk_builder_add_from_resource (builder, + GRESOURCE "sticky-notes-properties.ui", + NULL); + + note->w_window = GTK_WIDGET (gtk_builder_get_object (builder, + "stickynote_window")); + gtk_window_set_screen (GTK_WINDOW (note->w_window),screen); + gtk_window_set_decorated (GTK_WINDOW (note->w_window), FALSE); + gtk_window_set_skip_taskbar_hint (GTK_WINDOW (note->w_window), TRUE); + gtk_window_set_skip_pager_hint (GTK_WINDOW (note->w_window), TRUE); + gtk_widget_add_events (note->w_window, GDK_BUTTON_PRESS_MASK); + + note->w_title = GTK_WIDGET (gtk_builder_get_object (builder, + "title_label")); + note->w_body = GTK_WIDGET (gtk_builder_get_object (builder, + "body_text")); + note->w_scroller = GTK_WIDGET (gtk_builder_get_object (builder, + "body_scroller")); + note->w_lock = GTK_WIDGET (gtk_builder_get_object (builder, + "lock_button")); + gtk_widget_add_events (note->w_lock, GDK_BUTTON_PRESS_MASK); + + note->buffer = + GTK_TEXT_BUFFER (gtk_text_view_get_buffer (GTK_TEXT_VIEW (note->w_body))); + + note->w_close = + GTK_WIDGET (gtk_builder_get_object (builder, "close_button")); + gtk_widget_add_events (note->w_close, GDK_BUTTON_PRESS_MASK); + note->w_resize_se = + GTK_WIDGET (gtk_builder_get_object (builder, "resize_se_box")); + gtk_widget_add_events (note->w_resize_se, GDK_BUTTON_PRESS_MASK); + note->w_resize_sw = + GTK_WIDGET (gtk_builder_get_object (builder, "resize_sw_box")); + gtk_widget_add_events (note->w_resize_sw, GDK_BUTTON_PRESS_MASK); + + note->img_lock = + GTK_IMAGE (gtk_builder_get_object (builder, "lock_img")); + note->img_close = + GTK_IMAGE (gtk_builder_get_object (builder, "close_img")); + note->img_resize_se = + GTK_IMAGE (gtk_builder_get_object (builder, "resize_se_img")); + note->img_resize_sw = + GTK_IMAGE (gtk_builder_get_object (builder, "resize_sw_img")); + + /* deal with RTL environments */ + gtk_widget_set_direction (GTK_WIDGET (gtk_builder_get_object (builder, "resize_bar")), + GTK_TEXT_DIR_LTR); + + note->w_menu = GTK_WIDGET (gtk_builder_get_object (builder, + "stickynote_menu")); + note->w_lock_toggle_item = + GTK_CHECK_MENU_ITEM (gtk_builder_get_object (builder, + "popup_toggle_lock")); + + note->w_properties = + GTK_WIDGET (gtk_builder_get_object (builder, + "stickynote_properties")); + gtk_window_set_screen (GTK_WINDOW (note->w_properties), screen); + + note->w_entry = + GTK_WIDGET (gtk_builder_get_object (builder, "title_entry")); + note->w_color = + GTK_WIDGET (gtk_builder_get_object (builder, "note_color")); + note->w_color_label = + GTK_WIDGET (gtk_builder_get_object (builder, "color_label")); + note->w_font_color = + GTK_WIDGET (gtk_builder_get_object (builder, "font_color")); + note->w_font_color_label = + GTK_WIDGET (gtk_builder_get_object (builder, + "font_color_label")); + note->w_font = + GTK_WIDGET (gtk_builder_get_object (builder, "note_font")); + note->w_font_label = + GTK_WIDGET (gtk_builder_get_object (builder, "font_label")); + note->w_def_color = + GTK_WIDGET (>K_CHECK_BUTTON (gtk_builder_get_object (builder, + "def_color_check"))->toggle_button); + note->w_def_font = + GTK_WIDGET (>K_CHECK_BUTTON (gtk_builder_get_object (builder, + "def_font_check"))->toggle_button); + + note->color = NULL; + note->font_color = NULL; + note->font = NULL; + note->locked = FALSE; + note->x = x; + note->y = y; + note->w = w; + note->h = h; + + /* Customize the window */ + if (g_settings_get_boolean (stickynotes->settings, "sticky")) + gtk_window_stick (GTK_WINDOW (note->w_window)); + + if (w == 0 || h == 0) + gtk_window_resize (GTK_WINDOW (note->w_window), + g_settings_get_int (stickynotes->settings, + "default-width"), + g_settings_get_int (stickynotes->settings, + "default-height")); + else + gtk_window_resize (GTK_WINDOW (note->w_window), + note->w, + note->h); + + if (x != -1 && y != -1) + gtk_window_move (GTK_WINDOW (note->w_window), + note->x, + note->y); + + /* Set the button images */ + gtk_image_set_from_icon_name (note->img_close, + STICKYNOTES_STOCK_CLOSE, + GTK_ICON_SIZE_MENU); + gtk_image_set_pixel_size (note->img_close, + STICKYNOTES_ICON_SIZE); + + gtk_image_set_from_icon_name (note->img_resize_se, + STICKYNOTES_STOCK_RESIZE_SE, + GTK_ICON_SIZE_MENU); + gtk_image_set_pixel_size (note->img_resize_se, + STICKYNOTES_ICON_SIZE); + + gtk_image_set_from_icon_name (note->img_resize_sw, + STICKYNOTES_STOCK_RESIZE_SW, + GTK_ICON_SIZE_MENU); + gtk_image_set_pixel_size (note->img_resize_sw, + STICKYNOTES_ICON_SIZE); + + gtk_widget_show (note->w_lock); + gtk_widget_show (note->w_close); + gtk_widget_show (GTK_WIDGET (gtk_builder_get_object (builder, + "resize_bar"))); + + /* Customize the title and colors, hide and unlock */ + stickynote_set_title (note, NULL); + stickynote_set_color (note, NULL, NULL, TRUE); + stickynote_set_font (note, NULL, TRUE); + stickynote_set_locked (note, FALSE); + + gtk_widget_realize (note->w_window); + + /* Connect a popup menu to all buttons and title */ + /* GtkBuilder holds and drops the references to all the widgets it + * creates for as long as it exist (GtkBuilder). Hence in our callback + * we would have an invalid GtkMenu. We need to ref it. + */ + g_object_ref (note->w_menu); + + g_signal_connect (note->w_window, "button-press-event", + G_CALLBACK (stickynote_show_popup_menu), + note->w_menu); + + g_signal_connect (note->w_lock, "button-press-event", + G_CALLBACK (stickynote_show_popup_menu), + note->w_menu); + + g_signal_connect (note->w_close, "button-press-event", + G_CALLBACK (stickynote_show_popup_menu), + note->w_menu); + + g_signal_connect (note->w_resize_se, "button-press-event", + G_CALLBACK (stickynote_show_popup_menu), + note->w_menu); + + g_signal_connect (note->w_resize_sw, "button-press-event", + G_CALLBACK (stickynote_show_popup_menu), + note->w_menu); + + /* Connect a properties dialog to the note */ + gtk_window_set_transient_for (GTK_WINDOW (note->w_properties), + GTK_WINDOW (note->w_window)); + gtk_dialog_set_default_response (GTK_DIALOG (note->w_properties), + GTK_RESPONSE_CLOSE); + g_signal_connect (note->w_properties, "response", + G_CALLBACK (response_cb), + note); + + /* Connect signals to the sticky note */ + g_signal_connect (note->w_lock, "clicked", + G_CALLBACK (stickynote_toggle_lock_cb), + note); + + g_signal_connect (note->w_close, "clicked", + G_CALLBACK (stickynote_close_cb), + note); + + g_signal_connect (note->w_resize_se, "button-press-event", + G_CALLBACK (stickynote_resize_cb), + note); + + g_signal_connect (note->w_resize_sw, "button-press-event", + G_CALLBACK (stickynote_resize_cb), + note); + + g_signal_connect (note->w_window, "button-press-event", + G_CALLBACK (stickynote_move_cb), + note); + + g_signal_connect (note->w_window, "configure-event", + G_CALLBACK (stickynote_configure_cb), + note); + + g_signal_connect (note->w_window, "delete-event", + G_CALLBACK (stickynote_delete_cb), + note); + + g_signal_connect (gtk_builder_get_object (builder, "popup_create"), "activate", + G_CALLBACK (popup_create_cb), + note); + + g_signal_connect (gtk_builder_get_object (builder, "popup_destroy"), "activate", + G_CALLBACK (popup_destroy_cb), + note); + + g_signal_connect (gtk_builder_get_object (builder, "popup_toggle_lock"), "toggled", + G_CALLBACK (popup_toggle_lock_cb), + note); + + g_signal_connect (gtk_builder_get_object (builder, "popup_properties"), "activate", + G_CALLBACK (popup_properties_cb), + note); + + g_signal_connect_swapped (note->w_entry, "changed", + G_CALLBACK (properties_apply_title_cb), + note); + + g_signal_connect (note->w_color, "color-set", + G_CALLBACK (properties_color_cb), + note); + + g_signal_connect (note->w_font_color, "color-set", + G_CALLBACK (properties_color_cb), + note); + + g_signal_connect_swapped (note->w_def_color, "toggled", + G_CALLBACK (properties_apply_color_cb), + note); + + g_signal_connect (note->w_font, "font-set", + G_CALLBACK (properties_font_cb), + note); + + g_signal_connect_swapped (note->w_def_font, "toggled", + G_CALLBACK (properties_apply_font_cb), + note); + + g_signal_connect (note->w_entry, "activate", + G_CALLBACK (properties_activate_cb), + note); + + g_signal_connect (note->w_properties, "delete-event", + G_CALLBACK (gtk_widget_hide), + note); + + g_signal_connect_after (note->w_window, "key-press-event", + G_CALLBACK (stickynote_keypress_cb), + note->w_menu); + + g_object_unref (builder); + + g_signal_connect_after (note->w_body, "button-press-event", + G_CALLBACK (gtk_true), + note); + + g_signal_connect (gtk_text_view_get_buffer (GTK_TEXT_VIEW (note->w_body)), "changed", + G_CALLBACK (buffer_changed), + note); + + return note; } /* Create a new (empty) Sticky Note */ StickyNote * stickynote_new (GdkScreen *screen) { - return stickynote_new_aux (screen, -1, -1, 0, 0); + return stickynote_new_aux (screen, -1, -1, 0, 0); } /* Destroy a Sticky Note */ -void stickynote_free(StickyNote *note) +void stickynote_free (StickyNote *note) { - gtk_widget_destroy(note->w_properties); - gtk_widget_destroy(note->w_menu); - gtk_widget_destroy(note->w_window); + gtk_widget_destroy (note->w_properties); + gtk_widget_destroy (note->w_menu); + gtk_widget_destroy (note->w_window); - g_free(note->color); - g_free(note->font_color); - g_free(note->font); + g_free (note->color); + g_free (note->font_color); + g_free (note->font); - g_free(note); + g_free (note); } /* Change the sticky note title and color */ void stickynote_change_properties (StickyNote *note) { - char *color_str = NULL; - - gtk_entry_set_text(GTK_ENTRY(note->w_entry), - gtk_label_get_text (GTK_LABEL (note->w_title))); - - gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(note->w_def_color), - note->color == NULL); - - if (note->color) - color_str = g_strdup (note->color); - else - { - color_str = g_settings_get_string (stickynotes->settings, "default-color"); - } - - if (color_str) - { - GdkRGBA color; - gdk_rgba_parse (&color, color_str); - gtk_color_chooser_set_rgba (GTK_COLOR_CHOOSER (note->w_color), &color); - g_free (color_str); - } - - if (note->font_color) - color_str = g_strdup (note->font_color); - else - { - color_str = g_settings_get_string (stickynotes->settings, "default-font-color"); - } - - if (color_str) - { - GdkRGBA font_color; - gdk_rgba_parse (&font_color, color_str); - gtk_color_chooser_set_rgba (GTK_COLOR_CHOOSER (note->w_font_color), &font_color); - g_free (color_str); - } - - gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(note->w_def_font), - note->font == NULL); - if (note->font) - gtk_font_button_set_font_name (GTK_FONT_BUTTON (note->w_font), - note->font); - - gtk_widget_show (note->w_properties); - - stickynotes_save(); + char *color_str = NULL; + + gtk_entry_set_text (GTK_ENTRY (note->w_entry), + gtk_label_get_text (GTK_LABEL (note->w_title))); + + gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (note->w_def_color), + note->color == NULL); + + if (note->color) + color_str = g_strdup (note->color); + else { + color_str = g_settings_get_string (stickynotes->settings, + "default-color"); + } + + if (color_str) { + GdkRGBA color; + gdk_rgba_parse (&color, color_str); + gtk_color_chooser_set_rgba (GTK_COLOR_CHOOSER (note->w_color), + &color); + g_free (color_str); + } + + if (note->font_color) + color_str = g_strdup (note->font_color); + else { + color_str = g_settings_get_string (stickynotes->settings, + "default-font-color"); + } + + if (color_str) { + GdkRGBA font_color; + gdk_rgba_parse (&font_color, color_str); + gtk_color_chooser_set_rgba (GTK_COLOR_CHOOSER (note->w_font_color), + &font_color); + g_free (color_str); + } + + gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (note->w_def_font), + note->font == NULL); + if (note->font) + gtk_font_button_set_font_name (GTK_FONT_BUTTON (note->w_font), + note->font); + + gtk_widget_show (note->w_properties); + + stickynotes_save (); } static void -response_cb (GtkWidget *dialog, gint id, gpointer data) +response_cb (GtkWidget *dialog, + gint id, gpointer data) { - if (id == GTK_RESPONSE_HELP) - gtk_show_uri_on_window (GTK_WINDOW (dialog), - "help:mate-stickynotes-applet/stickynotes-settings-individual", - gtk_get_current_event_time (), - NULL); - else if (id == GTK_RESPONSE_CLOSE) - gtk_widget_hide (dialog); + if (id == GTK_RESPONSE_HELP) + gtk_show_uri_on_window (GTK_WINDOW (dialog), + "help:mate-stickynotes-applet/stickynotes-settings-individual", + gtk_get_current_event_time (), + NULL); + else if (id == GTK_RESPONSE_CLOSE) + gtk_widget_hide (dialog); } /* Check if a sticky note is empty */ -gboolean stickynote_get_empty(const StickyNote *note) +gboolean +stickynote_get_empty (const StickyNote *note) { - return gtk_text_buffer_get_char_count(gtk_text_view_get_buffer(GTK_TEXT_VIEW(note->w_body))) == 0; + return gtk_text_buffer_get_char_count (gtk_text_view_get_buffer (GTK_TEXT_VIEW (note->w_body))) == 0; } /* Set the sticky note title */ -void stickynote_set_title(StickyNote *note, const gchar *title) +void +stickynote_set_title (StickyNote *note, + const gchar *title) { - /* If title is NULL, use the current date as the title. */ - if (!title) { - GDateTime *now; - gchar *date_title; - gchar *date_format; - - date_format = g_settings_get_string (stickynotes->settings, "date-format"); - if (!date_format) - date_format = g_strdup ("%x"); - - now = g_date_time_new_now_local (); - date_title = g_date_time_format (now, date_format); - - gtk_window_set_title(GTK_WINDOW(note->w_window), date_title); - gtk_label_set_text(GTK_LABEL (note->w_title), date_title); - - g_date_time_unref (now); - g_free(date_title); - g_free(date_format); - } - else { - gtk_window_set_title(GTK_WINDOW(note->w_window), title); - gtk_label_set_text(GTK_LABEL (note->w_title), title); - } + /* If title is NULL, use the current date as the title. */ + if (!title) { + GDateTime *now; + gchar *date_title; + gchar *date_format; + + date_format = g_settings_get_string (stickynotes->settings, "date-format"); + if (!date_format) + date_format = g_strdup ("%x"); + + now = g_date_time_new_now_local (); + date_title = g_date_time_format (now, date_format); + + gtk_window_set_title (GTK_WINDOW (note->w_window), date_title); + gtk_label_set_text (GTK_LABEL (note->w_title), date_title); + + g_date_time_unref (now); + g_free (date_title); + g_free (date_format); + } + else { + gtk_window_set_title (GTK_WINDOW (note->w_window), title); + gtk_label_set_text (GTK_LABEL (note->w_title), title); + } } /* Set the sticky note color */ void stickynote_set_color (StickyNote *note, - const gchar *color_str, - const gchar *font_color_str, - gboolean save) + const gchar *color_str, + const gchar *font_color_str, + gboolean save) { - char *color_str_actual, *font_color_str_actual; - gboolean force_default, use_system_color; - - if (save) { - if (note->color) - g_free (note->color); - if (note->font_color) - g_free (note->font_color); - - note->color = color_str ? - g_strdup (color_str) : NULL; - note->font_color = font_color_str ? - g_strdup (font_color_str) : NULL; - - gtk_widget_set_sensitive (note->w_color_label, - note->color != NULL); - gtk_widget_set_sensitive (note->w_font_color_label, - note->font_color != NULL); - gtk_widget_set_sensitive (note->w_color, - note->color != NULL); - gtk_widget_set_sensitive (note->w_font_color, - note->color != NULL); - } - - force_default = g_settings_get_boolean (stickynotes->settings, "force-default"); - use_system_color = g_settings_get_boolean (stickynotes->settings, "use-system-color"); - - /* If "force_default" is enabled or color_str is NULL, - * then we use the default color instead of color_str. */ - if (!color_str || force_default) - { - if (use_system_color) - color_str_actual = NULL; - else - color_str_actual = g_settings_get_string (stickynotes->settings, "default-color"); - } - else - color_str_actual = g_strdup (color_str); - - if (!font_color_str || force_default) - { - if (use_system_color) - font_color_str_actual = NULL; - else - font_color_str_actual = g_settings_get_string (stickynotes->settings, "default-font-color"); - } - else - font_color_str_actual = g_strdup (font_color_str); - - /* Do not use custom colors if "use_system_color" is enabled */ - if (color_str_actual) { - GdkRGBA colors[4]; - gint i; - - for (i = 0; i <= 3; i++) - { - gdk_rgba_parse (&colors[i], color_str_actual); - colors[i].red = (colors[i].red * (10 - i)) / 10; - colors[i].green = (colors[i].green * (10 - i)) / 10; - colors[i].blue = (colors[i].blue * (10 - i)) / 10; - } - - gtk_widget_override_background_color (note->w_window, GTK_STATE_FLAG_NORMAL, &colors[0]); - gtk_widget_override_background_color (note->w_body, GTK_STATE_FLAG_NORMAL, &colors[0]); - gtk_widget_override_background_color (note->w_lock, GTK_STATE_FLAG_NORMAL, &colors[0]); - gtk_widget_override_background_color (note->w_close, GTK_STATE_FLAG_NORMAL, &colors[0]); - gtk_widget_override_background_color (note->w_resize_se, GTK_STATE_FLAG_NORMAL, &colors[0]); - gtk_widget_override_background_color (note->w_resize_sw, GTK_STATE_FLAG_NORMAL, &colors[0]); - } else { - gtk_widget_override_background_color (note->w_window, GTK_STATE_FLAG_NORMAL, NULL); - gtk_widget_override_background_color (note->w_body, GTK_STATE_FLAG_NORMAL, NULL); - gtk_widget_override_background_color (note->w_lock, GTK_STATE_FLAG_NORMAL, NULL); - gtk_widget_override_background_color (note->w_close, GTK_STATE_FLAG_NORMAL, NULL); - gtk_widget_override_background_color (note->w_resize_se, GTK_STATE_FLAG_NORMAL, NULL); - gtk_widget_override_background_color (note->w_resize_sw, GTK_STATE_FLAG_NORMAL, NULL); - } - - if (font_color_str_actual) - { - GdkRGBA color; - - gdk_rgba_parse (&color, font_color_str_actual); - - gtk_widget_override_color (note->w_window, GTK_STATE_FLAG_NORMAL, &color); - gtk_widget_override_color (note->w_body, GTK_STATE_FLAG_NORMAL, &color); - } - else - { - gtk_widget_override_color (note->w_window, GTK_STATE_FLAG_NORMAL, NULL); - gtk_widget_override_color (note->w_body, GTK_STATE_FLAG_NORMAL, NULL); - } - - if (color_str_actual) - g_free (color_str_actual); - if (font_color_str_actual) - g_free (font_color_str_actual); + char *color_str_actual, *font_color_str_actual; + gboolean force_default, use_system_color; + + if (save) { + if (note->color) + g_free (note->color); + if (note->font_color) + g_free (note->font_color); + + note->color = color_str ? g_strdup (color_str) : NULL; + note->font_color = font_color_str ? g_strdup (font_color_str) : NULL; + + gtk_widget_set_sensitive (note->w_color_label, + note->color != NULL); + gtk_widget_set_sensitive (note->w_font_color_label, + note->font_color != NULL); + gtk_widget_set_sensitive (note->w_color, + note->color != NULL); + gtk_widget_set_sensitive (note->w_font_color, + note->color != NULL); + } + + force_default = g_settings_get_boolean (stickynotes->settings, + "force-default"); + use_system_color = g_settings_get_boolean (stickynotes->settings, + "use-system-color"); + + /* If "force_default" is enabled or color_str is NULL, + * then we use the default color instead of color_str. */ + if (!color_str || force_default) { + if (use_system_color) + color_str_actual = NULL; + else + color_str_actual = g_settings_get_string (stickynotes->settings, + "default-color"); + } else + color_str_actual = g_strdup (color_str); + + if (!font_color_str || force_default) { + if (use_system_color) + font_color_str_actual = NULL; + else + font_color_str_actual = g_settings_get_string (stickynotes->settings, + "default-font-color"); + } else + font_color_str_actual = g_strdup (font_color_str); + + /* Do not use custom colors if "use_system_color" is enabled */ + if (color_str_actual) { + GdkRGBA colors[4]; + gint i; + + for (i = 0; i <= 3; i++) { + gdk_rgba_parse (&colors[i], color_str_actual); + colors[i].red = (colors[i].red * (10 - i)) / 10; + colors[i].green = (colors[i].green * (10 - i)) / 10; + colors[i].blue = (colors[i].blue * (10 - i)) / 10; + } + + gtk_widget_override_background_color (note->w_window, + GTK_STATE_FLAG_NORMAL, + &colors[0]); + gtk_widget_override_background_color (note->w_body, + GTK_STATE_FLAG_NORMAL, + &colors[0]); + gtk_widget_override_background_color (note->w_lock, + GTK_STATE_FLAG_NORMAL, + &colors[0]); + gtk_widget_override_background_color (note->w_close, + GTK_STATE_FLAG_NORMAL, + &colors[0]); + gtk_widget_override_background_color (note->w_resize_se, + GTK_STATE_FLAG_NORMAL, + &colors[0]); + gtk_widget_override_background_color (note->w_resize_sw, + GTK_STATE_FLAG_NORMAL, + &colors[0]); + } else { + gtk_widget_override_background_color (note->w_window, + GTK_STATE_FLAG_NORMAL, + NULL); + gtk_widget_override_background_color (note->w_body, + GTK_STATE_FLAG_NORMAL, + NULL); + gtk_widget_override_background_color (note->w_lock, + GTK_STATE_FLAG_NORMAL, + NULL); + gtk_widget_override_background_color (note->w_close, + GTK_STATE_FLAG_NORMAL, + NULL); + gtk_widget_override_background_color (note->w_resize_se, + GTK_STATE_FLAG_NORMAL, + NULL); + gtk_widget_override_background_color (note->w_resize_sw, + GTK_STATE_FLAG_NORMAL, + NULL); + } + + if (font_color_str_actual) { + GdkRGBA color; + + gdk_rgba_parse (&color, font_color_str_actual); + + gtk_widget_override_color (note->w_window, + GTK_STATE_FLAG_NORMAL, + &color); + gtk_widget_override_color (note->w_body, + GTK_STATE_FLAG_NORMAL, + &color); + } else { + gtk_widget_override_color (note->w_window, + GTK_STATE_FLAG_NORMAL, + NULL); + gtk_widget_override_color (note->w_body, + GTK_STATE_FLAG_NORMAL, + NULL); + } + + if (color_str_actual) + g_free (color_str_actual); + if (font_color_str_actual) + g_free (font_color_str_actual); } /* Set the sticky note font */ void -stickynote_set_font (StickyNote *note, const gchar *font_str, gboolean save) +stickynote_set_font (StickyNote *note, + const gchar *font_str, + gboolean save) { - PangoFontDescription *font_desc; - gchar *font_str_actual; - - if (save) { - g_free (note->font); - note->font = font_str ? g_strdup (font_str) : NULL; - - gtk_widget_set_sensitive (note->w_font_label, note->font != NULL); - gtk_widget_set_sensitive(note->w_font, note->font != NULL); - } - - /* If "force_default" is enabled or font_str is NULL, - * then we use the default font instead of font_str. */ - if (!font_str || g_settings_get_boolean (stickynotes->settings, "force-default")) - { - if (g_settings_get_boolean (stickynotes->settings, "use-system-font")) - font_str_actual = NULL; - else - font_str_actual = g_settings_get_string (stickynotes->settings, "default-font"); - } - else - font_str_actual = g_strdup (font_str); - - /* Do not use custom fonts if "use_system_font" is enabled */ - font_desc = font_str_actual ? - pango_font_description_from_string (font_str_actual): NULL; - - /* Apply the style to the widgets */ - gtk_widget_override_font (note->w_window, font_desc); - gtk_widget_override_font (note->w_body, font_desc); - - g_free (font_str_actual); - pango_font_description_free (font_desc); + PangoFontDescription *font_desc; + gchar *font_str_actual; + + if (save) { + g_free (note->font); + note->font = font_str ? g_strdup (font_str) : NULL; + + gtk_widget_set_sensitive (note->w_font_label, + note->font != NULL); + gtk_widget_set_sensitive (note->w_font, + note->font != NULL); + } + + /* If "force_default" is enabled or font_str is NULL, + * then we use the default font instead of font_str. */ + if (!font_str || g_settings_get_boolean (stickynotes->settings, + "force-default")) { + if (g_settings_get_boolean (stickynotes->settings, + "use-system-font")) + font_str_actual = NULL; + else + font_str_actual = g_settings_get_string (stickynotes->settings, + "default-font"); + } else + font_str_actual = g_strdup (font_str); + + /* Do not use custom fonts if "use_system_font" is enabled */ + font_desc = font_str_actual ? + pango_font_description_from_string (font_str_actual): NULL; + + /* Apply the style to the widgets */ + gtk_widget_override_font (note->w_window, font_desc); + gtk_widget_override_font (note->w_body, font_desc); + + g_free (font_str_actual); + pango_font_description_free (font_desc); } /* Lock/Unlock a sticky note from editing */ -void stickynote_set_locked(StickyNote *note, gboolean locked) +void +stickynote_set_locked (StickyNote *note, + gboolean locked) { - note->locked = locked; - - /* Set cursor visibility and editability */ - gtk_text_view_set_editable(GTK_TEXT_VIEW(note->w_body), !locked); - gtk_text_view_set_cursor_visible(GTK_TEXT_VIEW(note->w_body), !locked); - - /* Show appropriate icon and tooltip */ - if (locked) { - gtk_image_set_from_icon_name (note->img_lock, STICKYNOTES_STOCK_LOCKED, GTK_ICON_SIZE_MENU); - gtk_widget_set_tooltip_text(note->w_lock, _("This note is locked.")); - } - else { - gtk_image_set_from_icon_name (note->img_lock, STICKYNOTES_STOCK_UNLOCKED, GTK_ICON_SIZE_MENU); - gtk_widget_set_tooltip_text(note->w_lock, _("This note is unlocked.")); - } - - gtk_image_set_pixel_size (note->img_lock, STICKYNOTES_ICON_SIZE); - - gtk_toggle_action_set_active(note->ta_lock_toggle_item, locked); - - stickynotes_applet_update_menus(); + note->locked = locked; + + /* Set cursor visibility and editability */ + gtk_text_view_set_editable (GTK_TEXT_VIEW (note->w_body), + !locked); + gtk_text_view_set_cursor_visible (GTK_TEXT_VIEW (note->w_body), + !locked); + + /* Show appropriate icon and tooltip */ + if (locked) { + gtk_image_set_from_icon_name (note->img_lock, + STICKYNOTES_STOCK_LOCKED, + GTK_ICON_SIZE_MENU); + gtk_widget_set_tooltip_text (note->w_lock, + _("This note is locked.")); + } else { + gtk_image_set_from_icon_name (note->img_lock, + STICKYNOTES_STOCK_UNLOCKED, + GTK_ICON_SIZE_MENU); + gtk_widget_set_tooltip_text (note->w_lock, + _("This note is unlocked.")); + } + + gtk_image_set_pixel_size (note->img_lock, + STICKYNOTES_ICON_SIZE); + + gtk_check_menu_item_set_active (note->w_lock_toggle_item, + locked); + + stickynotes_applet_update_menus (); } /* Show/Hide a sticky note */ void -stickynote_set_visible (StickyNote *note, gboolean visible) +stickynote_set_visible (StickyNote *note, + gboolean visible) { - if (visible) - { - gtk_window_present (GTK_WINDOW (note->w_window)); - - if (note->x != -1 || note->y != -1) - gtk_window_move (GTK_WINDOW (note->w_window), - note->x, note->y); - /* Put the note on all workspaces if necessary. */ - if (g_settings_get_boolean (stickynotes->settings, "sticky")) - gtk_window_stick(GTK_WINDOW(note->w_window)); - else if (note->workspace > 0) - { -#if 0 - WnckWorkspace *wnck_ws; - gulong xid; - WnckWindow *wnck_win; - WnckScreen *wnck_screen; - - g_print ("set_visible(): workspace = %i\n", - note->workspace); - - xid = GDK_WINDOW_XID (note->w_window->window); - wnck_screen = wnck_screen_get_default (); - wnck_win = wnck_window_get (xid); - wnck_ws = wnck_screen_get_workspace ( - wnck_screen, - note->workspace - 1); - if (wnck_win && wnck_ws) - wnck_window_move_to_workspace ( - wnck_win, wnck_ws); - else - g_print ("set_visible(): errr\n"); -#endif - xstuff_change_workspace (GTK_WINDOW (note->w_window), - note->workspace - 1); - } - } - else { - /* Hide sticky note */ - int x, y, width, height; - stickynotes_applet_panel_icon_get_geometry (&x, &y, &width, &height); - set_icon_geometry (gtk_widget_get_window (GTK_WIDGET (note->w_window)), - x, y, width, height); - gtk_window_iconify(GTK_WINDOW (note->w_window)); - } + if (visible) { + gtk_window_present (GTK_WINDOW (note->w_window)); + + if (note->x != -1 || note->y != -1) + gtk_window_move (GTK_WINDOW (note->w_window), + note->x, note->y); + + + + /*On x11, Put the note on all workspaces or move it if necessary. + *We can't yet change workspace on wayland + */ + GdkScreen *screen = gdk_screen_get_default(); + if (!(GDK_IS_X11_DISPLAY (gdk_screen_get_display (screen)))) + return; + + if (g_settings_get_boolean (stickynotes->settings, "sticky")) + gtk_window_stick (GTK_WINDOW (note->w_window)); + + else if (note->workspace > 0) + xstuff_change_workspace (GTK_WINDOW (note->w_window), + note->workspace - 1); + } else { + /* Hide sticky note */ + int x, y, width, height; + + stickynotes_applet_panel_icon_get_geometry (&x, &y, + &width, &height); + set_icon_geometry (gtk_widget_get_window (GTK_WIDGET (note->w_window)), + x, y, width, height); + gtk_window_iconify (GTK_WINDOW (note->w_window)); + } } /* Add a sticky note */ -void stickynotes_add (GdkScreen *screen) +void +stickynotes_add (GdkScreen *screen) { - StickyNote *note; + StickyNote *note; - note = stickynote_new (screen); + note = stickynote_new (screen); - stickynotes->notes = g_list_append(stickynotes->notes, note); - stickynotes_applet_update_tooltips(); - stickynotes_save(); - stickynote_set_visible (note, TRUE); + stickynotes->notes = g_list_append (stickynotes->notes, note); + stickynotes_applet_update_tooltips (); + stickynotes_save (); + stickynote_set_visible (note, TRUE); } /* Remove a sticky note with confirmation, if needed */ -void stickynotes_remove(StickyNote *note) +void +stickynotes_remove (StickyNote *note) { - GtkBuilder *builder; - GtkWidget *dialog; + GtkBuilder *builder; + GtkWidget *dialog; - builder = gtk_builder_new (); - gtk_builder_add_from_resource (builder, GRESOURCE "sticky-notes-delete.ui", NULL); + builder = gtk_builder_new (); + gtk_builder_add_from_resource (builder, + GRESOURCE "sticky-notes-delete.ui", + NULL); - dialog = GTK_WIDGET (gtk_builder_get_object (builder, "delete_dialog")); + dialog = GTK_WIDGET (gtk_builder_get_object (builder, + "delete_dialog")); - gtk_window_set_transient_for(GTK_WINDOW(dialog), GTK_WINDOW(note->w_window)); + gtk_window_set_transient_for (GTK_WINDOW (dialog), + GTK_WINDOW (note->w_window)); - if (stickynote_get_empty(note) - || !g_settings_get_boolean (stickynotes->settings, "confirm-deletion") - || gtk_dialog_run(GTK_DIALOG(dialog)) == GTK_RESPONSE_OK) { + if (stickynote_get_empty (note) + || !g_settings_get_boolean (stickynotes->settings, + "confirm-deletion") + || gtk_dialog_run (GTK_DIALOG (dialog)) == GTK_RESPONSE_OK) { - /* Remove the note from the linked-list of all notes */ - stickynotes->notes = g_list_remove_all (stickynotes->notes, note); + /* Remove the note from the linked-list of all notes */ + stickynotes->notes = g_list_remove_all (stickynotes->notes, + note); - /* Destroy the note */ - stickynote_free (note); + /* Destroy the note */ + stickynote_free (note); - /* Update tooltips */ - stickynotes_applet_update_tooltips(); + /* Update tooltips */ + stickynotes_applet_update_tooltips (); - /* Save notes */ - stickynotes_save(); - } + /* Save notes */ + stickynotes_save (); + } - gtk_widget_destroy(dialog); - g_object_unref(builder); + gtk_widget_destroy (dialog); + g_object_unref (builder); } /* Save all sticky notes in an XML configuration file */ gboolean stickynotes_save_now (void) { - WnckScreen *wnck_screen; - const gchar *title; - GtkTextBuffer *buffer; - GtkTextIter start, end; - gchar *body; - - gint i; - - /* Create a new XML document */ - xmlDocPtr doc = xmlNewDoc(XML_CHAR ("1.0")); - xmlNodePtr root = xmlNewDocNode(doc, NULL, XML_CHAR ("stickynotes"), NULL); - - xmlDocSetRootElement(doc, root); - xmlNewProp(root, XML_CHAR("version"), XML_CHAR (VERSION)); - - wnck_screen = wnck_screen_get_default (); - wnck_screen_force_update (wnck_screen); - - /* For all sticky notes */ - for (i = 0; i < g_list_length(stickynotes->notes); i++) { - WnckWindow *wnck_win; - gulong xid = 0; - - /* Access the current note in the list */ - StickyNote *note = g_list_nth_data(stickynotes->notes, i); - - /* Retrieve the window size of the note */ - gchar *w_str = g_strdup_printf("%d", note->w); - gchar *h_str = g_strdup_printf("%d", note->h); - - /* Retrieve the window position of the note */ - gchar *x_str = g_strdup_printf("%d", note->x); - gchar *y_str = g_strdup_printf("%d", note->y); - - xid = GDK_WINDOW_XID (gtk_widget_get_window (note->w_window)); - wnck_win = wnck_window_get (xid); - - if (!g_settings_get_boolean (stickynotes->settings, "sticky") && - wnck_win) - note->workspace = 1 + - wnck_workspace_get_number ( - wnck_window_get_workspace (wnck_win)); - else - note->workspace = 0; - - /* Retrieve the title of the note */ - title = gtk_label_get_text(GTK_LABEL(note->w_title)); - - /* Retrieve body contents of the note */ - buffer = gtk_text_view_get_buffer(GTK_TEXT_VIEW(note->w_body)); - - gtk_text_buffer_get_bounds(buffer, &start, &end); - body = gtk_text_iter_get_text(&start, &end); - - /* Save the note as a node in the XML document */ - { - xmlNodePtr node = xmlNewTextChild(root, NULL, XML_CHAR ("note"), - XML_CHAR (body)); - xmlNewProp(node, XML_CHAR ("title"), XML_CHAR (title)); - if (note->color) - xmlNewProp (node, XML_CHAR ("color"), XML_CHAR (note->color)); - if (note->font_color) - xmlNewProp (node, XML_CHAR ("font_color"), - XML_CHAR (note->font_color)); - if (note->font) - xmlNewProp (node, XML_CHAR ("font"), XML_CHAR (note->font)); - if (note->locked) - xmlNewProp (node, XML_CHAR ("locked"), XML_CHAR ("true")); - xmlNewProp (node, XML_CHAR ("x"), XML_CHAR (x_str)); - xmlNewProp (node, XML_CHAR ("y"), XML_CHAR (y_str)); - xmlNewProp (node, XML_CHAR ("w"), XML_CHAR (w_str)); - xmlNewProp (node, XML_CHAR ("h"), XML_CHAR (h_str)); - if (note->workspace > 0) - { - char *workspace_str; - - workspace_str = g_strdup_printf ("%i", - note->workspace); - xmlNewProp (node, XML_CHAR ("workspace"), XML_CHAR (workspace_str)); - g_free (workspace_str); - } - } - - /* Now that it has been saved, reset the modified flag */ - gtk_text_buffer_set_modified(buffer, FALSE); - - g_free(x_str); - g_free(y_str); - g_free(w_str); - g_free(h_str); - g_free(body); - } - - /* The XML file is $HOME/.config/mate/stickynotes-applet, most probably */ - { - gchar* path = g_build_filename(g_get_user_config_dir(), "mate", NULL); - gchar* file = g_build_filename(path, "stickynotes-applet.xml", NULL); - g_mkdir_with_parents(path, S_IRWXU); - g_free(path); - - xmlSaveFormatFile(file, doc, 1); - - g_free(file); - } - - xmlFreeDoc(doc); - - save_scheduled = FALSE; - - return FALSE; + const gchar *title; + GtkTextBuffer *buffer; + GtkTextIter start, end; + gchar *body; + gint i; + + /* Create a new XML document */ + xmlDocPtr doc = xmlNewDoc (XML_CHAR ("1.0")); + xmlNodePtr root = xmlNewDocNode (doc, NULL, XML_CHAR ("stickynotes"), NULL); + + xmlDocSetRootElement (doc, root); + xmlNewProp (root, XML_CHAR ("version"), XML_CHAR (VERSION)); +#ifdef GDK_WINDOWING_X11 + GdkDisplay *display = gdk_screen_get_display (gdk_screen_get_default()); + if (GDK_IS_X11_DISPLAY (display)) + { + WnckScreen *wnck_screen = wnck_screen_get_default (); + wnck_screen_force_update (wnck_screen); + } +#endif + /* For all sticky notes */ + for (i = 0; i < g_list_length (stickynotes->notes); i++) { + + /* Access the current note in the list */ + StickyNote *note = g_list_nth_data (stickynotes->notes, i); + + /* Retrieve the window size of the note */ + gchar *w_str = g_strdup_printf ("%d", note->w); + gchar *h_str = g_strdup_printf ("%d", note->h); + + /* Retrieve the window position of the note */ + gchar *x_str = g_strdup_printf ("%d", note->x); + gchar *y_str = g_strdup_printf ("%d", note->y); +#ifdef GDK_WINDOWING_X11 + if (GDK_IS_X11_DISPLAY(display)) + { + gulong xid = GDK_WINDOW_XID (gtk_widget_get_window (note->w_window)); + WnckWindow *wnck_win = wnck_window_get (xid); + + if (!g_settings_get_boolean (stickynotes->settings, "sticky") && wnck_win) + note->workspace = 1 + + wnck_workspace_get_number (wnck_window_get_workspace (wnck_win)); + else + note->workspace = 0; + } +#endif + /* Retrieve the title of the note */ + title = gtk_label_get_text (GTK_LABEL (note->w_title)); + + /* Retrieve body contents of the note */ + buffer = gtk_text_view_get_buffer (GTK_TEXT_VIEW (note->w_body)); + + gtk_text_buffer_get_bounds (buffer, &start, &end); + body = gtk_text_iter_get_text (&start, &end); + + /* Save the note as a node in the XML document */ + { + xmlNodePtr node = xmlNewTextChild (root, NULL, + XML_CHAR ("note"), + XML_CHAR (body)); + + xmlNewProp (node, XML_CHAR ("title"), + XML_CHAR (title)); + + if (note->color) + xmlNewProp (node, XML_CHAR ("color"), + XML_CHAR (note->color)); + + if (note->font_color) + xmlNewProp (node, XML_CHAR ("font_color"), + XML_CHAR (note->font_color)); + + if (note->font) + xmlNewProp (node, XML_CHAR ("font"), + XML_CHAR (note->font)); + + if (note->locked) + xmlNewProp (node, XML_CHAR ("locked"), + XML_CHAR ("true")); + + xmlNewProp (node, XML_CHAR ("x"), XML_CHAR (x_str)); + xmlNewProp (node, XML_CHAR ("y"), XML_CHAR (y_str)); + xmlNewProp (node, XML_CHAR ("w"), XML_CHAR (w_str)); + xmlNewProp (node, XML_CHAR ("h"), XML_CHAR (h_str)); + if (note->workspace > 0) { + char *workspace_str; + + workspace_str = g_strdup_printf ("%i", note->workspace); + xmlNewProp (node, XML_CHAR ("workspace"), XML_CHAR (workspace_str)); + g_free (workspace_str); + } + } + + /* Now that it has been saved, reset the modified flag */ + gtk_text_buffer_set_modified (buffer, FALSE); + + g_free (x_str); + g_free (y_str); + g_free (w_str); + g_free (h_str); + g_free (body); + } + + /* The XML file is $HOME/.config/mate/stickynotes-applet, + most probably */ + { + gchar* path = g_build_filename (g_get_user_config_dir (), + "mate", NULL); + gchar* file = g_build_filename (path, "stickynotes-applet.xml", + NULL); + g_mkdir_with_parents (path, S_IRWXU); + g_free (path); + + xmlSaveFormatFile (file, doc, 1); + + g_free (file); + } + + xmlFreeDoc (doc); + + save_scheduled = FALSE; + + return FALSE; } void stickynotes_save (void) { - /* If a save isn't already scheduled, save everything a minute from now. */ - if (!save_scheduled) { - g_timeout_add_seconds (60, (GSourceFunc) stickynotes_save_now, NULL); - save_scheduled = TRUE; - } + /* If a save isn't already scheduled, save everything a minute from now. */ + if (!save_scheduled) { + g_timeout_add_seconds (60, (GSourceFunc) stickynotes_save_now, NULL); + save_scheduled = TRUE; + } } /* Load all sticky notes from an XML configuration file */ void stickynotes_load (GdkScreen *screen) { - xmlDocPtr doc = NULL; - xmlNodePtr root; - xmlNodePtr node; - /* WnckScreen *wnck_screen; */ - GList *new_notes, *tmp1; /* Lists of StickyNote*'s */ - GList *new_nodes; /* Lists of xmlNodePtr's */ - int x, y, w, h; - - /* The XML file is $HOME/.config/mate/stickynotes-applet, most probably */ - { - gchar* file = g_build_filename(g_get_user_config_dir(), "mate", "stickynotes-applet.xml", NULL); - - if (g_file_test(file, G_FILE_TEST_EXISTS)) - { - /* load file */ - doc = xmlParseFile(file); - } - else - { - /* old one */ - g_free(file); - - file = g_build_filename(g_get_home_dir(), ".mate2", "stickynotes_applet", NULL); - - if (g_file_test(file, G_FILE_TEST_EXISTS)) - { - /* load file */ - doc = xmlParseFile(file); - } - } - - g_free(file); - } - - /* If the XML file does not exist, create a blank one */ - if (!doc) - { - stickynotes_save(); - return; - } - - /* If the XML file is corrupted/incorrect, create a blank one */ - root = xmlDocGetRootElement(doc); - if (!root || xmlStrcmp(root->name, XML_CHAR ("stickynotes"))) - { - xmlFreeDoc(doc); - stickynotes_save(); - return; - } - - node = root->xmlChildrenNode; - - /* For all children of the root node (ie all sticky notes) */ - new_notes = NULL; - new_nodes = NULL; - while (node) { - if (!xmlStrcmp(node->name, (const xmlChar *) "note")) - { - StickyNote *note; - - /* Retrieve and set the window size of the note */ - { - gchar *w_str = (gchar *)xmlGetProp (node, XML_CHAR ("w")); - gchar *h_str = (gchar *)xmlGetProp (node, XML_CHAR ("h")); - if (w_str && h_str) - { - w = atoi (w_str); - h = atoi (h_str); - } - else - { - w = 0; - h = 0; - } - - g_free (w_str); - g_free (h_str); - } - - /* Retrieve and set the window position of the note */ - { - gchar *x_str = (gchar *)xmlGetProp (node, XML_CHAR ("x")); - gchar *y_str = (gchar *)xmlGetProp (node, XML_CHAR ("y")); - - if (x_str && y_str) - { - x = atoi (x_str); - y = atoi (y_str); - } - else - { - x = -1; - y = -1; - } - - g_free (x_str); - g_free (y_str); - } - - /* Create a new note */ - note = stickynote_new_aux (screen, x, y, w, h); - stickynotes->notes = g_list_append (stickynotes->notes, - note); - new_notes = g_list_append (new_notes, note); - new_nodes = g_list_append (new_nodes, node); - - /* Retrieve and set title of the note */ - { - gchar *title = (gchar *)xmlGetProp(node, XML_CHAR ("title")); - if (title) - stickynote_set_title (note, title); - g_free (title); - } - - /* Retrieve and set the color of the note */ - { - gchar *color_str; - gchar *font_color_str; - - color_str = (gchar *)xmlGetProp (node, XML_CHAR ("color")); - font_color_str = (gchar *)xmlGetProp (node, XML_CHAR ("font_color")); - - if (color_str || font_color_str) - stickynote_set_color (note, - color_str, - font_color_str, - TRUE); - g_free (color_str); - g_free (font_color_str); - } - - /* Retrieve and set the font of the note */ - { - gchar *font_str = (gchar *)xmlGetProp (node, XML_CHAR ("font")); - if (font_str) - stickynote_set_font (note, font_str, - TRUE); - g_free (font_str); - } - - /* Retrieve the workspace */ - { - char *workspace_str; - - workspace_str = (gchar *)xmlGetProp (node, XML_CHAR ("workspace")); - if (workspace_str) - { - note->workspace = atoi (workspace_str); - g_free (workspace_str); - } - } - - /* Retrieve and set (if any) the body contents of the - * note */ - { - gchar *body = (gchar *)xmlNodeListGetString(doc, - node->xmlChildrenNode, 1); - if (body) { - GtkTextBuffer *buffer; - GtkTextIter start, end; - - buffer = gtk_text_view_get_buffer( - GTK_TEXT_VIEW(note->w_body)); - gtk_text_buffer_get_bounds( - buffer, &start, &end); - gtk_text_buffer_insert(buffer, - &start, body, -1); - } - g_free(body); - } - - /* Retrieve and set the locked state of the note, - * by default unlocked */ - { - gchar *locked = (gchar *)xmlGetProp(node, XML_CHAR ("locked")); - if (locked) - stickynote_set_locked(note, - !strcmp(locked, "true")); - g_free(locked); - } - } - - node = node->next; - } - - tmp1 = new_notes; - /* - wnck_screen = wnck_screen_get_default (); - wnck_screen_force_update (wnck_screen); - */ - - while (tmp1) - { - StickyNote *note = tmp1->data; - - stickynote_set_visible (note, stickynotes->visible); - tmp1 = tmp1->next; - } - - g_list_free (new_notes); - g_list_free (new_nodes); - - xmlFreeDoc(doc); + xmlDocPtr doc = NULL; + xmlNodePtr root; + xmlNodePtr node; + GList *new_notes, *tmp1; /* Lists of StickyNote*'s */ + GList *new_nodes; /* Lists of xmlNodePtr's */ + int x, y, w, h; +#ifdef GDK_WINDOWING_X11 + GdkDisplay *display = gdk_screen_get_display (gdk_screen_get_default()); +#endif + + /* The XML file is $HOME/.config/mate/stickynotes-applet, most probably */ + gchar* file = g_build_filename (g_get_user_config_dir (), + "mate", "stickynotes-applet.xml", NULL); + + if (g_file_test (file, G_FILE_TEST_EXISTS)) { + /* load file */ + doc = xmlParseFile (file); + } else { + /* old one */ + g_free (file); + + file = g_build_filename (g_get_home_dir (), + ".mate2", "stickynotes_applet", NULL); + + if (g_file_test (file, G_FILE_TEST_EXISTS)) { + /* load file */ + doc = xmlParseFile (file); + } + } + g_free (file); + + /* If the XML file does not exist, create a blank one */ + if (!doc) { + stickynotes_save (); + return; + } + + /* If the XML file is corrupted/incorrect, create a blank one */ + root = xmlDocGetRootElement (doc); + if (!root || xmlStrcmp (root->name, XML_CHAR ("stickynotes"))) { + xmlFreeDoc (doc); + stickynotes_save (); + return; + } + + node = root->xmlChildrenNode; + + /* For all children of the root node (ie all sticky notes) */ + new_notes = NULL; + new_nodes = NULL; + while (node) { + if (!xmlStrcmp (node->name, (const xmlChar *) "note")) { + StickyNote *note; + + /* Retrieve and set the window size of the note */ + { + gchar *w_str = (gchar *)xmlGetProp (node, XML_CHAR ("w")); + gchar *h_str = (gchar *)xmlGetProp (node, XML_CHAR ("h")); + if (w_str && h_str) { + w = atoi (w_str); + h = atoi (h_str); + } else { + w = 0; + h = 0; + } + + g_free (w_str); + g_free (h_str); + } + + /* Retrieve and set the window position of the note */ + { + gchar *x_str = (gchar *)xmlGetProp (node, XML_CHAR ("x")); + gchar *y_str = (gchar *)xmlGetProp (node, XML_CHAR ("y")); + + if (x_str && y_str) { + x = atoi (x_str); + y = atoi (y_str); + } else { + x = -1; + y = -1; + } + + g_free (x_str); + g_free (y_str); + } + + /* Create a new note */ + note = stickynote_new_aux (screen, x, y, w, h); + stickynotes->notes = g_list_append (stickynotes->notes, + note); + new_notes = g_list_append (new_notes, note); + new_nodes = g_list_append (new_nodes, node); + + /* Retrieve and set title of the note */ + { + gchar *title = (gchar *)xmlGetProp (node, + XML_CHAR ("title")); + if (title) + stickynote_set_title (note, title); + + g_free (title); + } + + /* Retrieve and set the color of the note */ + { + gchar *color_str; + gchar *font_color_str; + + color_str = (gchar *)xmlGetProp (node, XML_CHAR ("color")); + font_color_str = (gchar *)xmlGetProp (node, XML_CHAR ("font_color")); + + if (color_str || font_color_str) + stickynote_set_color (note, + color_str, + font_color_str, + TRUE); + + g_free (color_str); + g_free (font_color_str); + } + + /* Retrieve and set the font of the note */ + { + gchar *font_str = (gchar *)xmlGetProp (node, + XML_CHAR ("font")); + if (font_str) + stickynote_set_font (note, font_str, TRUE); + + g_free (font_str); + } + + /* Retrieve the workspace */ + { + char *workspace_str; + + workspace_str = (gchar *)xmlGetProp (node, + XML_CHAR ("workspace")); + if (workspace_str) { + note->workspace = atoi (workspace_str); + g_free (workspace_str); + } + } + + /* Retrieve and set (if any) the body contents of the + * note */ + { + gchar *body = (gchar *)xmlNodeListGetString (doc, + node->xmlChildrenNode, + 1); + if (body) { + GtkTextBuffer *buffer; + GtkTextIter start, end; + + buffer = gtk_text_view_get_buffer (GTK_TEXT_VIEW (note->w_body)); + gtk_text_buffer_get_bounds (buffer, + &start, &end); + gtk_text_buffer_insert (buffer, + &start, body, -1); + } + g_free (body); + } + + /* Retrieve and set the locked state of the note, + * by default unlocked */ + { + gchar *locked = (gchar *)xmlGetProp (node, + XML_CHAR ("locked")); + if (locked) + stickynote_set_locked (note, + !strcmp (locked, + "true")); + g_free (locked); + } + } + + node = node->next; + } + + tmp1 = new_notes; + +#ifdef GDK_WINDOWING_X11 + if (GDK_IS_X11_DISPLAY(display)) + { + WnckScreen *wnck_screen = wnck_screen_get_default (); + wnck_screen_force_update (wnck_screen); + } +#endif + while (tmp1) { + StickyNote *note = tmp1->data; + + stickynote_set_visible (note, stickynotes->visible); + tmp1 = tmp1->next; + } + + g_list_free (new_notes); + g_list_free (new_nodes); + + xmlFreeDoc (doc); } diff --git a/stickynotes/stickynotes.h b/stickynotes/stickynotes.h index e5a969b4..5f42abfa 100644 --- a/stickynotes/stickynotes.h +++ b/stickynotes/stickynotes.h @@ -24,75 +24,78 @@ #include <libwnck/libwnck.h> #include <stickynotes_applet.h> -#include <gtksourceview/gtksource.h> - typedef struct { - GtkWidget *w_window; /* Sticky Note window */ - GtkWidget *w_menu; /* Sticky Note menu */ - GtkWidget *w_properties; /* Sticky Note properties dialog */ - - GtkWidget *w_entry; /* Sticky Note title entry */ - GtkWidget *w_color; /* Sticky Note color picker */ - GtkWidget *w_color_label; /* Sticky Note color label */ - GtkWidget *w_font_color; /* Sticky Note font color picker */ - GtkWidget *w_font_color_label; /* Sticky Note font color label */ - GtkWidget *w_font; /* Sticky Note font picker */ - GtkWidget *w_font_label; /* Sticky Note font label */ - GtkWidget *w_def_color; /* Sticky Note default color setting */ - GtkWidget *w_def_font; /* Sticky Note default font setting */ - - GtkWidget *w_title; /* Sticky Note title */ - GtkWidget *w_body; /* Sticky Note text body */ - GtkWidget *w_scroller; /* Sticky Note scroller */ - GtkWidget *w_lock; /* Sticky Note lock button */ - GtkWidget *w_close; /* Sticky Note close button */ - GtkWidget *w_resize_se; /* Sticky Note resize button (south east) */ - GtkWidget *w_resize_sw; /* Sticky Note resize button (south west) */ - - GtkSourceBuffer *buffer; /* Sticky Note text buffer for undo/redo */ - - GtkToggleAction *ta_lock_toggle_item; /* Lock item in the popup menu */ - - GtkImage *img_lock; /* Lock image */ - GtkImage *img_close; /* Close image */ - GtkImage *img_resize_se; /* SE resize image */ - GtkImage *img_resize_sw; /* SW resize image */ - - gchar *color; /* Note color */ - gchar *font_color; /* Font color */ - gchar *font; /* Note font */ - gboolean locked; /* Note locked state */ - - gint x; /* Note x-coordinate */ - gint y; /* Note y-coordinate */ - gint w; /* Note width */ - gint h; /* Note height */ - - int workspace; /* Workspace the note is on */ + GtkWidget *w_window; /* Sticky Note window */ + GtkWidget *w_menu; /* Sticky Note menu */ + GtkWidget *w_properties; /* Sticky Note properties dialog */ + + GtkWidget *w_entry; /* Sticky Note title entry */ + GtkWidget *w_color; /* Sticky Note color picker */ + GtkWidget *w_color_label; /* Sticky Note color label */ + GtkWidget *w_font_color; /* Sticky Note font color picker */ + GtkWidget *w_font_color_label; /* Sticky Note font color label */ + GtkWidget *w_font; /* Sticky Note font picker */ + GtkWidget *w_font_label; /* Sticky Note font label */ + GtkWidget *w_def_color; /* Sticky Note default color setting */ + GtkWidget *w_def_font; /* Sticky Note default font setting */ + + GtkWidget *w_title; /* Sticky Note title */ + GtkWidget *w_body; /* Sticky Note text body */ + GtkWidget *w_scroller; /* Sticky Note scroller */ + GtkWidget *w_lock; /* Sticky Note lock button */ + GtkWidget *w_close; /* Sticky Note close button */ + GtkWidget *w_resize_se; /* Sticky Note resize button (south east) */ + GtkWidget *w_resize_sw; /* Sticky Note resize button (south west) */ + + GtkTextBuffer *buffer; /* Sticky Note text buffer for undo/redo */ + + GtkCheckMenuItem *w_lock_toggle_item; /* Lock item in the popup menu */ + + GtkImage *img_lock; /* Lock image */ + GtkImage *img_close; /* Close image */ + GtkImage *img_resize_se; /* SE resize image */ + GtkImage *img_resize_sw; /* SW resize image */ + + gchar *color; /* Note color */ + gchar *font_color; /* Font color */ + gchar *font; /* Note font */ + gboolean locked; /* Note locked state */ + + gint x; /* Note x-coordinate */ + gint y; /* Note y-coordinate */ + gint w; /* Note width */ + gint h; /* Note height */ + + int workspace; /* Workspace the note is on */ } StickyNote; -StickyNote * stickynote_new(GdkScreen *screen); -void stickynote_free(StickyNote *note); +StickyNote * stickynote_new (GdkScreen *screen); +void stickynote_free (StickyNote *note); -gboolean stickynote_get_empty(const StickyNote *note); +gboolean stickynote_get_empty (const StickyNote *note); -void stickynote_set_title(StickyNote *note, const gchar* title); +void stickynote_set_title (StickyNote *note, + const gchar *title); void stickynote_set_color (StickyNote *note, - const gchar *color_str, - const gchar *font_color_str, - gboolean save); -void stickynote_set_font(StickyNote *note, const gchar* font_str, gboolean save); -void stickynote_set_locked(StickyNote *note, gboolean locked); -void stickynote_set_visible(StickyNote *note, gboolean visible); - -void stickynote_change_properties(StickyNote *note); - -void stickynotes_add(GdkScreen *screen); -void stickynotes_remove(StickyNote *note); -void stickynotes_save(void); + const gchar *color_str, + const gchar *font_color_str, + gboolean save); +void stickynote_set_font (StickyNote *note, + const gchar *font_str, + gboolean save); +void stickynote_set_locked (StickyNote *note, + gboolean locked); +void stickynote_set_visible (StickyNote *note, + gboolean visible); + +void stickynote_change_properties (StickyNote *note); + +void stickynotes_add (GdkScreen *screen); +void stickynotes_remove (StickyNote *note); +void stickynotes_save (void); gboolean stickynotes_save_now (void); -void stickynotes_load(GdkScreen *screen); +void stickynotes_load (GdkScreen *screen); #endif /* __STICKYNOTES_H__ */ diff --git a/stickynotes/stickynotes_applet.c b/stickynotes/stickynotes_applet.c index e00ba0c9..0fb9b6a9 100644 --- a/stickynotes/stickynotes_applet.c +++ b/stickynotes/stickynotes_applet.c @@ -31,598 +31,646 @@ StickyNotes *stickynotes = NULL; /* Popup menu on the applet */ static const GtkActionEntry stickynotes_applet_menu_actions[] = { - { "new_note", "document-new", N_("_New Note"), - NULL, NULL, - G_CALLBACK (menu_new_note_cb) }, - { "hide_notes", NULL, N_("Hi_de Notes"), - NULL, NULL, - G_CALLBACK (menu_hide_notes_cb) }, - { "destroy_all", "edit-delete", N_("_Delete Notes"), - NULL, NULL, - G_CALLBACK (menu_destroy_all_cb) }, - { "preferences", "document-properties", N_("_Preferences"), - NULL, NULL, - G_CALLBACK (menu_preferences_cb) }, - { "help", "help-browser", N_("_Help"), - NULL, NULL, - G_CALLBACK (menu_help_cb) }, - { "about", "help-about", N_("_About"), - NULL, NULL, - G_CALLBACK (menu_about_cb) } + { "new_note", "document-new", N_("_New Note"), + NULL, NULL, + G_CALLBACK (menu_new_note_cb) }, + { "hide_notes", NULL, N_("Hi_de Notes"), + NULL, NULL, + G_CALLBACK (menu_hide_notes_cb) }, + { "destroy_all", "edit-delete", N_("_Delete Notes"), + NULL, NULL, + G_CALLBACK (menu_destroy_all_cb) }, + { "preferences", "document-properties", N_("_Preferences"), + NULL, NULL, + G_CALLBACK (menu_preferences_cb) }, + { "help", "help-browser", N_("_Help"), + NULL, NULL, + G_CALLBACK (menu_help_cb) }, + { "about", "help-about", N_("_About"), + NULL, NULL, + G_CALLBACK (menu_about_cb) } }; static const GtkToggleActionEntry stickynotes_applet_menu_toggle_actions[] = { - { "lock", NULL, N_("_Lock Notes"), - NULL, NULL, - G_CALLBACK (menu_toggle_lock_cb), FALSE } + { "lock", NULL, N_("_Lock Notes"), + NULL, NULL, + G_CALLBACK (menu_toggle_lock_cb), FALSE } }; /* Sticky Notes applet factory */ -static gboolean stickynotes_applet_factory(MatePanelApplet *mate_panel_applet, const gchar *iid, gpointer data) +static gboolean +stickynotes_applet_factory (MatePanelApplet *mate_panel_applet, + const gchar *iid, + gpointer data) { - if (!strcmp(iid, "StickyNotesApplet")) { - if (!stickynotes) - stickynotes_applet_init (mate_panel_applet); + if (!strcmp (iid, "StickyNotesApplet")) { + if (!stickynotes) + stickynotes_applet_init (mate_panel_applet); - mate_panel_applet_set_flags (mate_panel_applet, MATE_PANEL_APPLET_EXPAND_MINOR); + mate_panel_applet_set_flags (mate_panel_applet, MATE_PANEL_APPLET_EXPAND_MINOR); - /* Add applet to linked list of all applets */ - stickynotes->applets = g_list_append (stickynotes->applets, stickynotes_applet_new(mate_panel_applet)); + /* Add applet to linked list of all applets */ + stickynotes->applets = g_list_append (stickynotes->applets, + stickynotes_applet_new (mate_panel_applet)); - stickynotes_applet_update_menus (); - stickynotes_applet_update_tooltips (); + stickynotes_applet_update_menus (); + stickynotes_applet_update_tooltips (); - return TRUE; - } + return TRUE; + } - return FALSE; + return FALSE; } /* Sticky Notes applet factory */ -MATE_PANEL_APPLET_OUT_PROCESS_FACTORY("StickyNotesAppletFactory", PANEL_TYPE_APPLET, "stickynotes_applet", - stickynotes_applet_factory, NULL) +PANEL_APPLET_FACTORY ("StickyNotesAppletFactory", + PANEL_TYPE_APPLET, + "stickynotes_applet", + stickynotes_applet_factory, + NULL) /* colorshift a surface */ static void -stickynotes_make_prelight_icon (cairo_surface_t *dest, cairo_surface_t *src, int shift) +stickynotes_make_prelight_icon (cairo_surface_t *dest, + cairo_surface_t *src, + int shift) { - gint i, j; - gint width, height, has_alpha, srcrowstride, destrowstride; - guchar *target_pixels; - guchar *original_pixels; - guchar *pixsrc; - guchar *pixdest; - int val; - guchar r,g,b; - - has_alpha = cairo_surface_get_content (src) != CAIRO_CONTENT_COLOR; - width = cairo_image_surface_get_width (src); - height = cairo_image_surface_get_height (src); - srcrowstride = cairo_image_surface_get_stride (src); - destrowstride = cairo_image_surface_get_stride (dest); - original_pixels = cairo_image_surface_get_data (src); - target_pixels = cairo_image_surface_get_data (dest); - - for (i = 0; i < height; i++) { - pixdest = target_pixels + i*destrowstride; - pixsrc = original_pixels + i*srcrowstride; - for (j = 0; j < width; j++) { - r = *(pixsrc++); - g = *(pixsrc++); - b = *(pixsrc++); - val = r + shift; - *(pixdest++) = CLAMP(val, 0, 255); - val = g + shift; - *(pixdest++) = CLAMP(val, 0, 255); - val = b + shift; - *(pixdest++) = CLAMP(val, 0, 255); - if (has_alpha) - *(pixdest++) = *(pixsrc++); - } - } + gint i, j; + gint width, height, has_alpha, srcrowstride, destrowstride; + guchar *target_pixels; + guchar *original_pixels; + guchar *pixsrc; + guchar *pixdest; + int val; + guchar r,g,b; + + has_alpha = cairo_surface_get_content (src) != CAIRO_CONTENT_COLOR; + width = cairo_image_surface_get_width (src); + height = cairo_image_surface_get_height (src); + srcrowstride = cairo_image_surface_get_stride (src); + destrowstride = cairo_image_surface_get_stride (dest); + original_pixels = cairo_image_surface_get_data (src); + target_pixels = cairo_image_surface_get_data (dest); + + for (i = 0; i < height; i++) { + pixdest = target_pixels + i*destrowstride; + pixsrc = original_pixels + i*srcrowstride; + for (j = 0; j < width; j++) { + r = *(pixsrc++); + g = *(pixsrc++); + b = *(pixsrc++); + val = r + shift; + *(pixdest++) = CLAMP (val, 0, 255); + val = g + shift; + *(pixdest++) = CLAMP (val, 0, 255); + val = b + shift; + *(pixdest++) = CLAMP (val, 0, 255); + if (has_alpha) + *(pixdest++) = *(pixsrc++); + } + } } static void icon_theme_changed (GtkIconTheme *icon_theme, gpointer user_data) { - gtk_icon_theme_append_search_path (icon_theme, - PKG_DATA_DIR G_DIR_SEPARATOR_S "icons"); + gtk_icon_theme_append_search_path (icon_theme, + PKG_DATA_DIR G_DIR_SEPARATOR_S "icons"); } static void stickynotes_applet_init_icons (void) { - GtkIconTheme *icon_theme; + GtkIconTheme *icon_theme; - icon_theme = gtk_icon_theme_get_default (); - icon_theme_changed (icon_theme, NULL); + icon_theme = gtk_icon_theme_get_default (); + icon_theme_changed (icon_theme, NULL); - g_signal_connect (gtk_icon_theme_get_default (), "changed", - G_CALLBACK (icon_theme_changed), NULL); + g_signal_connect (gtk_icon_theme_get_default (), "changed", + G_CALLBACK (icon_theme_changed), NULL); } static void stickynotes_destroy (GtkWidget *widget, gpointer user_dta) { - g_signal_handlers_disconnect_by_func (gtk_icon_theme_get_default (), - icon_theme_changed, NULL); + g_signal_handlers_disconnect_by_func (gtk_icon_theme_get_default (), + icon_theme_changed, NULL); } /* Create and initalize global sticky notes instance */ void stickynotes_applet_init (MatePanelApplet *mate_panel_applet) { - cairo_t *cr; - gint size, scale; - - stickynotes = g_new(StickyNotes, 1); - - stickynotes->notes = NULL; - stickynotes->applets = NULL; - stickynotes->last_timeout_data = 0; - - size = mate_panel_applet_get_size (mate_panel_applet); - scale = gtk_widget_get_scale_factor (GTK_WIDGET (mate_panel_applet)); - - g_set_application_name (_("Sticky Notes")); - gtk_window_set_default_icon_name ("mate-sticky-notes-applet"); - - stickynotes->icon_normal = gtk_icon_theme_load_surface ( - gtk_icon_theme_get_default (), - "mate-sticky-notes-applet", - size, scale, NULL, 0, NULL); - - stickynotes->icon_prelight = cairo_surface_create_similar (stickynotes->icon_normal, - cairo_surface_get_content (stickynotes->icon_normal), - cairo_image_surface_get_width (stickynotes->icon_normal), - cairo_image_surface_get_height (stickynotes->icon_normal)); - - stickynotes_make_prelight_icon (stickynotes->icon_prelight, stickynotes->icon_normal, 30); - - cr = cairo_create (stickynotes->icon_prelight); - cairo_set_operator (cr, CAIRO_OPERATOR_DEST_IN); - cairo_mask_surface (cr, stickynotes->icon_normal, 0, 0); - - stickynotes->settings = g_settings_new (STICKYNOTES_SCHEMA); - stickynotes->visible = TRUE; - - stickynotes_applet_init_icons(); - stickynotes_applet_init_prefs(); - - /* Watch GSettings values */ - g_signal_connect (stickynotes->settings, "changed", - G_CALLBACK (preferences_apply_cb), NULL); - - /* Max height for large notes*/ - stickynotes->max_height = 0.8 * HeightOfScreen (gdk_x11_screen_get_xscreen (gdk_screen_get_default ())); - - /* Load sticky notes */ - stickynotes_load (gtk_widget_get_screen (GTK_WIDGET (mate_panel_applet))); - - install_check_click_on_desktop (); + cairo_t *cr; + gint size, scale; + int screen_height; + GdkScreen *screen; + + stickynotes = g_new (StickyNotes, 1); + + stickynotes->notes = NULL; + stickynotes->applets = NULL; + stickynotes->last_timeout_data = 0; + + size = mate_panel_applet_get_size (mate_panel_applet); + scale = gtk_widget_get_scale_factor (GTK_WIDGET (mate_panel_applet)); + +#ifndef ENABLE_IN_PROCESS + g_set_application_name (_("Sticky Notes")); +#endif + gtk_window_set_default_icon_name ("mate-sticky-notes-applet"); + + stickynotes->icon_normal = + gtk_icon_theme_load_surface (gtk_icon_theme_get_default (), + "mate-sticky-notes-applet", + size, scale, NULL, 0, NULL); + + stickynotes->icon_prelight = + cairo_surface_create_similar (stickynotes->icon_normal, + cairo_surface_get_content (stickynotes->icon_normal), + cairo_image_surface_get_width (stickynotes->icon_normal), + cairo_image_surface_get_height (stickynotes->icon_normal)); + + stickynotes_make_prelight_icon (stickynotes->icon_prelight, + stickynotes->icon_normal, 30); + + cr = cairo_create (stickynotes->icon_prelight); + cairo_set_operator (cr, CAIRO_OPERATOR_DEST_IN); + cairo_mask_surface (cr, stickynotes->icon_normal, 0, 0); + + stickynotes->settings = g_settings_new (STICKYNOTES_SCHEMA); + stickynotes->visible = TRUE; + + stickynotes_applet_init_icons (); + stickynotes_applet_init_prefs (); + + /* Watch GSettings values */ + g_signal_connect (stickynotes->settings, "changed", + G_CALLBACK (preferences_apply_cb), NULL); + + /* Max height for large notes in x11 only + * In wayland we do not have access to global screen dimensions + */ + + screen = gtk_widget_get_screen (GTK_WIDGET (mate_panel_applet)); +#ifdef GDK_WINDOWING_X11 + if (GDK_IS_X11_DISPLAY (gdk_screen_get_display (screen))) + screen_height = HeightOfScreen (gdk_x11_screen_get_xscreen (screen)) / scale; + + else + { + /*No root window or primary monitor in wayland unless compositors add it back*/ + GdkRectangle geometry = {0}; + GdkMonitor *monitor; + monitor = gdk_display_get_monitor (gdk_screen_get_display (screen), 0); + gdk_monitor_get_geometry (monitor, &geometry); + screen_height = geometry.height; + } +#endif + + stickynotes->max_height = (int) (0.8 * (double) screen_height); + + /* Load sticky notes */ + stickynotes_load (screen); + + install_check_click_on_desktop (screen); } -void stickynotes_applet_init_prefs(void) +void +stickynotes_applet_init_prefs (void) { - stickynotes->builder = gtk_builder_new (); - - gtk_builder_add_from_resource (stickynotes->builder, GRESOURCE "sticky-notes-preferences.ui", NULL); - - stickynotes->w_prefs = GTK_WIDGET (gtk_builder_get_object (stickynotes->builder, - "preferences_dialog")); - - stickynotes->w_prefs_width = gtk_spin_button_get_adjustment ( - GTK_SPIN_BUTTON (gtk_builder_get_object ( - stickynotes->builder, "width_spin"))); - stickynotes->w_prefs_height = gtk_spin_button_get_adjustment ( - GTK_SPIN_BUTTON (gtk_builder_get_object ( - stickynotes->builder, "height_spin"))); - stickynotes->w_prefs_color = GTK_WIDGET (gtk_builder_get_object (stickynotes->builder, - "default_color")); - stickynotes->w_prefs_font_color = GTK_WIDGET (gtk_builder_get_object (stickynotes->builder, - "prefs_font_color")); - stickynotes->w_prefs_sys_color = GTK_WIDGET (>K_CHECK_BUTTON ( - gtk_builder_get_object (stickynotes->builder, - "sys_color_check"))->toggle_button); - stickynotes->w_prefs_font = GTK_WIDGET (gtk_builder_get_object (stickynotes->builder, - "default_font")); - stickynotes->w_prefs_sys_font = GTK_WIDGET (>K_CHECK_BUTTON ( - gtk_builder_get_object (stickynotes->builder, - "sys_font_check"))->toggle_button); - stickynotes->w_prefs_sticky = GTK_WIDGET (>K_CHECK_BUTTON ( - gtk_builder_get_object (stickynotes->builder, - "sticky_check"))->toggle_button); - stickynotes->w_prefs_force = GTK_WIDGET (>K_CHECK_BUTTON ( - gtk_builder_get_object (stickynotes->builder, - "force_default_check"))->toggle_button); - stickynotes->w_prefs_desktop = GTK_WIDGET (>K_CHECK_BUTTON ( - gtk_builder_get_object (stickynotes->builder, - "desktop_hide_check"))->toggle_button); - - g_signal_connect (G_OBJECT (stickynotes->w_prefs), "response", - G_CALLBACK (preferences_response_cb), NULL); - g_signal_connect (G_OBJECT (stickynotes->w_prefs), "delete-event", - G_CALLBACK (preferences_delete_cb), NULL); - g_signal_connect_swapped (G_OBJECT (stickynotes->w_prefs_width), - "value-changed", - G_CALLBACK (preferences_save_cb), NULL); - g_signal_connect_swapped (G_OBJECT (stickynotes->w_prefs_height), - "value-changed", - G_CALLBACK (preferences_save_cb), NULL); - g_signal_connect_swapped (G_OBJECT (stickynotes->w_prefs_sys_color), - "toggled", - G_CALLBACK (preferences_save_cb), NULL); - g_signal_connect_swapped (G_OBJECT(stickynotes->w_prefs_sys_font), - "toggled", G_CALLBACK (preferences_save_cb), NULL); - g_signal_connect (G_OBJECT (stickynotes->w_prefs_color), - "color-set", G_CALLBACK (preferences_color_cb), NULL); - g_signal_connect (G_OBJECT (stickynotes->w_prefs_font_color), - "color-set", G_CALLBACK (preferences_color_cb), NULL); - g_signal_connect (G_OBJECT (stickynotes->w_prefs_font), - "font-set", G_CALLBACK (preferences_font_cb), NULL); - g_signal_connect_swapped (G_OBJECT (stickynotes->w_prefs_sticky), - "toggled", G_CALLBACK (preferences_save_cb), NULL); - g_signal_connect_swapped (G_OBJECT (stickynotes->w_prefs_force), - "toggled", G_CALLBACK (preferences_save_cb), NULL); - g_signal_connect_swapped (G_OBJECT (stickynotes->w_prefs_desktop), - "toggled", G_CALLBACK (preferences_save_cb), NULL); - - { - GtkSizeGroup *group = gtk_size_group_new(GTK_SIZE_GROUP_HORIZONTAL); - - gtk_size_group_add_widget(group, GTK_WIDGET (gtk_builder_get_object (stickynotes->builder, "width_label"))); - gtk_size_group_add_widget(group, GTK_WIDGET (gtk_builder_get_object (stickynotes->builder, "height_label"))); - gtk_size_group_add_widget(group, GTK_WIDGET (gtk_builder_get_object (stickynotes->builder, "prefs_color_label"))); - - g_object_unref(group); - } - - if (!g_settings_is_writable (stickynotes->settings, "default-width")) - { - gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object ( - stickynotes->builder, "width_label")), - FALSE); - gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object ( - stickynotes->builder, "width_spin")), - FALSE); - } - if (!g_settings_is_writable (stickynotes->settings, "default-height")) - { - gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object ( - stickynotes->builder, "height_label")), - FALSE); - gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object ( - stickynotes->builder, "height_spin")), - FALSE); - } - if (!g_settings_is_writable (stickynotes->settings, "default-color")) - { - gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object ( - stickynotes->builder, "prefs_color_label")), - FALSE); - gtk_widget_set_sensitive (stickynotes->w_prefs_color, FALSE); - } - if (!g_settings_is_writable (stickynotes->settings, "default-font-color")) - { - gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object ( - stickynotes->builder, "prefs_font_color_label")), - FALSE); - gtk_widget_set_sensitive (stickynotes->w_prefs_font_color, - FALSE); - } - if (!g_settings_is_writable (stickynotes->settings, "use-system-color")) - gtk_widget_set_sensitive (stickynotes->w_prefs_sys_color, - FALSE); - if (!g_settings_is_writable (stickynotes->settings, "default-font")) - { - gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object ( - stickynotes->builder, "prefs_font_label")), - FALSE); - gtk_widget_set_sensitive (stickynotes->w_prefs_font, FALSE); - } - if (!g_settings_is_writable (stickynotes->settings, "use-system-font")) - gtk_widget_set_sensitive (stickynotes->w_prefs_sys_font, - FALSE); - if (!g_settings_is_writable (stickynotes->settings, "sticky")) - gtk_widget_set_sensitive (stickynotes->w_prefs_sticky, FALSE); - if (!g_settings_is_writable (stickynotes->settings, "force-default")) - gtk_widget_set_sensitive (stickynotes->w_prefs_force, FALSE); - - stickynotes_applet_update_prefs(); + stickynotes->builder = gtk_builder_new (); + + gtk_builder_add_from_resource (stickynotes->builder, + GRESOURCE "sticky-notes-preferences.ui", + NULL); + + stickynotes->w_prefs = + GTK_WIDGET (gtk_builder_get_object (stickynotes->builder, + "preferences_dialog")); + + stickynotes->w_prefs_width = + gtk_spin_button_get_adjustment (GTK_SPIN_BUTTON (gtk_builder_get_object (stickynotes->builder, + "width_spin"))); + stickynotes->w_prefs_height = + gtk_spin_button_get_adjustment (GTK_SPIN_BUTTON (gtk_builder_get_object (stickynotes->builder, + "height_spin"))); + stickynotes->w_prefs_color = + GTK_WIDGET (gtk_builder_get_object (stickynotes->builder, + "default_color")); + stickynotes->w_prefs_font_color = + GTK_WIDGET (gtk_builder_get_object (stickynotes->builder, + "prefs_font_color")); + stickynotes->w_prefs_sys_color = + GTK_WIDGET (>K_CHECK_BUTTON (gtk_builder_get_object (stickynotes->builder, + "sys_color_check"))->toggle_button); + stickynotes->w_prefs_font = + GTK_WIDGET (gtk_builder_get_object (stickynotes->builder, + "default_font")); + stickynotes->w_prefs_sys_font = + GTK_WIDGET (>K_CHECK_BUTTON (gtk_builder_get_object (stickynotes->builder, + "sys_font_check"))->toggle_button); + stickynotes->w_prefs_sticky = + GTK_WIDGET (>K_CHECK_BUTTON (gtk_builder_get_object (stickynotes->builder, + "sticky_check"))->toggle_button); + stickynotes->w_prefs_force = + GTK_WIDGET (>K_CHECK_BUTTON (gtk_builder_get_object (stickynotes->builder, + "force_default_check"))->toggle_button); + stickynotes->w_prefs_desktop = + GTK_WIDGET (>K_CHECK_BUTTON (gtk_builder_get_object (stickynotes->builder, + "desktop_hide_check"))->toggle_button); + + g_signal_connect (stickynotes->w_prefs, "response", + G_CALLBACK (preferences_response_cb), NULL); + g_signal_connect (stickynotes->w_prefs, "delete-event", + G_CALLBACK (preferences_delete_cb), NULL); + g_signal_connect_swapped (stickynotes->w_prefs_width, "value-changed", + G_CALLBACK (preferences_save_cb), NULL); + g_signal_connect_swapped (stickynotes->w_prefs_height, "value-changed", + G_CALLBACK (preferences_save_cb), NULL); + g_signal_connect_swapped (stickynotes->w_prefs_sys_color, "toggled", + G_CALLBACK (preferences_save_cb), NULL); + g_signal_connect_swapped (stickynotes->w_prefs_sys_font, "toggled", + G_CALLBACK (preferences_save_cb), NULL); + g_signal_connect (stickynotes->w_prefs_color, "color-set", + G_CALLBACK (preferences_color_cb), NULL); + g_signal_connect (stickynotes->w_prefs_font_color, "color-set", + G_CALLBACK (preferences_color_cb), NULL); + g_signal_connect (stickynotes->w_prefs_font, "font-set", + G_CALLBACK (preferences_font_cb), NULL); + g_signal_connect_swapped (stickynotes->w_prefs_sticky, "toggled", + G_CALLBACK (preferences_save_cb), NULL); + g_signal_connect_swapped (stickynotes->w_prefs_force, "toggled", + G_CALLBACK (preferences_save_cb), NULL); + g_signal_connect_swapped (stickynotes->w_prefs_desktop, "toggled", + G_CALLBACK (preferences_save_cb), NULL); + + { + GtkSizeGroup *group = gtk_size_group_new (GTK_SIZE_GROUP_HORIZONTAL); + + gtk_size_group_add_widget (group, + GTK_WIDGET (gtk_builder_get_object (stickynotes->builder, + "width_label"))); + gtk_size_group_add_widget (group, + GTK_WIDGET (gtk_builder_get_object (stickynotes->builder, + "height_label"))); + gtk_size_group_add_widget (group, + GTK_WIDGET (gtk_builder_get_object (stickynotes->builder, + "prefs_color_label"))); + + g_object_unref (group); + } + + if (!g_settings_is_writable (stickynotes->settings, "default-width")) { + gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (stickynotes->builder, + "width_label")), + FALSE); + gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (stickynotes->builder, + "width_spin")), + FALSE); + } + if (!g_settings_is_writable (stickynotes->settings, "default-height")) { + gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (stickynotes->builder, + "height_label")), + FALSE); + gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (stickynotes->builder, + "height_spin")), + FALSE); + } + if (!g_settings_is_writable (stickynotes->settings, "default-color")) { + gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (stickynotes->builder, + "prefs_color_label")), + FALSE); + gtk_widget_set_sensitive (stickynotes->w_prefs_color, FALSE); + } + if (!g_settings_is_writable (stickynotes->settings, "default-font-color")) { + gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (stickynotes->builder, + "prefs_font_color_label")), + FALSE); + gtk_widget_set_sensitive (stickynotes->w_prefs_font_color, FALSE); + } + if (!g_settings_is_writable (stickynotes->settings, "use-system-color")) + gtk_widget_set_sensitive (stickynotes->w_prefs_sys_color, FALSE); + if (!g_settings_is_writable (stickynotes->settings, "default-font")) { + gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (stickynotes->builder, + "prefs_font_label")), + FALSE); + gtk_widget_set_sensitive (stickynotes->w_prefs_font, FALSE); + } + if (!g_settings_is_writable (stickynotes->settings, "use-system-font")) + gtk_widget_set_sensitive (stickynotes->w_prefs_sys_font, FALSE); + if (!g_settings_is_writable (stickynotes->settings, "sticky")) + gtk_widget_set_sensitive (stickynotes->w_prefs_sticky, FALSE); + if (!g_settings_is_writable (stickynotes->settings, "force-default")) + gtk_widget_set_sensitive (stickynotes->w_prefs_force, FALSE); + + stickynotes_applet_update_prefs (); } /* Create a Sticky Notes applet */ StickyNotesApplet * -stickynotes_applet_new(MatePanelApplet *mate_panel_applet) +stickynotes_applet_new (MatePanelApplet *mate_panel_applet) { - AtkObject *atk_obj; - gchar *ui_path; - - /* Create Sticky Notes Applet */ - StickyNotesApplet *applet = g_new(StickyNotesApplet, 1); - - /* Initialize Sticky Notes Applet */ - applet->w_applet = GTK_WIDGET(mate_panel_applet); - applet->w_image = gtk_image_new(); - applet->destroy_all_dialog = NULL; - applet->prelighted = FALSE; - - applet->menu_tip = NULL; - - /* Expand the applet for Fitts' law complience. */ - mate_panel_applet_set_flags(mate_panel_applet, MATE_PANEL_APPLET_EXPAND_MINOR); - - /* Add the applet icon */ - gtk_container_add(GTK_CONTAINER(mate_panel_applet), applet->w_image); - applet->panel_size = mate_panel_applet_get_size (mate_panel_applet); - applet->panel_orient = mate_panel_applet_get_orient (mate_panel_applet); - stickynotes_applet_update_icon(applet); - - /* Add the popup menu */ - applet->action_group = gtk_action_group_new ("StickyNotes Applet Actions"); - gtk_action_group_set_translation_domain (applet->action_group, GETTEXT_PACKAGE); - gtk_action_group_add_actions (applet->action_group, - stickynotes_applet_menu_actions, - G_N_ELEMENTS (stickynotes_applet_menu_actions), - applet); - gtk_action_group_add_toggle_actions (applet->action_group, - stickynotes_applet_menu_toggle_actions, - G_N_ELEMENTS (stickynotes_applet_menu_toggle_actions), - applet); - ui_path = g_build_filename (STICKYNOTES_MENU_UI_DIR, "stickynotes-applet-menu.xml", NULL); - mate_panel_applet_setup_menu_from_file(mate_panel_applet, ui_path, applet->action_group); - g_free (ui_path); - - if (mate_panel_applet_get_locked_down (mate_panel_applet)) { - GtkAction *action; - - action = gtk_action_group_get_action (applet->action_group, "preferences"); - gtk_action_set_visible (action, FALSE); - } - - /* Connect all signals for applet management */ - g_signal_connect(G_OBJECT(applet->w_applet), "button-press-event", - G_CALLBACK(applet_button_cb), applet); - g_signal_connect(G_OBJECT(applet->w_applet), "key-press-event", - G_CALLBACK(applet_key_cb), applet); - g_signal_connect(G_OBJECT(applet->w_applet), "focus-in-event", - G_CALLBACK(applet_focus_cb), applet); - g_signal_connect(G_OBJECT(applet->w_applet), "focus-out-event", - G_CALLBACK(applet_focus_cb), applet); - g_signal_connect(G_OBJECT(applet->w_applet), "enter-notify-event", - G_CALLBACK(applet_cross_cb), applet); - g_signal_connect(G_OBJECT(applet->w_applet), "leave-notify-event", - G_CALLBACK(applet_cross_cb), applet); - g_signal_connect(G_OBJECT(applet->w_applet), "size-allocate", - G_CALLBACK(applet_size_allocate_cb), applet); - g_signal_connect(G_OBJECT(applet->w_applet), "change-orient", - G_CALLBACK(applet_change_orient_cb), applet); - g_signal_connect(G_OBJECT(applet->w_applet), "destroy", - G_CALLBACK(applet_destroy_cb), applet); - g_signal_connect(G_OBJECT(applet->w_applet), "destroy", - G_CALLBACK(stickynotes_destroy), NULL); - - mate_panel_applet_set_background_widget (mate_panel_applet, applet->w_applet); - - atk_obj = gtk_widget_get_accessible (applet->w_applet); - atk_object_set_name (atk_obj, _("Sticky Notes")); - - /* Show the applet */ - gtk_widget_show_all(GTK_WIDGET(applet->w_applet)); - - return applet; + AtkObject *atk_obj; + + /* Create Sticky Notes Applet */ + StickyNotesApplet *applet = g_new (StickyNotesApplet, 1); + + /* Initialize Sticky Notes Applet */ + applet->w_applet = GTK_WIDGET (mate_panel_applet); + applet->w_image = gtk_image_new (); + applet->destroy_all_dialog = NULL; + applet->prelighted = FALSE; + + applet->menu_tip = NULL; + + /* Expand the applet for Fitts' law complience. */ + mate_panel_applet_set_flags (mate_panel_applet, + MATE_PANEL_APPLET_EXPAND_MINOR); + + /* Add the applet icon */ + gtk_container_add (GTK_CONTAINER (mate_panel_applet), + applet->w_image); + applet->panel_size = mate_panel_applet_get_size (mate_panel_applet); + applet->panel_orient = mate_panel_applet_get_orient (mate_panel_applet); + stickynotes_applet_update_icon (applet); + + /* Add the popup menu */ + applet->action_group = gtk_action_group_new ("StickyNotes Applet Actions"); + gtk_action_group_set_translation_domain (applet->action_group, + GETTEXT_PACKAGE); + gtk_action_group_add_actions (applet->action_group, + stickynotes_applet_menu_actions, + G_N_ELEMENTS (stickynotes_applet_menu_actions), + applet); + gtk_action_group_add_toggle_actions (applet->action_group, + stickynotes_applet_menu_toggle_actions, + G_N_ELEMENTS (stickynotes_applet_menu_toggle_actions), + applet); + mate_panel_applet_setup_menu_from_resource (mate_panel_applet, + GRESOURCE "menu.xml", + applet->action_group); + + if (mate_panel_applet_get_locked_down (mate_panel_applet)) { + GtkAction *action; + + action = gtk_action_group_get_action (applet->action_group, + "preferences"); + gtk_action_set_visible (action, FALSE); + } + + /* Connect all signals for applet management */ + g_signal_connect (applet->w_applet, "button-press-event", + G_CALLBACK (applet_button_cb), applet); + g_signal_connect (applet->w_applet, "key-press-event", + G_CALLBACK (applet_key_cb), applet); + g_signal_connect (applet->w_applet, "focus-in-event", + G_CALLBACK (applet_focus_cb), applet); + g_signal_connect (applet->w_applet, "focus-out-event", + G_CALLBACK (applet_focus_cb), applet); + g_signal_connect (applet->w_applet, "enter-notify-event", + G_CALLBACK (applet_cross_cb), applet); + g_signal_connect (applet->w_applet, "leave-notify-event", + G_CALLBACK (applet_cross_cb), applet); + g_signal_connect (applet->w_applet, "size-allocate", + G_CALLBACK (applet_size_allocate_cb), applet); + g_signal_connect (applet->w_applet, "change-orient", + G_CALLBACK (applet_change_orient_cb), applet); + g_signal_connect (applet->w_applet, "destroy", + G_CALLBACK (applet_destroy_cb), applet); + g_signal_connect (applet->w_applet, "destroy", + G_CALLBACK (stickynotes_destroy), NULL); + + atk_obj = gtk_widget_get_accessible (applet->w_applet); + atk_object_set_name (atk_obj, _("Sticky Notes")); + + /* Show the applet */ + gtk_widget_show_all (applet->w_applet); + + return applet; } -void stickynotes_applet_update_icon(StickyNotesApplet *applet) +void +stickynotes_applet_update_icon (StickyNotesApplet *applet) { - cairo_t *cr; - cairo_surface_t *surface; + cairo_t *cr; + cairo_surface_t *surface; - gint size = applet->panel_size; + gint size = applet->panel_size; - if (size > 3) - size = size - 3; + if (size > 3) + size = size - 3; - /* Choose appropriate icon and size it */ - if (applet->prelighted) - surface = cairo_surface_create_similar (stickynotes->icon_prelight, - cairo_surface_get_content (stickynotes->icon_prelight), - size, size); - else - surface = cairo_surface_create_similar (stickynotes->icon_normal, - cairo_surface_get_content (stickynotes->icon_normal), - size, size); + /* Choose appropriate icon and size it */ + if (applet->prelighted) + surface = cairo_surface_create_similar (stickynotes->icon_prelight, + cairo_surface_get_content (stickynotes->icon_prelight), + size, size); + else + surface = cairo_surface_create_similar (stickynotes->icon_normal, + cairo_surface_get_content (stickynotes->icon_normal), + size, size); - cr = cairo_create (surface); - cairo_set_source_surface (cr, applet->prelighted ? stickynotes->icon_prelight : stickynotes->icon_normal, 0, 0); - cairo_paint (cr); + cr = cairo_create (surface); + cairo_set_source_surface (cr, applet->prelighted ? stickynotes->icon_prelight : stickynotes->icon_normal, 0, 0); + cairo_paint (cr); - /* Apply the finished surface to the applet image */ - gtk_image_set_from_surface(GTK_IMAGE(applet->w_image), surface); + /* Apply the finished surface to the applet image */ + gtk_image_set_from_surface (GTK_IMAGE (applet->w_image), surface); - cairo_surface_destroy(surface); + cairo_surface_destroy (surface); } void stickynotes_applet_update_prefs (void) { - gint width, height; - gboolean sys_color, sys_font, sticky, force_default, desktop_hide; - char *font_str; - char *color_str, *font_color_str; - GdkRGBA color, font_color; - - width = g_settings_get_int (stickynotes->settings, "default-width"); - width = MAX (width, 1); - height = g_settings_get_int (stickynotes->settings, "default-height"); - height = MAX (height, 1); - - sys_color = g_settings_get_boolean (stickynotes->settings, "use-system-color"); - sys_font = g_settings_get_boolean (stickynotes->settings, "use-system-font"); - sticky = g_settings_get_boolean (stickynotes->settings, "sticky"); - force_default = g_settings_get_boolean (stickynotes->settings, "force-default"); - desktop_hide = g_settings_get_boolean (stickynotes->settings, "desktop-hide"); - - font_str = g_settings_get_string (stickynotes->settings, "default-font"); - if (!font_str) - { - font_str = g_strdup ("Sans 10"); - } - - color_str = g_settings_get_string (stickynotes->settings, "default-color"); - if (!color_str) - { - color_str = g_strdup ("#ECF833"); - } - font_color_str = g_settings_get_string (stickynotes->settings, "default-font-color"); - if (!font_color_str) - { - font_color_str = g_strdup ("#000000"); - } - - gdk_rgba_parse (&color, color_str); - gdk_rgba_parse (&font_color, font_color_str); - - g_free (color_str); - g_free (font_color_str); - - gtk_adjustment_set_value (stickynotes->w_prefs_width, width); - gtk_adjustment_set_value (stickynotes->w_prefs_height, height); - gtk_toggle_button_set_active ( - GTK_TOGGLE_BUTTON (stickynotes->w_prefs_sys_color), - sys_color); - gtk_toggle_button_set_active ( - GTK_TOGGLE_BUTTON(stickynotes->w_prefs_sys_font), - sys_font); - gtk_toggle_button_set_active ( - GTK_TOGGLE_BUTTON (stickynotes->w_prefs_sticky), - sticky); - gtk_toggle_button_set_active ( - GTK_TOGGLE_BUTTON (stickynotes->w_prefs_force), - force_default); - gtk_toggle_button_set_active ( - GTK_TOGGLE_BUTTON (stickynotes->w_prefs_desktop), - desktop_hide); - - gtk_color_chooser_set_rgba (GTK_COLOR_CHOOSER (stickynotes->w_prefs_color), &color); - gtk_color_chooser_set_rgba (GTK_COLOR_CHOOSER (stickynotes->w_prefs_font_color), &font_color); - - gtk_font_button_set_font_name (GTK_FONT_BUTTON (stickynotes->w_prefs_font), font_str); - g_free (font_str); - - if (g_settings_is_writable (stickynotes->settings, "default-color")) - { - gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object ( - stickynotes->builder, "prefs_color_label")), - !sys_color); - gtk_widget_set_sensitive (stickynotes->w_prefs_color, - !sys_color); - } - if (g_settings_is_writable (stickynotes->settings, "default-font-color")) - { - gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object ( - stickynotes->builder, "prefs_font_color_label")), - !sys_color); - gtk_widget_set_sensitive (stickynotes->w_prefs_font_color, - !sys_color); - } - if (g_settings_is_writable (stickynotes->settings, "default-font")) - { - gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object ( - stickynotes->builder, "prefs_font_label")), - !sys_font); - gtk_widget_set_sensitive (stickynotes->w_prefs_font, - !sys_font); - } + gint width, height; + gboolean sys_color, sys_font, sticky, force_default, desktop_hide; + char *font_str; + char *color_str, *font_color_str; + GdkRGBA color, font_color; + + width = g_settings_get_int (stickynotes->settings, + "default-width"); + width = MAX (width, 1); + height = g_settings_get_int (stickynotes->settings, + "default-height"); + height = MAX (height, 1); + + sys_color = g_settings_get_boolean (stickynotes->settings, + "use-system-color"); + sys_font = g_settings_get_boolean (stickynotes->settings, + "use-system-font"); + sticky = g_settings_get_boolean (stickynotes->settings, + "sticky"); + force_default = g_settings_get_boolean (stickynotes->settings, + "force-default"); + desktop_hide = g_settings_get_boolean (stickynotes->settings, + "desktop-hide"); + + font_str = g_settings_get_string (stickynotes->settings, + "default-font"); + if (!font_str) + font_str = g_strdup ("Sans 10"); + + color_str = g_settings_get_string (stickynotes->settings, + "default-color"); + if (!color_str) + color_str = g_strdup ("#ECF833"); + + font_color_str = g_settings_get_string (stickynotes->settings, + "default-font-color"); + if (!font_color_str) + font_color_str = g_strdup ("#000000"); + + gdk_rgba_parse (&color, color_str); + gdk_rgba_parse (&font_color, font_color_str); + + g_free (color_str); + g_free (font_color_str); + + gtk_adjustment_set_value (stickynotes->w_prefs_width, width); + gtk_adjustment_set_value (stickynotes->w_prefs_height, height); + gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (stickynotes->w_prefs_sys_color), + sys_color); + gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (stickynotes->w_prefs_sys_font), + sys_font); + gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (stickynotes->w_prefs_sticky), + sticky); + gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (stickynotes->w_prefs_force), + force_default); + gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (stickynotes->w_prefs_desktop), + desktop_hide); + + gtk_color_chooser_set_rgba (GTK_COLOR_CHOOSER (stickynotes->w_prefs_color), + &color); + gtk_color_chooser_set_rgba (GTK_COLOR_CHOOSER (stickynotes->w_prefs_font_color), + &font_color); + + gtk_font_button_set_font_name (GTK_FONT_BUTTON (stickynotes->w_prefs_font), + font_str); + g_free (font_str); + + if (g_settings_is_writable (stickynotes->settings, "default-color")) { + gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (stickynotes->builder, + "prefs_color_label")), + !sys_color); + gtk_widget_set_sensitive (stickynotes->w_prefs_color, !sys_color); + } + if (g_settings_is_writable (stickynotes->settings, "default-font-color")) { + gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (stickynotes->builder, + "prefs_font_color_label")), + !sys_color); + gtk_widget_set_sensitive (stickynotes->w_prefs_font_color, !sys_color); + } + if (g_settings_is_writable (stickynotes->settings, "default-font")) { + gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (stickynotes->builder, + "prefs_font_label")), + !sys_font); + gtk_widget_set_sensitive (stickynotes->w_prefs_font, !sys_font); + } } -void stickynotes_applet_update_menus(void) +void +stickynotes_applet_update_menus (void) { - GList *l; - gboolean inconsistent = FALSE; - - gboolean locked = g_settings_get_boolean (stickynotes->settings, "locked"); - gboolean locked_writable = g_settings_is_writable (stickynotes->settings, "locked"); - - for (l = stickynotes->notes; l != NULL; l = l->next) { - StickyNote *note = l->data; - - if (note->locked != locked) { - inconsistent = TRUE; - break; - } - } - - for (l = stickynotes->applets; l != NULL; l = l->next) { - StickyNotesApplet *applet = l->data; - GSList *proxies, *p; - - GtkAction *action = gtk_action_group_get_action (applet->action_group, "lock"); - - g_object_set (action, - "active", locked, - "sensitive", locked_writable, - NULL); - - proxies = gtk_action_get_proxies (action); - for (p = proxies; p; p = g_slist_next (p)) { - if (GTK_IS_CHECK_MENU_ITEM (p->data)) { - gtk_check_menu_item_set_inconsistent (GTK_CHECK_MENU_ITEM (p->data), - inconsistent); - } - } - } + GList *l; + gboolean inconsistent = FALSE; + + gboolean locked = g_settings_get_boolean (stickynotes->settings, + "locked"); + gboolean locked_writable = g_settings_is_writable (stickynotes->settings, + "locked"); + + for (l = stickynotes->notes; l != NULL; l = l->next) { + StickyNote *note = l->data; + + if (note->locked != locked) { + inconsistent = TRUE; + break; + } + } + + for (l = stickynotes->applets; l != NULL; l = l->next) { + StickyNotesApplet *applet = l->data; + GSList *proxies, *p; + + GtkAction *action = gtk_action_group_get_action (applet->action_group, + "lock"); + + g_object_set (action, + "active", locked, + "sensitive", locked_writable, + NULL); + + proxies = gtk_action_get_proxies (action); + for (p = proxies; p; p = g_slist_next (p)) { + if (GTK_IS_CHECK_MENU_ITEM (p->data)) + gtk_check_menu_item_set_inconsistent (GTK_CHECK_MENU_ITEM (p->data), + inconsistent); + } + } } void stickynotes_applet_update_tooltips (void) { - int num; - char *tooltip, *no_notes; - StickyNotesApplet *applet; - GList *l; - - num = g_list_length (stickynotes->notes); - - no_notes = g_strdup_printf (ngettext ("%d note", "%d notes", num), num); - tooltip = g_strdup_printf ("%s\n%s", _("Show sticky notes"), no_notes); - - for (l = stickynotes->applets; l; l = l->next) - { - applet = l->data; - gtk_widget_set_tooltip_text (applet->w_applet, tooltip); - - if (applet->menu_tip) - gtk_label_set_text (GTK_LABEL (gtk_bin_get_child ( - GTK_BIN (applet->menu_tip))), - no_notes); - } - - g_free (tooltip); - g_free (no_notes); + int num; + char *tooltip, *no_notes; + StickyNotesApplet *applet; + GList *l; + + num = g_list_length (stickynotes->notes); + + no_notes = g_strdup_printf (ngettext ("%d note", + "%d notes", + num), + num); + + tooltip = g_strdup_printf ("%s\n%s", + _("Show sticky notes"), + no_notes); + + for (l = stickynotes->applets; l; l = l->next) + { + applet = l->data; + gtk_widget_set_tooltip_text (applet->w_applet, + tooltip); + + if (applet->menu_tip) + gtk_label_set_text (GTK_LABEL (gtk_bin_get_child (GTK_BIN (applet->menu_tip))), + no_notes); + } + + g_free (tooltip); + g_free (no_notes); } void -stickynotes_applet_panel_icon_get_geometry (int *x, int *y, int *width, int *height) +stickynotes_applet_panel_icon_get_geometry (int *x, + int *y, + int *width, + int *height) { - GtkWidget *widget; - GtkAllocation allocation; - GtkRequisition requisition; - StickyNotesApplet *applet; + GtkWidget *widget; + GtkAllocation allocation; + GtkRequisition requisition; + StickyNotesApplet *applet; - applet = stickynotes->applets->data; + applet = stickynotes->applets->data; - widget = GTK_WIDGET (applet->w_image); + widget = GTK_WIDGET (applet->w_image); - gtk_widget_get_preferred_size (widget, NULL, &requisition); + gtk_widget_get_preferred_size (widget, + NULL, &requisition); - gdk_window_get_origin (gtk_widget_get_window (widget), x, y); + gdk_window_get_origin (gtk_widget_get_window (widget), x, y); - gtk_widget_get_allocation (widget, &allocation); - *width = allocation.x; - *height = allocation.y; + gtk_widget_get_allocation (widget, &allocation); + *width = allocation.x; + *height = allocation.y; } diff --git a/stickynotes/stickynotes_applet.h b/stickynotes/stickynotes_applet.h index 4d10c387..072318d3 100644 --- a/stickynotes/stickynotes_applet.h +++ b/stickynotes/stickynotes_applet.h @@ -26,85 +26,87 @@ #include <gio/gio.h> #include <mate-panel-applet.h> +#define STICKYNOTES_SCHEMA "org.mate.stickynotes" -#define STICKYNOTES_SCHEMA "org.mate.stickynotes" - -#define STICKYNOTES_STOCK_LOCKED "stickynotes-stock-locked" -#define STICKYNOTES_STOCK_UNLOCKED "stickynotes-stock-unlocked" -#define STICKYNOTES_STOCK_CLOSE "stickynotes-stock-close" -#define STICKYNOTES_STOCK_RESIZE_SE "stickynotes-stock-resize-se" -#define STICKYNOTES_STOCK_RESIZE_SW "stickynotes-stock-resize-sw" +#define STICKYNOTES_STOCK_LOCKED "stickynotes-stock-locked" +#define STICKYNOTES_STOCK_UNLOCKED "stickynotes-stock-unlocked" +#define STICKYNOTES_STOCK_CLOSE "stickynotes-stock-close" +#define STICKYNOTES_STOCK_RESIZE_SE "stickynotes-stock-resize-se" +#define STICKYNOTES_STOCK_RESIZE_SW "stickynotes-stock-resize-sw" /* Global Sticky Notes instance */ typedef struct { - GtkBuilder *builder; - - GtkWidget *w_prefs; /* The prefs dialog */ - GtkAdjustment *w_prefs_width; - GtkAdjustment *w_prefs_height; - GtkWidget *w_prefs_color; - GtkWidget *w_prefs_font_color; - GtkWidget *w_prefs_sys_color; - GtkWidget *w_prefs_font; - GtkWidget *w_prefs_sys_font; - GtkWidget *w_prefs_sticky; - GtkWidget *w_prefs_force; - GtkWidget *w_prefs_desktop; - - GList *notes; /* Linked-List of all the sticky notes */ - GList *applets; /* Linked-List of all the applets */ - - cairo_surface_t *icon_normal; /* Normal applet icon */ - cairo_surface_t *icon_prelight; /* Prelighted applet icon */ - - GSettings *settings; /* Shared GSettings */ - - gint max_height; - guint last_timeout_data; - - gboolean visible; /* Toggle show/hide notes */ + GtkBuilder *builder; + + GtkWidget *w_prefs; /* The prefs dialog */ + GtkAdjustment *w_prefs_width; + GtkAdjustment *w_prefs_height; + GtkWidget *w_prefs_color; + GtkWidget *w_prefs_font_color; + GtkWidget *w_prefs_sys_color; + GtkWidget *w_prefs_font; + GtkWidget *w_prefs_sys_font; + GtkWidget *w_prefs_sticky; + GtkWidget *w_prefs_force; + GtkWidget *w_prefs_desktop; + + GList *notes; /* Linked-List of all the sticky notes */ + GList *applets; /* Linked-List of all the applets */ + + cairo_surface_t *icon_normal; /* Normal applet icon */ + cairo_surface_t *icon_prelight; /* Prelighted applet icon */ + + GSettings *settings; /* Shared GSettings */ + + gint max_height; + guint last_timeout_data; + + gboolean visible; /* Toggle show/hide notes */ } StickyNotes; /* Sticky Notes Applet */ typedef struct { - GtkWidget *w_applet; /* The applet */ - GtkWidget *w_image; /* The applet icon */ + GtkWidget *w_applet; /* The applet */ + GtkWidget *w_image; /* The applet icon */ - GtkWidget *destroy_all_dialog; /* The applet it's destroy all dialog */ - - gboolean prelighted; /* Whether applet is prelighted */ + GtkWidget *destroy_all_dialog; /* The applet it's destroy all dialog */ - gint panel_size; - MatePanelAppletOrient panel_orient; + gboolean prelighted; /* Whether applet is prelighted */ - GtkActionGroup *action_group; - GtkWidget *menu_tip; + gint panel_size; + MatePanelAppletOrient panel_orient; + + GtkActionGroup *action_group; + GtkWidget *menu_tip; } StickyNotesApplet; - + typedef enum { - STICKYNOTES_NEW = 0, - STICKYNOTES_SET_VISIBLE, - STICKYNOTES_SET_LOCKED + STICKYNOTES_NEW = 0, + STICKYNOTES_SET_VISIBLE, + STICKYNOTES_SET_LOCKED } StickyNotesDefaultAction; extern StickyNotes *stickynotes; -void stickynotes_applet_init(MatePanelApplet *mate_panel_applet); -void stickynotes_applet_init_prefs(void); +void stickynotes_applet_init (MatePanelApplet *mate_panel_applet); +void stickynotes_applet_init_prefs (void); -StickyNotesApplet * stickynotes_applet_new(MatePanelApplet *mate_panel_applet); +StickyNotesApplet * stickynotes_applet_new (MatePanelApplet *mate_panel_applet); -void stickynotes_applet_update_icon(StickyNotesApplet *applet); -void stickynotes_applet_update_prefs(void); -void stickynotes_applet_update_menus(void); -void stickynotes_applet_update_tooltips(void); +void stickynotes_applet_update_icon (StickyNotesApplet *applet); +void stickynotes_applet_update_prefs (void); +void stickynotes_applet_update_menus (void); +void stickynotes_applet_update_tooltips (void); -void stickynotes_applet_do_default_action(GdkScreen *screen); +void stickynotes_applet_do_default_action (GdkScreen *screen); -void stickynotes_applet_panel_icon_get_geometry (int *x, int *y, int *width, int *height); +void stickynotes_applet_panel_icon_get_geometry (int *x, + int *y, + int *width, + int *height); #endif /* __STICKYNOTES_APPLET_H__ */ diff --git a/stickynotes/stickynotes_applet_callbacks.c b/stickynotes/stickynotes_applet_callbacks.c index 43ad8feb..69869a26 100644 --- a/stickynotes/stickynotes_applet_callbacks.c +++ b/stickynotes/stickynotes_applet_callbacks.c @@ -25,61 +25,36 @@ #include <X11/Xatom.h> #include <gdk/gdkx.h> -static gboolean get_desktop_window (Window *window) -{ - Window *desktop_window; - GdkWindow *root_window; - GdkAtom type_returned; - int format_returned; - int length_returned; - - root_window = gdk_screen_get_root_window ( - gdk_screen_get_default ()); - - if (gdk_property_get (root_window, - gdk_atom_intern ("CAJA_DESKTOP_WINDOW_ID", FALSE), - gdk_x11_xatom_to_atom (XA_WINDOW), - 0, 4, FALSE, - &type_returned, - &format_returned, - &length_returned, - (guchar**) &desktop_window)) { - *window = *desktop_window; - g_free (desktop_window); - return TRUE; - } - else { - *window = 0; - return FALSE; - } -} - static void -popup_add_note (StickyNotesApplet *applet, GtkWidget *item) +popup_add_note (StickyNotesApplet *applet, + GtkWidget *item) { - stickynotes_add (gtk_widget_get_screen (applet->w_applet)); + stickynotes_add (gtk_widget_get_screen (applet->w_applet)); } static void stickynote_show_notes (gboolean visible) { - StickyNote *note; - GList *l; + StickyNote *note; + GList *l; if (stickynotes->visible == visible) return; + + if (g_settings_get_boolean (stickynotes->settings, "click-hide") && !visible) + return; + stickynotes->visible = visible; - for (l = stickynotes->notes; l; l = l->next) - { - note = l->data; - stickynote_set_visible (note, visible); - } + for (l = stickynotes->notes; l; l = l->next) { + note = l->data; + stickynote_set_visible (note, visible); + } } static void stickynote_toggle_notes_visible (void) { - stickynote_show_notes(!stickynotes->visible); + stickynote_show_notes (!stickynotes->visible); } /* Applet Callback : Mouse button press on the applet. */ @@ -88,18 +63,16 @@ applet_button_cb (GtkWidget *widget, GdkEventButton *event, StickyNotesApplet *applet) { - if (event->type == GDK_2BUTTON_PRESS) - { - popup_add_note (applet, NULL); - return TRUE; - } - else if (event->button == 1) - { - stickynote_toggle_notes_visible (); - return TRUE; - } - - return FALSE; + if (event->type == GDK_2BUTTON_PRESS) { + popup_add_note (applet, NULL); + return TRUE; + } + else if (event->button == 1) { + stickynote_toggle_notes_visible (); + return TRUE; + } + + return FALSE; } /* Applet Callback : Keypress on the applet. */ @@ -108,452 +81,599 @@ applet_key_cb (GtkWidget *widget, GdkEventKey *event, StickyNotesApplet *applet) { - switch (event->keyval) - { - case GDK_KEY_KP_Space: - case GDK_KEY_space: - case GDK_KEY_KP_Enter: - case GDK_KEY_Return: - stickynote_show_notes (TRUE); - return TRUE; - } - return FALSE; + switch (event->keyval) { + case GDK_KEY_KP_Space: + case GDK_KEY_space: + case GDK_KEY_KP_Enter: + case GDK_KEY_Return: + stickynote_show_notes (TRUE); + return TRUE; + } + return FALSE; } /* Applet Callback : Cross (enter or leave) the applet. */ -gboolean applet_cross_cb(GtkWidget *widget, GdkEventCrossing *event, StickyNotesApplet *applet) +gboolean +applet_cross_cb (GtkWidget *widget, + GdkEventCrossing *event, + StickyNotesApplet *applet) { - applet->prelighted = event->type == GDK_ENTER_NOTIFY || gtk_widget_has_focus(widget); + applet->prelighted = + event->type == GDK_ENTER_NOTIFY || gtk_widget_has_focus (widget); - stickynotes_applet_update_icon(applet); + stickynotes_applet_update_icon (applet); - return FALSE; + return FALSE; } /* Applet Callback : On focus (in or out) of the applet. */ -gboolean applet_focus_cb(GtkWidget *widget, GdkEventFocus *event, StickyNotesApplet *applet) +gboolean +applet_focus_cb (GtkWidget *widget, + GdkEventFocus *event, + StickyNotesApplet *applet) { - stickynotes_applet_update_icon(applet); + stickynotes_applet_update_icon (applet); - return FALSE; + return FALSE; } -static GdkFilterReturn desktop_window_event_filter (GdkXEvent *xevent, - GdkEvent *event, - gpointer data) +#ifdef GDK_WINDOWING_X11 +static gboolean get_desktop_window (GdkScreen *screen, Window *window) { - gboolean desktop_hide = g_settings_get_boolean (stickynotes->settings, "desktop-hide"); - if (desktop_hide && - (((XEvent*)xevent)->xany.type == PropertyNotify) && - (((XEvent*)xevent)->xproperty.atom == gdk_x11_get_xatom_by_name ("_NET_WM_USER_TIME"))) { - stickynote_show_notes (FALSE); - } - return GDK_FILTER_CONTINUE; + Window *desktop_window; + GdkWindow *root_window; + GdkAtom type_returned; + int format_returned; + int length_returned; + + /*This is x11-only, so return FALSE in wayland or anything else*/ + if (!(GDK_IS_X11_DISPLAY (gdk_screen_get_display (screen)))) + return FALSE; + + root_window = gdk_screen_get_root_window (screen); + + if (gdk_property_get (root_window, + gdk_atom_intern ("CAJA_DESKTOP_WINDOW_ID", FALSE), + gdk_x11_xatom_to_atom (XA_WINDOW), + 0, 4, FALSE, + &type_returned, + &format_returned, + &length_returned, + (guchar**) &desktop_window)) { + *window = *desktop_window; + g_free (desktop_window); + return TRUE; + } + else { + *window = 0; + return FALSE; + } } -void install_check_click_on_desktop (void) +static GdkFilterReturn +desktop_window_event_filter (GdkXEvent *xevent, + GdkEvent *event, + gpointer data) { - Window desktop_window; - GdkWindow *window; - Atom user_time_window; - Atom user_time; - - if (!get_desktop_window (&desktop_window)) { - return; - } - - /* Access the desktop window. desktop_window is the root window for the - * default screen, so we know using gdk_display_get_default() is correct. */ - window = gdk_x11_window_foreign_new_for_display (gdk_display_get_default (), - desktop_window); - - /* It may contain an atom to tell us which other window to monitor */ - user_time_window = gdk_x11_get_xatom_by_name ("_NET_WM_USER_TIME_WINDOW"); - user_time = gdk_x11_get_xatom_by_name ("_NET_WM_USER_TIME"); - if (user_time != None && user_time_window != None) - { - /* Looks like the atoms are there */ - Atom actual_type; - Window *data; - int actual_format; - gulong nitems; - gulong bytes; - - /* We only use this extra property if the actual user-time property's missing */ - XGetWindowProperty(GDK_DISPLAY_XDISPLAY(gdk_window_get_display(window)), desktop_window, user_time, - 0, 4, False, AnyPropertyType, &actual_type, &actual_format, - &nitems, &bytes, (unsigned char **)&data ); - if (actual_type == None) - { - /* No user-time property, so look for the user-time-window */ - XGetWindowProperty(GDK_DISPLAY_XDISPLAY(gdk_window_get_display(window)), desktop_window, user_time_window, - 0, 4, False, AnyPropertyType, &actual_type, &actual_format, - &nitems, &bytes, (unsigned char **)&data ); - if (actual_type != None) - { - /* We have another window to monitor */ - desktop_window = *data; - window = gdk_x11_window_foreign_new_for_display (gdk_window_get_display (window), - desktop_window); - } - } - } - - gdk_window_set_events (window, GDK_PROPERTY_CHANGE_MASK); - gdk_window_add_filter (window, desktop_window_event_filter, NULL); + gboolean desktop_hide; + + GdkScreen *screen = gdk_screen_get_default(); + if (!(GDK_IS_X11_DISPLAY (gdk_screen_get_display (screen)))) + { + desktop_hide = FALSE; + return GDK_FILTER_CONTINUE; + } + desktop_hide = g_settings_get_boolean (stickynotes->settings, + "desktop-hide"); + if (desktop_hide && + (((XEvent*)xevent)->xany.type == PropertyNotify) && + (((XEvent*)xevent)->xproperty.atom == gdk_x11_get_xatom_by_name ("_NET_WM_USER_TIME"))) { + stickynote_show_notes (FALSE); + } + return GDK_FILTER_CONTINUE; +} +#endif /* GDK_WINDOWING_X11 */ + +void install_check_click_on_desktop (GdkScreen *screen) +{ +#ifdef GDK_WINDOWING_X11 + Window desktop_window; + GdkWindow *window; + Atom user_time_window; + Atom user_time; + GdkDisplay *display; + + display = gdk_screen_get_display (screen); + /* All this uses X11-only APIs and features */ + if (!GDK_IS_X11_DISPLAY (display)) + return; + + if (!get_desktop_window (screen, &desktop_window)) { + return; + } + + /* Access the desktop window. desktop_window is the root window for the + * default screen, so we know using gdk_display_get_default () is correct. + * This code should not be reached if running in wayland + */ + window = gdk_x11_window_foreign_new_for_display (display, desktop_window); + + /* Avoid crash if the desktop window ID is set but invalid, e.g. if + * Caja has set it but quit since then */ + if (!window) { + return; + } + + /* It may contain an atom to tell us which other window to monitor */ + user_time_window = gdk_x11_get_xatom_by_name ("_NET_WM_USER_TIME_WINDOW"); + user_time = gdk_x11_get_xatom_by_name ("_NET_WM_USER_TIME"); + if (user_time != None && user_time_window != None) { + /* Looks like the atoms are there */ + Atom actual_type; + Window *data; + int actual_format; + gulong nitems; + gulong bytes; + + /* We only use this extra property if the actual user-time property's missing */ + XGetWindowProperty (GDK_DISPLAY_XDISPLAY (gdk_window_get_display (window)), + desktop_window, user_time, + 0, 4, False, AnyPropertyType, + &actual_type, &actual_format, + &nitems, &bytes, (unsigned char **)&data); + if (actual_type == None) { + /* No user-time property, so look for the user-time-window */ + XGetWindowProperty (GDK_DISPLAY_XDISPLAY (gdk_window_get_display (window)), + desktop_window, user_time_window, + 0, 4, False, AnyPropertyType, + &actual_type, &actual_format, + &nitems, &bytes, (unsigned char **)&data); + if (actual_type != None) { + /* We have another window to monitor */ + desktop_window = *data; + window = gdk_x11_window_foreign_new_for_display (gdk_window_get_display (window), + desktop_window); + } + } + } + + gdk_window_set_events (window, GDK_PROPERTY_CHANGE_MASK); + gdk_window_add_filter (window, desktop_window_event_filter, NULL); +#endif } /* Applet Callback : Change the panel orientation. */ -void applet_change_orient_cb(MatePanelApplet *mate_panel_applet, MatePanelAppletOrient orient, StickyNotesApplet *applet) +void +applet_change_orient_cb (MatePanelApplet *mate_panel_applet, + MatePanelAppletOrient orient, + StickyNotesApplet *applet) { - applet->panel_orient = orient; + applet->panel_orient = orient; } /* Applet Callback : Resize the applet. */ -void applet_size_allocate_cb(GtkWidget *widget, GtkAllocation *allocation, StickyNotesApplet *applet) +void +applet_size_allocate_cb (GtkWidget *widget, + GtkAllocation *allocation, + StickyNotesApplet *applet) { - if ((applet->panel_orient == MATE_PANEL_APPLET_ORIENT_UP) || (applet->panel_orient == MATE_PANEL_APPLET_ORIENT_DOWN)) { - if (applet->panel_size == allocation->height) - return; - applet->panel_size = allocation->height; - } else { - if (applet->panel_size == allocation->width) - return; - applet->panel_size = allocation->width; - } - - stickynotes_applet_update_icon(applet); - - return; + if ((applet->panel_orient == MATE_PANEL_APPLET_ORIENT_UP) + || (applet->panel_orient == MATE_PANEL_APPLET_ORIENT_DOWN)) { + if (applet->panel_size == allocation->height) + return; + applet->panel_size = allocation->height; + } else { + if (applet->panel_size == allocation->width) + return; + applet->panel_size = allocation->width; + } + + stickynotes_applet_update_icon (applet); + + return; } /* Applet Callback : Deletes the applet. */ -void applet_destroy_cb (MatePanelApplet *mate_panel_applet, StickyNotesApplet *applet) +void +applet_destroy_cb (MatePanelApplet *mate_panel_applet, + StickyNotesApplet *applet) { - GList *notes; + GList *notes; - stickynotes_save_now (); + stickynotes_save_now (); - if (applet->destroy_all_dialog != NULL) - gtk_widget_destroy (applet->destroy_all_dialog); + if (applet->destroy_all_dialog != NULL) + gtk_widget_destroy (applet->destroy_all_dialog); - if (applet->action_group) - g_object_unref (applet->action_group); + if (applet->action_group) + g_object_unref (applet->action_group); - if (stickynotes->applets != NULL) - stickynotes->applets = g_list_remove (stickynotes->applets, applet); + if (stickynotes->applets != NULL) + stickynotes->applets = g_list_remove (stickynotes->applets, + applet); - if (stickynotes->applets == NULL) { - notes = stickynotes->notes; - while (notes) { - StickyNote *note = notes->data; - stickynote_free (note); - notes = g_list_next (notes); - } - } + if (stickynotes->applets == NULL) { + notes = stickynotes->notes; + while (notes) { + StickyNote *note = notes->data; + stickynote_free (note); + notes = g_list_next (notes); + } + } } /* Destroy all response Callback: Callback for the destroy all dialog */ static void -destroy_all_response_cb (GtkDialog *dialog, gint id, StickyNotesApplet *applet) +destroy_all_response_cb (GtkDialog *dialog, + gint id, + StickyNotesApplet *applet) { - if (id == GTK_RESPONSE_OK) { - while (g_list_length(stickynotes->notes) > 0) { - StickyNote *note = g_list_nth_data(stickynotes->notes, 0); - stickynote_free(note); - stickynotes->notes = g_list_remove(stickynotes->notes, note); - } - } - - stickynotes_applet_update_tooltips(); - stickynotes_save(); - - gtk_widget_destroy (GTK_WIDGET (dialog)); - applet->destroy_all_dialog = NULL; + if (id == GTK_RESPONSE_OK) { + while (g_list_length (stickynotes->notes) > 0) { + StickyNote *note = g_list_nth_data (stickynotes->notes, 0); + stickynote_free (note); + stickynotes->notes = g_list_remove (stickynotes->notes, note); + } + } + + stickynotes_applet_update_tooltips (); + stickynotes_save (); + + gtk_widget_destroy (GTK_WIDGET (dialog)); + applet->destroy_all_dialog = NULL; } /* Menu Callback : New Note */ -void menu_new_note_cb(GtkAction *action, StickyNotesApplet *applet) +void +menu_new_note_cb (GtkAction *action, + StickyNotesApplet *applet) { - popup_add_note (applet, NULL); + popup_add_note (applet, NULL); } /* Menu Callback : Hide Notes */ -void menu_hide_notes_cb(GtkAction *action, StickyNotesApplet *applet) +void +menu_hide_notes_cb (GtkAction *action, + StickyNotesApplet *applet) { - stickynote_show_notes (FALSE); + stickynote_show_notes (FALSE); } /* Menu Callback : Destroy all sticky notes */ -void menu_destroy_all_cb(GtkAction *action, StickyNotesApplet *applet) +void +menu_destroy_all_cb (GtkAction *action, + StickyNotesApplet *applet) { - GtkBuilder *builder; + GtkBuilder *builder; - builder = gtk_builder_new (); - gtk_builder_add_from_resource (builder, GRESOURCE "sticky-notes-delete-all.ui", NULL); + builder = gtk_builder_new (); + gtk_builder_add_from_resource (builder, + GRESOURCE "sticky-notes-delete-all.ui", + NULL); - if (applet->destroy_all_dialog != NULL) { - gtk_window_set_screen (GTK_WINDOW (applet->destroy_all_dialog), - gtk_widget_get_screen (GTK_WIDGET (applet->w_applet))); + if (applet->destroy_all_dialog != NULL) { + gtk_window_set_screen (GTK_WINDOW (applet->destroy_all_dialog), + gtk_widget_get_screen (GTK_WIDGET (applet->w_applet))); - gtk_window_present (GTK_WINDOW (applet->destroy_all_dialog)); - return; - } + gtk_window_present (GTK_WINDOW (applet->destroy_all_dialog)); + return; + } - applet->destroy_all_dialog = GTK_WIDGET (gtk_builder_get_object (builder, "delete_all_dialog")); + applet->destroy_all_dialog = GTK_WIDGET (gtk_builder_get_object (builder, + "delete_all_dialog")); - g_object_unref (builder); + g_object_unref (builder); - g_signal_connect (applet->destroy_all_dialog, "response", - G_CALLBACK (destroy_all_response_cb), - applet); + g_signal_connect (applet->destroy_all_dialog, "response", + G_CALLBACK (destroy_all_response_cb), + applet); - gtk_window_set_screen (GTK_WINDOW (applet->destroy_all_dialog), - gtk_widget_get_screen (applet->w_applet)); + gtk_window_set_screen (GTK_WINDOW (applet->destroy_all_dialog), + gtk_widget_get_screen (applet->w_applet)); - gtk_widget_show_all (applet->destroy_all_dialog); + gtk_widget_show_all (applet->destroy_all_dialog); } /* Menu Callback: Lock/Unlock sticky notes */ -void menu_toggle_lock_cb(GtkAction *action, StickyNotesApplet *applet) +void +menu_toggle_lock_cb (GtkAction *action, + StickyNotesApplet *applet) { - gboolean locked = gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (action)); + gboolean locked = gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (action)); - if (g_settings_is_writable (stickynotes->settings, "locked")) - g_settings_set_boolean (stickynotes->settings, "locked", locked); + if (g_settings_is_writable (stickynotes->settings, "locked")) + g_settings_set_boolean (stickynotes->settings, "locked", locked); } /* Menu Callback : Configure preferences */ -void menu_preferences_cb(GtkAction *action, StickyNotesApplet *applet) +void +menu_preferences_cb (GtkAction *action, + StickyNotesApplet *applet) { - stickynotes_applet_update_prefs(); - gtk_window_set_screen(GTK_WINDOW(stickynotes->w_prefs), gtk_widget_get_screen(applet->w_applet)); - gtk_window_present(GTK_WINDOW(stickynotes->w_prefs)); + stickynotes_applet_update_prefs (); + gtk_window_set_screen (GTK_WINDOW (stickynotes->w_prefs), + gtk_widget_get_screen (applet->w_applet)); + gtk_window_present (GTK_WINDOW (stickynotes->w_prefs)); } /* Menu Callback : Show help */ -void menu_help_cb(GtkAction *action, StickyNotesApplet *applet) +void +menu_help_cb (GtkAction *action, + StickyNotesApplet *applet) { - GError *error = NULL; - - gtk_show_uri_on_window (NULL, - "help:mate-stickynotes-applet", - gtk_get_current_event_time (), - &error); - if (error) { - GtkWidget *dialog = gtk_message_dialog_new(NULL, GTK_DIALOG_MODAL, GTK_MESSAGE_ERROR, GTK_BUTTONS_CLOSE, - _("There was an error displaying help: %s"), error->message); - g_signal_connect(G_OBJECT(dialog), "response", G_CALLBACK(gtk_widget_destroy), NULL); - gtk_window_set_resizable(GTK_WINDOW(dialog), FALSE); - gtk_window_set_screen (GTK_WINDOW(dialog), gtk_widget_get_screen(applet->w_applet)); - gtk_widget_show(dialog); - g_error_free(error); - } + GError *error = NULL; + + gtk_show_uri_on_window (NULL, + "help:mate-stickynotes-applet", + gtk_get_current_event_time (), + &error); + + if (error) { + GtkWidget *dialog = gtk_message_dialog_new (NULL, + GTK_DIALOG_MODAL, + GTK_MESSAGE_ERROR, + GTK_BUTTONS_CLOSE, + _("There was an error displaying help: %s"), + error->message); + + g_signal_connect (dialog, "response", + G_CALLBACK (gtk_widget_destroy), + NULL); + + gtk_window_set_resizable (GTK_WINDOW (dialog), FALSE); + gtk_window_set_screen (GTK_WINDOW (dialog), + gtk_widget_get_screen (applet->w_applet)); + gtk_widget_show (dialog); + g_error_free (error); + } } /* Menu Callback : Display About window */ void -menu_about_cb (GtkAction *action, - StickyNotesApplet *applet) +menu_about_cb (GtkAction *action, + StickyNotesApplet *applet) { - static const gchar *authors[] = { - "Loban A Rahman <[email protected]>", - "Davyd Madeley <[email protected]>", - NULL - }; - - static const gchar *documenters[] = { - "Loban A Rahman <[email protected]>", - N_("Sun GNOME Documentation Team <[email protected]>"), - N_("MATE Documentation Team"), - NULL - }; + static const gchar *authors[] = { + "Loban A Rahman <[email protected]>", + "Davyd Madeley <[email protected]>", + NULL + }; + + static const gchar *documenters[] = { + "Loban A Rahman <[email protected]>", + N_("Sun GNOME Documentation Team <[email protected]>"), + N_("MATE Documentation Team"), + NULL + }; #ifdef ENABLE_NLS - const char **p; - for (p = documenters; *p; ++p) - *p = _(*p); + const char **p; + for (p = documenters; *p; ++p) + *p = _(*p); #endif - gtk_show_about_dialog (NULL, - "title", _("About Sticky Notes"), - "version", VERSION, - "copyright", _("Copyright \xc2\xa9 2002-2003 Loban A Rahman\n" - "Copyright \xc2\xa9 2005 Davyd Madeley\n" - "Copyright \xc2\xa9 2012-2020 MATE developers"), - "comments", _("Sticky Notes for the " - "MATE Desktop Environment"), - "authors", authors, - "documenters", documenters, - "translator-credits", _("translator-credits"), - "logo-icon-name", "mate-sticky-notes-applet", - NULL); + gtk_show_about_dialog (NULL, + "title", _("About Sticky Notes"), + "version", VERSION, + "copyright", _("Copyright \xc2\xa9 2002-2003 Loban A Rahman\n" + "Copyright \xc2\xa9 2005 Davyd Madeley\n" + "Copyright \xc2\xa9 2012-2021 MATE developers"), + "comments", _("Sticky Notes for the " + "MATE Desktop Environment"), + "authors", authors, + "documenters", documenters, + "translator-credits", _("translator-credits"), + "logo-icon-name", "mate-sticky-notes-applet", + NULL); } /* Preferences Callback : Save. */ void preferences_save_cb (gpointer data) { - gint width = gtk_adjustment_get_value (stickynotes->w_prefs_width); - gint height = gtk_adjustment_get_value (stickynotes->w_prefs_height); - gboolean sys_color = gtk_toggle_button_get_active ( - GTK_TOGGLE_BUTTON (stickynotes->w_prefs_sys_color)); - gboolean sys_font = gtk_toggle_button_get_active ( - GTK_TOGGLE_BUTTON (stickynotes->w_prefs_sys_font)); - gboolean sticky = gtk_toggle_button_get_active ( - GTK_TOGGLE_BUTTON (stickynotes->w_prefs_sticky)); - gboolean force_default = gtk_toggle_button_get_active ( - GTK_TOGGLE_BUTTON (stickynotes->w_prefs_force)); - gboolean desktop_hide = gtk_toggle_button_get_active ( - GTK_TOGGLE_BUTTON (stickynotes->w_prefs_desktop)); - - if (g_settings_is_writable (stickynotes->settings,"default-width")) - g_settings_set_int (stickynotes->settings,"default-width", width); - if (g_settings_is_writable (stickynotes->settings,"default-height")) - g_settings_set_int (stickynotes->settings,"default-height", height); - if (g_settings_is_writable (stickynotes->settings,"use-system-color")) - g_settings_set_boolean (stickynotes->settings,"use-system-color", sys_color); - if (g_settings_is_writable (stickynotes->settings,"use-system-font")) - g_settings_set_boolean (stickynotes->settings,"use-system-font", sys_font); - if (g_settings_is_writable (stickynotes->settings,"sticky")) - g_settings_set_boolean (stickynotes->settings,"sticky", sticky); - if (g_settings_is_writable (stickynotes->settings,"force-default")) - g_settings_set_boolean (stickynotes->settings,"force-default", force_default); - if (g_settings_is_writable (stickynotes->settings,"desktop-hide")) - g_settings_set_boolean (stickynotes->settings,"desktop-hide", desktop_hide); + gint width; + gint height; + gboolean sys_color; + gboolean sys_font; + gboolean sticky; + gboolean force_default; + gboolean desktop_hide; + gdouble adjustment_value; + + adjustment_value = gtk_adjustment_get_value (stickynotes->w_prefs_width); + width = (gint) adjustment_value; + + adjustment_value = gtk_adjustment_get_value (stickynotes->w_prefs_height); + height = (gint) adjustment_value; + + sys_color = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (stickynotes->w_prefs_sys_color)); + sys_font = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (stickynotes->w_prefs_sys_font)); + sticky = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (stickynotes->w_prefs_sticky)); + force_default = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (stickynotes->w_prefs_force)); + desktop_hide = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (stickynotes->w_prefs_desktop)); + + if (g_settings_is_writable (stickynotes->settings, + "default-width")) + g_settings_set_int (stickynotes->settings, + "default-width", width); + if (g_settings_is_writable (stickynotes->settings, + "default-height")) + g_settings_set_int (stickynotes->settings, + "default-height", height); + if (g_settings_is_writable (stickynotes->settings, + "use-system-color")) + g_settings_set_boolean (stickynotes->settings, + "use-system-color", sys_color); + if (g_settings_is_writable (stickynotes->settings, + "use-system-font")) + g_settings_set_boolean (stickynotes->settings, + "use-system-font", sys_font); + if (g_settings_is_writable (stickynotes->settings, + "sticky")) + g_settings_set_boolean (stickynotes->settings, + "sticky", sticky); + if (g_settings_is_writable (stickynotes->settings, + "force-default")) + g_settings_set_boolean (stickynotes->settings, + "force-default", force_default); + if (g_settings_is_writable (stickynotes->settings, + "desktop-hide")) + g_settings_set_boolean (stickynotes->settings, + "desktop-hide", desktop_hide); } /* Preferences Callback : Change color. */ void -preferences_color_cb (GtkWidget *button, gpointer data) +preferences_color_cb (GtkWidget *button, + gpointer data) { - char *color_str, *font_color_str; + char *color_str, *font_color_str; - GdkRGBA color, font_color; + GdkRGBA color, font_color; - gtk_color_chooser_get_rgba (GTK_COLOR_CHOOSER (stickynotes->w_prefs_color), &color); - gtk_color_chooser_get_rgba (GTK_COLOR_CHOOSER (stickynotes->w_prefs_font_color), &font_color); + gtk_color_chooser_get_rgba (GTK_COLOR_CHOOSER (stickynotes->w_prefs_color), + &color); + gtk_color_chooser_get_rgba (GTK_COLOR_CHOOSER (stickynotes->w_prefs_font_color), + &font_color); - color_str = gdk_rgba_to_string (&color); - font_color_str = gdk_rgba_to_string (&font_color); + color_str = gdk_rgba_to_string (&color); + font_color_str = gdk_rgba_to_string (&font_color); - g_settings_set_string (stickynotes->settings, "default-color", color_str); - g_settings_set_string (stickynotes->settings, "default-font-color", font_color_str); + g_settings_set_string (stickynotes->settings, + "default-color", + color_str); + g_settings_set_string (stickynotes->settings, + "default-font-color", + font_color_str); - g_free (color_str); - g_free (font_color_str); + g_free (color_str); + g_free (font_color_str); } /* Preferences Callback : Change font. */ -void preferences_font_cb (GtkWidget *button, gpointer data) +void +preferences_font_cb (GtkWidget *button, + gpointer data) { - const char *font_str; + const char *font_str; - font_str = gtk_font_button_get_font_name (GTK_FONT_BUTTON (button)); - g_settings_set_string (stickynotes->settings, "default-font", font_str); + font_str = gtk_font_button_get_font_name (GTK_FONT_BUTTON (button)); + g_settings_set_string (stickynotes->settings, + "default-font", + font_str); } /* Preferences Callback : Apply to existing notes. */ -void preferences_apply_cb(GSettings *settings, gchar *key, gpointer data) +void +preferences_apply_cb (GSettings *settings, + gchar *key, + gpointer data) { - GList *l; - StickyNote *note; - - if (!strcmp (key, "sticky")) - { - if (g_settings_get_boolean (settings, key)) - for (l = stickynotes->notes; l; l = l->next) - { - note = l->data; - gtk_window_stick (GTK_WINDOW (note->w_window)); - } - else - for (l = stickynotes->notes; l; l = l->next) - { - note = l->data; - gtk_window_unstick (GTK_WINDOW ( - note->w_window)); - } - } - - else if (!strcmp (key, "locked")) - { - for (l = stickynotes->notes; l; l = l->next) - { - note = l->data; - stickynote_set_locked (note, - g_settings_get_boolean (settings, key)); - } - stickynotes_save(); - } - - else if (!strcmp (key, "use-system-color") || - !strcmp (key, "default-color")) - { - for (l = stickynotes->notes; l; l = l->next) - { - note = l->data; - stickynote_set_color (note, - note->color, note->font_color, - FALSE); - } - } - - else if (!strcmp (key, "use-system-font") || - !strcmp (key, "default-font")) - { - for (l = stickynotes->notes; l; l = l->next) - { - note = l->data; - stickynote_set_font (note, note->font, FALSE); - } - } - - else if (!strcmp (key, "force-default")) - { - for (l = stickynotes->notes; l; l = l->next) - { - note = l->data; - stickynote_set_color(note, - note->color, note->font_color, - FALSE); - stickynote_set_font(note, note->font, FALSE); - } - } - - stickynotes_applet_update_prefs(); - stickynotes_applet_update_menus(); + GList *l; + StickyNote *note; + + if (!strcmp (key, "sticky")) { + if (g_settings_get_boolean (settings, key)) + for (l = stickynotes->notes; l; l = l->next) { + note = l->data; + gtk_window_stick (GTK_WINDOW (note->w_window)); + } + else + for (l = stickynotes->notes; l; l = l->next) { + note = l->data; + gtk_window_unstick (GTK_WINDOW (note->w_window)); + } + } + + else if (!strcmp (key, "locked")) { + for (l = stickynotes->notes; l; l = l->next) { + note = l->data; + stickynote_set_locked (note, + g_settings_get_boolean (settings, key)); + } + stickynotes_save (); + } + + else if (!strcmp (key, "use-system-color") || + !strcmp (key, "default-color")) { + for (l = stickynotes->notes; l; l = l->next) { + note = l->data; + stickynote_set_color (note, + note->color, + note->font_color, + FALSE); + } + } + + else if (!strcmp (key, "use-system-font") || + !strcmp (key, "default-font")) { + for (l = stickynotes->notes; l; l = l->next) { + note = l->data; + stickynote_set_font (note, note->font, FALSE); + } + } + + else if (!strcmp (key, "force-default")) { + for (l = stickynotes->notes; l; l = l->next) { + note = l->data; + stickynote_set_color (note, + note->color, + note->font_color, + FALSE); + stickynote_set_font (note, + note->font, + FALSE); + } + } + + stickynotes_applet_update_prefs (); + stickynotes_applet_update_menus (); } /* Preferences Callback : Response. */ -void preferences_response_cb(GtkWidget *dialog, gint response, gpointer data) +void +preferences_response_cb (GtkWidget *dialog, + gint response, + gpointer data) { - if (response == GTK_RESPONSE_HELP) { - GError *error = NULL; - - gtk_show_uri_on_window (GTK_WINDOW (dialog), - "help:mate-stickynotes-applet/stickynotes-advanced-settings", - gtk_get_current_event_time (), - &error); - if (error) { - dialog = gtk_message_dialog_new(NULL, GTK_DIALOG_MODAL, GTK_MESSAGE_ERROR, GTK_BUTTONS_CLOSE, - _("There was an error displaying help: %s"), error->message); - g_signal_connect(G_OBJECT(dialog), "response", G_CALLBACK(gtk_widget_destroy), NULL); - gtk_window_set_resizable(GTK_WINDOW(dialog), FALSE); - gtk_window_set_screen (GTK_WINDOW(dialog), gtk_widget_get_screen(GTK_WIDGET(dialog))); - gtk_widget_show(dialog); - g_error_free(error); - } - } - - else if (response == GTK_RESPONSE_CLOSE) - gtk_widget_hide(GTK_WIDGET(dialog)); + if (response == GTK_RESPONSE_HELP) { + GError *error = NULL; + + gtk_show_uri_on_window (GTK_WINDOW (dialog), + "help:mate-stickynotes-applet/stickynotes-advanced-settings", + gtk_get_current_event_time (), + &error); + + if (error) { + dialog = gtk_message_dialog_new (NULL, + GTK_DIALOG_MODAL, + GTK_MESSAGE_ERROR, + GTK_BUTTONS_CLOSE, + _("There was an error displaying help: %s"), + error->message); + + g_signal_connect (dialog, "response", + G_CALLBACK (gtk_widget_destroy), + NULL); + gtk_window_set_resizable (GTK_WINDOW (dialog), FALSE); + gtk_window_set_screen (GTK_WINDOW (dialog), + gtk_widget_get_screen (GTK_WIDGET (dialog))); + gtk_widget_show (dialog); + g_error_free (error); + } + } + + else if (response == GTK_RESPONSE_CLOSE) + gtk_widget_hide (GTK_WIDGET (dialog)); } /* Preferences Callback : Delete */ -gboolean preferences_delete_cb(GtkWidget *widget, GdkEvent *event, gpointer data) +gboolean +preferences_delete_cb (GtkWidget *widget, + GdkEvent *event, + gpointer data) { - gtk_widget_hide(widget); + gtk_widget_hide (widget); - return TRUE; + return TRUE; } diff --git a/stickynotes/stickynotes_applet_callbacks.h b/stickynotes/stickynotes_applet_callbacks.h index 3e8603de..a8504578 100644 --- a/stickynotes/stickynotes_applet_callbacks.h +++ b/stickynotes/stickynotes_applet_callbacks.h @@ -23,30 +23,83 @@ #include <stickynotes_applet.h> /* Callbacks for the sticky notes applet */ -gboolean applet_button_cb(GtkWidget *widget, GdkEventButton *event, StickyNotesApplet *applet); -gboolean applet_key_cb(GtkWidget *widget, GdkEventKey *event, StickyNotesApplet *applet); -gboolean applet_cross_cb(GtkWidget *widget, GdkEventCrossing *event, StickyNotesApplet *applet); -gboolean applet_focus_cb(GtkWidget *widget, GdkEventFocus *event, StickyNotesApplet *applet); -void install_check_click_on_desktop (void); -void applet_change_orient_cb(MatePanelApplet *mate_panel_applet, MatePanelAppletOrient orient, StickyNotesApplet *applet); -void applet_size_allocate_cb(GtkWidget *widget, GtkAllocation *allocation, StickyNotesApplet *applet); -void applet_destroy_cb (MatePanelApplet *mate_panel_applet, StickyNotesApplet *applet); +gboolean +applet_button_cb (GtkWidget *widget, + GdkEventButton *event, + StickyNotesApplet *applet); +gboolean +applet_key_cb (GtkWidget *widget, + GdkEventKey *event, + StickyNotesApplet *applet); +gboolean +applet_cross_cb (GtkWidget *widget, + GdkEventCrossing *event, + StickyNotesApplet *applet); +gboolean +applet_focus_cb (GtkWidget *widget, + GdkEventFocus *event, + StickyNotesApplet *applet); + +void +install_check_click_on_desktop (GdkScreen *screen); +void +applet_change_orient_cb (MatePanelApplet *mate_panel_applet, + MatePanelAppletOrient orient, + StickyNotesApplet *applet); +void +applet_size_allocate_cb (GtkWidget *widget, + GtkAllocation *allocation, + StickyNotesApplet *applet); +void +applet_destroy_cb (MatePanelApplet *mate_panel_applet, + StickyNotesApplet *applet); + /* Callbacks for sticky notes applet menu */ -void menu_create_cb(GtkAction *action, StickyNotesApplet *applet); -void menu_new_note_cb(GtkAction *action, StickyNotesApplet *applet); -void menu_hide_notes_cb(GtkAction *action, StickyNotesApplet *applet); -void menu_destroy_all_cb(GtkAction *action, StickyNotesApplet *applet); -void menu_toggle_lock_cb(GtkAction *action, StickyNotesApplet *applet); -void menu_preferences_cb(GtkAction *action, StickyNotesApplet *applet); -void menu_help_cb(GtkAction *action, StickyNotesApplet *applet); -void menu_about_cb(GtkAction *action, StickyNotesApplet *applet); +void +menu_create_cb (GtkAction *action, + StickyNotesApplet *applet); +void +menu_new_note_cb (GtkAction *action, + StickyNotesApplet *applet); +void +menu_hide_notes_cb (GtkAction *action, + StickyNotesApplet *applet); +void +menu_destroy_all_cb (GtkAction *action, + StickyNotesApplet *applet); +void +menu_toggle_lock_cb (GtkAction *action, + StickyNotesApplet *applet); +void +menu_preferences_cb (GtkAction *action, + StickyNotesApplet *applet); +void +menu_help_cb (GtkAction *action, + StickyNotesApplet *applet); +void +menu_about_cb (GtkAction *action, + StickyNotesApplet *applet); /* Callbacks for sticky notes preferences dialog */ -void preferences_save_cb(gpointer data); -void preferences_color_cb (GtkWidget *button, gpointer data); -void preferences_font_cb (GtkWidget *button, gpointer data); -void preferences_apply_cb(GSettings *settings, gchar *key, gpointer data); -void preferences_response_cb(GtkWidget *dialog, gint response, gpointer data); -gboolean preferences_delete_cb(GtkWidget *widget, GdkEvent *event, gpointer data); +void +preferences_save_cb (gpointer data); +void +preferences_color_cb (GtkWidget *button, + gpointer data); +void +preferences_font_cb (GtkWidget *button, + gpointer data); +void +preferences_apply_cb (GSettings *settings, + gchar *key, + gpointer data); +void +preferences_response_cb (GtkWidget *dialog, + gint response, + gpointer data); +gboolean +preferences_delete_cb (GtkWidget *widget, + GdkEvent *event, + gpointer data); -#endif /* __STICKYNOTES_APPLET_CALLBACKS_H__ */
\ No newline at end of file +#endif /* __STICKYNOTES_APPLET_CALLBACKS_H__ */ diff --git a/stickynotes/stickynotes_callbacks.c b/stickynotes/stickynotes_callbacks.c index 45a01ad5..3f22dab7 100644 --- a/stickynotes/stickynotes_callbacks.c +++ b/stickynotes/stickynotes_callbacks.c @@ -22,170 +22,250 @@ /* Sticky Window Callback : Lock/Unlock the window */ gboolean -stickynote_toggle_lock_cb (GtkWidget *widget, StickyNote *note) +stickynote_toggle_lock_cb (GtkWidget *widget, + StickyNote *note) { - stickynote_set_locked (note, !note->locked); + stickynote_set_locked (note, !note->locked); - return TRUE; + return TRUE; } /* Sticky Window Callback : Close the window. */ gboolean -stickynote_close_cb (GtkWidget *widget, StickyNote *note) +stickynote_close_cb (GtkWidget *widget, + StickyNote *note) { - stickynotes_remove (note); - - return TRUE; + stickynotes_remove (note); + + return TRUE; } /* Sticky Window Callback : Resize the window. */ -gboolean stickynote_resize_cb(GtkWidget *widget, GdkEventButton *event, StickyNote *note) -{ - if (event->type == GDK_BUTTON_PRESS && event->button == 1) { - if (widget == note->w_resize_se) - gtk_window_begin_resize_drag(GTK_WINDOW(note->w_window), GDK_WINDOW_EDGE_SOUTH_EAST, - event->button, event->x_root, event->y_root, event->time); - else /* if (widget == note->w_resize_sw) */ - gtk_window_begin_resize_drag(GTK_WINDOW(note->w_window), GDK_WINDOW_EDGE_SOUTH_WEST, - event->button, event->x_root, event->y_root, event->time); - } - else - return FALSE; - - return TRUE; +gboolean stickynote_resize_cb (GtkWidget *widget, + GdkEventButton *event, + StickyNote *note) +{ + if (event->type == GDK_BUTTON_PRESS && event->button == 1) { + if (widget == note->w_resize_se) + gtk_window_begin_resize_drag (GTK_WINDOW (note->w_window), + GDK_WINDOW_EDGE_SOUTH_EAST, + event->button, + (gint) event->x_root, + (gint) event->y_root, + event->time); + else /* if (widget == note->w_resize_sw) */ + gtk_window_begin_resize_drag (GTK_WINDOW (note->w_window), + GDK_WINDOW_EDGE_SOUTH_WEST, + event->button, + (gint) event->x_root, + (gint) event->y_root, + event->time); + } + else + return FALSE; + + return TRUE; } /* Sticky Window Callback : Move the window or edit the title. */ -gboolean stickynote_move_cb(GtkWidget *widget, GdkEventButton *event, StickyNote *note) +gboolean +stickynote_move_cb (GtkWidget *widget, + GdkEventButton *event, + StickyNote *note) { - if (event->type == GDK_BUTTON_PRESS && event->button == 1) - gtk_window_begin_move_drag(GTK_WINDOW(note->w_window), event->button, event->x_root, event->y_root, event->time); - else if (event->type == GDK_2BUTTON_PRESS && event->button == 1) - stickynote_change_properties(note); - else - return FALSE; + if (event->type == GDK_BUTTON_PRESS && event->button == 1) + gtk_window_begin_move_drag (GTK_WINDOW (note->w_window), + event->button, event->x_root, + event->y_root, event->time); + else if (event->type == GDK_2BUTTON_PRESS && event->button == 1) + stickynote_change_properties (note); + else + return FALSE; - return TRUE; + return TRUE; } /* Sticky Window Callback : Store settings when resizing/moving the window */ -gboolean stickynote_configure_cb(GtkWidget *widget, GdkEventConfigure *event, StickyNote *note) +gboolean +stickynote_configure_cb (GtkWidget *widget, + GdkEventConfigure *event, + StickyNote *note) { - note->x = event->x; - note->y = event->y; - note->w = event->width; - note->h = event->height; + note->x = event->x; + note->y = event->y; + note->w = event->width; + note->h = event->height; - stickynotes_save(); + stickynotes_save (); - return FALSE; + return FALSE; } /* Sticky Window Callback : Get confirmation when deleting the window. */ -gboolean stickynote_delete_cb(GtkWidget *widget, GdkEvent *event, StickyNote *note) +gboolean +stickynote_delete_cb (GtkWidget *widget, + GdkEvent *event, + StickyNote *note) { - stickynotes_remove(note); + stickynotes_remove (note); - return TRUE; + return TRUE; } /* Sticky Window Callback : Popup the right click menu. */ gboolean -stickynote_show_popup_menu (GtkWidget *widget, GdkEventButton *event, GtkWidget *popup_menu) +stickynote_show_popup_menu (GtkWidget *widget, + GdkEventButton *event, + GtkWidget *popup_menu) { - if (event->type == GDK_BUTTON_PRESS && event->button == 3) - { - gtk_menu_popup_at_pointer (GTK_MENU (popup_menu), - (const GdkEvent*) event); - } + if (event->type == GDK_BUTTON_PRESS && event->button == 3) { + gtk_menu_popup_at_pointer (GTK_MENU (popup_menu), + (const GdkEvent*) event); + } - return FALSE; + return FALSE; } +/* Sticky Window Callback : Exit entry field on key press or popup + * the right click menu. */ +gboolean +stickynote_keypress_cb (GtkWidget *widget, + GdkEventKey *event, + GtkMenu *popup_menu) +{ + GdkModifierType state = event->state & gtk_accelerator_get_default_mod_mask (); + + switch (event->keyval) { + case GDK_KEY_F6: + if (state == 0) + gtk_widget_child_focus(widget, GTK_DIR_TAB_FORWARD); + else if (state == GDK_SHIFT_MASK) + gtk_widget_child_focus(widget, GTK_DIR_TAB_BACKWARD); + else + break; + return TRUE; + default: + break; + } + + if ((event->keyval == GDK_KEY_F10 && (state == 0 || state == GDK_SHIFT_MASK)) || + (event->keyval == GDK_KEY_Menu && state == 0)) { + GtkWidget *focus_widget = NULL; + + if (GTK_IS_WINDOW (widget)) + focus_widget = gtk_window_get_focus (GTK_WINDOW (widget)); + if (! focus_widget) + focus_widget = widget; + + gtk_menu_popup_at_widget (popup_menu, focus_widget, + GDK_GRAVITY_SOUTH_WEST, + GDK_GRAVITY_NORTH_WEST, + (const GdkEvent*) event); + return TRUE; + } + + return FALSE; +} /* Popup Menu Callback : Create a new sticky note */ -void popup_create_cb(GtkWidget *widget, StickyNote *note) +void popup_create_cb (GtkWidget *widget, + StickyNote *note) { - stickynotes_add(gtk_widget_get_screen(note->w_window)); + stickynotes_add (gtk_widget_get_screen (note->w_window)); } /* Popup Menu Callback : Destroy selected sticky note */ -void popup_destroy_cb(GtkWidget *widget, StickyNote *note) +void +popup_destroy_cb (GtkWidget *widget, + StickyNote *note) { - stickynotes_remove(note); + stickynotes_remove (note); } /* Popup Menu Callback : Lock/Unlock selected sticky note */ -void popup_toggle_lock_cb(GtkToggleAction *action, StickyNote *note) +void +popup_toggle_lock_cb (GtkCheckMenuItem *item, + StickyNote *note) { - stickynote_set_locked(note, gtk_toggle_action_get_active(action)); + stickynote_set_locked (note, + gtk_check_menu_item_get_active (item)); } /* Popup Menu Callback : Change sticky note properties */ -void popup_properties_cb(GtkWidget *widget, StickyNote *note) +void +popup_properties_cb (GtkWidget *widget, + StickyNote *note) { - stickynote_change_properties(note); + stickynote_change_properties (note); } /* Properties Dialog Callback : Apply title */ -void properties_apply_title_cb(StickyNote *note) +void +properties_apply_title_cb (StickyNote *note) { - stickynote_set_title(note, gtk_entry_get_text(GTK_ENTRY(note->w_entry))); + stickynote_set_title (note, + gtk_entry_get_text (GTK_ENTRY (note->w_entry))); } /* Properties Dialog Callback : Apply color */ -void properties_apply_color_cb(StickyNote *note) +void +properties_apply_color_cb (StickyNote *note) { - char *color_str = NULL; - char *font_color_str = NULL; - - if (!gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(note->w_def_color))) - { - GdkRGBA color, font_color; + char *color_str = NULL; + char *font_color_str = NULL; + + if (!gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (note->w_def_color))) { + GdkRGBA color, font_color; + + gtk_color_chooser_get_rgba (GTK_COLOR_CHOOSER (note->w_color), + &color); + gtk_color_chooser_get_rgba (GTK_COLOR_CHOOSER (note->w_font_color), + &font_color); - gtk_color_chooser_get_rgba (GTK_COLOR_CHOOSER (note->w_color), &color); - gtk_color_chooser_get_rgba (GTK_COLOR_CHOOSER (note->w_font_color), &font_color); + color_str = gdk_rgba_to_string (&color); + font_color_str = gdk_rgba_to_string (&font_color); + } - color_str = gdk_rgba_to_string (&color); - font_color_str = gdk_rgba_to_string (&font_color); - } - - stickynote_set_color (note, color_str, font_color_str, TRUE); + stickynote_set_color (note, color_str, + font_color_str, TRUE); - g_free (color_str); - g_free (font_color_str); + g_free (color_str); + g_free (font_color_str); } /* Properties Dialog Callback : Apply font */ -void properties_apply_font_cb(StickyNote *note) +void properties_apply_font_cb (StickyNote *note) { - const gchar *font_str = NULL; - - if (!gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(note->w_def_font))) - { - font_str = gtk_font_button_get_font_name ( - GTK_FONT_BUTTON (note->w_font)); - } + const gchar *font_str = NULL; - stickynote_set_font(note, font_str, TRUE); + if (!gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (note->w_def_font))) + font_str = gtk_font_button_get_font_name (GTK_FONT_BUTTON (note->w_font)); + + stickynote_set_font (note, font_str, TRUE); } /* Properties Dialog Callback : Color */ void -properties_color_cb (GtkWidget *button, StickyNote *note) +properties_color_cb (GtkWidget *button, + StickyNote *note) { - properties_apply_color_cb (note); + properties_apply_color_cb (note); } /* Properties Dialog Callback : Font */ -void properties_font_cb (GtkWidget *button, StickyNote *note) +void +properties_font_cb (GtkWidget *button, + StickyNote *note) { - const char *font_str = gtk_font_button_get_font_name (GTK_FONT_BUTTON (button)); - stickynote_set_font(note, font_str, TRUE); + const char *font_str = gtk_font_button_get_font_name (GTK_FONT_BUTTON (button)); + stickynote_set_font (note, font_str, TRUE); } /* Properties Dialog Callback : Activate */ -void properties_activate_cb(GtkWidget *widget, StickyNote *note) +void +properties_activate_cb (GtkWidget *widget, + StickyNote *note) { - gtk_dialog_response(GTK_DIALOG(note->w_properties), GTK_RESPONSE_CLOSE); + gtk_dialog_response (GTK_DIALOG (note->w_properties), + GTK_RESPONSE_CLOSE); } diff --git a/stickynotes/stickynotes_callbacks.h b/stickynotes/stickynotes_callbacks.h index 5918be99..57ba9428 100644 --- a/stickynotes/stickynotes_callbacks.h +++ b/stickynotes/stickynotes_callbacks.h @@ -23,26 +23,66 @@ #include <stickynotes.h> /* Callbacks for the sticky notes windows */ -gboolean stickynote_toggle_lock_cb(GtkWidget *widget, StickyNote *note); -gboolean stickynote_close_cb(GtkWidget *widget, StickyNote *note); -gboolean stickynote_resize_cb(GtkWidget *widget, GdkEventButton *event, StickyNote *note); -gboolean stickynote_move_cb(GtkWidget *widget, GdkEventButton *event, StickyNote *note); -gboolean stickynote_configure_cb(GtkWidget *widget, GdkEventConfigure *event, StickyNote *note); -gboolean stickynote_delete_cb(GtkWidget *widget, GdkEvent *event, StickyNote *note); -gboolean stickynote_show_popup_menu(GtkWidget *widget, GdkEventButton *event, GtkWidget *popup_menu); +gboolean +stickynote_toggle_lock_cb (GtkWidget *widget, + StickyNote *note); +gboolean +stickynote_close_cb (GtkWidget *widget, + StickyNote *note); +gboolean +stickynote_resize_cb (GtkWidget *widget, + GdkEventButton *event, + StickyNote *note); +gboolean +stickynote_move_cb (GtkWidget *widget, + GdkEventButton *event, + StickyNote *note); +gboolean +stickynote_configure_cb (GtkWidget *widget, + GdkEventConfigure *event, + StickyNote *note); +gboolean +stickynote_delete_cb (GtkWidget *widget, + GdkEvent *event, + StickyNote *note); +gboolean +stickynote_show_popup_menu (GtkWidget *widget, + GdkEventButton *event, + GtkWidget *popup_menu); +gboolean +stickynote_keypress_cb (GtkWidget *widget, + GdkEventKey *event, + GtkMenu *popup_menu); /* Callbacks for the sticky notes popup menu */ -void popup_create_cb(GtkWidget *widget, StickyNote *note); -void popup_destroy_cb(GtkWidget *widget, StickyNote *note); -void popup_toggle_lock_cb(GtkToggleAction *action, StickyNote *note); -void popup_properties_cb(GtkWidget *widget, StickyNote *note); +void +popup_create_cb (GtkWidget *widget, + StickyNote *note); +void +popup_destroy_cb (GtkWidget *widget, + StickyNote *note); +void +popup_toggle_lock_cb (GtkCheckMenuItem *item, + StickyNote *note); +void +popup_properties_cb (GtkWidget *widget, + StickyNote *note); /* Callbacks for sticky notes properties dialog */ -void properties_apply_title_cb(StickyNote *note); -void properties_apply_color_cb(StickyNote *note); -void properties_apply_font_cb(StickyNote *note); -void properties_color_cb(GtkWidget *button, StickyNote *note); -void properties_font_cb(GtkWidget *button, StickyNote *note); -void properties_activate_cb(GtkWidget *widget, StickyNote *note); +void +properties_apply_title_cb (StickyNote *note); +void +properties_apply_color_cb (StickyNote *note); +void +properties_apply_font_cb (StickyNote *note); +void +properties_color_cb (GtkWidget *button, + StickyNote *note); +void +properties_font_cb (GtkWidget *button, + StickyNote *note); +void +properties_activate_cb (GtkWidget *widget, + StickyNote *note); #endif /* __STICKYNOTES_CALLBACKS_H__ */ diff --git a/stickynotes/util.c b/stickynotes/util.c index d8e370c4..9b6a5180 100644 --- a/stickynotes/util.c +++ b/stickynotes/util.c @@ -29,97 +29,108 @@ static Atom xstuff_atom_get (const char *atom_name) { - static GHashTable *atom_hash; - Display *xdisplay; - Atom retval; + static GHashTable *atom_hash; + Display *xdisplay; + Atom retval; - g_return_val_if_fail (atom_name != NULL, None); + g_return_val_if_fail (atom_name != NULL, None); - xdisplay = GDK_DISPLAY_XDISPLAY (gdk_display_get_default ()); + xdisplay = GDK_DISPLAY_XDISPLAY (gdk_display_get_default ()); - if (!atom_hash) - atom_hash = g_hash_table_new_full ( - g_str_hash, g_str_equal, g_free, NULL); + if (!atom_hash) + atom_hash = g_hash_table_new_full (g_str_hash, + g_str_equal, + g_free, NULL); - retval = GPOINTER_TO_UINT (g_hash_table_lookup (atom_hash, atom_name)); - if (!retval) { - retval = XInternAtom (xdisplay, atom_name, FALSE); + retval = GPOINTER_TO_UINT (g_hash_table_lookup (atom_hash, atom_name)); + if (!retval) { + retval = XInternAtom (xdisplay, atom_name, FALSE); - if (retval != None) - g_hash_table_insert (atom_hash, g_strdup (atom_name), - GUINT_TO_POINTER (retval)); - } + if (retval != None) + g_hash_table_insert (atom_hash, g_strdup (atom_name), + GUINT_TO_POINTER (retval)); + } - return retval; + return retval; } int xstuff_get_current_workspace (GtkWindow *window) { - Window root_window; - Atom type = None; - gulong nitems; - gulong bytes_after; - gulong *num; - int format; - int result; - int retval; - GdkDisplay *gdk_display; - Display *xdisplay; - - root_window = GDK_WINDOW_XID (gtk_widget_get_window (GTK_WIDGET (window))); +#ifdef GDK_WINDOWING_X11 + Window root_window; + Atom type = None; + gulong nitems; + gulong bytes_after; + gulong *num; + int format; + int result; + int retval; + GdkDisplay *gdk_display; + Display *xdisplay; + gdk_display = gdk_display_get_default (); - xdisplay = GDK_DISPLAY_XDISPLAY (gdk_display); - - gdk_x11_display_error_trap_push (gdk_display); - result = XGetWindowProperty (xdisplay, - root_window, - xstuff_atom_get ("_NET_CURRENT_DESKTOP"), - 0, G_MAXLONG, - False, XA_CARDINAL, - &type, &format, &nitems, - &bytes_after, (gpointer) &num); - if (gdk_x11_display_error_trap_pop (gdk_display) || result != Success) - return -1; - - if (type != XA_CARDINAL) { - XFree (num); - return -1; - } - - retval = *num; - - XFree (num); - - return retval; + if (!GDK_IS_X11_DISPLAY (gdk_display)) + return -1; + + root_window = GDK_WINDOW_XID (gtk_widget_get_window (GTK_WIDGET (window))); + xdisplay = GDK_DISPLAY_XDISPLAY (gdk_display); + + gdk_x11_display_error_trap_push (gdk_display); + result = XGetWindowProperty (xdisplay, + root_window, + xstuff_atom_get ("_NET_CURRENT_DESKTOP"), + 0, G_MAXLONG, + False, XA_CARDINAL, + &type, &format, &nitems, + &bytes_after, (gpointer) &num); + if (gdk_x11_display_error_trap_pop (gdk_display) || result != Success) + return -1; + + if (type != XA_CARDINAL) { + XFree (num); + return -1; + } + + retval = *num; + + XFree (num); + + return retval; +#else + return -1; +#endif } void xstuff_change_workspace (GtkWindow *window, int new_space) { - XEvent xev; - Window xwindow; - Display *gdk_display; - Screen *screen; - - gdk_display = GDK_DISPLAY_XDISPLAY (gdk_display_get_default ()); - xwindow = GDK_WINDOW_XID (GDK_WINDOW (gtk_widget_get_window (GTK_WIDGET (window)))); - screen = GDK_SCREEN_XSCREEN (gtk_widget_get_screen (GTK_WIDGET (window))); - - xev.xclient.type = ClientMessage; - xev.xclient.serial = 0; - xev.xclient.send_event = True; - xev.xclient.display = gdk_display; - xev.xclient.window = xwindow; - xev.xclient.message_type = xstuff_atom_get ("_NET_WM_DESKTOP"); - xev.xclient.format = 32; - xev.xclient.data.l[0] = new_space; - xev.xclient.data.l[1] = 0; - xev.xclient.data.l[2] = 0; - - XSendEvent (gdk_display, - RootWindowOfScreen (screen), - False, - SubstructureRedirectMask | SubstructureNotifyMask, - &xev); + XEvent xev; + Window xwindow; + Display *gdk_display; + Screen *screen; + + if (!GDK_IS_X11_DISPLAY (gdk_display_get_default())) + return; + + gdk_display = GDK_DISPLAY_XDISPLAY (gdk_display_get_default ()); + xwindow = GDK_WINDOW_XID (GDK_WINDOW (gtk_widget_get_window (GTK_WIDGET (window)))); + screen = GDK_SCREEN_XSCREEN (gtk_widget_get_screen (GTK_WIDGET (window))); + + xev.xclient.type = ClientMessage; + xev.xclient.serial = 0; + xev.xclient.send_event = True; + xev.xclient.display = gdk_display; + xev.xclient.window = xwindow; + xev.xclient.message_type = xstuff_atom_get ("_NET_WM_DESKTOP"); + xev.xclient.format = 32; + xev.xclient.data.l[0] = new_space; + xev.xclient.data.l[1] = 0; + xev.xclient.data.l[2] = 0; + + XSendEvent (gdk_display, + RootWindowOfScreen (screen), + False, + SubstructureRedirectMask | SubstructureNotifyMask, + &xev); } diff --git a/stickynotes/util.h b/stickynotes/util.h index 61d86c4f..e3724c54 100644 --- a/stickynotes/util.h +++ b/stickynotes/util.h @@ -23,8 +23,8 @@ #include <glib.h> #include <gtk/gtk.h> -void xstuff_change_workspace (GtkWindow *window, - int new_space); -int xstuff_get_current_workspace (GtkWindow *window); +void xstuff_change_workspace (GtkWindow *window, + int new_space); +int xstuff_get_current_workspace (GtkWindow *window); #endif /* #ifndef __UTIL_H__ */ |