summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore1
-rw-r--r--gdk/quartz/gdkmonitor-quartz.c17
-rw-r--r--gdk/quartz/gdkmonitor-quartz.h2
-rw-r--r--gdk/quartz/gdkscreen-quartz.c2
-rw-r--r--gdk/win32/gdkevents-win32.c6
-rw-r--r--gdk/win32/gdksurface-win32.c18
-rw-r--r--gtk/gtkentry.c10
-rw-r--r--gtk/gtknotebook.c29
-rw-r--r--gtk/theme/Adwaita/_common.scss2
-rw-r--r--gtk/theme/Adwaita/gtk-contained-dark.css4
-rw-r--r--gtk/theme/Adwaita/gtk-contained.css4
-rw-r--r--meson.build30
-rw-r--r--po-properties/sl.po7843
-rw-r--r--po/eo.po5088
-rw-r--r--po/sl.po4619
15 files changed, 9993 insertions, 7682 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000000..025c6c9c02
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+/subprojects/*/
diff --git a/gdk/quartz/gdkmonitor-quartz.c b/gdk/quartz/gdkmonitor-quartz.c
index 8130f2f6cc..b3e11f7d3e 100644
--- a/gdk/quartz/gdkmonitor-quartz.c
+++ b/gdk/quartz/gdkmonitor-quartz.c
@@ -35,12 +35,19 @@ gdk_quartz_monitor_get_workarea (GdkMonitor *monitor,
GDK_QUARTZ_ALLOC_POOL;
- NSRect rect = [quartz_monitor->nsscreen visibleFrame];
+ NSArray *array = [NSScreen screens];
+ if (quartz_monitor->monitor_num < [array count])
+ {
+ NSScreen *screen = [array objectAtIndex:quartz_monitor->monitor_num];
+ NSRect rect = [screen visibleFrame];
- dest->x = rect.origin.x - quartz_screen->min_x;
- dest->y = quartz_screen->height - (rect.origin.y + rect.size.height) + quartz_screen->min_y;
- dest->width = rect.size.width;
- dest->height = rect.size.height;
+ dest->x = rect.origin.x - quartz_screen->min_x;
+ dest->y = quartz_screen->height - (rect.origin.y + rect.size.height) + quartz_screen->min_y;
+ dest->width = rect.size.width;
+ dest->height = rect.size.height;
+ }
+ else
+ *dest = monitor->geometry;
GDK_QUARTZ_RELEASE_POOL;
}
diff --git a/gdk/quartz/gdkmonitor-quartz.h b/gdk/quartz/gdkmonitor-quartz.h
index 448c483f7a..468a1d8f96 100644
--- a/gdk/quartz/gdkmonitor-quartz.h
+++ b/gdk/quartz/gdkmonitor-quartz.h
@@ -30,7 +30,7 @@ struct _GdkQuartzMonitor
{
GdkMonitor parent;
- NSScreen *nsscreen;
+ gint monitor_num;
};
struct _GdkQuartzMonitorClass {
diff --git a/gdk/quartz/gdkscreen-quartz.c b/gdk/quartz/gdkscreen-quartz.c
index f8094354a0..303c603fcc 100644
--- a/gdk/quartz/gdkscreen-quartz.c
+++ b/gdk/quartz/gdkscreen-quartz.c
@@ -144,7 +144,7 @@ gdk_quartz_screen_calculate_layout (GdkQuartzScreen *screen)
"display", display,
NULL);
g_ptr_array_add (display_quartz->monitors, monitor);
- monitor->nsscreen = [array objectAtIndex:i];
+ monitor->monitor_num = i;
NSRect rect = [[array objectAtIndex:i] frame];
diff --git a/gdk/win32/gdkevents-win32.c b/gdk/win32/gdkevents-win32.c
index 73529b8ef9..ed31ba5b51 100644
--- a/gdk/win32/gdkevents-win32.c
+++ b/gdk/win32/gdkevents-win32.c
@@ -1701,7 +1701,7 @@ ensure_stacking_on_unminimize (MSG *msg)
g_print (" restacking %p above %p",
msg->hwnd, lowest_transient));
SetWindowPos (msg->hwnd, lowest_transient, 0, 0, 0, 0,
- SWP_NOACTIVATE | SWP_NOMOVE | SWP_NOSIZE);
+ SWP_NOACTIVATE | SWP_NOMOVE | SWP_NOSIZE | SWP_NOOWNERZORDER);
}
}
@@ -1782,7 +1782,7 @@ ensure_stacking_on_activate_app (MSG *msg,
impl->transient_owner != NULL)
{
SetWindowPos (msg->hwnd, HWND_TOP, 0, 0, 0, 0,
- SWP_NOACTIVATE | SWP_NOMOVE | SWP_NOSIZE);
+ SWP_NOACTIVATE | SWP_NOMOVE | SWP_NOSIZE | SWP_NOOWNERZORDER);
return;
}
@@ -1824,7 +1824,7 @@ ensure_stacking_on_activate_app (MSG *msg,
g_print (" restacking %p above %p",
msg->hwnd, rover));
SetWindowPos (msg->hwnd, rover, 0, 0, 0, 0,
- SWP_NOACTIVATE | SWP_NOMOVE | SWP_NOSIZE);
+ SWP_NOACTIVATE | SWP_NOMOVE | SWP_NOSIZE | SWP_NOOWNERZORDER);
break;
}
}
diff --git a/gdk/win32/gdksurface-win32.c b/gdk/win32/gdksurface-win32.c
index d47d67bfdb..d52d099e2b 100644
--- a/gdk/win32/gdksurface-win32.c
+++ b/gdk/win32/gdksurface-win32.c
@@ -1118,7 +1118,7 @@ show_window_internal (GdkSurface *window,
API_CALL (SetWindowPos, (GDK_SURFACE_HWND (window),
(window->state & GDK_SURFACE_STATE_ABOVE)?HWND_TOPMOST:HWND_NOTOPMOST,
0, 0, 0, 0,
- SWP_NOSIZE | SWP_NOMOVE | SWP_NOACTIVATE));
+ SWP_NOSIZE | SWP_NOMOVE | SWP_NOACTIVATE | SWP_NOOWNERZORDER));
}
}
@@ -1376,7 +1376,7 @@ gdk_win32_surface_raise (GdkSurface *window)
if (GDK_SURFACE_TYPE (window) == GDK_SURFACE_TEMP)
API_CALL (SetWindowPos, (GDK_SURFACE_HWND (window), HWND_TOPMOST,
0, 0, 0, 0,
- SWP_NOACTIVATE | SWP_NOMOVE | SWP_NOSIZE));
+ SWP_NOACTIVATE | SWP_NOMOVE | SWP_NOSIZE | SWP_NOOWNERZORDER));
else if (window->accept_focus)
/* Do not wrap this in an API_CALL macro as SetForegroundWindow might
* fail when for example dragging a window belonging to a different
@@ -1386,7 +1386,7 @@ gdk_win32_surface_raise (GdkSurface *window)
else
API_CALL (SetWindowPos, (GDK_SURFACE_HWND (window), HWND_TOP,
0, 0, 0, 0,
- SWP_NOACTIVATE | SWP_NOMOVE | SWP_NOSIZE));
+ SWP_NOACTIVATE | SWP_NOMOVE | SWP_NOSIZE | SWP_NOOWNERZORDER));
}
}
@@ -1403,7 +1403,7 @@ gdk_win32_surface_lower (GdkSurface *window)
API_CALL (SetWindowPos, (GDK_SURFACE_HWND (window), HWND_BOTTOM,
0, 0, 0, 0,
- SWP_NOACTIVATE | SWP_NOMOVE | SWP_NOSIZE));
+ SWP_NOACTIVATE | SWP_NOMOVE | SWP_NOSIZE | SWP_NOOWNERZORDER));
}
}
@@ -2313,7 +2313,7 @@ _gdk_win32_surface_update_style_bits (GdkSurface *window)
rect.right += after.right - before.right;
rect.bottom += after.bottom - before.bottom;
- flags = SWP_FRAMECHANGED | SWP_NOACTIVATE | SWP_NOREPOSITION;
+ flags = SWP_FRAMECHANGED | SWP_NOACTIVATE | SWP_NOREPOSITION | SWP_NOOWNERZORDER;
if (will_be_topmost && !was_topmost)
{
@@ -4767,7 +4767,7 @@ gdk_win32_surface_fullscreen (GdkSurface *window)
API_CALL (SetWindowPos, (GDK_SURFACE_HWND (window), HWND_TOP,
x, y, width, height,
- SWP_NOCOPYBITS | SWP_SHOWWINDOW));
+ SWP_NOCOPYBITS | SWP_SHOWWINDOW | SWP_NOOWNERZORDER));
}
}
@@ -4790,7 +4790,7 @@ gdk_win32_surface_unfullscreen (GdkSurface *window)
API_CALL (SetWindowPos, (GDK_SURFACE_HWND (window), HWND_NOTOPMOST,
fi->r.left, fi->r.top,
fi->r.right - fi->r.left, fi->r.bottom - fi->r.top,
- SWP_NOCOPYBITS | SWP_SHOWWINDOW));
+ SWP_NOCOPYBITS | SWP_SHOWWINDOW | SWP_NOOWNERZORDER));
g_object_set_data (G_OBJECT (window), "fullscreen-info", NULL);
g_free (fi);
@@ -4816,7 +4816,7 @@ gdk_win32_surface_set_keep_above (GdkSurface *window,
API_CALL (SetWindowPos, (GDK_SURFACE_HWND (window),
setting ? HWND_TOPMOST : HWND_NOTOPMOST,
0, 0, 0, 0,
- SWP_NOSIZE | SWP_NOMOVE | SWP_NOACTIVATE));
+ SWP_NOSIZE | SWP_NOMOVE | SWP_NOACTIVATE | SWP_NOOWNERZORDER));
}
gdk_synthesize_surface_state (window,
@@ -4842,7 +4842,7 @@ gdk_win32_surface_set_keep_below (GdkSurface *window,
API_CALL (SetWindowPos, (GDK_SURFACE_HWND (window),
setting ? HWND_BOTTOM : HWND_NOTOPMOST,
0, 0, 0, 0,
- SWP_NOSIZE | SWP_NOMOVE | SWP_NOACTIVATE));
+ SWP_NOSIZE | SWP_NOMOVE | SWP_NOACTIVATE | SWP_NOOWNERZORDER));
}
gdk_synthesize_surface_state (window,
diff --git a/gtk/gtkentry.c b/gtk/gtkentry.c
index 634229978b..cd4ef3ca11 100644
--- a/gtk/gtkentry.c
+++ b/gtk/gtkentry.c
@@ -166,7 +166,7 @@
* .insertion-cursor.
*/
-#define MIN_ENTRY_WIDTH 150
+#define NAT_ENTRY_WIDTH 150
#define MAX_ICONS 2
@@ -3169,13 +3169,13 @@ gtk_entry_measure (GtkWidget *widget,
digit_width = pango_font_metrics_get_approximate_digit_width (metrics);
char_pixels = (MAX (char_width, digit_width) + PANGO_SCALE - 1) / PANGO_SCALE;
- if (priv->width_chars < 0)
- min = MIN_ENTRY_WIDTH;
- else
+ if (priv->width_chars >= 0)
min = char_pixels * priv->width_chars;
+ else
+ min = 0;
if (priv->max_width_chars < 0)
- nat = min;
+ nat = NAT_ENTRY_WIDTH;
else
nat = char_pixels * priv->max_width_chars;
diff --git a/gtk/gtknotebook.c b/gtk/gtknotebook.c
index 0649844562..6b8ccad3b7 100644
--- a/gtk/gtknotebook.c
+++ b/gtk/gtknotebook.c
@@ -497,6 +497,8 @@ static void gtk_notebook_menu_switch_page (GtkWidget *widget,
/*** GtkNotebook Menu Functions ***/
static void gtk_notebook_menu_item_create (GtkNotebook *notebook,
GList *list);
+static void gtk_notebook_menu_item_recreate (GtkNotebook *notebook,
+ GList *list);
static void gtk_notebook_menu_label_unparent (GtkWidget *widget,
gpointer data);
static void gtk_notebook_menu_detacher (GtkWidget *widget,
@@ -5481,6 +5483,7 @@ gtk_notebook_menu_switch_page (GtkWidget *widget,
/* Private GtkNotebook Menu Functions:
*
* gtk_notebook_menu_item_create
+ * gtk_notebook_menu_item_recreate
* gtk_notebook_menu_label_unparent
* gtk_notebook_menu_detacher
*/
@@ -5515,6 +5518,19 @@ gtk_notebook_menu_item_create (GtkNotebook *notebook,
}
static void
+gtk_notebook_menu_item_recreate (GtkNotebook *notebook,
+ GList *list)
+{
+ GtkNotebookPrivate *priv = notebook->priv;
+ GtkNotebookPage *page = list->data;
+ GtkWidget *menu_item = gtk_widget_get_parent (page->menu_label);
+
+ gtk_container_remove (GTK_CONTAINER (menu_item), page->menu_label);
+ gtk_container_remove (GTK_CONTAINER (priv->menu), menu_item);
+ gtk_notebook_menu_item_create (notebook, list);
+}
+
+static void
gtk_notebook_menu_label_unparent (GtkWidget *widget,
gpointer data)
{
@@ -6476,7 +6492,6 @@ gtk_notebook_set_tab_label (GtkNotebook *notebook,
if (page->tab_label == tab_label)
return;
-
gtk_notebook_remove_tab_label (notebook, page);
if (tab_label)
@@ -6516,6 +6531,9 @@ gtk_notebook_set_tab_label (GtkNotebook *notebook,
gtk_widget_queue_resize (GTK_WIDGET (notebook));
}
+ if (priv->menu)
+ gtk_notebook_menu_item_recreate (notebook, list);
+
child_notify (notebook, child, "tab-label");
}
@@ -6720,14 +6738,7 @@ gtk_notebook_child_reordered (GtkNotebook *notebook,
list = g_list_find (priv->children, page);
if (priv->menu)
- {
- GtkWidget *menu_item;
-
- menu_item = gtk_widget_get_parent (page->menu_label);
- gtk_container_remove (GTK_CONTAINER (menu_item), page->menu_label);
- gtk_container_remove (GTK_CONTAINER (priv->menu), menu_item);
- gtk_notebook_menu_item_create (notebook, list);
- }
+ gtk_notebook_menu_item_recreate (notebook, list);
if (list->prev)
sibling = gtk_widget_get_css_node (GTK_NOTEBOOK_PAGE (list->prev)->tab_widget);
diff --git a/gtk/theme/Adwaita/_common.scss b/gtk/theme/Adwaita/_common.scss
index b2f7bfe7f3..ecd7ad2c0c 100644
--- a/gtk/theme/Adwaita/_common.scss
+++ b/gtk/theme/Adwaita/_common.scss
@@ -1723,7 +1723,7 @@ headerbar { // headerbar border rounding
// Development versions of apps to use a differently styled headerbar
window.devel {
- headerbar:last-child {
+ headerbar.titlebar:not(.selection-mode) {
background: transparent -gtk-icontheme("system-run-symbolic") 90% 0/256px 256px no-repeat,
linear-gradient(to left, mix($selected_bg_color, $bg_color, 10%) 8%, $bg_color 25%);
color: transparentize($fg_color,.9);
diff --git a/gtk/theme/Adwaita/gtk-contained-dark.css b/gtk/theme/Adwaita/gtk-contained-dark.css
index 4b362f5505..14449c3997 100644
--- a/gtk/theme/Adwaita/gtk-contained-dark.css
+++ b/gtk/theme/Adwaita/gtk-contained-dark.css
@@ -694,9 +694,9 @@ window.csd > .titlebar:not(headerbar) { padding: 0; background-color: transparen
.titlebar:not(headerbar) > separator { background-color: #1b1f20; }
-window.devel headerbar { background: transparent -gtk-icontheme("system-run-symbolic") 90% 0/256px 256px no-repeat, linear-gradient(to left, #313d45 8%, #33393b 25%); color: rgba(238, 238, 236, 0.1); }
+window.devel headerbar.titlebar:not(.selection-mode) { background: transparent -gtk-icontheme("system-run-symbolic") 90% 0/256px 256px no-repeat, linear-gradient(to left, #313d45 8%, #33393b 25%); color: rgba(238, 238, 236, 0.1); }
-window.devel headerbar label { color: #eeeeec; }
+window.devel headerbar.titlebar:not(.selection-mode) label { color: #eeeeec; }
/************ Pathbars * */
.path-bar button.text-button, .path-bar button.image-button, .path-bar button { padding-left: 4px; padding-right: 4px; }
diff --git a/gtk/theme/Adwaita/gtk-contained.css b/gtk/theme/Adwaita/gtk-contained.css
index 67aef82932..71f0a2695e 100644
--- a/gtk/theme/Adwaita/gtk-contained.css
+++ b/gtk/theme/Adwaita/gtk-contained.css
@@ -702,9 +702,9 @@ window.csd > .titlebar:not(headerbar) { padding: 0; background-color: transparen
.titlebar:not(headerbar) > separator { background-color: #b6b6b3; }
-window.devel headerbar { background: transparent -gtk-icontheme("system-run-symbolic") 90% 0/256px 256px no-repeat, linear-gradient(to left, #d8dfe6 8%, #e8e8e7 25%); color: rgba(46, 52, 54, 0.1); }
+window.devel headerbar.titlebar:not(.selection-mode) { background: transparent -gtk-icontheme("system-run-symbolic") 90% 0/256px 256px no-repeat, linear-gradient(to left, #d8dfe6 8%, #e8e8e7 25%); color: rgba(46, 52, 54, 0.1); }
-window.devel headerbar label { color: #2e3436; }
+window.devel headerbar.titlebar:not(.selection-mode) label { color: #2e3436; }
/************ Pathbars * */
.path-bar button.text-button, .path-bar button.image-button, .path-bar button { padding-left: 4px; padding-right: 4px; }
diff --git a/meson.build b/meson.build
index 713877808f..53504f9279 100644
--- a/meson.build
+++ b/meson.build
@@ -327,12 +327,8 @@ pango_dep = dependency('pango', version: pango_req,
# Require PangoFT2 if on X11 or wayland
require_pangoft2 = wayland_enabled or x11_enabled
-
-if require_pangoft2
- pangoft_dep = dependency('pangoft2', fallback : ['pango', 'libpangoft2_dep'])
-else
- pangoft_dep = dependency('pangoft2', required: false)
-endif
+pangoft_dep = dependency('pangoft2', required: require_pangoft2,
+ fallback : ['pango', 'libpangoft2_dep'])
if pangoft_dep.found()
# Need at least 2.7.1 for FT_Get_Var_Design_Coordinates()
@@ -373,7 +369,8 @@ pixbuf_dep = dependency('gdk-pixbuf-2.0', version: gdk_pixbuf_req,
epoxy_dep = dependency('epoxy', version: epoxy_req,
fallback: ['libepoxy', 'libepoxy_dep'])
atk_dep = dependency('atk', version: atk_req)
-harfbuzz_dep = dependency('harfbuzz', version: '>= 0.9', required: false)
+harfbuzz_dep = dependency('harfbuzz', version: '>= 0.9', required: false,
+ fallback: ['harfbuzz', 'libharfbuzz_dep'])
xkbdep = dependency('xkbcommon', version: xkbcommon_req, required: wayland_enabled)
graphene_dep = dependency('graphene-gobject-1.0', version: graphene_req,
fallback: ['graphene', 'graphene_dep'])
@@ -590,9 +587,24 @@ endif
# Check for bind_textdomain_codeset, including -lintl if GLib brings it in by
# doing the same check as glib. We can't check that by linking to glib because
# it might be a subproject and hence not built yet.
-libintl_dep = cc.find_library('intl', required : false)
-if cc.has_function('bind_textdomain_codeset', dependencies: libintl_dep)
+if cc.has_function('ngettext')
+ libintl_dep = []
cdata.set('HAVE_BIND_TEXTDOMAIN_CODESET', 1)
+else
+ libintl_dep = cc.find_library('intl', required : false)
+ if cc.has_function('bind_textdomain_codeset', dependencies: libintl_dep)
+ cdata.set('HAVE_BIND_TEXTDOMAIN_CODESET', 1)
+ else
+ # Don't use subproject('proxy-libintl').get_variable('intl_dep') because that
+ # makes the dependency unconditional. This way, people have the option of
+ # either not providing the subproject or disabling it entirely with
+ # --wrap-mode=nodownload or nofallback.
+ libintl_dep = dependency('', required : false,
+ fallback: ['proxy-libintl', 'intl_dep'])
+ if libintl_dep.found()
+ cdata.set('HAVE_BIND_TEXTDOMAIN_CODESET', 1)
+ endif
+ endif
endif
if os_unix
diff --git a/po-properties/sl.po b/po-properties/sl.po
index 791b237c15..8106d21707 100644
--- a/po-properties/sl.po
+++ b/po-properties/sl.po
@@ -1,4 +1,4 @@
-#'gtk+/po-properties/
+#'gtk/po-properties/
# Slovenian translation of gtk+-properties.
# Copyright (C) 1999-2011 Free Software Foundation, Inc.
# This file is distributed under the same license as the gtk+-properties package.
@@ -6,16 +6,16 @@
# Andraž Tori <andraz.tori1@guest.arnes.si>, 2004.
# Matic Žgur <mr.zgur@gmail.com>, 2006.
# Andrej Žnidaršič <andrej.znidarsic@gmail.com>, 2010.
-# Klemen Košir <klemen.kosir@gmx.com>, 2010-2011.
-# Martin Srebotnjak <miles@filmsi.net>, 2007-2014.
-# Matej Urbančič <mateju@svn.gnome.org>, 2007–2017.
+# Klemen Košir <klemen.kosir@gmx.com>, 2010–2011.
+# Martin Srebotnjak <miles@filmsi.net>, 2007–2014.
+# Matej Urbančič <mateju@svn.gnome.org>, 2007–2018.
#
msgid ""
msgstr ""
"Project-Id-Version: gtk+-properties master\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-08-27 22:33+0200\n"
-"PO-Revision-Date: 2017-08-27 22:34+0200\n"
+"POT-Creation-Date: 2018-10-22 08:51+0000\n"
+"PO-Revision-Date: 2018-10-23 20:00+0200\n"
"Last-Translator: Matej Urbančič <mateju@svn.gnome.org>\n"
"Language-Team: Slovenščina <gnome-si@googlegroups.com>\n"
"Language: sl\n"
@@ -25,11 +25,10 @@ msgstr ""
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || n"
"%100==4 ? 3 : 0);\n"
"X-Poedit-SourceCharset: utf-8\n"
-"X-Generator: Poedit 2.0.1\n"
+"X-Generator: Poedit 2.1.1\n"
#: gdk/gdkapplaunchcontext.c:127 gdk/gdkcursor.c:139 gdk/gdkdevicemanager.c:185
-#: gdk/gdkdrawcontext.c:134 gdk/gdkseat.c:202 gdk/gdkseat.c:203
-#: gdk/gdkwindow.c:288 gdk/gdkwindow.c:289
+#: gdk/gdkglcontext.c:317 gdk/gdkseat.c:202 gdk/gdkseat.c:203
msgid "Display"
msgstr "Prikaz"
@@ -137,51 +136,51 @@ msgstr "Orodje, ki je trenutno uporabljena s to napravo"
msgid "Display for the device manager"
msgstr "Prikaz upravljalnika naprave"
-#: gdk/gdkdisplay.c:215 gdk/gdkdisplay.c:216
-msgid "Composited"
-msgstr "Sestavljeno"
-
-#: gdk/gdkdisplay.c:230 gdk/gdkdisplay.c:231
-msgid "RGBA"
-msgstr "RGBA"
-
-#: gdk/gdkdisplaymanager.c:168
+#: gdk/gdkdisplaymanager.c:169
msgid "Default Display"
msgstr "Privzeti prikaz"
-#: gdk/gdkdisplaymanager.c:169
+#: gdk/gdkdisplaymanager.c:170
msgid "The default display for GDK"
msgstr "Privzeti prikaz za GDK"
-#: gdk/gdkdrawcontext.c:135
-msgid "The GDK display used to create the context"
-msgstr "Okno GDK, ki je uporabljeno za ustvarjanje vsebine"
+#: gdk/gdkglcontext.c:318
+msgid "The GDK display used to create the GL context"
+msgstr "Okno GDK, ki je zavezano s predmetom GL"
-#: gdk/gdkdrawcontext.c:149 gtk/gtkwidget.c:1263
+#: gdk/gdkglcontext.c:333 gtk/gtkwidget.c:1344
msgid "Window"
msgstr "Okno"
-#: gdk/gdkdrawcontext.c:150
-msgid "The GDK window bound to the context"
-msgstr "Okno GDK, ki je zavezano z vsebino"
+#: gdk/gdkglcontext.c:334
+msgid "The GDK window bound to the GL context"
+msgstr "Okno GDK, ki je zavezano s kontekstom GL"
-#: gdk/gdkglcontext.c:343
+#: gdk/gdkglcontext.c:349
msgid "Shared context"
msgstr "Deljeni kontekst"
-#: gdk/gdkglcontext.c:344
+#: gdk/gdkglcontext.c:350
msgid "The GL context this context shares data with"
msgstr "Predmet GL, s katerim si ta deli podatke"
-#: gdk/gdkscreen.c:84
+#: gdk/gdkscreen.c:91
+msgid "Font options"
+msgstr "Možnosti pisave"
+
+#: gdk/gdkscreen.c:92
+msgid "The default font options for the screen"
+msgstr "Privzete možnosti pisave zaslona"
+
+#: gdk/gdkscreen.c:99
msgid "Font resolution"
msgstr "Ločljivost pisave"
-#: gdk/gdkscreen.c:85
+#: gdk/gdkscreen.c:100
msgid "The resolution for fonts on the screen"
msgstr "Ločljivost pisav na zaslonu"
-#: gdk/gdkwindow.c:273 gdk/gdkwindow.c:274
+#: gdk/gdkwindow.c:354 gdk/gdkwindow.c:355
msgid "Cursor"
msgstr "Kazalka"
@@ -209,11 +208,11 @@ msgstr "Dodatna oznaka"
msgid "Minor version number"
msgstr "Dodatna številka različice"
-#: gdk/x11/gdkdevice-xi2.c:142
+#: gdk/x11/gdkdevice-xi2.c:143
msgid "Device ID"
msgstr "ID naprave"
-#: gdk/x11/gdkdevice-xi2.c:143
+#: gdk/x11/gdkdevice-xi2.c:144
msgid "Device identifier"
msgstr "Določilo naprave"
@@ -225,11 +224,927 @@ msgstr "Izrisovalnik celic"
msgid "The cell renderer represented by this accessible"
msgstr "Izrisovalnik celic, ki ga predstavlja ta predmet."
-#: gtk/gtkaboutdialog.c:356
+#: gtk/deprecated/gtkaction.c:243 gtk/deprecated/gtkactiongroup.c:200
+#: gtk/deprecated/gtkthemingengine.c:247 gtk/gtkcssnode.c:638
+#: gtk/gtkprinter.c:121 gtk/gtkstack.c:516 gtk/gtktextmark.c:136
+msgid "Name"
+msgstr "Ime"
+
+#: gtk/deprecated/gtkaction.c:244
+msgid "A unique name for the action."
+msgstr "Edinstveno ime dejanja."
+
+#: gtk/deprecated/gtkaction.c:264 gtk/gtkbutton.c:281 gtk/gtkexpander.c:308
+#: gtk/gtkframe.c:231 gtk/gtklabel.c:805 gtk/gtkmenuitem.c:789
+#: gtk/gtktoolbutton.c:243 gtk/gtktoolitemgroup.c:1641
+msgid "Label"
+msgstr "Oznaka"
+
+#: gtk/deprecated/gtkaction.c:265
+msgid "The label used for menu items and buttons that activate this action."
+msgstr ""
+"Oznaka, uporabljena za predmete menija in gumbe, ki to dejanje izvedejo."
+
+#: gtk/deprecated/gtkaction.c:284
+msgid "Short label"
+msgstr "Kratka oznaka"
+
+#: gtk/deprecated/gtkaction.c:285
+msgid "A shorter label that may be used on toolbar buttons."
+msgstr "Krajša oznaka, uporabljena za gumbe orodne vrstice."
+
+#: gtk/deprecated/gtkaction.c:300
+msgid "Tooltip"
+msgstr "Orodni namig"
+
+#: gtk/deprecated/gtkaction.c:301
+msgid "A tooltip for this action."
+msgstr "Orodni namig tega dejanja."
+
+#: gtk/deprecated/gtkaction.c:319
+msgid "Stock Icon"
+msgstr "Privzeta ikona"
+
+#: gtk/deprecated/gtkaction.c:320
+msgid "The stock icon displayed in widgets representing this action."
+msgstr "Ikona, prikazana v gradnikih, ki predstavljajo to dejanje."
+
+#: gtk/deprecated/gtkaction.c:342 gtk/deprecated/gtkstatusicon.c:279
+msgid "GIcon"
+msgstr "GIcon"
+
+#: gtk/deprecated/gtkaction.c:343 gtk/deprecated/gtkstatusicon.c:280
+#: gtk/gtkcellrendererpixbuf.c:282 gtk/gtkimage.c:359
+msgid "The GIcon being displayed"
+msgstr "Prikazan predmet GIcon"
+
+#: gtk/deprecated/gtkaction.c:365 gtk/deprecated/gtkstatusicon.c:263
+#: gtk/gtkcellrendererpixbuf.c:245 gtk/gtkimage.c:342 gtk/gtkprinter.c:170
+#: gtk/gtkwindow.c:887
+msgid "Icon Name"
+msgstr "Ime ikone"
+
+#: gtk/deprecated/gtkaction.c:366 gtk/deprecated/gtkstatusicon.c:264
+#: gtk/gtkcellrendererpixbuf.c:246 gtk/gtkimage.c:343
+msgid "The name of the icon from the icon theme"
+msgstr "Ime ikone iz ikonske teme"
+
+#: gtk/deprecated/gtkaction.c:381 gtk/gtktoolitem.c:179
+msgid "Visible when horizontal"
+msgstr "Viden, ko je orodna vrstica vodoravna"
+
+#: gtk/deprecated/gtkaction.c:382 gtk/gtktoolitem.c:180
+msgid ""
+"Whether the toolbar item is visible when the toolbar is in a horizontal "
+"orientation."
+msgstr ""
+"Ali naj bo predmet orodne vrstice viden, ko je orodna vrstica postavljena "
+"vodoravno."
+
+#: gtk/deprecated/gtkaction.c:400
+msgid "Visible when overflown"
+msgstr "Viden ob prehodu"
+
+#: gtk/deprecated/gtkaction.c:401
+msgid ""
+"When TRUE, toolitem proxies for this action are represented in the toolbar "
+"overflow menu."
+msgstr ""
+"Izbrana možnost omogoča, da so orodni predmeti dejanja prikazani v "
+"prekrivnem meniju orodne vrstice."
+
+#: gtk/deprecated/gtkaction.c:417 gtk/gtktoolitem.c:186
+msgid "Visible when vertical"
+msgstr "Viden, ko je orodna vrstica navpična"
+
+#: gtk/deprecated/gtkaction.c:418 gtk/gtktoolitem.c:187
+msgid ""
+"Whether the toolbar item is visible when the toolbar is in a vertical "
+"orientation."
+msgstr ""
+"Ali naj bo predmet orodne vrstice viden, ko je orodna vrstica postavljena "
+"navpično."
+
+#: gtk/deprecated/gtkaction.c:434 gtk/gtktoolitem.c:193
+msgid "Is important"
+msgstr "Je pomembno"
+
+#: gtk/deprecated/gtkaction.c:435
+msgid ""
+"Whether the action is considered important. When TRUE, toolitem proxies for "
+"this action show text in GTK_TOOLBAR_BOTH_HORIZ mode."
+msgstr ""
+"Ali naj dejanje velja za pomembno. Izbrana možnost omogoča, da predmeti "
+"kažejo besedilo v načinu GTK_TOOLBAR_BOTH_HORIZ."
+
+#: gtk/deprecated/gtkaction.c:451
+msgid "Hide if empty"
+msgstr "Skrij, če je prazen"
+
+#: gtk/deprecated/gtkaction.c:452
+msgid "When TRUE, empty menu proxies for this action are hidden."
+msgstr "Izbrana možnost omogoča, da so prazni predmeti menija skriti."
+
+#: gtk/deprecated/gtkaction.c:466 gtk/deprecated/gtkactiongroup.c:214
+#: gtk/gtkcellrenderer.c:305 gtk/gtkwidget.c:1152
+msgid "Sensitive"
+msgstr "Občutljivo"
+
+#: gtk/deprecated/gtkaction.c:467
+msgid "Whether the action is enabled."
+msgstr "Ali naj je dejanje omogočeno."
+
+#: gtk/deprecated/gtkaction.c:481 gtk/deprecated/gtkactiongroup.c:228
+#: gtk/deprecated/gtkstatusicon.c:314 gtk/gtkcssnode.c:649
+#: gtk/gtknativedialog.c:242 gtk/gtktreeviewcolumn.c:246 gtk/gtkwidget.c:1145
+msgid "Visible"
+msgstr "Vidno"
+
+#: gtk/deprecated/gtkaction.c:482
+msgid "Whether the action is visible."
+msgstr "Ali naj bo dejanje vidno."
+
+#: gtk/deprecated/gtkaction.c:497
+msgid "Action Group"
+msgstr "Skupina dejanj"
+
+#: gtk/deprecated/gtkaction.c:498
+msgid ""
+"The GtkActionGroup this GtkAction is associated with, or NULL (for internal "
+"use)."
+msgstr ""
+"GtkActionGroup, s katero je povezan ta GtkAction, ali NULL (za notranjo "
+"uporabo)."
+
+#: gtk/deprecated/gtkaction.c:519 gtk/deprecated/gtkimagemenuitem.c:264
+#: gtk/gtkbutton.c:393
+msgid "Always show image"
+msgstr "Vedno pokaži sliko"
+
+#: gtk/deprecated/gtkaction.c:520 gtk/deprecated/gtkimagemenuitem.c:265
+#: gtk/gtkbutton.c:394
+msgid "Whether the image will always be shown"
+msgstr "Ali bo slika vedno prikazana"
+
+#: gtk/deprecated/gtkactiongroup.c:201
+msgid "A name for the action group."
+msgstr "Ime skupine dejanj."
+
+#: gtk/deprecated/gtkactiongroup.c:215
+msgid "Whether the action group is enabled."
+msgstr "Ali naj bo skupina dejanj omogočena."
+
+#: gtk/deprecated/gtkactiongroup.c:229
+msgid "Whether the action group is visible."
+msgstr "Ali naj bo skupina dejanj vidna."
+
+#: gtk/deprecated/gtkactiongroup.c:242
+msgid "Accelerator Group"
+msgstr "Skupina pospeševalnika"
+
+#: gtk/deprecated/gtkactiongroup.c:243
+msgid "The accelerator group the actions of this group should use."
+msgstr "Dejanja skupine pospeševalnika, ki naj bi jih skupina izvajala."
+
+#: gtk/deprecated/gtkactivatable.c:290
+msgid "Related Action"
+msgstr "Povezano dejanje"
+
+#: gtk/deprecated/gtkactivatable.c:291
+msgid "The action this activatable will activate and receive updates from"
+msgstr "Dejanje, preko katerega to dejanje prejema posodobitve"
+
+#: gtk/deprecated/gtkactivatable.c:315
+msgid "Use Action Appearance"
+msgstr "Uporabi videz dejanj"
+
+#: gtk/deprecated/gtkactivatable.c:316
+msgid "Whether to use the related actions appearance properties"
+msgstr "Ali naj se uporabi lastnosti povezanega dejanja videza"
+
+#: gtk/deprecated/gtkalignment.c:151
+msgid "Horizontal alignment"
+msgstr "Vodoravna poravnava"
+
+#: gtk/deprecated/gtkalignment.c:152 gtk/gtkbutton.c:328
+msgid ""
+"Horizontal position of child in available space. 0.0 is left aligned, 1.0 is "
+"right aligned"
+msgstr ""
+"Vodoravni položaj podrejenega predmeta v razpoložljivem prostoru. 0,0 je "
+"poravnan levo, 1,0 je poravnan desno"
+
+#: gtk/deprecated/gtkalignment.c:170
+msgid "Vertical alignment"
+msgstr "Navpična poravnava"
+
+#: gtk/deprecated/gtkalignment.c:171 gtk/gtkbutton.c:347
+msgid ""
+"Vertical position of child in available space. 0.0 is top aligned, 1.0 is "
+"bottom aligned"
+msgstr ""
+"Navpični položaj podrejenega predmeta v razpoložljivem prostoru. 0,0 je "
+"poravnan na vrh, 1,0 je poravnan na dno."
+
+#: gtk/deprecated/gtkalignment.c:188
+msgid "Horizontal scale"
+msgstr "Vodoravno prilagajanje velikosti"
+
+#: gtk/deprecated/gtkalignment.c:189
+msgid ""
+"If available horizontal space is bigger than needed for the child, how much "
+"of it to use for the child. 0.0 means none, 1.0 means all"
+msgstr ""
+"V kolikor je na voljo več vodoravnega prostora kot je treba, koliko naj se "
+"ga porabi za podrejeni predmet. 0,0 pomeni nič, 1,0 pomeni vsega."
+
+#: gtk/deprecated/gtkalignment.c:206
+msgid "Vertical scale"
+msgstr "Navpično prilagajanje velikosti"
+
+#: gtk/deprecated/gtkalignment.c:207
+msgid ""
+"If available vertical space is bigger than needed for the child, how much of "
+"it to use for the child. 0.0 means none, 1.0 means all"
+msgstr ""
+"V kolikor je na voljo več navpičnega prostora kot je treba, koliko naj se ga "
+"porabi za podrejeni predmet. 0,0 pomeni nič, 1,0 pomeni vse."
+
+#: gtk/deprecated/gtkalignment.c:226
+msgid "Top Padding"
+msgstr "Blazinjenje na vrhu"
+
+#: gtk/deprecated/gtkalignment.c:227
+msgid "The padding to insert at the top of the widget."
+msgstr "Blazinjenje, ki naj se vstavi na zgornjo stran gradnika."
+
+#: gtk/deprecated/gtkalignment.c:245
+msgid "Bottom Padding"
+msgstr "Blazinjenje na dnu"
+
+#: gtk/deprecated/gtkalignment.c:246
+msgid "The padding to insert at the bottom of the widget."
+msgstr "Blazinjenje, ki naj se vstavi na spodnjo stran gradnika."
+
+#: gtk/deprecated/gtkalignment.c:264
+msgid "Left Padding"
+msgstr "Blazinjenje na levi"
+
+#: gtk/deprecated/gtkalignment.c:265
+msgid "The padding to insert at the left of the widget."
+msgstr "Blazinjenje, ki naj se vstavi na levo stran gradnika."
+
+#: gtk/deprecated/gtkalignment.c:283
+msgid "Right Padding"
+msgstr "Blazinjenje na desni"
+
+#: gtk/deprecated/gtkalignment.c:284
+msgid "The padding to insert at the right of the widget."
+msgstr "Blazinjenje, ki naj se vstavi na desno stran gradnika."
+
+#: gtk/deprecated/gtkarrow.c:121
+msgid "Arrow direction"
+msgstr "Smer puščice"
+
+#: gtk/deprecated/gtkarrow.c:122
+msgid "The direction the arrow should point"
+msgstr "Smer, v katero naj kaže puščica"
+
+#: gtk/deprecated/gtkarrow.c:130
+msgid "Arrow shadow"
+msgstr "Senca puščice"
+
+#: gtk/deprecated/gtkarrow.c:131
+msgid "Appearance of the shadow surrounding the arrow"
+msgstr "Videz sence, ki obkroža puščico"
+
+#: gtk/deprecated/gtkarrow.c:138 gtk/gtkcombobox.c:1226 gtk/gtkmenu.c:998
+#: gtk/gtkmenuitem.c:898
+msgid "Arrow Scaling"
+msgstr "Prilagajanje velikosti puščice"
+
+#: gtk/deprecated/gtkarrow.c:139
+msgid "Amount of space used up by arrow"
+msgstr "Količina prostora, ki ga uporabi puščica"
+
+#: gtk/deprecated/gtkcolorsel.c:325
+msgid "Has Opacity Control"
+msgstr "Ima nadzor prosojnosti"
+
+#: gtk/deprecated/gtkcolorsel.c:326
+msgid "Whether the color selector should allow setting opacity"
+msgstr "Ali izbirnik barv omogoča nastavljanje prosojnosti"
+
+#: gtk/deprecated/gtkcolorsel.c:332
+msgid "Has palette"
+msgstr "Ima paleto"
+
+#: gtk/deprecated/gtkcolorsel.c:333
+msgid "Whether a palette should be used"
+msgstr "Ali naj je uporabljena paleta"
+
+#: gtk/deprecated/gtkcolorsel.c:347 gtk/gtkcolorbutton.c:201
+msgid "Current Color"
+msgstr "Trenutna barva"
+
+#: gtk/deprecated/gtkcolorsel.c:348
+msgid "The current color"
+msgstr "Trenutna barva"
+
+#: gtk/deprecated/gtkcolorsel.c:354 gtk/gtkcolorbutton.c:217
+msgid "Current Alpha"
+msgstr "Trenutna alfa"
+
+#: gtk/deprecated/gtkcolorsel.c:355
+msgid "The current opacity value (0 fully transparent, 65535 fully opaque)"
+msgstr ""
+"Trenutna vrednost prosojnosti (0 popolnoma prosojno, 65535 popolnoma "
+"neprosojno)"
+
+#: gtk/deprecated/gtkcolorsel.c:369
+msgid "Current RGBA"
+msgstr "Trenutna barva RGBA"
+
+#: gtk/deprecated/gtkcolorsel.c:370
+msgid "The current RGBA color"
+msgstr "Trenutna barva RGBA"
+
+#: gtk/deprecated/gtkcolorseldialog.c:136
+msgid "Color Selection"
+msgstr "Izbira barve"
+
+#: gtk/deprecated/gtkcolorseldialog.c:137
+msgid "The color selection embedded in the dialog."
+msgstr "Izbira barve, vstavljene v pogovorno okno."
+
+#: gtk/deprecated/gtkcolorseldialog.c:143
+msgid "OK Button"
+msgstr "Gumb V redu"
+
+#: gtk/deprecated/gtkcolorseldialog.c:144
+msgid "The OK button of the dialog."
+msgstr "Gumb V redu v pogovornem oknu."
+
+#: gtk/deprecated/gtkcolorseldialog.c:150
+msgid "Cancel Button"
+msgstr "Gumb Prekliči"
+
+#: gtk/deprecated/gtkcolorseldialog.c:151
+msgid "The cancel button of the dialog."
+msgstr "Gumb Prekliči v pogovornem oknu."
+
+#: gtk/deprecated/gtkcolorseldialog.c:157
+msgid "Help Button"
+msgstr "Gumb Pomoč"
+
+#: gtk/deprecated/gtkcolorseldialog.c:158
+msgid "The help button of the dialog."
+msgstr "Gumb Pomoč v pogovornem oknu."
+
+#: gtk/deprecated/gtkfontsel.c:240 gtk/gtkfontbutton.c:507
+msgid "Font name"
+msgstr "Ime pisave"
+
+#: gtk/deprecated/gtkfontsel.c:241
+msgid "The string that represents this font"
+msgstr "Niz, ki predstavlja izbrano pisavo"
+
+#: gtk/deprecated/gtkfontsel.c:247 gtk/gtkfontchooser.c:90
+msgid "Preview text"
+msgstr "Besedilo za predogled"
+
+#: gtk/deprecated/gtkfontsel.c:248 gtk/gtkfontchooser.c:91
+msgid "The text to display in order to demonstrate the selected font"
+msgstr "Besedilo, ki se naj prikaže za predstavitev izbrane pisave"
+
+#: gtk/deprecated/gtkhandlebox.c:223 gtk/gtkcombobox.c:1245 gtk/gtkentry.c:1001
+#: gtk/gtkmenubar.c:253 gtk/gtkstatusbar.c:177 gtk/gtktoolbar.c:680
+#: gtk/gtkviewport.c:408
+msgid "Shadow type"
+msgstr "Vrsta sence"
+
+#: gtk/deprecated/gtkhandlebox.c:224
+msgid "Appearance of the shadow that surrounds the container"
+msgstr "Videz sence, ki obkroža vsebovalnik"
+
+#: gtk/deprecated/gtkhandlebox.c:232
+msgid "Handle position"
+msgstr "Položaj ročice"
+
+#: gtk/deprecated/gtkhandlebox.c:233
+msgid "Position of the handle relative to the child widget"
+msgstr "Položaj ročice glede na podrejeni gradnik"
+
+#: gtk/deprecated/gtkhandlebox.c:241
+msgid "Snap edge"
+msgstr "Pripni rob"
+
+#: gtk/deprecated/gtkhandlebox.c:242
+msgid ""
+"Side of the handlebox that's lined up with the docking point to dock the "
+"handlebox"
+msgstr ""
+"Stran gradnika ročnika, ki je poravnana s točko sidrišča za sidranje "
+"gradnika."
+
+#: gtk/deprecated/gtkhandlebox.c:250
+msgid "Snap edge set"
+msgstr "Nastavi pripenjanje robov"
+
+#: gtk/deprecated/gtkhandlebox.c:251
+msgid ""
+"Whether to use the value from the snap_edge property or a value derived from "
+"handle_position"
+msgstr ""
+"Ali naj se uporabi vrednost možnosti pripenjanja rubu ali vrednost izpeljana "
+"iz možnosti položaja ročice"
+
+#: gtk/deprecated/gtkhandlebox.c:258
+msgid "Child Detached"
+msgstr "Podrejeno okno odpeto"
+
+#: gtk/deprecated/gtkhandlebox.c:259
+msgid ""
+"A boolean value indicating whether the handlebox's child is attached or "
+"detached."
+msgstr ""
+"Logična vrednost, ki določa ali je podrejeni upravljalni predmet pripet ali "
+"odpet."
+
+#: gtk/deprecated/gtkimagemenuitem.c:226 gtk/gtkbutton.c:360
+msgid "Image widget"
+msgstr "Gradnik slike"
+
+#: gtk/deprecated/gtkimagemenuitem.c:227
+msgid "Child widget to appear next to the menu text"
+msgstr "Podrejeni gradnik, ki naj se pojavi ob besedilu menija"
+
+#: gtk/deprecated/gtkimagemenuitem.c:243 gtk/gtkbutton.c:300
+msgid "Use stock"
+msgstr "Uporabi sklad"
+
+#: gtk/deprecated/gtkimagemenuitem.c:244
+msgid "Whether to use the label text to create a stock menu item"
+msgstr "Ali naj se uporabi besedilo oznake za vnos predmeta menija sklada"
+
+#: gtk/deprecated/gtkimagemenuitem.c:281 gtk/gtkmenu.c:647
+msgid "Accel Group"
+msgstr "Pospeševalna skupina"
+
+#: gtk/deprecated/gtkimagemenuitem.c:282
+msgid "The Accel Group to use for stock accelerator keys"
+msgstr "Pospeševalna skupina, uporabljena za tipke sklada"
+
+#: gtk/deprecated/gtkmisc.c:114 gtk/gtkentry.c:968 gtk/gtklabel.c:851
+msgid "X align"
+msgstr "Poravnava X"
+
+#: gtk/deprecated/gtkmisc.c:115 gtk/gtkentry.c:969 gtk/gtklabel.c:852
+msgid ""
+"The horizontal alignment, from 0 (left) to 1 (right). Reversed for RTL "
+"layouts."
+msgstr ""
+"Vodoravna poravnava, od 0 (levo) do 1 (desno). Obratno za postavitev 'od "
+"desne proti levi'."
+
+#: gtk/deprecated/gtkmisc.c:133 gtk/gtklabel.c:869
+msgid "Y align"
+msgstr "Poravnava Y"
+
+#: gtk/deprecated/gtkmisc.c:134 gtk/gtklabel.c:870
+msgid "The vertical alignment, from 0 (top) to 1 (bottom)"
+msgstr "Navpična poravnava, od 0 (zgoraj) do 1 (spodaj)"
+
+#: gtk/deprecated/gtkmisc.c:152
+msgid "X pad"
+msgstr "Blazinjenje X"
+
+#: gtk/deprecated/gtkmisc.c:153
+msgid ""
+"The amount of space to add on the left and right of the widget, in pixels"
+msgstr ""
+"Količina prostora, ki naj se doda na levo in desno stran gradnika, v "
+"slikovnih točkah"
+
+#: gtk/deprecated/gtkmisc.c:171
+msgid "Y pad"
+msgstr "Blazinjenje Y"
+
+#: gtk/deprecated/gtkmisc.c:172
+msgid ""
+"The amount of space to add on the top and bottom of the widget, in pixels"
+msgstr ""
+"Količina prostora, ki naj se doda na zgornjo in spodnjo stran gradnika, v "
+"slikovnih točkah"
+
+#: gtk/deprecated/gtknumerableicon.c:642
+msgid "Icon's count"
+msgstr "Števec ikone"
+
+#: gtk/deprecated/gtknumerableicon.c:643
+msgid "The count of the emblem currently displayed"
+msgstr "Števec značke, ki je trenutno prikazana"
+
+#: gtk/deprecated/gtknumerableicon.c:649
+msgid "Icon's label"
+msgstr "Oznaka ikone"
+
+#: gtk/deprecated/gtknumerableicon.c:650
+msgid "The label to be displayed over the icon"
+msgstr "Oznaka, ki je prikazan ob kazalniku, ko je ta nad ikono"
+
+#: gtk/deprecated/gtknumerableicon.c:656
+msgid "Icon's style context"
+msgstr "Vsebinski slog ikone"
+
+#: gtk/deprecated/gtknumerableicon.c:657
+msgid "The style context to theme the icon appearance"
+msgstr "Vsebinski slog ikone, ki pripada temi"
+
+#: gtk/deprecated/gtknumerableicon.c:663
+msgid "Background icon"
+msgstr "Ikona ozadja"
+
+#: gtk/deprecated/gtknumerableicon.c:664
+msgid "The icon for the number emblem background"
+msgstr "Ikona ozadja številske značke"
+
+#: gtk/deprecated/gtknumerableicon.c:670
+msgid "Background icon name"
+msgstr "Ime ikone ozadja"
+
+#: gtk/deprecated/gtknumerableicon.c:671
+msgid "The icon name for the number emblem background"
+msgstr "Ime ikone za ozadje številske značke"
+
+#: gtk/deprecated/gtkradioaction.c:120
+msgid "The value"
+msgstr "Vrednost"
+
+#: gtk/deprecated/gtkradioaction.c:121
+msgid ""
+"The value returned by gtk_radio_action_get_current_value() when this action "
+"is the current action of its group."
+msgstr ""
+"Vrnjena vrednost gtk_radio_action_get_current_value() kadar je dejanje del "
+"trenutnega dejanja izbrane skupine."
+
+#: gtk/deprecated/gtkradioaction.c:139 gtk/gtkradiobutton.c:184
+#: gtk/gtkradiomenuitem.c:424 gtk/gtkradiotoolbutton.c:83
+msgid "Group"
+msgstr "Skupina"
+
+#: gtk/deprecated/gtkradioaction.c:140
+msgid "The radio action whose group this action belongs to."
+msgstr "Izbirno dejanje, katerega skupini pripada to dejanje."
+
+#: gtk/deprecated/gtkradioaction.c:157
+msgid "The current value"
+msgstr "Trenutna vrednost"
+
+#: gtk/deprecated/gtkradioaction.c:158
+msgid ""
+"The value property of the currently active member of the group to which this "
+"action belongs."
+msgstr ""
+"Lastnost vrednosti trenutno dejavnega predmeta skupine, kateri dejanje "
+"pripada."
+
+#: gtk/deprecated/gtkrecentaction.c:674 gtk/gtkrecentchoosermenu.c:239
+msgid "Show Numbers"
+msgstr "Pokaži številke"
+
+#: gtk/deprecated/gtkrecentaction.c:675 gtk/gtkrecentchoosermenu.c:240
+msgid "Whether the items should be displayed with a number"
+msgstr "Ali naj bodo predmeti prikazani s številkami"
+
+#: gtk/deprecated/gtkstatusicon.c:234 gtk/gtkimage.c:255
+msgid "Pixbuf"
+msgstr "Medpomnilnik sličic"
+
+#: gtk/deprecated/gtkstatusicon.c:235 gtk/gtkimage.c:256
+msgid "A GdkPixbuf to display"
+msgstr "Predmet GdkPixbuf, ki naj se prikaže"
+
+#: gtk/deprecated/gtkstatusicon.c:242 gtk/gtkimage.c:269
+#: gtk/gtkrecentmanager.c:289
+msgid "Filename"
+msgstr "Ime datoteke"
+
+#: gtk/deprecated/gtkstatusicon.c:243 gtk/gtkimage.c:270
+msgid "Filename to load and display"
+msgstr "Ime datoteke, ki naj se naloži in prikaže"
+
+#: gtk/deprecated/gtkstatusicon.c:255 gtk/gtkcellrendererpixbuf.c:195
+#: gtk/gtkimage.c:281
+msgid "Stock ID"
+msgstr "ID sklada"
+
+#: gtk/deprecated/gtkstatusicon.c:256 gtk/gtkimage.c:282
+msgid "Stock ID for a stock image to display"
+msgstr "ID sklada za prikaz slike"
+
+#: gtk/deprecated/gtkstatusicon.c:287 gtk/gtkimage.c:379
+msgid "Storage type"
+msgstr "Vrsta hrambe"
+
+#: gtk/deprecated/gtkstatusicon.c:288 gtk/gtkimage.c:380
+msgid "The representation being used for image data"
+msgstr "Način predstavitve, uporabljene za slikovne podatke"
+
+#: gtk/deprecated/gtkstatusicon.c:296 gtk/gtkcellrendererpixbuf.c:210
+#: gtk/gtkcellrendererspinner.c:159 gtk/gtkrecentmanager.c:304
+msgid "Size"
+msgstr "Velikost"
+
+#: gtk/deprecated/gtkstatusicon.c:297
+msgid "The size of the icon"
+msgstr "Velikost ikone"
+
+#: gtk/deprecated/gtkstatusicon.c:306 gtk/gtkinvisible.c:98
+#: gtk/gtkmountoperation.c:179 gtk/gtkstylecontext.c:229 gtk/gtkwindow.c:894
+msgid "Screen"
+msgstr "Zaslon"
+
+#: gtk/deprecated/gtkstatusicon.c:307
+msgid "The screen where this status icon will be displayed"
+msgstr "Zaslon, na katerem bo prikazana ikona stanja"
+
+#: gtk/deprecated/gtkstatusicon.c:315
+msgid "Whether the status icon is visible"
+msgstr "Ali naj je ikona stanja vidna"
+
+#: gtk/deprecated/gtkstatusicon.c:330 gtk/gtkplug.c:196
+msgid "Embedded"
+msgstr "Vstavljeno"
+
+#: gtk/deprecated/gtkstatusicon.c:331
+msgid "Whether the status icon is embedded"
+msgstr "Ali naj je ikona stanja vstavljena"
+
+#: gtk/deprecated/gtkstatusicon.c:346 gtk/deprecated/gtktrayicon-x11.c:127
+#: gtk/gtkgesturepan.c:237 gtk/gtkorientable.c:61
+msgid "Orientation"
+msgstr "Usmerjenost"
+
+#: gtk/deprecated/gtkstatusicon.c:347 gtk/deprecated/gtktrayicon-x11.c:128
+msgid "The orientation of the tray"
+msgstr "Usmerjenost sistemske vrstice"
+
+#: gtk/deprecated/gtkstatusicon.c:374 gtk/gtkwidget.c:1282
+msgid "Has tooltip"
+msgstr "Ima orodni namig"
+
+#: gtk/deprecated/gtkstatusicon.c:375
+msgid "Whether this tray icon has a tooltip"
+msgstr "Ali naj ima ikona sistemske vrstice orodni namig"
+
+#: gtk/deprecated/gtkstatusicon.c:401 gtk/gtkwidget.c:1306
+msgid "Tooltip Text"
+msgstr "Besedilo orodnega namiga"
+
+#: gtk/deprecated/gtkstatusicon.c:402 gtk/gtkwidget.c:1307 gtk/gtkwidget.c:1331
+msgid "The contents of the tooltip for this widget"
+msgstr "Vsebina orodnega namiga tega gradnika"
+
+#: gtk/deprecated/gtkstatusicon.c:425 gtk/gtkwidget.c:1330
+msgid "Tooltip markup"
+msgstr "Oblika orodnega namiga"
+
+#: gtk/deprecated/gtkstatusicon.c:426
+msgid "The contents of the tooltip for this tray icon"
+msgstr "Vsebina namiga za ikono v sistemski vrstici"
+
+#: gtk/deprecated/gtkstatusicon.c:443 gtk/gtkcolorbutton.c:183
+#: gtk/gtkfilechooserbutton.c:438 gtk/gtkfontbutton.c:490
+#: gtk/gtkheaderbar.c:2027 gtk/gtkprintjob.c:132 gtk/gtkshortcutsgroup.c:308
+#: gtk/gtkshortcutssection.c:376 gtk/gtkshortcutsshortcut.c:575
+#: gtk/gtkstack.c:523 gtk/gtktreeviewcolumn.c:316
+msgid "Title"
+msgstr "Naziv"
+
+#: gtk/deprecated/gtkstatusicon.c:444
+msgid "The title of this tray icon"
+msgstr "Naslov ikone sistemske vrstice"
+
+#: gtk/deprecated/gtkstyle.c:471
+msgid "Style context"
+msgstr "Slogovna vsebina"
+
+#: gtk/deprecated/gtkstyle.c:472
+msgid "GtkStyleContext to get style from"
+msgstr "Predmet GtkStyleContext, ki vsebuje podatek sloga"
+
+#: gtk/deprecated/gtktable.c:185
+msgid "Rows"
+msgstr "Vrstice"
+
+#: gtk/deprecated/gtktable.c:186
+msgid "The number of rows in the table"
+msgstr "Število vrstic v razpredelnici"
+
+#: gtk/deprecated/gtktable.c:194
+msgid "Columns"
+msgstr "Stolpci"
+
+#: gtk/deprecated/gtktable.c:195
+msgid "The number of columns in the table"
+msgstr "Število stolpcev v razpredelnici"
+
+#: gtk/deprecated/gtktable.c:203 gtk/gtkgrid.c:1758
+msgid "Row spacing"
+msgstr "Prostor med vrsticami"
+
+#: gtk/deprecated/gtktable.c:204 gtk/gtkgrid.c:1759
+msgid "The amount of space between two consecutive rows"
+msgstr "Količina prostora med zaporednima vrsticama"
+
+#: gtk/deprecated/gtktable.c:212 gtk/gtkgrid.c:1765
+msgid "Column spacing"
+msgstr "Prostor med stolpci"
+
+#: gtk/deprecated/gtktable.c:213 gtk/gtkgrid.c:1766
+msgid "The amount of space between two consecutive columns"
+msgstr "Količina prostora med zaporednima stolpcema"
+
+#: gtk/deprecated/gtktable.c:221 gtk/gtkbox.c:289 gtk/gtkflowbox.c:3841
+#: gtk/gtkstack.c:459 gtk/gtktoolbar.c:597 gtk/gtktoolitemgroup.c:1690
+msgid "Homogeneous"
+msgstr "Homogenost"
+
+#: gtk/deprecated/gtktable.c:222
+msgid "If TRUE, the table cells are all the same width/height"
+msgstr "Izbrana možnost omogoča, da imajo vse celice enako višino in širino"
+
+#: gtk/deprecated/gtktable.c:229 gtk/gtkgrid.c:1797
+msgid "Left attachment"
+msgstr "Leva priloga"
+
+#: gtk/deprecated/gtktable.c:230 gtk/gtkgrid.c:1798 gtk/gtkmenu.c:958
+msgid "The column number to attach the left side of the child to"
+msgstr ""
+"Številka stolpca, na katerega je pripeta leva stran podrejenega gradnika"
+
+#: gtk/deprecated/gtktable.c:236
+msgid "Right attachment"
+msgstr "Desna priloga"
+
+#: gtk/deprecated/gtktable.c:237
+msgid "The column number to attach the right side of a child widget to"
+msgstr "Številka stolpca, ki naj se priloži desni strani podrejenega gradnika"
+
+#: gtk/deprecated/gtktable.c:243 gtk/gtkgrid.c:1804
+msgid "Top attachment"
+msgstr "Vrhnja priloga"
+
+#: gtk/deprecated/gtktable.c:244
+msgid "The row number to attach the top of a child widget to"
+msgstr ""
+"Številka vrstice, ki naj se priloži zgornji strani podrejenega gradnika"
+
+#: gtk/deprecated/gtktable.c:250
+msgid "Bottom attachment"
+msgstr "Spodnja priloga"
+
+#: gtk/deprecated/gtktable.c:251 gtk/gtkmenu.c:982
+msgid "The row number to attach the bottom of the child to"
+msgstr ""
+"Številka vrstice, ki naj se priloži spodnji strani podrejenega gradnika"
+
+#: gtk/deprecated/gtktable.c:257
+msgid "Horizontal options"
+msgstr "Vodoravne možnosti"
+
+#: gtk/deprecated/gtktable.c:258
+msgid "Options specifying the horizontal behaviour of the child"
+msgstr "Možnosti, ki določajo vodoravno vedenje podrejenega predmeta"
+
+#: gtk/deprecated/gtktable.c:264
+msgid "Vertical options"
+msgstr "Navpične možnosti"
+
+#: gtk/deprecated/gtktable.c:265
+msgid "Options specifying the vertical behaviour of the child"
+msgstr "Možnosti, ki določajo navpično vedenje podrejenega predmeta"
+
+#: gtk/deprecated/gtktable.c:271
+msgid "Horizontal padding"
+msgstr "Vodoravno blazinjenje"
+
+#: gtk/deprecated/gtktable.c:272
+msgid ""
+"Extra space to put between the child and its left and right neighbors, in "
+"pixels"
+msgstr ""
+"Količina prostora, ki naj se doda med podrejeni predmet in njegove leve in "
+"desne sosede, v slikovnih točkah"
+
+#: gtk/deprecated/gtktable.c:278
+msgid "Vertical padding"
+msgstr "Navpično blazinjenje"
+
+#: gtk/deprecated/gtktable.c:279
+msgid ""
+"Extra space to put between the child and its upper and lower neighbors, in "
+"pixels"
+msgstr ""
+"Količina prostora, ki naj se doda med podrejeni predmet in njegove zgornje "
+"in spodnje sosede (v slikovnih točkah)"
+
+#: gtk/deprecated/gtkthemingengine.c:248
+msgid "Theming engine name"
+msgstr "Ime programnika tem"
+
+#: gtk/deprecated/gtktoggleaction.c:118
+msgid "Create the same proxies as a radio action"
+msgstr "Ustvari posrednike enake izbirnim dejanjem"
+
+#: gtk/deprecated/gtktoggleaction.c:119
+msgid "Whether the proxies for this action look like radio action proxies"
+msgstr "Ali so posredniki videti kot izbirni gumbi"
+
+#: gtk/deprecated/gtktoggleaction.c:135 gtk/gtkcellrendererspinner.c:125
+#: gtk/gtkcheckmenuitem.c:209 gtk/gtkmenu.c:632 gtk/gtkmodelbutton.c:1189
+#: gtk/gtkmodelbutton.c:1190 gtk/gtkspinner.c:221 gtk/gtkswitch.c:895
+#: gtk/gtktogglebutton.c:188 gtk/gtktoggletoolbutton.c:130
+msgid "Active"
+msgstr "Dejavno"
+
+#: gtk/deprecated/gtktoggleaction.c:136
+msgid "Whether the toggle action should be active"
+msgstr "Ali naj bo preklopni gumb dejaven"
+
+#: gtk/deprecated/gtktrayicon-x11.c:136 gtk/gtkcellrenderertext.c:334
+#: gtk/gtktexttag.c:276
+msgid "Foreground color"
+msgstr "Barva ospredja"
+
+#: gtk/deprecated/gtktrayicon-x11.c:137
+msgid "Foreground color for symbolic icons"
+msgstr "Barva ospredja simbolnih ikon"
+
+#: gtk/deprecated/gtktrayicon-x11.c:144
+msgid "Error color"
+msgstr "Barva napake"
+
+#: gtk/deprecated/gtktrayicon-x11.c:145
+msgid "Error color for symbolic icons"
+msgstr "Barva napake simbolnih ikon"
+
+#: gtk/deprecated/gtktrayicon-x11.c:152
+msgid "Warning color"
+msgstr "Barva opozorila"
+
+#: gtk/deprecated/gtktrayicon-x11.c:153
+msgid "Warning color for symbolic icons"
+msgstr "Barva opozorila simbolnih ikon"
+
+#: gtk/deprecated/gtktrayicon-x11.c:160
+msgid "Success color"
+msgstr "Barva uspešnega opravila"
+
+#: gtk/deprecated/gtktrayicon-x11.c:161
+msgid "Success color for symbolic icons"
+msgstr "Barva uspešnega opravila simbolnih ikon"
+
+#: gtk/deprecated/gtktrayicon-x11.c:168 gtk/gtkbox.c:345
+msgid "Padding"
+msgstr "Blazinjenje"
+
+#: gtk/deprecated/gtktrayicon-x11.c:169
+msgid "Padding that should be put around icons in the tray"
+msgstr "Oblazinjenost, ki naj bo postavljena okoli ikon sistemske vrstice"
+
+#: gtk/deprecated/gtktrayicon-x11.c:178 gtk/gtkstackswitcher.c:686
+msgid "Icon Size"
+msgstr "Velikost ikone"
+
+#: gtk/deprecated/gtktrayicon-x11.c:179
+msgid "The pixel size that icons should be forced to, or zero"
+msgstr ""
+"Velikost v točkah, ki naj bo vsiljena za prikaz ikone, ali vrednost nič"
+
+#: gtk/deprecated/gtkuimanager.c:463 gtk/gtkcombobox.c:1009
+msgid "Add tearoffs to menus"
+msgstr "Dodaj menijem odpenjalnike"
+
+#: gtk/deprecated/gtkuimanager.c:464
+msgid "Whether tearoff menu items should be added to menus"
+msgstr "Ali naj predmeti menija vsebujejo odpenjalnike"
+
+#: gtk/deprecated/gtkuimanager.c:471
+msgid "Merged UI definition"
+msgstr "Definicija združenega vmesnika"
+
+#: gtk/deprecated/gtkuimanager.c:472
+msgid "An XML string describing the merged UI"
+msgstr "Niz XML, ki opisuje združeni uporabniški vmesnik"
+
+#: gtk/gtkaboutdialog.c:343
msgid "Program name"
msgstr "Ime programa"
-#: gtk/gtkaboutdialog.c:357
+#: gtk/gtkaboutdialog.c:344
msgid ""
"The name of the program. If this is not set, it defaults to "
"g_get_application_name()"
@@ -237,108 +1152,100 @@ msgstr ""
"Ime programa. V kolikor ta možnost ni nastavljena, bo privzeto nastavljena "
"na g_get_application_name()"
-#: gtk/gtkaboutdialog.c:370
+#: gtk/gtkaboutdialog.c:357
msgid "Program version"
msgstr "Različica programa"
-#: gtk/gtkaboutdialog.c:371
+#: gtk/gtkaboutdialog.c:358
msgid "The version of the program"
msgstr "Različica programa"
-#: gtk/gtkaboutdialog.c:384
+#: gtk/gtkaboutdialog.c:371
msgid "Copyright string"
msgstr "Niz o avtorskih pravicah"
-#: gtk/gtkaboutdialog.c:385
+#: gtk/gtkaboutdialog.c:372
msgid "Copyright information for the program"
msgstr "Podatki o avtorskih pravicah programa"
-#: gtk/gtkaboutdialog.c:400
+#: gtk/gtkaboutdialog.c:387
msgid "Comments string"
msgstr "Niz opombe"
-#: gtk/gtkaboutdialog.c:401
+#: gtk/gtkaboutdialog.c:388
msgid "Comments about the program"
msgstr "Opombe programa"
-#: gtk/gtkaboutdialog.c:425
+#: gtk/gtkaboutdialog.c:408
msgid "License"
msgstr "Dovoljenje"
-#: gtk/gtkaboutdialog.c:426
+#: gtk/gtkaboutdialog.c:409
msgid "The license of the program"
msgstr "Dovoljenje programa"
-#: gtk/gtkaboutdialog.c:446
-msgid "System Information"
-msgstr "Podrobnosti sistema"
-
-#: gtk/gtkaboutdialog.c:447
-msgid "Information about the system on which the program is running"
-msgstr "Podrobnosti o sistemu v katerem je program zagnan"
-
-#: gtk/gtkaboutdialog.c:474
+#: gtk/gtkaboutdialog.c:436
msgid "License Type"
msgstr "Vrsta dovoljenja"
-#: gtk/gtkaboutdialog.c:475
+#: gtk/gtkaboutdialog.c:437
msgid "The license type of the program"
msgstr "Vrsta dovoljenja programa"
-#: gtk/gtkaboutdialog.c:490
+#: gtk/gtkaboutdialog.c:452
msgid "Website URL"
msgstr "Naslov URL spletne strani"
-#: gtk/gtkaboutdialog.c:491
+#: gtk/gtkaboutdialog.c:453
msgid "The URL for the link to the website of the program"
msgstr "Naslov URL za povezavo do spletne strani programa"
-#: gtk/gtkaboutdialog.c:504
+#: gtk/gtkaboutdialog.c:466
msgid "Website label"
msgstr "Oznaka spletne strani"
-#: gtk/gtkaboutdialog.c:505
+#: gtk/gtkaboutdialog.c:467
msgid "The label for the link to the website of the program"
msgstr "Oznaka povezave do spletne strani programa"
-#: gtk/gtkaboutdialog.c:520
+#: gtk/gtkaboutdialog.c:482
msgid "Authors"
msgstr "Avtorji"
-#: gtk/gtkaboutdialog.c:521
+#: gtk/gtkaboutdialog.c:483
msgid "List of authors of the program"
msgstr "Seznam avtorjev programa"
-#: gtk/gtkaboutdialog.c:536
+#: gtk/gtkaboutdialog.c:498
msgid "Documenters"
msgstr "Pisci dokumentacije"
-#: gtk/gtkaboutdialog.c:537
+#: gtk/gtkaboutdialog.c:499
msgid "List of people documenting the program"
msgstr "Seznam posameznikov, ki so dokumentirali program"
-#: gtk/gtkaboutdialog.c:552
+#: gtk/gtkaboutdialog.c:514
msgid "Artists"
msgstr "Umetniki"
-#: gtk/gtkaboutdialog.c:553
+#: gtk/gtkaboutdialog.c:515
msgid "List of people who have contributed artwork to the program"
msgstr "Seznam posameznikov, ki so programu prispevali grafično podobo"
-#: gtk/gtkaboutdialog.c:568
+#: gtk/gtkaboutdialog.c:530
msgid "Translator credits"
msgstr "Zasluge prevajalcem"
-#: gtk/gtkaboutdialog.c:569
+#: gtk/gtkaboutdialog.c:531
msgid ""
"Credits to the translators. This string should be marked as translatable"
msgstr "Zasluge prevajalcem. Ta niz mora biti označen kot prevedljiv"
-#: gtk/gtkaboutdialog.c:583
+#: gtk/gtkaboutdialog.c:545
msgid "Logo"
msgstr "Logotip"
-#: gtk/gtkaboutdialog.c:584
+#: gtk/gtkaboutdialog.c:546
msgid ""
"A logo for the about box. If this is not set, it defaults to "
"gtk_window_get_default_icon_list()"
@@ -346,68 +1253,44 @@ msgstr ""
"Logotip za okno o programu. V kolikor ta možnost ni nastavljena, bo privzeto "
"nastavljena na gtk_window_get_default_icon_list()"
-#: gtk/gtkaboutdialog.c:598
+#: gtk/gtkaboutdialog.c:560
msgid "Logo Icon Name"
msgstr "Ime ikone logotipa"
-#: gtk/gtkaboutdialog.c:599
+#: gtk/gtkaboutdialog.c:561
msgid "A named icon to use as the logo for the about box."
msgstr "Imenovana ikona, ki naj služi kot logotip v oknu o programu."
-#: gtk/gtkaboutdialog.c:612
+#: gtk/gtkaboutdialog.c:574
msgid "Wrap license"
msgstr "Prelom dovoljenja"
-#: gtk/gtkaboutdialog.c:613
+#: gtk/gtkaboutdialog.c:575
msgid "Whether to wrap the license text."
msgstr "Ali naj bodo vrstice besedila dovoljenja prelomljene."
-#: gtk/gtkaccellabel.c:227
+#: gtk/gtkaccellabel.c:209
msgid "Accelerator Closure"
msgstr "Zaprtje pospeševalnika"
-#: gtk/gtkaccellabel.c:228
+#: gtk/gtkaccellabel.c:210
msgid "The closure to be monitored for accelerator changes"
msgstr "Zaprtje naj bo nadzorovano za spremembe pospeševalnika"
-#: gtk/gtkaccellabel.c:234
+#: gtk/gtkaccellabel.c:216
msgid "Accelerator Widget"
msgstr "Gradnik pospeševalnika"
-#: gtk/gtkaccellabel.c:235
+#: gtk/gtkaccellabel.c:217
msgid "The widget to be monitored for accelerator changes"
msgstr "Gradnik, nadzorovan za spremembe pospeševalnika"
-#: gtk/gtkaccellabel.c:241 gtk/gtkbutton.c:225 gtk/gtkexpander.c:291
-#: gtk/gtkframe.c:170 gtk/gtklabel.c:755 gtk/gtkmenuitem.c:641
-#: gtk/gtktoolbutton.c:215 gtk/gtktoolitemgroup.c:1555
-msgid "Label"
-msgstr "Oznaka"
-
-#: gtk/gtkaccellabel.c:242
-msgid "The text displayed next to the accelerator"
-msgstr "Besedilo, prikazano ob pospeševalniku"
-
-#: gtk/gtkaccellabel.c:248 gtk/gtkbutton.c:232 gtk/gtkexpander.c:299
-#: gtk/gtklabel.c:776 gtk/gtkmenuitem.c:655 gtk/gtktoolbutton.c:222
-msgid "Use underline"
-msgstr "Uporabi podčrtaj"
-
-#: gtk/gtkaccellabel.c:249 gtk/gtkbutton.c:233 gtk/gtkexpander.c:300
-#: gtk/gtklabel.c:777 gtk/gtkmenuitem.c:656
-msgid ""
-"If set, an underline in the text indicates the next character should be used "
-"for the mnemonic accelerator key"
-msgstr ""
-"Izbrana možnost omogoča, da podčrtaj v besedilu označuje črko, ki je "
-"uporabljena kot menijska bližnjica"
-
-#: gtk/gtkaccessible.c:153 gtk/gtkeventcontroller.c:168
-#: gtk/gtktreeviewcolumn.c:336
+#: gtk/gtkaccessible.c:156 gtk/gtkeventcontroller.c:168
+#: gtk/gtktreeviewcolumn.c:337
msgid "Widget"
msgstr "Gradnik"
-#: gtk/gtkaccessible.c:154
+#: gtk/gtkaccessible.c:157
msgid "The widget referenced by this accessible."
msgstr "Gradnik na katerega se sklicuje ta dostopnica."
@@ -416,8 +1299,8 @@ msgid "Action name"
msgstr "Ime dejanja"
#: gtk/gtkactionable.c:72
-msgid "The name of the associated action, like “app.quit”"
-msgstr "Ime povezanega dejanja, na primer »app.quit«"
+msgid "The name of the associated action, like 'app.quit'"
+msgstr "Ime povezanega dejanja, npr. 'app.quit'"
#: gtk/gtkactionable.c:76
msgid "Action target value"
@@ -427,11 +1310,11 @@ msgstr "Vrednost cilja dejanja"
msgid "The parameter for action invocations"
msgstr "Parameter obujanja dejanja"
-#: gtk/gtkactionbar.c:383 gtk/gtkbox.c:245 gtk/gtkheaderbar.c:1869
+#: gtk/gtkactionbar.c:338 gtk/gtkbox.c:353 gtk/gtkheaderbar.c:2013
msgid "Pack type"
msgstr "Vrsta zlaganja"
-#: gtk/gtkactionbar.c:384 gtk/gtkbox.c:246 gtk/gtkheaderbar.c:1870
+#: gtk/gtkactionbar.c:339 gtk/gtkbox.c:354 gtk/gtkheaderbar.c:2014
msgid ""
"A GtkPackType indicating whether the child is packed with reference to the "
"start or end of the parent"
@@ -439,27 +1322,19 @@ msgstr ""
"GtkPackType, ki pove ali naj bo podrejeni predmet zložen s sklicem na "
"začetek ali na konec nadrejenega predmeta"
-#: gtk/gtkactionbar.c:390 gtk/gtkbox.c:252 gtk/gtkheaderbar.c:1876
-#: gtk/gtknotebook.c:790 gtk/gtkpaned.c:388 gtk/gtkpopover.c:1635
-#: gtk/gtkpopovermenu.c:371 gtk/gtkstack.c:404 gtk/gtktoolitemgroup.c:1618
+#: gtk/gtkactionbar.c:345 gtk/gtkbox.c:360 gtk/gtkheaderbar.c:2020
+#: gtk/gtknotebook.c:840 gtk/gtkpaned.c:368 gtk/gtkpopover.c:1738
+#: gtk/gtkpopovermenu.c:384 gtk/gtkstack.c:537 gtk/gtktoolitemgroup.c:1718
msgid "Position"
msgstr "Položaj"
-#: gtk/gtkactionbar.c:391 gtk/gtkbox.c:253 gtk/gtkheaderbar.c:1877
-#: gtk/gtknotebook.c:791 gtk/gtkpopovermenu.c:372 gtk/gtkstack.c:405
+#: gtk/gtkactionbar.c:346 gtk/gtkbox.c:361 gtk/gtkheaderbar.c:2021
+#: gtk/gtknotebook.c:841 gtk/gtkpopovermenu.c:385 gtk/gtkstack.c:538
msgid "The index of the child in the parent"
msgstr "Indeks podrejenega predmeta v nadrejenem predmetu"
-#: gtk/gtkactionbar.c:397 gtk/gtkinfobar.c:353
-msgid "Reveal"
-msgstr "Razkrij"
-
-#: gtk/gtkactionbar.c:398 gtk/gtkinfobar.c:354
-msgid "Controls whether the action bar shows its contents or not"
-msgstr "Nadzira, ali vrstica dejanj kaže vsebino ali ne"
-
#: gtk/gtkadjustment.c:142 gtk/gtkcellrendererprogress.c:138
-#: gtk/gtkscalebutton.c:196 gtk/gtkspinbutton.c:397
+#: gtk/gtkscalebutton.c:196 gtk/gtkspinbutton.c:436
msgid "Value"
msgstr "Vrednost"
@@ -508,8 +1383,8 @@ msgid "The page size of the adjustment"
msgstr "Velikost strani prilagoditve"
#: gtk/gtkappchooserbutton.c:618
-msgid "Include an “Other…” item"
-msgstr "Vključi možnost »Drugo ...«"
+msgid "Include an 'Other…' item"
+msgstr "Vključi predmet 'Drugo ...'"
#: gtk/gtkappchooserbutton.c:619
msgid ""
@@ -527,11 +1402,11 @@ msgstr "Pokaži privzeti predmet"
msgid "Whether the combobox should show the default application on top"
msgstr "Ali naj spustno polje pokaže privzete programe na vrhu"
-#: gtk/gtkappchooserbutton.c:647 gtk/gtkappchooserdialog.c:648
+#: gtk/gtkappchooserbutton.c:647 gtk/gtkappchooserdialog.c:686
msgid "Heading"
msgstr "Naslov"
-#: gtk/gtkappchooserbutton.c:648 gtk/gtkappchooserdialog.c:649
+#: gtk/gtkappchooserbutton.c:648 gtk/gtkappchooserdialog.c:687
msgid "The text to show at the top of the dialog"
msgstr "Besedilo, prikazano na vrhu pogovornega okna"
@@ -543,104 +1418,112 @@ msgstr "Vrsta vsebine"
msgid "The content type used by the open with object"
msgstr "Vrsta vsebine, ki jo uporablja predmet za odpiranje"
-#: gtk/gtkappchooserdialog.c:634
+#: gtk/gtkappchooserdialog.c:672
msgid "GFile"
msgstr "GFile"
-#: gtk/gtkappchooserdialog.c:635
+#: gtk/gtkappchooserdialog.c:673
msgid "The GFile used by the app chooser dialog"
msgstr "Predmet GFile, ki ga uporablja pogovorno okno za izbor programa"
-#: gtk/gtkappchooserwidget.c:1018
+#: gtk/gtkappchooserwidget.c:930
msgid "Show default app"
msgstr "Pokaži privzeti program"
-#: gtk/gtkappchooserwidget.c:1019
+#: gtk/gtkappchooserwidget.c:931
msgid "Whether the widget should show the default application"
msgstr "Ali naj gradnik pokaže privzete programe"
-#: gtk/gtkappchooserwidget.c:1033
+#: gtk/gtkappchooserwidget.c:945
msgid "Show recommended apps"
msgstr "Pokaži priporočene programe"
-#: gtk/gtkappchooserwidget.c:1034
+#: gtk/gtkappchooserwidget.c:946
msgid "Whether the widget should show recommended applications"
msgstr "Ali naj gradnik pokaže priporočene programe"
-#: gtk/gtkappchooserwidget.c:1048
+#: gtk/gtkappchooserwidget.c:960
msgid "Show fallback apps"
msgstr "Pokaži nadomestne programe"
-#: gtk/gtkappchooserwidget.c:1049
+#: gtk/gtkappchooserwidget.c:961
msgid "Whether the widget should show fallback applications"
msgstr "Ali naj gradnik pokaže nadomestne programe"
-#: gtk/gtkappchooserwidget.c:1061
+#: gtk/gtkappchooserwidget.c:973
msgid "Show other apps"
msgstr "Pokaži druge programe"
-#: gtk/gtkappchooserwidget.c:1062
+#: gtk/gtkappchooserwidget.c:974
msgid "Whether the widget should show other applications"
msgstr "Ali naj gradnik pokaže druge programe"
-#: gtk/gtkappchooserwidget.c:1075
+#: gtk/gtkappchooserwidget.c:987
msgid "Show all apps"
msgstr "Pokaži vse programe"
-#: gtk/gtkappchooserwidget.c:1076
+#: gtk/gtkappchooserwidget.c:988
msgid "Whether the widget should show all applications"
msgstr "Ali naj gradnik pokaže vse programe"
-#: gtk/gtkappchooserwidget.c:1090
-msgid "Widget’s default text"
+#: gtk/gtkappchooserwidget.c:1002
+msgid "Widget's default text"
msgstr "Privzeto besedilo gradnika"
-#: gtk/gtkappchooserwidget.c:1091
+#: gtk/gtkappchooserwidget.c:1003
msgid "The default text appearing when there are no applications"
msgstr "Privzeto besedilo, ki je prikazano, ko ni zagnanih programov"
-#: gtk/gtkapplication.c:648
+#: gtk/gtkapplication.c:656
msgid "Register session"
msgstr "Vpiši sejo"
-#: gtk/gtkapplication.c:649
+#: gtk/gtkapplication.c:657
msgid "Register with the session manager"
msgstr "Vpiši sejo v upravljalnik sej"
-#: gtk/gtkapplication.c:655
+#: gtk/gtkapplication.c:674
+msgid "Screensaver Active"
+msgstr "Dejaven ohranjevalnik zaslona"
+
+#: gtk/gtkapplication.c:675
+msgid "Whether the screensaver is active"
+msgstr "Ali je ohranjevalnik zaslona dejaven"
+
+#: gtk/gtkapplication.c:681
msgid "Application menu"
msgstr "Programski meni"
-#: gtk/gtkapplication.c:656
+#: gtk/gtkapplication.c:682
msgid "The GMenuModel for the application menu"
msgstr "Predmet GMenuModel za meni programa"
-#: gtk/gtkapplication.c:662
+#: gtk/gtkapplication.c:688
msgid "Menubar"
msgstr "Menijska vrstica"
-#: gtk/gtkapplication.c:663
+#: gtk/gtkapplication.c:689
msgid "The GMenuModel for the menubar"
msgstr "GMenuModel za menijsko vrstico"
-#: gtk/gtkapplication.c:669
+#: gtk/gtkapplication.c:695
msgid "Active window"
msgstr "Dejavno okno"
-#: gtk/gtkapplication.c:670
+#: gtk/gtkapplication.c:696
msgid "The window which most recently had focus"
msgstr "Okno, ki je bilo nazadnje v žarišču"
-#: gtk/gtkapplicationwindow.c:832
+#: gtk/gtkapplicationwindow.c:874
msgid "Show a menubar"
msgstr "Pokaži menijsko vrstico"
-#: gtk/gtkapplicationwindow.c:833
+#: gtk/gtkapplicationwindow.c:875
msgid "TRUE if the window should show a menubar at the top of the window"
msgstr ""
"Izbrana možnost omogoča, da okno prikaže menijsko vrstico na vrhu okna."
-#: gtk/gtkaspectframe.c:111 gtk/gtkwidget.c:1277
+#: gtk/gtkaspectframe.c:111 gtk/gtkwidget.c:1374
msgid "Horizontal Alignment"
msgstr "Vodoravna poravnava"
@@ -648,7 +1531,7 @@ msgstr "Vodoravna poravnava"
msgid "X alignment of the child"
msgstr "Poravnava podrejenega predmeta po X osi"
-#: gtk/gtkaspectframe.c:118 gtk/gtkwidget.c:1292
+#: gtk/gtkaspectframe.c:118 gtk/gtkwidget.c:1389
msgid "Vertical Alignment"
msgstr "Navpična poravnava"
@@ -670,54 +1553,119 @@ msgid "Obey child"
msgstr "Upoštevaj podrejeni predmet"
#: gtk/gtkaspectframe.c:133
-msgid "Force aspect ratio to match that of the frame’s child"
+msgid "Force aspect ratio to match that of the frame's child"
msgstr "Vsili razmerje, ki ustreza podrejenemu predmetu okvirja"
-#: gtk/gtkassistant.c:513 gtk/gtkdialog.c:583
+#: gtk/gtkassistant.c:526 gtk/gtkdialog.c:652
msgid "Use Header Bar"
msgstr "Uporabi vrstico glave"
-#: gtk/gtkassistant.c:514 gtk/gtkdialog.c:584
+#: gtk/gtkassistant.c:527 gtk/gtkdialog.c:653
msgid "Use Header Bar for actions."
msgstr "Za dejanja uporabi vrstico glave."
-#: gtk/gtkassistant.c:528
+#: gtk/gtkassistant.c:540
+msgid "Header Padding"
+msgstr "Blazinjenje glave"
+
+#: gtk/gtkassistant.c:541
+msgid "Number of pixels around the header."
+msgstr "Število slikovnih točk okoli glave."
+
+#: gtk/gtkassistant.c:556
+msgid "Content Padding"
+msgstr "Blazinjenje vsebine"
+
+#: gtk/gtkassistant.c:557
+msgid "Number of pixels around the content pages."
+msgstr "Število slikovnih točk okoli strani vsebine."
+
+#: gtk/gtkassistant.c:573
msgid "Page type"
msgstr "Vrsta strani"
-#: gtk/gtkassistant.c:529
+#: gtk/gtkassistant.c:574
msgid "The type of the assistant page"
msgstr "Vrsta pomožne strani"
-#: gtk/gtkassistant.c:544
+#: gtk/gtkassistant.c:589
msgid "Page title"
msgstr "Naziv strani"
-#: gtk/gtkassistant.c:545
+#: gtk/gtkassistant.c:590
msgid "The title of the assistant page"
msgstr "Naziv pomožne strani"
-#: gtk/gtkassistant.c:561
+#: gtk/gtkassistant.c:607
+msgid "Header image"
+msgstr "Slika glave"
+
+#: gtk/gtkassistant.c:608
+msgid "Header image for the assistant page"
+msgstr "Slika glave pomožne strani"
+
+#: gtk/gtkassistant.c:624
+msgid "Sidebar image"
+msgstr "Slika stranske vrstice"
+
+#: gtk/gtkassistant.c:625
+msgid "Sidebar image for the assistant page"
+msgstr "Slika stranske vrstice pomožne strani"
+
+#: gtk/gtkassistant.c:641
msgid "Page complete"
msgstr "Stran je dokončana"
-#: gtk/gtkassistant.c:562
+#: gtk/gtkassistant.c:642
msgid "Whether all required fields on the page have been filled out"
msgstr "Ali so bila vsa zahtevana polja na strani izpolnjena"
-#: gtk/gtkassistant.c:567
+#: gtk/gtkassistant.c:647
msgid "Has padding"
msgstr "Ima blazinjenje"
-#: gtk/gtkassistant.c:567
+#: gtk/gtkassistant.c:647
msgid "Whether the assistant adds padding around the page"
msgstr "Ali pomočnik dodaja blazinjanje okoli strani"
-#: gtk/gtkbbox.c:153
+#: gtk/gtkbbox.c:217
+msgid "Minimum child width"
+msgstr "Najmanjša širina podrejenega predmeta"
+
+#: gtk/gtkbbox.c:218
+msgid "Minimum width of buttons inside the box"
+msgstr "Najmanjša širina gumbov znotraj polja"
+
+#: gtk/gtkbbox.c:233
+msgid "Minimum child height"
+msgstr "Najmanjša višina podrejenega predmeta"
+
+#: gtk/gtkbbox.c:234
+msgid "Minimum height of buttons inside the box"
+msgstr "Najmanjša višina gumbov znotraj polja"
+
+#: gtk/gtkbbox.c:249
+msgid "Child internal width padding"
+msgstr "Notranje blazinjenje širine podrejenega predmeta"
+
+#: gtk/gtkbbox.c:250
+msgid "Amount to increase child's size on either side"
+msgstr "Za koliko naj se poveča velikost podrejenega predmeta na obeh straneh"
+
+#: gtk/gtkbbox.c:265
+msgid "Child internal height padding"
+msgstr "Notranje blazinjenje višine podrejenega predmeta"
+
+#: gtk/gtkbbox.c:266
+msgid "Amount to increase child's size on the top and bottom"
+msgstr ""
+"Za koliko naj se poveča velikost podrejenega predmeta na vrhu in na dnu"
+
+#: gtk/gtkbbox.c:275
msgid "Layout style"
msgstr "Slog razporeditve"
-#: gtk/gtkbbox.c:154
+#: gtk/gtkbbox.c:276
msgid ""
"How to lay out the buttons in the box. Possible values are: spread, edge, "
"start and end"
@@ -725,11 +1673,11 @@ msgstr ""
"Kako naj bodo razpostavljeni gumbi znotraj okvirja. Mogoče vrednosti so: "
"privzeto, razprostrto, ob robu, na začetku in na koncu."
-#: gtk/gtkbbox.c:162
+#: gtk/gtkbbox.c:284
msgid "Secondary"
msgstr "Drugotno"
-#: gtk/gtkbbox.c:163
+#: gtk/gtkbbox.c:285
msgid ""
"If TRUE, the child appears in a secondary group of children, suitable for, e."
"g., help buttons"
@@ -737,95 +1685,218 @@ msgstr ""
"Izbrana možnost omogoča, da se podrejeni predmet pojavlja v drugi skupini "
"podrejenih predmetov, kar je primerno za na primer gumbe pomoči"
-#: gtk/gtkbbox.c:170
+#: gtk/gtkbbox.c:292
msgid "Non-Homogeneous"
msgstr "Nehomogeno"
-#: gtk/gtkbbox.c:171
+#: gtk/gtkbbox.c:293
msgid "If TRUE, the child will not be subject to homogeneous sizing"
msgstr ""
"Izbrana možnost omogoča, da podrejeni predmet ne bo nehomogono prilagojen "
"velikosti"
-#: gtk/gtkbox.c:221 gtk/gtkcellareabox.c:310 gtk/gtkheaderbar.c:1904
-#: gtk/gtkiconview.c:510 gtk/gtktreeviewcolumn.c:275
+#: gtk/gtkbox.c:282 gtk/gtkcellareabox.c:310 gtk/gtkexpander.c:341
+#: gtk/gtkheaderbar.c:2048 gtk/gtkiconview.c:524 gtk/gtktreeviewcolumn.c:276
msgid "Spacing"
msgstr "Razmik"
-#: gtk/gtkbox.c:222 gtk/gtkheaderbar.c:1905
+#: gtk/gtkbox.c:283 gtk/gtkheaderbar.c:2049
msgid "The amount of space between children"
msgstr "Količina prostora med podrejenimi predmeti"
-#: gtk/gtkbox.c:228 gtk/gtkflowbox.c:3496 gtk/gtkstack.c:326
-#: gtk/gtktoolbar.c:556 gtk/gtktoolitemgroup.c:1590
-msgid "Homogeneous"
-msgstr "Homogenost"
-
-#: gtk/gtkbox.c:229 gtk/gtkflowbox.c:3497
+#: gtk/gtkbox.c:290 gtk/gtkflowbox.c:3842
msgid "Whether the children should all be the same size"
msgstr "Ali naj so vsi podrejeni predmeti enake velikosti"
-#: gtk/gtkbox.c:235 gtk/gtkcenterbox.c:683
+#: gtk/gtkbox.c:296
msgid "Baseline position"
msgstr "Položaj osnovnice"
-#: gtk/gtkbox.c:236 gtk/gtkcenterbox.c:684
+#: gtk/gtkbox.c:297
msgid ""
"The position of the baseline aligned widgets if extra space is available"
msgstr "Položaj z osnovnico poravnanih gradnikov, kadar je prostor na voljo"
-#: gtk/gtkbuilder.c:282
+#: gtk/gtkbox.c:322 gtk/gtkcellareabox.c:330 gtk/gtktoolbar.c:589
+#: gtk/gtktoolitemgroup.c:1697 gtk/gtktoolpalette.c:1027
+#: gtk/gtktreeviewcolumn.c:323
+msgid "Expand"
+msgstr "Razširi"
+
+#: gtk/gtkbox.c:323
+msgid "Whether the child should receive extra space when the parent grows"
+msgstr ""
+"Ali naj podrejeni predmet prejme dodaten prostor, ko se nadrejeni predmet "
+"poveča"
+
+#: gtk/gtkbox.c:338 gtk/gtktoolitemgroup.c:1704
+msgid "Fill"
+msgstr "Zapolni"
+
+#: gtk/gtkbox.c:339
+msgid ""
+"Whether extra space given to the child should be allocated to the child or "
+"used as padding"
+msgstr ""
+"Ali naj se dodaten prostor, dodan podrejenemu predmetu, dodeli njemu ali naj "
+"se uporabi kot blazinjenje"
+
+#: gtk/gtkbox.c:346
+msgid "Extra space to put between the child and its neighbors, in pixels"
+msgstr ""
+"Dodaten prostor med podrejenim predmetom in njegovimi sosedi (v slikovnih "
+"točkah)"
+
+#: gtk/gtkbuilder.c:292
msgid "Translation Domain"
msgstr "Domena prevajanja"
-#: gtk/gtkbuilder.c:283
+#: gtk/gtkbuilder.c:293
msgid "The translation domain used by gettext"
msgstr "Domena prevajanja, ki jo uporablja gettext"
-#: gtk/gtkbutton.c:226
+#: gtk/gtkbutton.c:282
msgid ""
"Text of the label widget inside the button, if the button contains a label "
"widget"
msgstr "Besedilo gradnika oznake v gumbu, če gumb vsebuje gradnik oznake"
-#: gtk/gtkbutton.c:239
+#: gtk/gtkbutton.c:288 gtk/gtkexpander.c:316 gtk/gtklabel.c:826
+#: gtk/gtkmenuitem.c:803 gtk/gtktoolbutton.c:250
+msgid "Use underline"
+msgstr "Uporabi podčrtaj"
+
+#: gtk/gtkbutton.c:289 gtk/gtkexpander.c:317 gtk/gtklabel.c:827
+#: gtk/gtkmenuitem.c:804
+msgid ""
+"If set, an underline in the text indicates the next character should be used "
+"for the mnemonic accelerator key"
+msgstr ""
+"Izbrana možnost omogoča, da podčrtaj v besedilu označuje črko, ki je "
+"uporabljena kot menijska bližnjica"
+
+#: gtk/gtkbutton.c:301
+msgid ""
+"If set, the label is used to pick a stock item instead of being displayed"
+msgstr ""
+"Izbrana možnost omogoča, da se oznaka uporabi za izbiro predmeta sklada, "
+"namesto, da bi bil prikazan"
+
+#: gtk/gtkbutton.c:307
msgid "Border relief"
msgstr "Relief robu"
-#: gtk/gtkbutton.c:240
+#: gtk/gtkbutton.c:308
msgid "The border relief style"
msgstr "Slog reliefa robu"
-#: gtk/gtkbutton.c:247 gtk/gtkcellrendererpixbuf.c:210 gtk/gtkimage.c:231
-#: gtk/gtkprinter.c:170 gtk/gtkwindow.c:976
-msgid "Icon Name"
-msgstr "Ime ikone"
+#: gtk/gtkbutton.c:327
+msgid "Horizontal alignment for child"
+msgstr "Vodoravna poravnava podrejenega predmeta"
+
+#: gtk/gtkbutton.c:346
+msgid "Vertical alignment for child"
+msgstr "Navpična poravnava podrejenega predmeta"
-#: gtk/gtkbutton.c:248
-msgid "The name of the icon used to automatically populate the button"
-msgstr "Ime ikone, uporabljene za privzeto sličico gumba"
+#: gtk/gtkbutton.c:361
+msgid "Child widget to appear next to the button text"
+msgstr "Podrejeni gradnik, ki naj se pojavi ob besedilu gumba"
-#: gtk/gtkcalendar.c:384
+#: gtk/gtkbutton.c:374
+msgid "Image position"
+msgstr "Položaj slike"
+
+#: gtk/gtkbutton.c:375
+msgid "The position of the image relative to the text"
+msgstr "Položaj slike glede na besedilo"
+
+#: gtk/gtkbutton.c:523
+msgid "Default Spacing"
+msgstr "Privzet razmik"
+
+#: gtk/gtkbutton.c:524
+msgid "Extra space to add for GTK_CAN_DEFAULT buttons"
+msgstr "Dodaten prostor, ki je dodan gumbom GTK_CAN_DEFAULT"
+
+#: gtk/gtkbutton.c:541
+msgid "Default Outside Spacing"
+msgstr "Privzet zunanji razmik"
+
+#: gtk/gtkbutton.c:542
+msgid ""
+"Extra space to add for GTK_CAN_DEFAULT buttons that is always drawn outside "
+"the border"
+msgstr ""
+"Dodaten prostor, ki je dodan gumbom GTK_CAN_DEFAULT in je vedno narisan "
+"zunaj obrobe"
+
+#: gtk/gtkbutton.c:556
+msgid "Child X Displacement"
+msgstr "Premestitev podrejenega predmeta po X osi"
+
+#: gtk/gtkbutton.c:557
+msgid ""
+"How far in the x direction to move the child when the button is depressed"
+msgstr ""
+"Kako daleč v smeri X naj se premakne podrejeni predmet, ko je gumb spuščen"
+
+#: gtk/gtkbutton.c:573
+msgid "Child Y Displacement"
+msgstr "Premestitev podrejenega predmeta po Y osi"
+
+#: gtk/gtkbutton.c:574
+msgid ""
+"How far in the y direction to move the child when the button is depressed"
+msgstr ""
+"Kako daleč v smeri Y naj se premakne podrejeni predmet, ko je gumb spuščen"
+
+#: gtk/gtkbutton.c:593
+msgid "Displace focus"
+msgstr "Premakni dejavnost"
+
+#: gtk/gtkbutton.c:594
+msgid ""
+"Whether the child_displacement_x/_y properties should also affect the focus "
+"rectangle"
+msgstr "Ali lastnost child_displacement_x/_y vpliva na dejavnost pravokotnika"
+
+#: gtk/gtkbutton.c:610 gtk/gtkentry.c:899 gtk/gtkentry.c:2117
+msgid "Inner Border"
+msgstr "Notranja obroba"
+
+#: gtk/gtkbutton.c:611
+msgid "Border between button edges and child."
+msgstr "Obroba med robovi gumba in podrejenim predmetom."
+
+#: gtk/gtkbutton.c:626
+msgid "Image spacing"
+msgstr "Razmik slike"
+
+#: gtk/gtkbutton.c:627
+msgid "Spacing in pixels between the image and label"
+msgstr "Razmik med sliko in oznako, v slikovnih točkah"
+
+#: gtk/gtkcalendar.c:398
msgid "Year"
msgstr "Leto"
-#: gtk/gtkcalendar.c:385
+#: gtk/gtkcalendar.c:399
msgid "The selected year"
msgstr "Izbrano leto"
-#: gtk/gtkcalendar.c:398
+#: gtk/gtkcalendar.c:412
msgid "Month"
msgstr "Mesec"
-#: gtk/gtkcalendar.c:399
+#: gtk/gtkcalendar.c:413
msgid "The selected month (as a number between 0 and 11)"
msgstr "Izbrani mesec (število med 0 in 11)"
-#: gtk/gtkcalendar.c:413
+#: gtk/gtkcalendar.c:427
msgid "Day"
msgstr "Dan"
-#: gtk/gtkcalendar.c:414
+#: gtk/gtkcalendar.c:428
msgid ""
"The selected day (as a number between 1 and 31, or 0 to unselect the "
"currently selected day)"
@@ -833,71 +1904,90 @@ msgstr ""
"Izbrani dan (številko med 1 in 31 oziroma 0 za preklic izbire trenutno "
"izbranega dneva)"
-#: gtk/gtkcalendar.c:428
+#: gtk/gtkcalendar.c:442
msgid "Show Heading"
msgstr "Pokaži naslov"
-#: gtk/gtkcalendar.c:429
+#: gtk/gtkcalendar.c:443
msgid "If TRUE, a heading is displayed"
msgstr "Izbrana možnost omogoča, da je prikazan naslov"
-#: gtk/gtkcalendar.c:443
+#: gtk/gtkcalendar.c:457
msgid "Show Day Names"
msgstr "Pokaži imena dni"
-#: gtk/gtkcalendar.c:444
+#: gtk/gtkcalendar.c:458
msgid "If TRUE, day names are displayed"
msgstr "Izbrana možnost omogoča, da so prikazana imena dni"
-#: gtk/gtkcalendar.c:457
+#: gtk/gtkcalendar.c:471
msgid "No Month Change"
msgstr "Brez spremembe meseca"
-#: gtk/gtkcalendar.c:458
+#: gtk/gtkcalendar.c:472
msgid "If TRUE, the selected month cannot be changed"
msgstr "Izbrana možnost omogoča, da izbranega meseca ni mogoče spremeniti"
-#: gtk/gtkcalendar.c:472
+#: gtk/gtkcalendar.c:486
msgid "Show Week Numbers"
msgstr "Pokaži števila tednov"
-#: gtk/gtkcalendar.c:473
+#: gtk/gtkcalendar.c:487
msgid "If TRUE, week numbers are displayed"
msgstr "Izbrana možnost omogoča, da so prikazana števila tednov"
-#: gtk/gtkcalendar.c:488
+#: gtk/gtkcalendar.c:502
msgid "Details Width"
msgstr "Širina podrobnosti"
-#: gtk/gtkcalendar.c:489
+#: gtk/gtkcalendar.c:503
msgid "Details width in characters"
msgstr "Širina podrobnosti (v znakih)"
-#: gtk/gtkcalendar.c:504
+#: gtk/gtkcalendar.c:518
msgid "Details Height"
msgstr "Višina podrobnosti"
-#: gtk/gtkcalendar.c:505
+#: gtk/gtkcalendar.c:519
msgid "Details height in rows"
msgstr "Višina podrobnosti (v vrsticah)"
-#: gtk/gtkcalendar.c:521
+#: gtk/gtkcalendar.c:535
msgid "Show Details"
msgstr "Pokaži podrobnosti"
-#: gtk/gtkcalendar.c:522
+#: gtk/gtkcalendar.c:536
msgid "If TRUE, details are shown"
msgstr "Izbrana možnost omogoča, da so prikazane podrobnosti"
-#: gtk/gtkcellareabox.c:311 gtk/gtktreeviewcolumn.c:276
+#: gtk/gtkcalendar.c:548
+msgid "Inner border"
+msgstr "Notranja obroba"
+
+#: gtk/gtkcalendar.c:549
+msgid "Inner border space"
+msgstr "Razmik notranjih robov"
+
+#: gtk/gtkcalendar.c:560
+msgid "Vertical separation"
+msgstr "Navpični razmik"
+
+#: gtk/gtkcalendar.c:561
+msgid "Space between day headers and main area"
+msgstr "Razmik med glavami dni in glavnim področjem"
+
+#: gtk/gtkcalendar.c:572
+msgid "Horizontal separation"
+msgstr "Vodoravni razmik"
+
+#: gtk/gtkcalendar.c:573
+msgid "Space between week headers and main area"
+msgstr "Razmik med glavami tednov in glavnim področjem"
+
+#: gtk/gtkcellareabox.c:311 gtk/gtktreeviewcolumn.c:277
msgid "Space which is inserted between cells"
msgstr "Prostor, vstavljen med celice"
-#: gtk/gtkcellareabox.c:330 gtk/gtktoolbar.c:548 gtk/gtktoolitemgroup.c:1597
-#: gtk/gtktoolpalette.c:977 gtk/gtktreeviewcolumn.c:322
-msgid "Expand"
-msgstr "Razširi"
-
#: gtk/gtkcellareabox.c:331
msgid "Whether the cell expands"
msgstr "Ali se celica lahko razširi"
@@ -930,27 +2020,27 @@ msgstr ""
"GtkPackType, ki pove ali naj bo podrejeni predmet zložen z referenco na "
"začetek ali na konec nadrejenega predmeta"
-#: gtk/gtkcellarea.c:791
+#: gtk/gtkcellarea.c:790
msgid "Focus Cell"
msgstr "Celica v žarišču"
-#: gtk/gtkcellarea.c:792
+#: gtk/gtkcellarea.c:791
msgid "The cell which currently has focus"
msgstr "Celica, ki je trenutno v žarišču"
-#: gtk/gtkcellarea.c:810
+#: gtk/gtkcellarea.c:809
msgid "Edited Cell"
msgstr "Urejana celica"
-#: gtk/gtkcellarea.c:811
+#: gtk/gtkcellarea.c:810
msgid "The cell which is currently being edited"
msgstr "Celica, ki je trenutno v urejanju"
-#: gtk/gtkcellarea.c:829
+#: gtk/gtkcellarea.c:828
msgid "Edit Widget"
msgstr "Uredi gradnik"
-#: gtk/gtkcellarea.c:830
+#: gtk/gtkcellarea.c:829
msgid "The widget currently editing the edited cell"
msgstr "Gradnik, ki trenutno ureja urejano celico"
@@ -963,7 +2053,7 @@ msgid "The Cell Area this context was created for"
msgstr "Celično območje, za katero je bila ustvarjena vsebina"
#: gtk/gtkcellareacontext.c:132 gtk/gtkcellareacontext.c:151
-#: gtk/gtktreeviewcolumn.c:299
+#: gtk/gtktreeviewcolumn.c:300
msgid "Minimum Width"
msgstr "Najmanjša širina"
@@ -987,253 +2077,255 @@ msgstr "Urejanje je preklicano"
msgid "Indicates that editing has been canceled"
msgstr "Določa, da je bilo urejanje predmeta preklicano"
-#: gtk/gtkcellrendereraccel.c:140
+#: gtk/gtkcellrendereraccel.c:141
msgid "Accelerator key"
msgstr "Tipka pospeševalnika"
-#: gtk/gtkcellrendereraccel.c:141
+#: gtk/gtkcellrendereraccel.c:142
msgid "The keyval of the accelerator"
msgstr "Vrednost tipke pospeševalnika"
-#: gtk/gtkcellrendereraccel.c:157
+#: gtk/gtkcellrendereraccel.c:158
msgid "Accelerator modifiers"
msgstr "Pomožne tipke pospeševalnika"
-#: gtk/gtkcellrendereraccel.c:158
+#: gtk/gtkcellrendereraccel.c:159
msgid "The modifier mask of the accelerator"
msgstr "Maska spremenilnika za pospeševalnik"
-#: gtk/gtkcellrendereraccel.c:175
+#: gtk/gtkcellrendereraccel.c:176
msgid "Accelerator keycode"
msgstr "Koda tipke pospeševalnika"
-#: gtk/gtkcellrendereraccel.c:176
+#: gtk/gtkcellrendereraccel.c:177
msgid "The hardware keycode of the accelerator"
msgstr "Strojna koda tipke pospeševalnika"
-#: gtk/gtkcellrendereraccel.c:195
+#: gtk/gtkcellrendereraccel.c:196
msgid "Accelerator Mode"
msgstr "Način pospeševalnika"
-#: gtk/gtkcellrendereraccel.c:196
+#: gtk/gtkcellrendereraccel.c:197
msgid "The type of accelerators"
msgstr "Način pospeševalnikov"
-#: gtk/gtkcellrenderer.c:284
+#: gtk/gtkcellrenderer.c:289
msgid "mode"
msgstr "način"
-#: gtk/gtkcellrenderer.c:285
+#: gtk/gtkcellrenderer.c:290
msgid "Editable mode of the CellRenderer"
msgstr "Uredljiv način predmeta CellRenderer"
-#: gtk/gtkcellrenderer.c:293
+#: gtk/gtkcellrenderer.c:298
msgid "visible"
msgstr "vidno"
-#: gtk/gtkcellrenderer.c:294
+#: gtk/gtkcellrenderer.c:299
msgid "Display the cell"
msgstr "Pokaži celico"
-#: gtk/gtkcellrenderer.c:300 gtk/gtkwidget.c:1118
-msgid "Sensitive"
-msgstr "Občutljivo"
-
-#: gtk/gtkcellrenderer.c:301
+#: gtk/gtkcellrenderer.c:306
msgid "Display the cell sensitive"
msgstr "Pokaži občutljivost celice"
-#: gtk/gtkcellrenderer.c:308
+#: gtk/gtkcellrenderer.c:313
msgid "xalign"
msgstr "xalign"
-#: gtk/gtkcellrenderer.c:309
+#: gtk/gtkcellrenderer.c:314
msgid "The x-align"
msgstr "Poravnava po osi X"
-#: gtk/gtkcellrenderer.c:318
+#: gtk/gtkcellrenderer.c:323
msgid "yalign"
msgstr "yalign"
-#: gtk/gtkcellrenderer.c:319
+#: gtk/gtkcellrenderer.c:324
msgid "The y-align"
msgstr "Poravnava po osi Y"
-#: gtk/gtkcellrenderer.c:328
+#: gtk/gtkcellrenderer.c:333
msgid "xpad"
msgstr "xpad"
-#: gtk/gtkcellrenderer.c:329
+#: gtk/gtkcellrenderer.c:334
msgid "The xpad"
msgstr "Blazinjenje po osi X"
-#: gtk/gtkcellrenderer.c:338
+#: gtk/gtkcellrenderer.c:343
msgid "ypad"
msgstr "ypad"
-#: gtk/gtkcellrenderer.c:339
+#: gtk/gtkcellrenderer.c:344
msgid "The ypad"
msgstr "Blazinjenje po Y osi"
-#: gtk/gtkcellrenderer.c:348
+#: gtk/gtkcellrenderer.c:353
msgid "width"
msgstr "širina"
-#: gtk/gtkcellrenderer.c:349
+#: gtk/gtkcellrenderer.c:354
msgid "The fixed width"
msgstr "Nespremenljiva širina"
-#: gtk/gtkcellrenderer.c:358
+#: gtk/gtkcellrenderer.c:363
msgid "height"
msgstr "višina"
-#: gtk/gtkcellrenderer.c:359
+#: gtk/gtkcellrenderer.c:364
msgid "The fixed height"
msgstr "Nespremenljiva višina"
-#: gtk/gtkcellrenderer.c:368
+#: gtk/gtkcellrenderer.c:373
msgid "Is Expander"
msgstr "Je razširilnik"
-#: gtk/gtkcellrenderer.c:369
+#: gtk/gtkcellrenderer.c:374
msgid "Row has children"
msgstr "Vrstica ima podrejene predmete"
-#: gtk/gtkcellrenderer.c:377
+#: gtk/gtkcellrenderer.c:382
msgid "Is Expanded"
msgstr "Je razširjena"
-#: gtk/gtkcellrenderer.c:378
+#: gtk/gtkcellrenderer.c:383
msgid "Row is an expander row, and is expanded"
msgstr "Vrstica je razširna vrstica in je razširjena"
-#: gtk/gtkcellrenderer.c:385
+#: gtk/gtkcellrenderer.c:390
msgid "Cell background color name"
msgstr "Ime barve ozadja celice"
-#: gtk/gtkcellrenderer.c:386
+#: gtk/gtkcellrenderer.c:391
msgid "Cell background color as a string"
msgstr "Barva ozadja celice kot niz"
-#: gtk/gtkcellrenderer.c:400
+#: gtk/gtkcellrenderer.c:406
+msgid "Cell background color"
+msgstr "Barva ozadja celice"
+
+#: gtk/gtkcellrenderer.c:407
+msgid "Cell background color as a GdkColor"
+msgstr "Barva ozadja celice (GdkColor)"
+
+#: gtk/gtkcellrenderer.c:421
msgid "Cell background RGBA color"
msgstr "Barva ozadja celice (RGBA)"
-#: gtk/gtkcellrenderer.c:401
+#: gtk/gtkcellrenderer.c:422
msgid "Cell background color as a GdkRGBA"
msgstr "Barva ozadja celice (GdkRGBA)"
-#: gtk/gtkcellrenderer.c:408
+#: gtk/gtkcellrenderer.c:429
msgid "Editing"
msgstr "Urejanje"
-#: gtk/gtkcellrenderer.c:409
+#: gtk/gtkcellrenderer.c:430
msgid "Whether the cell renderer is currently in editing mode"
msgstr "Ali je izrisovalnik celice trenutno v načinu urejanja"
-#: gtk/gtkcellrenderer.c:417
+#: gtk/gtkcellrenderer.c:438
msgid "Cell background set"
msgstr "Nastavi ozadje celice"
-#: gtk/gtkcellrenderer.c:418
+#: gtk/gtkcellrenderer.c:439
msgid "Whether the cell background color is set"
msgstr "Ali naj bo določena barva ozadja celice"
-#: gtk/gtkcellrenderercombo.c:126
+#: gtk/gtkcellrenderercombo.c:128
msgid "Model"
msgstr "Model"
-#: gtk/gtkcellrenderercombo.c:127
+#: gtk/gtkcellrenderercombo.c:129
msgid "The model containing the possible values for the combo box"
msgstr "Model, ki vsebuje mogoče vrednosti spustnega polja"
-#: gtk/gtkcellrenderercombo.c:149
+#: gtk/gtkcellrenderercombo.c:151
msgid "Text Column"
msgstr "Stolpec besedila"
-#: gtk/gtkcellrenderercombo.c:150
+#: gtk/gtkcellrenderercombo.c:152
msgid "A column in the data source model to get the strings from"
msgstr "Stolpec podatkovnega vira, iz katerega naj bodo pridobljeni nizi"
-#: gtk/gtkcellrenderercombo.c:167 gtk/gtkcombobox.c:813
+#: gtk/gtkcellrenderercombo.c:169 gtk/gtkcombobox.c:1094
msgid "Has Entry"
msgstr "Ima vnos"
-#: gtk/gtkcellrenderercombo.c:168
-msgid "If FALSE, don’t allow to enter strings other than the chosen ones"
+#: gtk/gtkcellrenderercombo.c:170
+msgid "If FALSE, don't allow to enter strings other than the chosen ones"
msgstr ""
"Izbrana možnost omogoča vnos nizov, ki so drugačni od privzeto določenih"
-#: gtk/gtkcellrendererpixbuf.c:146
+#: gtk/gtkcellrendererpixbuf.c:152
msgid "Pixbuf Object"
msgstr "Predmet medpomnilnika sličic"
-#: gtk/gtkcellrendererpixbuf.c:147
+#: gtk/gtkcellrendererpixbuf.c:153
msgid "The pixbuf to render"
msgstr "Medpomnilnik sličic, ki naj se izriše"
-#: gtk/gtkcellrendererpixbuf.c:154
+#: gtk/gtkcellrendererpixbuf.c:160
msgid "Pixbuf Expander Open"
msgstr "Odprt razširjevalnik medpomnilnika sličic"
-#: gtk/gtkcellrendererpixbuf.c:155
+#: gtk/gtkcellrendererpixbuf.c:161
msgid "Pixbuf for open expander"
msgstr "Medpomnilnik sličic odprtega razširilnika"
-#: gtk/gtkcellrendererpixbuf.c:162
+#: gtk/gtkcellrendererpixbuf.c:168
msgid "Pixbuf Expander Closed"
msgstr "Zaprt razširjevalnik medpomnilnika sličic"
-#: gtk/gtkcellrendererpixbuf.c:163
+#: gtk/gtkcellrendererpixbuf.c:169
msgid "Pixbuf for closed expander"
msgstr "Medpomnilnik sličic zaprtega razširilnika"
-#: gtk/gtkcellrendererpixbuf.c:174
+#: gtk/gtkcellrendererpixbuf.c:180
msgid "surface"
msgstr "površina"
-#: gtk/gtkcellrendererpixbuf.c:175
+#: gtk/gtkcellrendererpixbuf.c:181
msgid "The surface to render"
msgstr "Površina za izris"
-#: gtk/gtkcellrendererpixbuf.c:182 gtk/gtkcellrendererspinner.c:153
-#: gtk/gtkrecentmanager.c:304
-msgid "Size"
-msgstr "Velikost"
+#: gtk/gtkcellrendererpixbuf.c:196
+msgid "The stock ID of the stock icon to render"
+msgstr "ID sklada ikone za izris"
-#: gtk/gtkcellrendererpixbuf.c:183
+#: gtk/gtkcellrendererpixbuf.c:211
msgid "The GtkIconSize value that specifies the size of the rendered icon"
msgstr "Vrednost GtkIconSize, ki določa velikost izrisane ikone"
-#: gtk/gtkcellrendererpixbuf.c:192
+#: gtk/gtkcellrendererpixbuf.c:227
msgid "Detail"
msgstr "Podrobnost"
-#: gtk/gtkcellrendererpixbuf.c:193
+#: gtk/gtkcellrendererpixbuf.c:228
msgid "Render detail to pass to the theme engine"
msgstr "Podrobnost izrisa, ki se poda programniku teme"
-#: gtk/gtkcellrendererpixbuf.c:211 gtk/gtkimage.c:232
-msgid "The name of the icon from the icon theme"
-msgstr "Ime ikone iz ikonske teme"
+#: gtk/gtkcellrendererpixbuf.c:263
+msgid "Follow State"
+msgstr "Sledi stanju"
-#: gtk/gtkcellrendererpixbuf.c:227 gtk/gtkimage.c:247 gtk/gtkmodelbutton.c:950
-#: gtk/gtkshortcutsshortcut.c:585 gtk/gtkwindow.c:927
+#: gtk/gtkcellrendererpixbuf.c:264
+msgid "Whether the rendered pixbuf should be colorized according to the state"
+msgstr "Ali naj se izrisani medpomnilnik sličic obarva glede na stanje"
+
+#: gtk/gtkcellrendererpixbuf.c:281 gtk/gtkimage.c:358 gtk/gtkmodelbutton.c:1144
+#: gtk/gtkshortcutsshortcut.c:550 gtk/gtkwindow.c:838
msgid "Icon"
msgstr "Ikona"
-#: gtk/gtkcellrendererpixbuf.c:228 gtk/gtkimage.c:248
-msgid "The GIcon being displayed"
-msgstr "Prikazan predmet GIcon"
-
#: gtk/gtkcellrendererprogress.c:139
msgid "Value of the progress bar"
msgstr "Vrednost vrstice napredka"
-#: gtk/gtkcellrendererprogress.c:156 gtk/gtkcellrenderertext.c:253
-#: gtk/gtkentrybuffer.c:350 gtk/gtkentry.c:860 gtk/gtkmessagedialog.c:201
-#: gtk/gtkmodelbutton.c:964 gtk/gtkprogressbar.c:215 gtk/gtkspinbutton.c:423
-#: gtk/gtktextbuffer.c:218
+#: gtk/gtkcellrendererprogress.c:156 gtk/gtkcellrenderertext.c:255
+#: gtk/gtkentrybuffer.c:350 gtk/gtkentry.c:953 gtk/gtkmessagedialog.c:214
+#: gtk/gtkmodelbutton.c:1158 gtk/gtkprogressbar.c:287 gtk/gtktextbuffer.c:218
msgid "Text"
msgstr "Besedilo"
@@ -1241,14 +2333,14 @@ msgstr "Besedilo"
msgid "Text on the progress bar"
msgstr "Besedilo vrstice napredka"
-#: gtk/gtkcellrendererprogress.c:180 gtk/gtkcellrendererspinner.c:138
+#: gtk/gtkcellrendererprogress.c:180 gtk/gtkcellrendererspinner.c:144
msgid "Pulse"
msgstr "Pulz"
#: gtk/gtkcellrendererprogress.c:181
msgid ""
"Set this to positive values to indicate that some progress is made, but you "
-"don’t know how much."
+"don't know how much."
msgstr ""
"Z določitvijo pozitivne vrednosti se označi, da je nekaj napredka, vendar ni "
"znano koliko."
@@ -1273,235 +2365,240 @@ msgstr "Poravnava besedila po osi Y"
msgid "The vertical text alignment, from 0 (top) to 1 (bottom)."
msgstr "Navpična poravnava besedila, od 0 (zgoraj) do 1 (spodaj)."
-#: gtk/gtkcellrendererprogress.c:226 gtk/gtklevelbar.c:1042
-#: gtk/gtkmodelbutton.c:1010 gtk/gtkprogressbar.c:192 gtk/gtkrange.c:391
+#: gtk/gtkcellrendererprogress.c:226 gtk/gtklevelbar.c:1097
+#: gtk/gtkmodelbutton.c:1220 gtk/gtkprogressbar.c:264 gtk/gtkrange.c:441
msgid "Inverted"
msgstr "Preobrnjeno"
-#: gtk/gtkcellrendererprogress.c:227 gtk/gtkprogressbar.c:193
+#: gtk/gtkcellrendererprogress.c:227 gtk/gtkprogressbar.c:265
msgid "Invert the direction in which the progress bar grows"
msgstr "Obrni smer, v katero narašča vrstica napredka"
-#: gtk/gtkcellrendererspin.c:114 gtk/gtkrange.c:384 gtk/gtkscalebutton.c:215
-#: gtk/gtkscrollbar.c:223 gtk/gtkspinbutton.c:340
+#: gtk/gtkcellrendererspin.c:113 gtk/gtkrange.c:434 gtk/gtkscalebutton.c:215
+#: gtk/gtkspinbutton.c:379
msgid "Adjustment"
msgstr "Prilagoditev"
-#: gtk/gtkcellrendererspin.c:115 gtk/gtkspinbutton.c:341
+#: gtk/gtkcellrendererspin.c:114 gtk/gtkspinbutton.c:380
msgid "The adjustment that holds the value of the spin button"
msgstr "Prilagoditev, ki drži vrednost vrtilnega gumba"
-#: gtk/gtkcellrendererspin.c:130
+#: gtk/gtkcellrendererspin.c:129
msgid "Climb rate"
msgstr "Pospešek"
-#: gtk/gtkcellrendererspin.c:131 gtk/gtkspinbutton.c:349
+#: gtk/gtkcellrendererspin.c:130
msgid "The acceleration rate when you hold down a button"
msgstr "Pospešek, ko držite gumb pritisnjen"
-#: gtk/gtkcellrendererspin.c:144 gtk/gtkscale.c:709 gtk/gtkspinbutton.c:356
+#: gtk/gtkcellrendererspin.c:143 gtk/gtkscale.c:767 gtk/gtkspinbutton.c:395
msgid "Digits"
msgstr "Števke"
-#: gtk/gtkcellrendererspin.c:145 gtk/gtkspinbutton.c:357
+#: gtk/gtkcellrendererspin.c:144 gtk/gtkspinbutton.c:396
msgid "The number of decimal places to display"
msgstr "Število prikazanih decimalnih mest"
-#: gtk/gtkcellrendererspinner.c:119 gtk/gtkcheckmenuitem.c:182
-#: gtk/gtkmenu.c:614 gtk/gtkmodelbutton.c:979 gtk/gtkmodelbutton.c:980
-#: gtk/gtkspinner.c:203 gtk/gtkswitch.c:531 gtk/gtktogglebutton.c:156
-#: gtk/gtktoggletoolbutton.c:115
-msgid "Active"
-msgstr "Dejavno"
-
-#: gtk/gtkcellrendererspinner.c:120
+#: gtk/gtkcellrendererspinner.c:126
msgid "Whether the spinner is active (ie. shown) in the cell"
msgstr "Ali naj bo vrtavka dejavna (prikazana) v celici"
-#: gtk/gtkcellrendererspinner.c:139
+#: gtk/gtkcellrendererspinner.c:145
msgid "Pulse of the spinner"
msgstr "Pulz vrtavke"
-#: gtk/gtkcellrendererspinner.c:154
+#: gtk/gtkcellrendererspinner.c:160
msgid "The GtkIconSize value that specifies the size of the rendered spinner"
msgstr "Vrednost GtkIconSize, ki določa velikost izrisane vrtavke"
-#: gtk/gtkcellrenderertext.c:254
+#: gtk/gtkcellrenderertext.c:256
msgid "Text to render"
msgstr "Besedilo za izris"
-#: gtk/gtkcellrenderertext.c:260
+#: gtk/gtkcellrenderertext.c:262
msgid "Markup"
msgstr "Označeno"
-#: gtk/gtkcellrenderertext.c:261
+#: gtk/gtkcellrenderertext.c:263
msgid "Marked up text to render"
msgstr "Označeno besedilo za izris"
-#: gtk/gtkcellrenderertext.c:267 gtk/gtkentry.c:1349 gtk/gtklabel.c:762
+#: gtk/gtkcellrenderertext.c:269 gtk/gtkentry.c:1493 gtk/gtklabel.c:812
msgid "Attributes"
msgstr "Atributi"
-#: gtk/gtkcellrenderertext.c:268
+#: gtk/gtkcellrenderertext.c:270
msgid "A list of style attributes to apply to the text of the renderer"
msgstr "Seznam atributov sloga, ki naj se uveljavijo na besedilu izrisovalnika"
-#: gtk/gtkcellrenderertext.c:274
+#: gtk/gtkcellrenderertext.c:276
msgid "Single Paragraph Mode"
msgstr "Eno-odstavčni način"
-#: gtk/gtkcellrenderertext.c:275
+#: gtk/gtkcellrenderertext.c:277
msgid "Whether to keep all text in a single paragraph"
msgstr "Ali naj je celotno besedilo v enem samem odstavku"
-#: gtk/gtkcellrenderertext.c:281 gtk/gtktexttag.c:211
+#: gtk/gtkcellrenderertext.c:283 gtk/gtkcellview.c:217 gtk/gtktexttag.c:215
msgid "Background color name"
msgstr "Ime barve ozadja"
-#: gtk/gtkcellrenderertext.c:282 gtk/gtktexttag.c:212
+#: gtk/gtkcellrenderertext.c:284 gtk/gtkcellview.c:218 gtk/gtktexttag.c:216
msgid "Background color as a string"
msgstr "Barva ozadja kot niz"
-#: gtk/gtkcellrenderertext.c:295
+#: gtk/gtkcellrenderertext.c:298 gtk/gtkcellview.c:233 gtk/gtktexttag.c:230
+msgid "Background color"
+msgstr "Barva ozadja"
+
+#: gtk/gtkcellrenderertext.c:299 gtk/gtkcellview.c:234 gtk/gtktexttag.c:231
+msgid "Background color as a GdkColor"
+msgstr "Barva ozadja (GdkColor)"
+
+#: gtk/gtkcellrenderertext.c:313
msgid "Background color as RGBA"
msgstr "Barva ozadja (RGBA)"
-#: gtk/gtkcellrenderertext.c:296 gtk/gtktexttag.c:227
+#: gtk/gtkcellrenderertext.c:314 gtk/gtkcellview.c:249 gtk/gtktexttag.c:246
msgid "Background color as a GdkRGBA"
msgstr "Barva ozadja (GdkRGBA)"
-#: gtk/gtkcellrenderertext.c:301 gtk/gtktexttag.c:242
+#: gtk/gtkcellrenderertext.c:319 gtk/gtktexttag.c:261
msgid "Foreground color name"
msgstr "Ime barve ospredja"
-#: gtk/gtkcellrenderertext.c:302 gtk/gtktexttag.c:243
+#: gtk/gtkcellrenderertext.c:320 gtk/gtktexttag.c:262
msgid "Foreground color as a string"
msgstr "Barva ospredja kot niz"
-#: gtk/gtkcellrenderertext.c:315
+#: gtk/gtkcellrenderertext.c:335 gtk/gtktexttag.c:277
+msgid "Foreground color as a GdkColor"
+msgstr "Barva ospredja (GdkColor)"
+
+#: gtk/gtkcellrenderertext.c:349
msgid "Foreground color as RGBA"
msgstr "Barva ospredja (RGBA)"
-#: gtk/gtkcellrenderertext.c:316 gtk/gtktexttag.c:258
+#: gtk/gtkcellrenderertext.c:350 gtk/gtktexttag.c:292
msgid "Foreground color as a GdkRGBA"
msgstr "Barva ospredja (GdkRGBA)"
-#: gtk/gtkcellrenderertext.c:323 gtk/gtkentry.c:784 gtk/gtktexttag.c:274
-#: gtk/gtktextview.c:816
+#: gtk/gtkcellrenderertext.c:357 gtk/gtkentry.c:861 gtk/gtktexttag.c:308
+#: gtk/gtktextview.c:824
msgid "Editable"
msgstr "Uredljivo"
-#: gtk/gtkcellrenderertext.c:324 gtk/gtktexttag.c:275 gtk/gtktextview.c:817
+#: gtk/gtkcellrenderertext.c:358 gtk/gtktexttag.c:309 gtk/gtktextview.c:825
msgid "Whether the text can be modified by the user"
msgstr "Ali lahko uporabnik spremeni besedilo"
-#: gtk/gtkcellrenderertext.c:330 gtk/gtkcellrenderertext.c:337
-#: gtk/gtkfontchooser.c:64 gtk/gtktexttag.c:290 gtk/gtktexttag.c:298
+#: gtk/gtkcellrenderertext.c:364 gtk/gtkcellrenderertext.c:371
+#: gtk/gtkfontchooser.c:64 gtk/gtktexttag.c:324 gtk/gtktexttag.c:332
msgid "Font"
msgstr "Pisava"
-#: gtk/gtkcellrenderertext.c:331 gtk/gtkfontchooser.c:65 gtk/gtktexttag.c:291
-msgid "Font description as a string, e.g. “Sans Italic 12”"
-msgstr "Opis pisave kot niz, na primer »Sans Italic 12«"
+#: gtk/gtkcellrenderertext.c:365 gtk/gtkfontchooser.c:65 gtk/gtktexttag.c:325
+msgid "Font description as a string, e.g. \"Sans Italic 12\""
+msgstr "Opis pisave kot niz, npr. \"Sans Italic 12\""
-#: gtk/gtkcellrenderertext.c:338 gtk/gtkfontchooser.c:78 gtk/gtktexttag.c:299
+#: gtk/gtkcellrenderertext.c:372 gtk/gtkfontchooser.c:78 gtk/gtktexttag.c:333
msgid "Font description as a PangoFontDescription struct"
msgstr "Opis pisave kot struktura PangoFontDescription"
-#: gtk/gtkcellrenderertext.c:344 gtk/gtktexttag.c:306
+#: gtk/gtkcellrenderertext.c:378 gtk/gtktexttag.c:340
msgid "Font family"
msgstr "Družina pisave"
-#: gtk/gtkcellrenderertext.c:345 gtk/gtktexttag.c:307
+#: gtk/gtkcellrenderertext.c:379 gtk/gtktexttag.c:341
msgid "Name of the font family, e.g. Sans, Helvetica, Times, Monospace"
msgstr "Ime družine pisav, npr. Sans, Helvetica, Times, Monospace"
-#: gtk/gtkcellrenderertext.c:351 gtk/gtkcellrenderertext.c:352
-#: gtk/gtktexttag.c:314
+#: gtk/gtkcellrenderertext.c:385 gtk/gtkcellrenderertext.c:386
+#: gtk/gtktexttag.c:348
msgid "Font style"
msgstr "Slog pisave"
-#: gtk/gtkcellrenderertext.c:359 gtk/gtkcellrenderertext.c:360
-#: gtk/gtktexttag.c:323
+#: gtk/gtkcellrenderertext.c:393 gtk/gtkcellrenderertext.c:394
+#: gtk/gtktexttag.c:357
msgid "Font variant"
msgstr "Različica pisave"
-#: gtk/gtkcellrenderertext.c:367 gtk/gtkcellrenderertext.c:368
-#: gtk/gtktexttag.c:332
+#: gtk/gtkcellrenderertext.c:401 gtk/gtkcellrenderertext.c:402
+#: gtk/gtktexttag.c:366
msgid "Font weight"
msgstr "Teža pisave"
-#: gtk/gtkcellrenderertext.c:375 gtk/gtkcellrenderertext.c:376
-#: gtk/gtktexttag.c:343
+#: gtk/gtkcellrenderertext.c:409 gtk/gtkcellrenderertext.c:410
+#: gtk/gtktexttag.c:377
msgid "Font stretch"
msgstr "Razteg pisave"
-#: gtk/gtkcellrenderertext.c:383 gtk/gtkcellrenderertext.c:384
-#: gtk/gtktexttag.c:352
+#: gtk/gtkcellrenderertext.c:417 gtk/gtkcellrenderertext.c:418
+#: gtk/gtktexttag.c:386
msgid "Font size"
msgstr "Velikost pisave"
-#: gtk/gtkcellrenderertext.c:391 gtk/gtktexttag.c:372
+#: gtk/gtkcellrenderertext.c:425 gtk/gtktexttag.c:406
msgid "Font points"
msgstr "Točke pisave"
-#: gtk/gtkcellrenderertext.c:392 gtk/gtktexttag.c:373
+#: gtk/gtkcellrenderertext.c:426 gtk/gtktexttag.c:407
msgid "Font size in points"
msgstr "Velikost pisave v točkah"
-#: gtk/gtkcellrenderertext.c:399 gtk/gtktexttag.c:362
+#: gtk/gtkcellrenderertext.c:433 gtk/gtktexttag.c:396
msgid "Font scale"
msgstr "Povečava pisave"
-#: gtk/gtkcellrenderertext.c:400
+#: gtk/gtkcellrenderertext.c:434
msgid "Font scaling factor"
msgstr "Faktor povečave pisave"
-#: gtk/gtkcellrenderertext.c:407 gtk/gtktexttag.c:441
+#: gtk/gtkcellrenderertext.c:441 gtk/gtktexttag.c:475
msgid "Rise"
msgstr "Dvigni"
-#: gtk/gtkcellrenderertext.c:408
+#: gtk/gtkcellrenderertext.c:442
msgid ""
"Offset of text above the baseline (below the baseline if rise is negative)"
msgstr ""
"Odmik besedila nad osnovno črto (pod osnovno črto, je če odmik negativen)"
-#: gtk/gtkcellrenderertext.c:416 gtk/gtktexttag.c:481
+#: gtk/gtkcellrenderertext.c:450 gtk/gtktexttag.c:515
msgid "Strikethrough"
msgstr "Prečrtano"
-#: gtk/gtkcellrenderertext.c:417 gtk/gtktexttag.c:482
+#: gtk/gtkcellrenderertext.c:451 gtk/gtktexttag.c:516
msgid "Whether to strike through the text"
msgstr "Ali naj je besedilo prečrtano"
-#: gtk/gtkcellrenderertext.c:423 gtk/gtktexttag.c:489
+#: gtk/gtkcellrenderertext.c:457 gtk/gtktexttag.c:523
msgid "Underline"
msgstr "Podčrtano"
-#: gtk/gtkcellrenderertext.c:424 gtk/gtktexttag.c:490
+#: gtk/gtkcellrenderertext.c:458 gtk/gtktexttag.c:524
msgid "Style of underline for this text"
msgstr "Slog podčrtave za to besedilo"
-#: gtk/gtkcellrenderertext.c:431 gtk/gtktexttag.c:401
+#: gtk/gtkcellrenderertext.c:465 gtk/gtkfontchooser.c:154 gtk/gtktexttag.c:435
msgid "Language"
msgstr "Jezik"
-#: gtk/gtkcellrenderertext.c:432
+#: gtk/gtkcellrenderertext.c:466
msgid ""
"The language this text is in, as an ISO code. Pango can use this as a hint "
-"when rendering the text. If you don’t understand this parameter, you "
-"probably don’t need it"
+"when rendering the text. If you don't understand this parameter, you "
+"probably don't need it"
msgstr ""
"Jezik v katerem je to besedilo napisano, v obliki kode ISO. Pango lahko "
"uporabi to kot namig ob izrisovanju besedila. Če ne razumete tega parametra, "
-"ga verjetno ne potrebujete."
+"ga verjetno ne potrebujete"
-#: gtk/gtkcellrenderertext.c:450 gtk/gtklabel.c:913 gtk/gtkprogressbar.c:258
+#: gtk/gtkcellrenderertext.c:484 gtk/gtklabel.c:963 gtk/gtkprogressbar.c:330
msgid "Ellipsize"
msgstr "Okrajšanje"
-#: gtk/gtkcellrenderertext.c:451
+#: gtk/gtkcellrenderertext.c:485
msgid ""
"The preferred place to ellipsize the string, if the cell renderer does not "
"have enough room to display the entire string"
@@ -1509,28 +2606,28 @@ msgstr ""
"Prednostno mesto okrajšanja niza, kadar izrisovalnik celic nima dovolj "
"prostora za prikaz celotnega niza"
-#: gtk/gtkcellrenderertext.c:469 gtk/gtkfilechooserbutton.c:479
-#: gtk/gtklabel.c:933
+#: gtk/gtkcellrenderertext.c:503 gtk/gtkfilechooserbutton.c:452
+#: gtk/gtklabel.c:983
msgid "Width In Characters"
msgstr "Širina (število znakov)"
-#: gtk/gtkcellrenderertext.c:470 gtk/gtklabel.c:934
+#: gtk/gtkcellrenderertext.c:504 gtk/gtklabel.c:984
msgid "The desired width of the label, in characters"
msgstr "Želena širina oznake (v znakih)"
-#: gtk/gtkcellrenderertext.c:491 gtk/gtklabel.c:971
+#: gtk/gtkcellrenderertext.c:525 gtk/gtklabel.c:1039
msgid "Maximum Width In Characters"
msgstr "Največja širina (število znakov)"
-#: gtk/gtkcellrenderertext.c:492
+#: gtk/gtkcellrenderertext.c:526
msgid "The maximum width of the cell, in characters"
msgstr "Največja širina celice (v znakih)"
-#: gtk/gtkcellrenderertext.c:508 gtk/gtktexttag.c:534
+#: gtk/gtkcellrenderertext.c:542 gtk/gtktexttag.c:568
msgid "Wrap mode"
msgstr "Način preloma"
-#: gtk/gtkcellrenderertext.c:509
+#: gtk/gtkcellrenderertext.c:543
msgid ""
"How to break the string into multiple lines, if the cell renderer does not "
"have enough room to display the entire string"
@@ -1538,299 +2635,314 @@ msgstr ""
"Kako prelomiti niz v več vrstic, kadar izrisovalnik celic nima dovolj "
"prostora za prikaz celotnega niza"
-#: gtk/gtkcellrenderertext.c:527 gtk/gtkcombobox.c:678
+#: gtk/gtkcellrenderertext.c:561 gtk/gtkcombobox.c:922
msgid "Wrap width"
msgstr "Širina preloma"
-#: gtk/gtkcellrenderertext.c:528
+#: gtk/gtkcellrenderertext.c:562
msgid "The width at which the text is wrapped"
msgstr "Širina, pri kateri naj se besedilo prelomi"
-#: gtk/gtkcellrenderertext.c:546 gtk/gtktreeviewcolumn.c:343
+#: gtk/gtkcellrenderertext.c:580 gtk/gtktreeviewcolumn.c:344
msgid "Alignment"
msgstr "Poravnava"
-#: gtk/gtkcellrenderertext.c:547
+#: gtk/gtkcellrenderertext.c:581
msgid "How to align the lines"
msgstr "Kako naj bodo poravnane črte"
-#: gtk/gtkcellrenderertext.c:562 gtk/gtkentry.c:997
+#: gtk/gtkcellrenderertext.c:596 gtk/gtkentry.c:1109
msgid "Placeholder text"
msgstr "Besedilo držala"
-#: gtk/gtkcellrenderertext.c:563
+#: gtk/gtkcellrenderertext.c:597
msgid "Text rendered when an editable cell is empty"
msgstr "Izpisano besedilo, ko je uredljiva celica prazna"
-#: gtk/gtkcellrenderertext.c:572 gtk/gtktexttag.c:670
+#: gtk/gtkcellrenderertext.c:606 gtk/gtkcellview.c:353 gtk/gtktexttag.c:721
msgid "Background set"
msgstr "Nastavi ozadje"
-#: gtk/gtkcellrenderertext.c:573 gtk/gtktexttag.c:671
+#: gtk/gtkcellrenderertext.c:607 gtk/gtkcellview.c:354 gtk/gtktexttag.c:722
msgid "Whether this tag affects the background color"
msgstr "Ali naj ta oznaka vpliva na barvo ozadja"
-#: gtk/gtkcellrenderertext.c:576 gtk/gtktexttag.c:678
+#: gtk/gtkcellrenderertext.c:610 gtk/gtktexttag.c:729
msgid "Foreground set"
msgstr "Nastavi ospredje"
-#: gtk/gtkcellrenderertext.c:577 gtk/gtktexttag.c:679
+#: gtk/gtkcellrenderertext.c:611 gtk/gtktexttag.c:730
msgid "Whether this tag affects the foreground color"
msgstr "Ali naj ta oznaka vpliva na barvo ospredja"
-#: gtk/gtkcellrenderertext.c:580 gtk/gtktexttag.c:682
+#: gtk/gtkcellrenderertext.c:614 gtk/gtktexttag.c:733
msgid "Editability set"
msgstr "Nastavi uredljivost"
-#: gtk/gtkcellrenderertext.c:581 gtk/gtktexttag.c:683
+#: gtk/gtkcellrenderertext.c:615 gtk/gtktexttag.c:734
msgid "Whether this tag affects text editability"
msgstr "Ali ta značka vpliva na možnost spremembe besedila"
-#: gtk/gtkcellrenderertext.c:584 gtk/gtktexttag.c:686
+#: gtk/gtkcellrenderertext.c:618 gtk/gtktexttag.c:737
msgid "Font family set"
msgstr "Nastavi družino pisave"
-#: gtk/gtkcellrenderertext.c:585 gtk/gtktexttag.c:687
+#: gtk/gtkcellrenderertext.c:619 gtk/gtktexttag.c:738
msgid "Whether this tag affects the font family"
msgstr "Ali naj ta oznaka vpliva na družino pisave"
-#: gtk/gtkcellrenderertext.c:588 gtk/gtktexttag.c:690
+#: gtk/gtkcellrenderertext.c:622 gtk/gtktexttag.c:741
msgid "Font style set"
msgstr "Nastavi slog pisave"
-#: gtk/gtkcellrenderertext.c:589 gtk/gtktexttag.c:691
+#: gtk/gtkcellrenderertext.c:623 gtk/gtktexttag.c:742
msgid "Whether this tag affects the font style"
msgstr "Ali naj ta oznaka vpliva na slog pisave"
-#: gtk/gtkcellrenderertext.c:592 gtk/gtktexttag.c:694
+#: gtk/gtkcellrenderertext.c:626 gtk/gtktexttag.c:745
msgid "Font variant set"
msgstr "Nastavi različico pisave"
-#: gtk/gtkcellrenderertext.c:593 gtk/gtktexttag.c:695
+#: gtk/gtkcellrenderertext.c:627 gtk/gtktexttag.c:746
msgid "Whether this tag affects the font variant"
msgstr "Ali naj ta oznaka vpliva na različico pisave"
-#: gtk/gtkcellrenderertext.c:596 gtk/gtktexttag.c:698
+#: gtk/gtkcellrenderertext.c:630 gtk/gtktexttag.c:749
msgid "Font weight set"
msgstr "Nastavi težo pisave"
-#: gtk/gtkcellrenderertext.c:597 gtk/gtktexttag.c:699
+#: gtk/gtkcellrenderertext.c:631 gtk/gtktexttag.c:750
msgid "Whether this tag affects the font weight"
msgstr "Ali naj ta oznaka vpliva na težo pisave"
-#: gtk/gtkcellrenderertext.c:600 gtk/gtktexttag.c:702
+#: gtk/gtkcellrenderertext.c:634 gtk/gtktexttag.c:753
msgid "Font stretch set"
msgstr "Nastavi raztegnjenost pisave"
-#: gtk/gtkcellrenderertext.c:601 gtk/gtktexttag.c:703
+#: gtk/gtkcellrenderertext.c:635 gtk/gtktexttag.c:754
msgid "Whether this tag affects the font stretch"
msgstr "Ali naj ta oznaka vpliva na raztegnjenost pisave"
-#: gtk/gtkcellrenderertext.c:604 gtk/gtktexttag.c:706
+#: gtk/gtkcellrenderertext.c:638 gtk/gtktexttag.c:757
msgid "Font size set"
msgstr "Nastavi velikost pisave"
-#: gtk/gtkcellrenderertext.c:605 gtk/gtktexttag.c:707
+#: gtk/gtkcellrenderertext.c:639 gtk/gtktexttag.c:758
msgid "Whether this tag affects the font size"
msgstr "Ali naj ta oznaka vpliva na velikost pisave"
-#: gtk/gtkcellrenderertext.c:608 gtk/gtktexttag.c:710
+#: gtk/gtkcellrenderertext.c:642 gtk/gtktexttag.c:761
msgid "Font scale set"
msgstr "Nastavi povečavo pisave"
-#: gtk/gtkcellrenderertext.c:609 gtk/gtktexttag.c:711
+#: gtk/gtkcellrenderertext.c:643 gtk/gtktexttag.c:762
msgid "Whether this tag scales the font size by a factor"
msgstr "Ali ta oznaka vpliva na faktor povečave velikosti pisave"
-#: gtk/gtkcellrenderertext.c:612 gtk/gtktexttag.c:730
+#: gtk/gtkcellrenderertext.c:646 gtk/gtktexttag.c:781
msgid "Rise set"
msgstr "Nastavi dvig"
-#: gtk/gtkcellrenderertext.c:613 gtk/gtktexttag.c:731
+#: gtk/gtkcellrenderertext.c:647 gtk/gtktexttag.c:782
msgid "Whether this tag affects the rise"
msgstr "Ali ta oznaka vpliva na dvig"
-#: gtk/gtkcellrenderertext.c:616 gtk/gtktexttag.c:746
+#: gtk/gtkcellrenderertext.c:650 gtk/gtktexttag.c:797
msgid "Strikethrough set"
msgstr "Nastavi prečrtanost"
-#: gtk/gtkcellrenderertext.c:617 gtk/gtktexttag.c:747
+#: gtk/gtkcellrenderertext.c:651 gtk/gtktexttag.c:798
msgid "Whether this tag affects strikethrough"
msgstr "Ali naj ta oznaka vpliva na prečrtanost"
-#: gtk/gtkcellrenderertext.c:620 gtk/gtktexttag.c:754
+#: gtk/gtkcellrenderertext.c:654 gtk/gtktexttag.c:805
msgid "Underline set"
msgstr "Nastavi podčrtanost"
-#: gtk/gtkcellrenderertext.c:621 gtk/gtktexttag.c:755
+#: gtk/gtkcellrenderertext.c:655 gtk/gtktexttag.c:806
msgid "Whether this tag affects underlining"
msgstr "Ali naj ta oznaka vpliva na podčrtanost"
-#: gtk/gtkcellrenderertext.c:624 gtk/gtktexttag.c:718
+#: gtk/gtkcellrenderertext.c:658 gtk/gtktexttag.c:769
msgid "Language set"
msgstr "Nastavi jezik"
-#: gtk/gtkcellrenderertext.c:625 gtk/gtktexttag.c:719
+#: gtk/gtkcellrenderertext.c:659 gtk/gtktexttag.c:770
msgid "Whether this tag affects the language the text is rendered as"
msgstr "Ali naj ta oznaka vpliva na jezik, v katerem je izrisano besedilo"
-#: gtk/gtkcellrenderertext.c:628
+#: gtk/gtkcellrenderertext.c:662
msgid "Ellipsize set"
msgstr "Nastavi okrajšanje"
-#: gtk/gtkcellrenderertext.c:629
+#: gtk/gtkcellrenderertext.c:663
msgid "Whether this tag affects the ellipsize mode"
msgstr "Ali ta oznaka vpliva na način okrajšave"
-#: gtk/gtkcellrenderertext.c:632
+#: gtk/gtkcellrenderertext.c:666
msgid "Align set"
msgstr "Nastavi poravnavo"
-#: gtk/gtkcellrenderertext.c:633
+#: gtk/gtkcellrenderertext.c:667
msgid "Whether this tag affects the alignment mode"
msgstr "Ali naj ta oznaka vpliva na način poravnave"
-#: gtk/gtkcellrenderertoggle.c:135
+#: gtk/gtkcellrenderertoggle.c:138
msgid "Toggle state"
msgstr "Preklopno stanje"
-#: gtk/gtkcellrenderertoggle.c:136
+#: gtk/gtkcellrenderertoggle.c:139
msgid "The toggle state of the button"
msgstr "Preklopno stanje gumba"
-#: gtk/gtkcellrenderertoggle.c:143
+#: gtk/gtkcellrenderertoggle.c:146
msgid "Inconsistent state"
msgstr "Neskladno stanje"
-#: gtk/gtkcellrenderertoggle.c:144
+#: gtk/gtkcellrenderertoggle.c:147
msgid "The inconsistent state of the button"
msgstr "Neskladno stanje gumba"
-#: gtk/gtkcellrenderertoggle.c:151 gtk/gtklistbox.c:3442
+#: gtk/gtkcellrenderertoggle.c:154 gtk/gtklistbox.c:3906
msgid "Activatable"
msgstr "Zagonljiv"
-#: gtk/gtkcellrenderertoggle.c:152
+#: gtk/gtkcellrenderertoggle.c:155
msgid "The toggle button can be activated"
msgstr "Preklopni gumb je lahko dejaven"
-#: gtk/gtkcellrenderertoggle.c:159
+#: gtk/gtkcellrenderertoggle.c:162
msgid "Radio state"
msgstr "Stanje izbirnega gumba"
-#: gtk/gtkcellrenderertoggle.c:160
+#: gtk/gtkcellrenderertoggle.c:163
msgid "Draw the toggle button as a radio button"
msgstr "Izriši preklopni gumb kot izbirni gumb"
-#: gtk/gtkcellview.c:184
+#: gtk/gtkcellrenderertoggle.c:170
+msgid "Indicator size"
+msgstr "Velikost kazalnika"
+
+#: gtk/gtkcellrenderertoggle.c:171 gtk/gtkcheckbutton.c:233
+#: gtk/gtkcheckmenuitem.c:241
+msgid "Size of check or radio indicator"
+msgstr "Velikost potrditvenega ali izbirnega kazalnika"
+
+#: gtk/gtkcellview.c:248
+msgid "Background RGBA color"
+msgstr "Barva ozadja (RGBA)"
+
+#: gtk/gtkcellview.c:263
msgid "CellView model"
msgstr "Model CellView"
-#: gtk/gtkcellview.c:185
+#: gtk/gtkcellview.c:264
msgid "The model for cell view"
msgstr "Model za celični pogled"
-#: gtk/gtkcellview.c:203 gtk/gtkentrycompletion.c:468 gtk/gtkiconview.c:635
-#: gtk/gtktreemenu.c:293 gtk/gtktreeviewcolumn.c:398
+#: gtk/gtkcellview.c:282 gtk/gtkcombobox.c:1181 gtk/gtkentrycompletion.c:467
+#: gtk/gtkiconview.c:649 gtk/gtktreemenu.c:307 gtk/gtktreeviewcolumn.c:399
msgid "Cell Area"
msgstr "Območje celice"
-#: gtk/gtkcellview.c:204 gtk/gtkentrycompletion.c:469 gtk/gtkiconview.c:636
-#: gtk/gtktreemenu.c:294 gtk/gtktreeviewcolumn.c:399
+#: gtk/gtkcellview.c:283 gtk/gtkcombobox.c:1182 gtk/gtkentrycompletion.c:468
+#: gtk/gtkiconview.c:650 gtk/gtktreemenu.c:308 gtk/gtktreeviewcolumn.c:400
msgid "The GtkCellArea used to layout cells"
msgstr "Predmet GtkCellArea, ki je uporabljen za razporeditev celic"
-#: gtk/gtkcellview.c:227
+#: gtk/gtkcellview.c:306
msgid "Cell Area Context"
msgstr "Vsebina območja celice"
-#: gtk/gtkcellview.c:228
+#: gtk/gtkcellview.c:307
msgid "The GtkCellAreaContext used to compute the geometry of the cell view"
msgstr ""
"Predmet GtkCellAreaContext, ki je uporabljen za izračun geometrije pogleda "
"celice"
-#: gtk/gtkcellview.c:245
+#: gtk/gtkcellview.c:324
msgid "Draw Sensitive"
msgstr "Občutljivost risanja"
-#: gtk/gtkcellview.c:246
+#: gtk/gtkcellview.c:325
msgid "Whether to force cells to be drawn in a sensitive state"
msgstr "Ali naj bodo celice narisane v občutljivem načinu"
-#: gtk/gtkcellview.c:264
+#: gtk/gtkcellview.c:343
msgid "Fit Model"
msgstr "Prilagodi modelu"
-#: gtk/gtkcellview.c:265
+#: gtk/gtkcellview.c:344
msgid "Whether to request enough space for every row in the model"
msgstr "Ali naj bo zahtevno dovolj prostora za vsako vrstico modela"
-#: gtk/gtkcheckbutton.c:313
-msgid "Draw Indicator"
-msgstr "Izriši kazalnik"
+#: gtk/gtkcheckbutton.c:232 gtk/gtkcheckmenuitem.c:240
+msgid "Indicator Size"
+msgstr "Velikost kazalnika"
-#: gtk/gtkcheckbutton.c:314
-msgid "If the indicator part of the button is displayed"
-msgstr "Ali je preklopni del gumba prikazan"
-
-#: gtk/gtkcheckbutton.c:320 gtk/gtkcheckmenuitem.c:190
-msgid "Inconsistent"
-msgstr "Nestalno"
+#: gtk/gtkcheckbutton.c:249 gtk/gtkexpander.c:406
+msgid "Indicator Spacing"
+msgstr "Prostor okoli kazalnika"
-#: gtk/gtkcheckbutton.c:321
-msgid "If the check button is in an “in between” state"
-msgstr "Ali je preklopni gumb v »vmesnem« stanju"
+#: gtk/gtkcheckbutton.c:250
+msgid "Spacing around check or radio indicator"
+msgstr "Prostor okoli potrditvenega ali izbirnega kazalnika"
-#: gtk/gtkcheckmenuitem.c:183
+#: gtk/gtkcheckmenuitem.c:210
msgid "Whether the menu item is checked"
msgstr "Ali naj je predmet menija označen"
-#: gtk/gtkcheckmenuitem.c:191
-msgid "Whether to display an “inconsistent” state"
-msgstr "Ali naj se prikaže »nestalno« stanje"
+#: gtk/gtkcheckmenuitem.c:217 gtk/gtktogglebutton.c:195
+msgid "Inconsistent"
+msgstr "Nestalno"
+
+#: gtk/gtkcheckmenuitem.c:218
+msgid "Whether to display an \"inconsistent\" state"
+msgstr "Ali naj se prikaže \"nestalno\" stanje"
-#: gtk/gtkcheckmenuitem.c:198
+#: gtk/gtkcheckmenuitem.c:225
msgid "Draw as radio menu item"
msgstr "Izriši kot predmet izbirnega menija"
-#: gtk/gtkcheckmenuitem.c:199
+#: gtk/gtkcheckmenuitem.c:226
msgid "Whether the menu item looks like a radio menu item"
msgstr "Ali naj je predmet menija videti kot predmet izbirnega menija"
-#: gtk/gtkcolorbutton.c:211 gtk/gtkcolorchooser.c:87
+#: gtk/gtkcolorbutton.c:168 gtk/gtkcolorchooser.c:87
msgid "Use alpha"
msgstr "Uporabi alfa barve"
-#: gtk/gtkcolorbutton.c:212
+#: gtk/gtkcolorbutton.c:169
msgid "Whether to give the color an alpha value"
msgstr "Ali naj ima barva vrednost alfa"
-#: gtk/gtkcolorbutton.c:226 gtk/gtkfilechooserbutton.c:465
-#: gtk/gtkfontbutton.c:507 gtk/gtkheaderbar.c:1883 gtk/gtkprintjob.c:132
-#: gtk/gtkshortcutsgroup.c:305 gtk/gtkshortcutssection.c:368
-#: gtk/gtkshortcutsshortcut.c:610 gtk/gtkstack.c:390
-#: gtk/gtktreeviewcolumn.c:315
-msgid "Title"
-msgstr "Naziv"
-
-#: gtk/gtkcolorbutton.c:227
+#: gtk/gtkcolorbutton.c:184
msgid "The title of the color selection dialog"
msgstr "Naziv pogovornega okna izbire barv"
-#: gtk/gtkcolorbutton.c:241
+#: gtk/gtkcolorbutton.c:202
+msgid "The selected color"
+msgstr "Izbrana barva"
+
+#: gtk/gtkcolorbutton.c:218
+msgid "The selected opacity value (0 fully transparent, 65535 fully opaque)"
+msgstr ""
+"Izbrana vrednost prosojnosti (0 popolnoma prosojno, 65535 popolnoma "
+"neprosojno)"
+
+#: gtk/gtkcolorbutton.c:232
msgid "Current RGBA Color"
msgstr "Trenutna barva RGBA"
-#: gtk/gtkcolorbutton.c:242
+#: gtk/gtkcolorbutton.c:233
msgid "The selected RGBA color"
msgstr "Izbrana barva RGBA"
-#: gtk/gtkcolorbutton.c:283
+#: gtk/gtkcolorbutton.c:274
msgid "Show Editor"
msgstr "Pokaži urejevalnik"
-#: gtk/gtkcolorbutton.c:284
+#: gtk/gtkcolorbutton.c:275
msgid "Whether to show the color editor right away"
msgstr "Ali naj se urejevalnik barv pokaže takoj"
@@ -1846,255 +2958,324 @@ msgstr "Trenutna barva (kot GdkRGBA)"
msgid "Whether alpha should be shown"
msgstr "Ali naj bo alfa prikazana"
-#: gtk/gtkcolorchooserdialog.c:206 gtk/gtkcolorchooserwidget.c:697
+#: gtk/gtkcolorchooserdialog.c:213 gtk/gtkcolorchooserwidget.c:704
msgid "Show editor"
msgstr "Pokaži urejevalnik"
-#: gtk/gtkcolorscale.c:255
+#: gtk/gtkcolorscale.c:258
msgid "Scale type"
msgstr "Vrsta prilagajanja velikosti"
-#: gtk/gtkcolorswatch.c:574
+#: gtk/gtkcolorswatch.c:719
msgid "RGBA Color"
msgstr "Barva RGBA"
-#: gtk/gtkcolorswatch.c:574
+#: gtk/gtkcolorswatch.c:719
msgid "Color as RGBA"
msgstr "Barva kot RGBA"
-#: gtk/gtkcolorswatch.c:577 gtk/gtklabel.c:858 gtk/gtklistbox.c:3456
+#: gtk/gtkcolorswatch.c:722 gtk/gtklabel.c:908 gtk/gtklistbox.c:3920
msgid "Selectable"
msgstr "Izberljivo"
-#: gtk/gtkcolorswatch.c:577
+#: gtk/gtkcolorswatch.c:722
msgid "Whether the swatch is selectable"
msgstr "Ali naj je besedilo izberljivo"
-#: gtk/gtkcolorswatch.c:580
+#: gtk/gtkcolorswatch.c:725
msgid "Has Menu"
msgstr "Vključuje meni"
-#: gtk/gtkcolorswatch.c:580
+#: gtk/gtkcolorswatch.c:725
msgid "Whether the swatch should offer customization"
msgstr "Ali naj gradnik pokaže možnosti nastavitev"
-#: gtk/gtkcombobox.c:661
+#: gtk/gtkcombobox.c:906
msgid "ComboBox model"
msgstr "Način spustnega polja"
-#: gtk/gtkcombobox.c:662
+#: gtk/gtkcombobox.c:907
msgid "The model for the combo box"
msgstr "Način spustnega polja"
-#: gtk/gtkcombobox.c:679
+#: gtk/gtkcombobox.c:923
msgid "Wrap width for laying out the items in a grid"
msgstr "Prelomi širino za razporeditev predmetov v mreži"
-#: gtk/gtkcombobox.c:701 gtk/gtktreemenu.c:332
+#: gtk/gtkcombobox.c:943 gtk/gtktreemenu.c:358
msgid "Row span column"
msgstr "Stolpec razpona vrstic"
-#: gtk/gtkcombobox.c:702 gtk/gtktreemenu.c:333
+#: gtk/gtkcombobox.c:944 gtk/gtktreemenu.c:359
msgid "TreeModel column containing the row span values"
msgstr "Stolpec TreeModel, ki vsebuje vrednosti razpona vrstic"
-#: gtk/gtkcombobox.c:723 gtk/gtktreemenu.c:353
+#: gtk/gtkcombobox.c:965 gtk/gtktreemenu.c:379
msgid "Column span column"
msgstr "Stolpec razpona stolpcev"
-#: gtk/gtkcombobox.c:724 gtk/gtktreemenu.c:354
+#: gtk/gtkcombobox.c:966 gtk/gtktreemenu.c:380
msgid "TreeModel column containing the column span values"
msgstr "Stolpec TreeModel, ki vsebuje vrednosti razpona stolpcev"
-#: gtk/gtkcombobox.c:745
+#: gtk/gtkcombobox.c:987
msgid "Active item"
msgstr "Dejavni predmet"
-#: gtk/gtkcombobox.c:746
+#: gtk/gtkcombobox.c:988
msgid "The item which is currently active"
msgstr "Predmet, ki je trenutno dejaven"
-#: gtk/gtkcombobox.c:763 gtk/gtkentry.c:806
+#: gtk/gtkcombobox.c:1010
+msgid "Whether dropdowns should have a tearoff menu item"
+msgstr "Ali naj imajo spustni meniji odpenjalnike"
+
+#: gtk/gtkcombobox.c:1025 gtk/gtkentry.c:883
msgid "Has Frame"
msgstr "Ima okvir"
-#: gtk/gtkcombobox.c:764
+#: gtk/gtkcombobox.c:1026
msgid "Whether the combo box draws a frame around the child"
msgstr "Ali spustno polje obdaja okvir okoli podrejenega opravila"
-#: gtk/gtkcombobox.c:780
+#: gtk/gtkcombobox.c:1043 gtk/gtkmenu.c:695
+msgid "Tearoff Title"
+msgstr "Naziv odpenjalnika"
+
+#: gtk/gtkcombobox.c:1044
+msgid ""
+"A title that may be displayed by the window manager when the popup is torn-"
+"off"
+msgstr "Naziv, ki ga prikaže upravljalnik oken, ko je meni odpet"
+
+#: gtk/gtkcombobox.c:1061
msgid "Popup shown"
msgstr "Prikazano pojavno okno"
-#: gtk/gtkcombobox.c:781
-msgid "Whether the combo’s dropdown is shown"
+#: gtk/gtkcombobox.c:1062
+msgid "Whether the combo's dropdown is shown"
msgstr "Ali naj bo prikazano spustno polje"
-#: gtk/gtkcombobox.c:797
+#: gtk/gtkcombobox.c:1078
msgid "Button Sensitivity"
msgstr "Občutljivost gumba"
-#: gtk/gtkcombobox.c:798
+#: gtk/gtkcombobox.c:1079
msgid "Whether the dropdown button is sensitive when the model is empty"
msgstr "Ali je gumb pojavnega menija občutljiv, ko je vsebina menija prazna"
-#: gtk/gtkcombobox.c:814
+#: gtk/gtkcombobox.c:1095
msgid "Whether combo box has an entry"
msgstr "Ali naj ima spustno polje predhodno nastavljene vnose"
-#: gtk/gtkcombobox.c:829
+#: gtk/gtkcombobox.c:1110
msgid "Entry Text Column"
msgstr "Stolpec vnosa besedila"
-#: gtk/gtkcombobox.c:830
+#: gtk/gtkcombobox.c:1111
msgid ""
-"The column in the combo box’s model to associate with strings from the entry "
+"The column in the combo box's model to associate with strings from the entry "
"if the combo was created with #GtkComboBox:has-entry = %TRUE"
msgstr ""
"Stolpec v spustnem polju, ki je povezan z nizi vnosov, v kolikor je bila "
"vrednost vnosa spustnega polja ustvarjena z #GtkComboBox:has-entry = %TRUE"
-#: gtk/gtkcombobox.c:847
+#: gtk/gtkcombobox.c:1128
msgid "ID Column"
msgstr "ID stolpca"
-#: gtk/gtkcombobox.c:848
+#: gtk/gtkcombobox.c:1129
msgid ""
-"The column in the combo box’s model that provides string IDs for the values "
+"The column in the combo box's model that provides string IDs for the values "
"in the model"
msgstr "Stolpec v spustnem polju, ki določa vrednosti ID nizov modela"
-#: gtk/gtkcombobox.c:863
+#: gtk/gtkcombobox.c:1144
msgid "Active id"
msgstr "ID dejavnosti"
-#: gtk/gtkcombobox.c:864
+#: gtk/gtkcombobox.c:1145
msgid "The value of the id column for the active row"
msgstr "Vrednost ID stolpca za dejavno vrstico"
-#: gtk/gtkcombobox.c:880
+#: gtk/gtkcombobox.c:1161
msgid "Popup Fixed Width"
msgstr "Pojavno okno nespremenljive širine"
-#: gtk/gtkcombobox.c:881
+#: gtk/gtkcombobox.c:1162
msgid ""
-"Whether the popup’s width should be a fixed width matching the allocated "
+"Whether the popup's width should be a fixed width matching the allocated "
"width of the combo box"
msgstr ""
"Ali naj bo pojavno okno nespremenljive širine, ki je skladna za dodeljeno "
-"širino izbirnega polja."
+"širino polja."
-#: gtk/gtkcssnode.c:624
+#: gtk/gtkcombobox.c:1188
+msgid "Appears as list"
+msgstr "Se pojavi kot seznam"
+
+#: gtk/gtkcombobox.c:1189
+msgid "Whether dropdowns should look like lists rather than menus"
+msgstr "Ali naj bo spustno polje videti kot seznam in ne kot meni."
+
+#: gtk/gtkcombobox.c:1208
+msgid "Arrow Size"
+msgstr "Velikost puščice"
+
+#: gtk/gtkcombobox.c:1209
+msgid "The minimum size of the arrow in the combo box"
+msgstr "Najmanjša velikost puščice spustnega polja"
+
+#: gtk/gtkcombobox.c:1227
+msgid "The amount of space used by the arrow"
+msgstr "Prostor, ki ga porabi puščica."
+
+#: gtk/gtkcombobox.c:1246
+msgid "Which kind of shadow to draw around the combo box"
+msgstr "Vrsta sence, ki se izriše okoli spustnega polja"
+
+#: gtk/gtkcontainer.c:531
+msgid "Resize mode"
+msgstr "Način spreminjanja velikosti"
+
+#: gtk/gtkcontainer.c:532
+msgid "Specify how resize events are handled"
+msgstr "Določilo obravnave sprememb velikosti"
+
+#: gtk/gtkcontainer.c:539
+msgid "Border width"
+msgstr "Širina obrobe"
+
+#: gtk/gtkcontainer.c:540
+msgid "The width of the empty border outside the containers children"
+msgstr "Širina prazne obrobe zunaj podrejenih predmetov vsebnika"
+
+#: gtk/gtkcontainer.c:547
+msgid "Child"
+msgstr "Podrejeni predmet"
+
+#: gtk/gtkcontainer.c:548
+msgid "Can be used to add a new child to the container"
+msgstr ""
+"Je lahko uporabljen za dodajanje novega podrejenega predmeta vsebovalniku"
+
+#: gtk/gtkcssnode.c:628
msgid "Style Classes"
msgstr "Razredi slogov"
-#: gtk/gtkcssnode.c:624
+#: gtk/gtkcssnode.c:628
msgid "List of classes"
msgstr "Seznam razredov"
-#: gtk/gtkcssnode.c:629 gtk/gtkcssstyleproperty.c:203
+#: gtk/gtkcssnode.c:633 gtk/gtkcssstyleproperty.c:223
msgid "ID"
msgstr "ID"
-#: gtk/gtkcssnode.c:629
+#: gtk/gtkcssnode.c:633
msgid "Unique ID"
msgstr "Edinstven ID"
-#: gtk/gtkcssnode.c:634 gtk/gtkprinter.c:121 gtk/gtkstack.c:383
-#: gtk/gtktextmark.c:136
-msgid "Name"
-msgstr "Ime"
-
-#: gtk/gtkcssnode.c:639 gtk/gtkswitch.c:546
+#: gtk/gtkcssnode.c:643 gtk/gtkswitch.c:910
msgid "State"
msgstr "Stanje"
-#: gtk/gtkcssnode.c:639
+#: gtk/gtkcssnode.c:643
msgid "State flags"
msgstr "Zastavice stanja"
-#: gtk/gtkcssnode.c:645 gtk/gtknativedialog.c:242 gtk/gtktreeviewcolumn.c:245
-#: gtk/gtkwidget.c:1111
-msgid "Visible"
-msgstr "Vidno"
-
-#: gtk/gtkcssnode.c:645
+#: gtk/gtkcssnode.c:649
msgid "If other nodes can see this node"
msgstr "Ali druga vozlišča zaznajo to vozlišče"
-#: gtk/gtkcssnode.c:650
+#: gtk/gtkcssnode.c:654
msgid "Widget type"
msgstr "Vrsta gradnika"
-#: gtk/gtkcssnode.c:650
+#: gtk/gtkcssnode.c:654
msgid "GType of the widget"
msgstr "Vrsta GType gradnika"
-#: gtk/gtkcssshorthandproperty.c:159
+#: gtk/gtkcssshorthandproperty.c:170
msgid "Subproperties"
msgstr "Podrejene lastnosti"
-#: gtk/gtkcssshorthandproperty.c:160
+#: gtk/gtkcssshorthandproperty.c:171
msgid "The list of subproperties"
msgstr "Seznam podrejenih lastnosti"
-#: gtk/gtkcssstyleproperty.c:188
+#: gtk/gtkcssstyleproperty.c:208
msgid "Animated"
msgstr "Animirano"
-#: gtk/gtkcssstyleproperty.c:189
+#: gtk/gtkcssstyleproperty.c:209
msgid "Set if the value can be animated"
msgstr "Nastavi, če naj bo vrednost animirana"
-#: gtk/gtkcssstyleproperty.c:195
+#: gtk/gtkcssstyleproperty.c:215
msgid "Affects"
msgstr "Ima vpliv"
-#: gtk/gtkcssstyleproperty.c:196
+#: gtk/gtkcssstyleproperty.c:216
msgid "Set if the value affects the sizing of elements"
msgstr "Nastavi, če vrednost vpliva na velikost predmetov"
-#: gtk/gtkcssstyleproperty.c:204
+#: gtk/gtkcssstyleproperty.c:224
msgid "The numeric id for quick access"
msgstr "Številski ID hitrega dostopa"
-#: gtk/gtkcssstyleproperty.c:210
+#: gtk/gtkcssstyleproperty.c:230
msgid "Inherit"
msgstr "Prevzemi"
-#: gtk/gtkcssstyleproperty.c:211
+#: gtk/gtkcssstyleproperty.c:231
msgid "Set if the value is inherited by default"
msgstr "Nastavi, če je vrednost privzeto prevzeta"
-#: gtk/gtkcssstyleproperty.c:217
+#: gtk/gtkcssstyleproperty.c:237
msgid "Initial value"
msgstr "Začetna vrednost"
-#: gtk/gtkcssstyleproperty.c:218
+#: gtk/gtkcssstyleproperty.c:238
msgid "The initial specified value used for this property"
msgstr "Navedena začetna vrednost za to lastnost"
-#: gtk/gtkdrawingarea.c:277
-msgid "Content Width"
-msgstr "Širina vsebine"
+#: gtk/gtkdialog.c:588 gtk/gtkinfobar.c:419
+msgid "Content area border"
+msgstr "Obroba področja vsebine"
+
+#: gtk/gtkdialog.c:589
+msgid "Width of border around the main dialog area"
+msgstr "Širina obrobe okoli glavnega področja pogovornega okna"
+
+#: gtk/gtkdialog.c:606 gtk/gtkinfobar.c:437
+msgid "Content area spacing"
+msgstr "Razmik področja vsebine"
-#: gtk/gtkdrawingarea.c:278
-msgid "Desired width for displayed content"
-msgstr "Želena širina prikazane vsebine"
+#: gtk/gtkdialog.c:607
+msgid "Spacing between elements of the main dialog area"
+msgstr "Razmik med predmeti glavnega območja pogovornega okna"
-#: gtk/gtkdrawingarea.c:291
-msgid "Content Height"
-msgstr "Višina vsebine"
+#: gtk/gtkdialog.c:614 gtk/gtkinfobar.c:454
+msgid "Button spacing"
+msgstr "Prostor okoli gumbov"
-#: gtk/gtkdrawingarea.c:292
-msgid "Desired height for displayed content"
-msgstr "Želena višina prikazane vsebine"
+#: gtk/gtkdialog.c:615 gtk/gtkinfobar.c:455
+msgid "Spacing between buttons"
+msgstr "Prostor med gumbi"
+
+#: gtk/gtkdialog.c:631 gtk/gtkinfobar.c:471
+msgid "Action area border"
+msgstr "Rob okoli področja dejavnosti"
+
+#: gtk/gtkdialog.c:632
+msgid "Width of border around the button area at the bottom of the dialog"
+msgstr "Širina obrobe okoli področja gumbov na dnu pogovornega okna"
#: gtk/gtkentrybuffer.c:351
msgid "The contents of the buffer"
msgstr "Vsebina medpomnilnika"
-#: gtk/gtkentrybuffer.c:364 gtk/gtkentry.c:918
+#: gtk/gtkentrybuffer.c:364 gtk/gtkentry.c:1030
msgid "Text length"
msgstr "Dolžina besedila"
@@ -2102,74 +3283,79 @@ msgstr "Dolžina besedila"
msgid "Length of the text currently in the buffer"
msgstr "Dolžina trenutnega besedila v medpomnilniku"
-#: gtk/gtkentrybuffer.c:378 gtk/gtkentry.c:791
+#: gtk/gtkentrybuffer.c:378 gtk/gtkentry.c:868
msgid "Maximum length"
msgstr "Največja dolžina"
-#: gtk/gtkentrybuffer.c:379 gtk/gtkentry.c:792
+#: gtk/gtkentrybuffer.c:379 gtk/gtkentry.c:869
msgid "Maximum number of characters for this entry. Zero if no maximum"
msgstr "Največje število znakov v tem vnosu. Uporabite nič, če ni omejitve."
-#: gtk/gtkentry.c:761
+#: gtk/gtkentry.c:838
msgid "Text Buffer"
msgstr "Medpomnilnik besedila"
-#: gtk/gtkentry.c:762
+#: gtk/gtkentry.c:839
msgid "Text buffer object which actually stores entry text"
msgstr "Predmet medpomnilnika besedila, v katerem je shranjeno besedilo"
-#: gtk/gtkentry.c:768 gtk/gtklabel.c:880
+#: gtk/gtkentry.c:845 gtk/gtklabel.c:930
msgid "Cursor Position"
msgstr "Položaj kazalke"
-#: gtk/gtkentry.c:769 gtk/gtklabel.c:881
+#: gtk/gtkentry.c:846 gtk/gtklabel.c:931
msgid "The current position of the insertion cursor in chars"
msgstr "Trenutni položaj kazalke vstavljanja (v znakih)"
-#: gtk/gtkentry.c:776 gtk/gtklabel.c:888
+#: gtk/gtkentry.c:853 gtk/gtklabel.c:938
msgid "Selection Bound"
msgstr "Drugi konec izbire"
-#: gtk/gtkentry.c:777 gtk/gtklabel.c:889
+#: gtk/gtkentry.c:854 gtk/gtklabel.c:939
msgid ""
"The position of the opposite end of the selection from the cursor in chars"
msgstr "Lega drugega konca izbire kazalke (v znakih)"
-#: gtk/gtkentry.c:785
+#: gtk/gtkentry.c:862
msgid "Whether the entry contents can be edited"
msgstr "Ali naj je mogoče spremeniti vsebino vnosa"
-#: gtk/gtkentry.c:799
+#: gtk/gtkentry.c:876
msgid "Visibility"
msgstr "Vidnost"
-#: gtk/gtkentry.c:800
+#: gtk/gtkentry.c:877
msgid ""
-"FALSE displays the “invisible char” instead of the actual text (password "
+"FALSE displays the \"invisible char\" instead of the actual text (password "
"mode)"
msgstr ""
-"Izbrana možnost omogoča, da se namesto »nevidnih znakov« (geselski način), "
+"Izbrana možnost omogoča, da se namesto \"nevidnih znakov\" (geselski način), "
"prikaže dejansko vneseno besedilo"
-#: gtk/gtkentry.c:807
+#: gtk/gtkentry.c:884
msgid "FALSE removes outside bevel from entry"
msgstr "Izbrana možnost omogoča prikaz zunanje obrobe vnosa"
-#: gtk/gtkentry.c:813
+#: gtk/gtkentry.c:900
+msgid ""
+"Border between text and frame. Overrides the inner-border style property"
+msgstr ""
+"Rob med besedilom in okvirjem. Preglasi lastnost sloga notranjega roba."
+
+#: gtk/gtkentry.c:906 gtk/gtkentry.c:1603
msgid "Invisible character"
msgstr "Nevidni znak"
-#: gtk/gtkentry.c:814
-msgid "The character to use when masking entry contents (in “password mode”)"
+#: gtk/gtkentry.c:907 gtk/gtkentry.c:1604
+msgid "The character to use when masking entry contents (in \"password mode\")"
msgstr ""
-"Znak, ki naj se uporabi za maskiranje vsebine vnosa (pri »geselskem načinu "
-"vnosa«)"
+"Znak, ki naj se uporabi za maskiranje vsebine vnosa (za \"geselski način\")"
-#: gtk/gtkentry.c:820
+#: gtk/gtkentry.c:913
msgid "Activates default"
msgstr "Omogoči privzeto"
-#: gtk/gtkentry.c:821
+#: gtk/gtkentry.c:914
msgid ""
"Whether to activate the default widget (such as the default button in a "
"dialog) when Enter is pressed"
@@ -2177,97 +3363,90 @@ msgstr ""
"Ali naj se zažene omogoči gradnik (na primer privzet gumb pogovornega okna), "
"ko je pritisnjena vnosna tipka"
-#: gtk/gtkentry.c:827 gtk/gtkspinbutton.c:405
+#: gtk/gtkentry.c:920
msgid "Width in chars"
msgstr "Širina (v znakih)"
-#: gtk/gtkentry.c:828 gtk/gtkspinbutton.c:406
+#: gtk/gtkentry.c:921
msgid "Number of characters to leave space for in the entry"
msgstr "Število znakov vnosnega prostora, za katere naj se pusti prostor"
-#: gtk/gtkentry.c:844 gtk/gtkspinbutton.c:414
+#: gtk/gtkentry.c:937
msgid "Maximum width in characters"
msgstr "Največja širina (v številu znakov)"
-#: gtk/gtkentry.c:845 gtk/gtkspinbutton.c:415
+#: gtk/gtkentry.c:938
msgid "The desired maximum width of the entry, in characters"
msgstr "Želena največja širina vnosa (v znakih)"
-#: gtk/gtkentry.c:852
+#: gtk/gtkentry.c:945
msgid "Scroll offset"
msgstr "Drsni odmik"
-#: gtk/gtkentry.c:853
+#: gtk/gtkentry.c:946
msgid "Number of pixels of the entry scrolled off the screen to the left"
msgstr "Število točk vnosa, ki drsijo mimo zaslona na levo"
-#: gtk/gtkentry.c:861 gtk/gtkspinbutton.c:424
+#: gtk/gtkentry.c:954
msgid "The contents of the entry"
msgstr "Vsebina vnosa"
-#: gtk/gtkentry.c:875 gtk/gtklabel.c:801
-msgid "X align"
-msgstr "Poravnava X"
-
-#: gtk/gtkentry.c:876 gtk/gtklabel.c:802
-msgid ""
-"The horizontal alignment, from 0 (left) to 1 (right). Reversed for RTL "
-"layouts."
-msgstr ""
-"Vodoravna poravnava, od 0 (levo) do 1 (desno). Obratno za postavitev 'od "
-"desne proti levi'."
-
-#: gtk/gtkentry.c:890
+#: gtk/gtkentry.c:983
msgid "Truncate multiline"
msgstr "Prireži večvrstični vnos"
-#: gtk/gtkentry.c:891
+#: gtk/gtkentry.c:984
msgid "Whether to truncate multiline pastes to one line."
msgstr "Ali naj se večvrstični vnos prireže v eno vrstico."
-#: gtk/gtkentry.c:904 gtk/gtktextview.c:956
+#: gtk/gtkentry.c:1002
+msgid "Which kind of shadow to draw around the entry when has-frame is set"
+msgstr ""
+"Kakšna vrsta sence naj se izriše, kadar je določena možnost \"Ima okvir\""
+
+#: gtk/gtkentry.c:1016 gtk/gtktextview.c:964
msgid "Overwrite mode"
msgstr "Način prepisovanja"
-#: gtk/gtkentry.c:905
+#: gtk/gtkentry.c:1017
msgid "Whether new text overwrites existing text"
msgstr "Ali naj vneseno besedilo prepiše obstoječe"
-#: gtk/gtkentry.c:919
+#: gtk/gtkentry.c:1031
msgid "Length of the text currently in the entry"
msgstr "Dolžina trenutno vnesenega besedila "
-#: gtk/gtkentry.c:933
+#: gtk/gtkentry.c:1045
msgid "Invisible character set"
msgstr "Nastavi nevidni znak"
-#: gtk/gtkentry.c:934
+#: gtk/gtkentry.c:1046
msgid "Whether the invisible character has been set"
msgstr "Ali je nevidni znak nastavljen"
-#: gtk/gtkentry.c:951
+#: gtk/gtkentry.c:1063
msgid "Caps Lock warning"
msgstr "Opozorilo velikih črk"
-#: gtk/gtkentry.c:952
+#: gtk/gtkentry.c:1064
msgid "Whether password entries will show a warning when Caps Lock is on"
msgstr ""
"Ali naj se med vnašanjem gesla prikaže opozorilo o pritisnjeni tipki Caps "
"Lock"
-#: gtk/gtkentry.c:965
+#: gtk/gtkentry.c:1077
msgid "Progress Fraction"
msgstr "Del napredka"
-#: gtk/gtkentry.c:966
-msgid "The current fraction of the task that’s been completed"
+#: gtk/gtkentry.c:1078
+msgid "The current fraction of the task that's been completed"
msgstr "Trenutni delež celotnega opravila, ki je bil opravljen"
-#: gtk/gtkentry.c:981
+#: gtk/gtkentry.c:1093
msgid "Progress Pulse Step"
msgstr "Korak prikaza napredka"
-#: gtk/gtkentry.c:982
+#: gtk/gtkentry.c:1094
msgid ""
"The fraction of total entry width to move the progress bouncing block for "
"each call to gtk_entry_progress_pulse()"
@@ -2275,255 +3454,322 @@ msgstr ""
"Velikost premika celotne širine prikaza napredka za vsak klic "
"gtk_entry_progress_pulse()"
-#: gtk/gtkentry.c:998
-msgid "Show text in the entry when it’s empty and unfocused"
+#: gtk/gtkentry.c:1110
+msgid "Show text in the entry when it's empty and unfocused"
msgstr "Pokaži besedilo v vnosu, ko je neizpolnjeno in ni dejavno"
-#: gtk/gtkentry.c:1011
+#: gtk/gtkentry.c:1123
msgid "Primary pixbuf"
msgstr "Osnovni medpomnilnik sličic"
-#: gtk/gtkentry.c:1012
+#: gtk/gtkentry.c:1124
msgid "Primary pixbuf for the entry"
msgstr "Osnovni medpomnilnik sličic vnosa"
-#: gtk/gtkentry.c:1025
+#: gtk/gtkentry.c:1137
msgid "Secondary pixbuf"
msgstr "Drugotni medpomnilnik sličic"
-#: gtk/gtkentry.c:1026
+#: gtk/gtkentry.c:1138
msgid "Secondary pixbuf for the entry"
msgstr "Drugotni medpomnilnik sličic vnosa"
-#: gtk/gtkentry.c:1039
+#: gtk/gtkentry.c:1153
+msgid "Primary stock ID"
+msgstr "Osnovni ID sklada"
+
+#: gtk/gtkentry.c:1154
+msgid "Stock ID for primary icon"
+msgstr "ID sklada za osnovno ikono"
+
+#: gtk/gtkentry.c:1169
+msgid "Secondary stock ID"
+msgstr "Drugotni ID sklada"
+
+#: gtk/gtkentry.c:1170
+msgid "Stock ID for secondary icon"
+msgstr "ID sklada za drugotno ikono"
+
+#: gtk/gtkentry.c:1183
msgid "Primary icon name"
msgstr "Ime osnovne ikone"
-#: gtk/gtkentry.c:1040
+#: gtk/gtkentry.c:1184
msgid "Icon name for primary icon"
msgstr "Ime osnovne ikone"
-#: gtk/gtkentry.c:1053
+#: gtk/gtkentry.c:1197
msgid "Secondary icon name"
msgstr "Ime drugotne ikone"
-#: gtk/gtkentry.c:1054
+#: gtk/gtkentry.c:1198
msgid "Icon name for secondary icon"
msgstr "Ime drugotne ikone"
-#: gtk/gtkentry.c:1067
+#: gtk/gtkentry.c:1211
msgid "Primary GIcon"
msgstr "Osnovni GIcon"
-#: gtk/gtkentry.c:1068
+#: gtk/gtkentry.c:1212
msgid "GIcon for primary icon"
msgstr "GIcon osnovne ikone"
-#: gtk/gtkentry.c:1081
+#: gtk/gtkentry.c:1225
msgid "Secondary GIcon"
msgstr "Drugotni GIcon"
-#: gtk/gtkentry.c:1082
+#: gtk/gtkentry.c:1226
msgid "GIcon for secondary icon"
msgstr "GIcon drugotne ikone"
-#: gtk/gtkentry.c:1095
+#: gtk/gtkentry.c:1239
msgid "Primary storage type"
msgstr "Osnovna vrsta shranjevanja"
-#: gtk/gtkentry.c:1096
+#: gtk/gtkentry.c:1240
msgid "The representation being used for primary icon"
msgstr "Način predstavitve za osnovne ikone"
-#: gtk/gtkentry.c:1110
+#: gtk/gtkentry.c:1254
msgid "Secondary storage type"
msgstr "Drugotna vrsta shranjevanja"
-#: gtk/gtkentry.c:1111
+#: gtk/gtkentry.c:1255
msgid "The representation being used for secondary icon"
msgstr "Način predstavitve za drugotne ikone"
-#: gtk/gtkentry.c:1131
+#: gtk/gtkentry.c:1275
msgid "Primary icon activatable"
msgstr "Osnovno ikono je mogoče zagnati"
-#: gtk/gtkentry.c:1132
+#: gtk/gtkentry.c:1276
msgid "Whether the primary icon is activatable"
msgstr "Ali je osnovno ikono mogoče zagnati"
-#: gtk/gtkentry.c:1151
+#: gtk/gtkentry.c:1295
msgid "Secondary icon activatable"
msgstr "Drugotno ikono je mogoče zagnati"
-#: gtk/gtkentry.c:1152
+#: gtk/gtkentry.c:1296
msgid "Whether the secondary icon is activatable"
msgstr "Ali je drugotno ikono mogoče zagnati"
-#: gtk/gtkentry.c:1172
+#: gtk/gtkentry.c:1316
msgid "Primary icon sensitive"
msgstr "Občutljivost osnovne ikone"
-#: gtk/gtkentry.c:1173
+#: gtk/gtkentry.c:1317
msgid "Whether the primary icon is sensitive"
msgstr "Ali je osnovna ikona občutljiva"
-#: gtk/gtkentry.c:1193
+#: gtk/gtkentry.c:1337
msgid "Secondary icon sensitive"
msgstr "Občutljivost drugotne ikone"
-#: gtk/gtkentry.c:1194
+#: gtk/gtkentry.c:1338
msgid "Whether the secondary icon is sensitive"
msgstr "Ali je drugotna ikona občutljiva"
-#: gtk/gtkentry.c:1209
+#: gtk/gtkentry.c:1353
msgid "Primary icon tooltip text"
msgstr "Besedilo orodnega namiga osnovne ikone"
-#: gtk/gtkentry.c:1210 gtk/gtkentry.c:1243
+#: gtk/gtkentry.c:1354 gtk/gtkentry.c:1387
msgid "The contents of the tooltip on the primary icon"
msgstr "Vsebina orodnega namiga osnovne ikone"
-#: gtk/gtkentry.c:1225
+#: gtk/gtkentry.c:1369
msgid "Secondary icon tooltip text"
msgstr "Besedilo orodnega namiga drugotne ikone"
-#: gtk/gtkentry.c:1226 gtk/gtkentry.c:1260
+#: gtk/gtkentry.c:1370 gtk/gtkentry.c:1404
msgid "The contents of the tooltip on the secondary icon"
msgstr "Vsebina orodnega namiga drugotne ikone"
-#: gtk/gtkentry.c:1242
+#: gtk/gtkentry.c:1386
msgid "Primary icon tooltip markup"
msgstr "Oznaka namiga osnovne ikone"
-#: gtk/gtkentry.c:1259
+#: gtk/gtkentry.c:1403
msgid "Secondary icon tooltip markup"
msgstr "Oznaka namiga drugotne ikone"
-#: gtk/gtkentry.c:1278 gtk/gtktextview.c:984
+#: gtk/gtkentry.c:1422 gtk/gtktextview.c:992
msgid "IM module"
msgstr "Enota načina vnosa"
-#: gtk/gtkentry.c:1279 gtk/gtktextview.c:985
+#: gtk/gtkentry.c:1423 gtk/gtktextview.c:993
msgid "Which IM module should be used"
msgstr "Katera enota načina vnosa naj bo privzeto uporabljena"
-#: gtk/gtkentry.c:1292
+#: gtk/gtkentry.c:1436
msgid "Completion"
msgstr "Dopolnjevanje"
-#: gtk/gtkentry.c:1293
+#: gtk/gtkentry.c:1437
msgid "The auxiliary completion object"
msgstr "DOdaten predmet dopolnjevanja"
-#: gtk/gtkentry.c:1313 gtk/gtkimcontext.c:331 gtk/gtktextview.c:1002
+#: gtk/gtkentry.c:1457 gtk/gtkimcontext.c:331 gtk/gtktextview.c:1010
msgid "Purpose"
msgstr "Namen"
-#: gtk/gtkentry.c:1314 gtk/gtkimcontext.c:332 gtk/gtktextview.c:1003
+#: gtk/gtkentry.c:1458 gtk/gtkimcontext.c:332 gtk/gtktextview.c:1011
msgid "Purpose of the text field"
msgstr "Namen besedilnega polja"
-#: gtk/gtkentry.c:1329 gtk/gtkimcontext.c:339 gtk/gtktextview.c:1020
+#: gtk/gtkentry.c:1473 gtk/gtkimcontext.c:339 gtk/gtktextview.c:1028
msgid "hints"
msgstr "namigi"
-#: gtk/gtkentry.c:1330 gtk/gtkimcontext.c:340 gtk/gtktextview.c:1021
+#: gtk/gtkentry.c:1474 gtk/gtkimcontext.c:340 gtk/gtktextview.c:1029
msgid "Hints for the text field behaviour"
msgstr "Namigi za vedenje besedilnih polj"
-#: gtk/gtkentry.c:1350 gtk/gtklabel.c:763
+#: gtk/gtkentry.c:1494 gtk/gtklabel.c:813
msgid "A list of style attributes to apply to the text of the label"
msgstr "Seznam atributov sloga, ki naj se uveljavijo na besedilu te oznake"
-#: gtk/gtkentry.c:1364 gtk/gtkplacessidebar.c:4410 gtk/gtktextview.c:1037
+#: gtk/gtkentry.c:1508 gtk/gtkplacessidebar.c:4860 gtk/gtktextview.c:1045
msgid "Populate all"
msgstr "Napolni vse"
-#: gtk/gtkentry.c:1365 gtk/gtktextview.c:1038
+#: gtk/gtkentry.c:1509 gtk/gtktextview.c:1046
msgid "Whether to emit ::populate-popup for touch popups"
msgstr "Ali naj se objavi predmet ::populate-popup za pojavna okna na dotik"
-#: gtk/gtkentry.c:1378 gtk/gtktexttag.c:544 gtk/gtktextview.c:932
+#: gtk/gtkentry.c:1522 gtk/gtktexttag.c:578 gtk/gtktextview.c:940
msgid "Tabs"
msgstr "Zavihki"
-#: gtk/gtkentry.c:1379
+#: gtk/gtkentry.c:1523
msgid "A list of tabstop locations to apply to the text of the entry"
msgstr "Seznam mest tabulatorja za besedilo vnosa izrisovalnika"
-#: gtk/gtkentry.c:1393
+#: gtk/gtkentry.c:1537
msgid "Emoji icon"
msgstr "Izrazna ikona"
-#: gtk/gtkentry.c:1394
+#: gtk/gtkentry.c:1538
msgid "Whether to show an icon for Emoji"
msgstr "Ali naj se pokaže sličica izraznih ikon"
-#: gtk/gtkentrycompletion.c:349
+#: gtk/gtkentry.c:1544
+msgid "Enable Emoji completion"
+msgstr "Omogoči dopolnjevanje izraznih ikon"
+
+#: gtk/gtkentry.c:1545
+msgid "Whether to suggest Emoji replacements"
+msgstr "Ali naj sistem predlaga zamenjave izraznih ikon"
+
+#: gtk/gtkentry.c:1564
+msgid "Icon Prelight"
+msgstr "Posvetlitev ikone"
+
+#: gtk/gtkentry.c:1565
+msgid "Whether activatable icons should prelight when hovered"
+msgstr "Ali naj dejavne ikone posvetlijo, če miško premaknemo preko njih"
+
+#: gtk/gtkentry.c:1582
+msgid "Progress Border"
+msgstr "Obroba vrstice napredka"
+
+#: gtk/gtkentry.c:1583
+msgid "Border around the progress bar"
+msgstr "Obroba okoli vrstice napredka"
+
+#: gtk/gtkentry.c:2118
+msgid "Border between text and frame."
+msgstr "Obroba med besedilom in okvirjem."
+
+#: gtk/gtkentrycompletion.c:348
msgid "Completion Model"
msgstr "Način dopolnjevanja"
-#: gtk/gtkentrycompletion.c:350
+#: gtk/gtkentrycompletion.c:349
msgid "The model to find matches in"
msgstr "Način za iskanje zadetkov"
-#: gtk/gtkentrycompletion.c:356
+#: gtk/gtkentrycompletion.c:355
msgid "Minimum Key Length"
msgstr "Najmanjša dolžina iskalnega niza"
-#: gtk/gtkentrycompletion.c:357
+#: gtk/gtkentrycompletion.c:356
msgid "Minimum length of the search key in order to look up matches"
msgstr "Najmanjša dolžina iskalnega niza za iskanje zadetkov"
-#: gtk/gtkentrycompletion.c:371 gtk/gtkiconview.c:431
+#: gtk/gtkentrycompletion.c:370 gtk/gtkiconview.c:445
msgid "Text column"
msgstr "Stolpec besedila"
-#: gtk/gtkentrycompletion.c:372
+#: gtk/gtkentrycompletion.c:371
msgid "The column of the model containing the strings."
msgstr "Stolpec modela, ki vsebuje nize."
-#: gtk/gtkentrycompletion.c:388
+#: gtk/gtkentrycompletion.c:387
msgid "Inline completion"
msgstr "Znotraj-vrstično dopolnjevanje"
-#: gtk/gtkentrycompletion.c:389
+#: gtk/gtkentrycompletion.c:388
msgid "Whether the common prefix should be inserted automatically"
msgstr "Ali naj se običajna predpona vstavi samodejno"
-#: gtk/gtkentrycompletion.c:403
+#: gtk/gtkentrycompletion.c:402
msgid "Popup completion"
msgstr "Dopolnjevanje preko pojavnega okna"
-#: gtk/gtkentrycompletion.c:404
+#: gtk/gtkentrycompletion.c:403
msgid "Whether the completions should be shown in a popup window"
msgstr "Ali naj bodo nizi za dopolnjevanje prikazani v pojavnem oknu"
-#: gtk/gtkentrycompletion.c:418
+#: gtk/gtkentrycompletion.c:417
msgid "Popup set width"
msgstr "Širina pojavnega okna"
-#: gtk/gtkentrycompletion.c:419
+#: gtk/gtkentrycompletion.c:418
msgid "If TRUE, the popup window will have the same size as the entry"
msgstr "Izbrana možnost omogoča, da ima pojavno okno enako velikost kot vnos"
-#: gtk/gtkentrycompletion.c:435
+#: gtk/gtkentrycompletion.c:434
msgid "Popup single match"
msgstr "Enojno ujemanje pojavnega okna"
-#: gtk/gtkentrycompletion.c:436
+#: gtk/gtkentrycompletion.c:435
msgid "If TRUE, the popup window will appear for a single match."
msgstr ""
"Izbrana možnost omogoča, da je pojavno okno prikazano za vsako ujemanje."
-#: gtk/gtkentrycompletion.c:450
+#: gtk/gtkentrycompletion.c:449
msgid "Inline selection"
msgstr "Znotraj-vrstična izbira"
-#: gtk/gtkentrycompletion.c:451
+#: gtk/gtkentrycompletion.c:450
msgid "Your description here"
msgstr "Vnos opisa"
+#: gtk/gtkeventbox.c:114
+msgid "Visible Window"
+msgstr "Vidno okno"
+
+#: gtk/gtkeventbox.c:115
+msgid ""
+"Whether the event box is visible, as opposed to invisible and only used to "
+"trap events."
+msgstr ""
+"Ali je okno dogodka vidno v nasprotju z nevidnim, ki le zajema dogodke."
+
+#: gtk/gtkeventbox.c:121
+msgid "Above child"
+msgstr "Nad podrejenim gradnikom"
+
+#: gtk/gtkeventbox.c:122
+msgid ""
+"Whether the event-trapping window of the eventbox is above the window of the "
+"child widget as opposed to below it."
+msgstr ""
+"Ali je okno zaznavanja dogodkov nad oknom podrejenega gradnika, namesto da "
+"je spodaj"
+
#: gtk/gtkeventcontroller.c:169
msgid "Widget the gesture relates to"
msgstr "Gradnik, ki je povezan s potezo"
@@ -2536,67 +3782,87 @@ msgstr "Faza razširjanje"
msgid "Propagation phase at which this controller is run"
msgstr "Faza razširjanja, pri kateri se zažene nadzornik"
-#: gtk/gtkexpander.c:283
+#: gtk/gtkeventcontrollerscroll.c:374 gtk/gtkeventcontrollerscroll.c:375
+msgid "Flags"
+msgstr "Zastavice"
+
+#: gtk/gtkexpander.c:300
msgid "Expanded"
msgstr "Razširjeno"
-#: gtk/gtkexpander.c:284
+#: gtk/gtkexpander.c:301
msgid "Whether the expander has been opened to reveal the child widget"
msgstr "Ali je razširilnik odprt za prikaz podrejenega gradnika"
-#: gtk/gtkexpander.c:292
-msgid "Text of the expander’s label"
+#: gtk/gtkexpander.c:309
+msgid "Text of the expander's label"
msgstr "Besedilo oznake razširilnika"
-#: gtk/gtkexpander.c:307 gtk/gtklabel.c:769
+#: gtk/gtkexpander.c:324 gtk/gtklabel.c:819 gtk/gtkmodelbutton.c:1174
msgid "Use markup"
msgstr "Uporabi označevanje"
-#: gtk/gtkexpander.c:308 gtk/gtklabel.c:770
+#: gtk/gtkexpander.c:325 gtk/gtklabel.c:820
msgid "The text of the label includes XML markup. See pango_parse_markup()"
msgstr "Besedilo oznake vključuje oznake XML. Poglejte pango_parse_markup()"
-#: gtk/gtkexpander.c:315 gtk/gtkframe.c:201 gtk/gtktoolbutton.c:229
-#: gtk/gtktoolitemgroup.c:1562
+#: gtk/gtkexpander.c:342
+msgid "Space to put between the label and the child"
+msgstr "Prostor, vstavljen med oznako in podrejenim predmetom"
+
+#: gtk/gtkexpander.c:351 gtk/gtkframe.c:262 gtk/gtktoolbutton.c:257
+#: gtk/gtktoolitemgroup.c:1648
msgid "Label widget"
msgstr "Gradnik oznake"
-#: gtk/gtkexpander.c:316
+#: gtk/gtkexpander.c:352
msgid "A widget to display in place of the usual expander label"
msgstr "Gradnik za prikaz namesto običajnp prikazane oznake razširilnika"
-#: gtk/gtkexpander.c:323
+#: gtk/gtkexpander.c:359
msgid "Label fill"
msgstr "Polnilo oznake"
-#: gtk/gtkexpander.c:324
+#: gtk/gtkexpander.c:360
msgid "Whether the label widget should fill all available horizontal space"
msgstr "Ali naj gradnik oznake zapolni celoten razpoložljiv vodoravni prostor"
-#: gtk/gtkexpander.c:339
+#: gtk/gtkexpander.c:375
msgid "Resize toplevel"
msgstr "Spremeni velikost vrhnje ravni"
-#: gtk/gtkexpander.c:340
+#: gtk/gtkexpander.c:376
msgid ""
"Whether the expander will resize the toplevel window upon expanding and "
"collapsing"
msgstr ""
"Ali naj razširilnik razširi vrhnji del okna pri zlaganju in razširjanju"
-#: gtk/gtkfilechooserbutton.c:450
+#: gtk/gtkexpander.c:389 gtk/gtktoolitemgroup.c:1676 gtk/gtktreeview.c:1236
+msgid "Expander Size"
+msgstr "Velikost razširilnika"
+
+#: gtk/gtkexpander.c:390 gtk/gtktoolitemgroup.c:1677 gtk/gtktreeview.c:1237
+msgid "Size of the expander arrow"
+msgstr "Velikost puščice razširilnika"
+
+#: gtk/gtkexpander.c:407
+msgid "Spacing around expander arrow"
+msgstr "Razmik okoli puščice razširilnika"
+
+#: gtk/gtkfilechooserbutton.c:423
msgid "Dialog"
msgstr "Pogovorno okno"
-#: gtk/gtkfilechooserbutton.c:451
+#: gtk/gtkfilechooserbutton.c:424
msgid "The file chooser dialog to use."
msgstr "Pogovorno okno izbire datotek, ki naj bo uporabljeno."
-#: gtk/gtkfilechooserbutton.c:466
+#: gtk/gtkfilechooserbutton.c:439
msgid "The title of the file chooser dialog."
msgstr "Naziv pogovornega okna za izbor datoteke."
-#: gtk/gtkfilechooserbutton.c:480
+#: gtk/gtkfilechooserbutton.c:453
msgid "The desired width of the button widget, in characters."
msgstr "Želena širina gradnika gumba (v znakih)."
@@ -2608,7 +3874,7 @@ msgstr "Dejanje"
msgid "The type of operation that the file selector is performing"
msgstr "Vrsta opravila, ki jo izvaja izbirnik datotek"
-#: gtk/gtkfilechooser.c:382 gtk/gtkrecentchooser.c:253
+#: gtk/gtkfilechooser.c:382 gtk/gtkrecentchooser.c:266
msgid "Filter"
msgstr "Filter"
@@ -2616,8 +3882,8 @@ msgstr "Filter"
msgid "The current filter for selecting which files are displayed"
msgstr "Trenutni filter izbora datotek za prikaz"
-#: gtk/gtkfilechooser.c:388 gtk/gtkplacessidebar.c:4383
-#: gtk/gtkplacesview.c:2200
+#: gtk/gtkfilechooser.c:388 gtk/gtkplacessidebar.c:4826
+#: gtk/gtkplacesview.c:2262
msgid "Local Only"
msgstr "Samo krajevno"
@@ -2659,7 +3925,7 @@ msgstr "Dodatni gradnik"
msgid "Application supplied widget for extra options."
msgstr "S strani aplikacije ponujeni gradnik za dodatne možnosti."
-#: gtk/gtkfilechooser.c:418 gtk/gtkrecentchooser.c:193
+#: gtk/gtkfilechooser.c:418 gtk/gtkrecentchooser.c:206
msgid "Select Multiple"
msgstr "Izberi več"
@@ -2699,71 +3965,71 @@ msgstr ""
"Ali naj izbirnik datotek, ki ni v načinu odpiranja ponudi tudi možnost "
"ustvarjanja novih map."
-#: gtk/gtkfilechoosernative.c:809
+#: gtk/gtkfilechoosernative.c:816
msgid "Accept label"
msgstr "Oznaka gumba potrditve"
-#: gtk/gtkfilechoosernative.c:810
+#: gtk/gtkfilechoosernative.c:817
msgid "The label on the accept button"
msgstr "Oznaka gumba za potrditev dejanja"
-#: gtk/gtkfilechoosernative.c:822
+#: gtk/gtkfilechoosernative.c:829
msgid "Cancel label"
msgstr "Oznaka gumba preklica"
-#: gtk/gtkfilechoosernative.c:823
+#: gtk/gtkfilechoosernative.c:830
msgid "The label on the cancel button"
msgstr "Oznaka gumba za preklic dejanja"
-#: gtk/gtkfilechooserwidget.c:8443 gtk/gtkfilechooserwidget.c:8444
+#: gtk/gtkfilechooserwidget.c:8413 gtk/gtkfilechooserwidget.c:8414
msgid "Search mode"
msgstr "Iskalni način"
-#: gtk/gtkfilechooserwidget.c:8450 gtk/gtkfilechooserwidget.c:8451
-#: gtk/gtkheaderbar.c:1890 gtk/gtkshortcutsshortcut.c:626
+#: gtk/gtkfilechooserwidget.c:8420 gtk/gtkfilechooserwidget.c:8421
+#: gtk/gtkheaderbar.c:2034 gtk/gtkshortcutsshortcut.c:591
msgid "Subtitle"
msgstr "Podpis"
-#: gtk/gtkfixed.c:155 gtk/gtklayout.c:520 gtk/gtktreeviewcolumn.c:259
+#: gtk/gtkfixed.c:156 gtk/gtklayout.c:648 gtk/gtktreeviewcolumn.c:260
msgid "X position"
msgstr "Položaj na osi X"
-#: gtk/gtkfixed.c:156 gtk/gtklayout.c:521
+#: gtk/gtkfixed.c:157 gtk/gtklayout.c:649
msgid "X position of child widget"
msgstr "Položaj podrejenega gradnika na osi X "
-#: gtk/gtkfixed.c:163 gtk/gtklayout.c:530
+#: gtk/gtkfixed.c:164 gtk/gtklayout.c:658
msgid "Y position"
msgstr "Položaj na osi Y"
-#: gtk/gtkfixed.c:164 gtk/gtklayout.c:531
+#: gtk/gtkfixed.c:165 gtk/gtklayout.c:659
msgid "Y position of child widget"
msgstr "Položaj podrejenega gradnika na osi Y"
-#: gtk/gtkflowbox.c:3469 gtk/gtkiconview.c:394 gtk/gtklistbox.c:407
+#: gtk/gtkflowbox.c:3814 gtk/gtkiconview.c:408 gtk/gtklistbox.c:479
#: gtk/gtktreeselection.c:131
msgid "Selection mode"
msgstr "Način izbire"
-#: gtk/gtkflowbox.c:3470 gtk/gtkiconview.c:395 gtk/gtklistbox.c:408
+#: gtk/gtkflowbox.c:3815 gtk/gtkiconview.c:409 gtk/gtklistbox.c:480
msgid "The selection mode"
msgstr "Način izbiranja"
-#: gtk/gtkflowbox.c:3483 gtk/gtkiconview.c:651 gtk/gtklistbox.c:415
-#: gtk/gtktreeview.c:1195
+#: gtk/gtkflowbox.c:3828 gtk/gtkiconview.c:665 gtk/gtklistbox.c:487
+#: gtk/gtktreeview.c:1222
msgid "Activate on Single Click"
msgstr "Omogoči ob enojnem kliku"
-#: gtk/gtkflowbox.c:3484 gtk/gtkiconview.c:652 gtk/gtklistbox.c:416
-#: gtk/gtktreeview.c:1196
+#: gtk/gtkflowbox.c:3829 gtk/gtkiconview.c:666 gtk/gtklistbox.c:488
+#: gtk/gtktreeview.c:1223
msgid "Activate row on a single click"
msgstr "Omogoči vrstico ob enojnem kliku"
-#: gtk/gtkflowbox.c:3513
+#: gtk/gtkflowbox.c:3858
msgid "Minimum Children Per Line"
msgstr "Najmanj podrejenih predmetov na vrstico"
-#: gtk/gtkflowbox.c:3514
+#: gtk/gtkflowbox.c:3859
msgid ""
"The minimum number of children to allocate consecutively in the given "
"orientation."
@@ -2771,11 +4037,11 @@ msgstr ""
"Najmanjše število podrejenih elementov, ki zaporedno zahtevajo prostor v "
"dani usmeritvi."
-#: gtk/gtkflowbox.c:3527
+#: gtk/gtkflowbox.c:3872
msgid "Maximum Children Per Line"
msgstr "Največ podrejenih predmetov na vrstico"
-#: gtk/gtkflowbox.c:3528
+#: gtk/gtkflowbox.c:3873
msgid ""
"The maximum amount of children to request space for consecutively in the "
"given orientation."
@@ -2783,63 +4049,59 @@ msgstr ""
"Največje število podrejenih elementov, ki zaporedno zahtevajo prostor v dani "
"usmeritvi."
-#: gtk/gtkflowbox.c:3540
+#: gtk/gtkflowbox.c:3885
msgid "Vertical spacing"
msgstr "Navpičen razmik"
-#: gtk/gtkflowbox.c:3541
+#: gtk/gtkflowbox.c:3886
msgid "The amount of vertical space between two children"
msgstr "Količina navpičnega prostora med podrejenimi predmeti"
-#: gtk/gtkflowbox.c:3552
+#: gtk/gtkflowbox.c:3897
msgid "Horizontal spacing"
msgstr "Vodoraven razmik"
-#: gtk/gtkflowbox.c:3553
+#: gtk/gtkflowbox.c:3898
msgid "The amount of horizontal space between two children"
msgstr "Količina vodoravnega prostora med podrejenimi predmeti"
-#: gtk/gtkfontbutton.c:508
+#: gtk/gtkfontbutton.c:491
msgid "The title of the font chooser dialog"
msgstr "Naziv pogovornega okna za izbor pisave"
-#: gtk/gtkfontbutton.c:522
-msgid "Font name"
-msgstr "Ime pisave"
-
-#: gtk/gtkfontbutton.c:523
+#: gtk/gtkfontbutton.c:508
msgid "The name of the selected font"
msgstr "Ime izbrane pisave"
-#: gtk/gtkfontbutton.c:538
+#: gtk/gtkfontbutton.c:523
msgid "Use font in label"
msgstr "Uporabi pisavo v oznaki"
-#: gtk/gtkfontbutton.c:539
+#: gtk/gtkfontbutton.c:524
msgid "Whether the label is drawn in the selected font"
msgstr "Ali naj je oznaka izrisana z izbrano pisavo"
-#: gtk/gtkfontbutton.c:554
+#: gtk/gtkfontbutton.c:539
msgid "Use size in label"
msgstr "Uporabi velikost v oznaki"
-#: gtk/gtkfontbutton.c:555
+#: gtk/gtkfontbutton.c:540
msgid "Whether the label is drawn with the selected font size"
msgstr "Ali naj je oznaka izrisana z izbrano velikostjo pisave"
-#: gtk/gtkfontbutton.c:571
+#: gtk/gtkfontbutton.c:556
msgid "Show style"
msgstr "Pokaži slog"
-#: gtk/gtkfontbutton.c:572
+#: gtk/gtkfontbutton.c:557
msgid "Whether the selected font style is shown in the label"
msgstr "Ali naj bo izbrani slog pisave prikazan v oznaki"
-#: gtk/gtkfontbutton.c:587
+#: gtk/gtkfontbutton.c:572
msgid "Show size"
msgstr "Pokaži velikost"
-#: gtk/gtkfontbutton.c:588
+#: gtk/gtkfontbutton.c:573
msgid "Whether selected font size is shown in the label"
msgstr "Ali naj je velikost izbrane pisave prikazana v oznaki"
@@ -2847,14 +4109,6 @@ msgstr "Ali naj je velikost izbrane pisave prikazana v oznaki"
msgid "Font description"
msgstr "Opis pisave"
-#: gtk/gtkfontchooser.c:90
-msgid "Preview text"
-msgstr "Besedilo za predogled"
-
-#: gtk/gtkfontchooser.c:91
-msgid "The text to display in order to demonstrate the selected font"
-msgstr "Besedilo, ki se naj prikaže za predstavitev izbrane pisave"
-
#: gtk/gtkfontchooser.c:103
msgid "Show preview text entry"
msgstr "Pokaži besedilo za predogled"
@@ -2863,58 +4117,86 @@ msgstr "Pokaži besedilo za predogled"
msgid "Whether the preview text entry is shown or not"
msgstr "Ali je besedilo za predogled prikazano ali ne"
-#: gtk/gtkframe.c:171
-msgid "Text of the frame’s label"
+#: gtk/gtkfontchooser.c:118
+msgid "Selection level"
+msgstr "Raven izbire"
+
+#: gtk/gtkfontchooser.c:119
+msgid "Whether to select family, face or font"
+msgstr "Ali naj se izbere družina pisave, oblika ali pisava"
+
+#: gtk/gtkfontchooser.c:137
+msgid "Font features"
+msgstr "Možnosti pisave"
+
+#: gtk/gtkfontchooser.c:138
+msgid "Font features as a string"
+msgstr "Značilnosti pisave kot niz"
+
+#: gtk/gtkfontchooser.c:155
+msgid "Language for which features have been selected"
+msgstr "Jezik, katerega možnosti so bile izbrane"
+
+#: gtk/gtkfontchooserwidget.c:696
+msgid "The tweak action"
+msgstr "Ime prilagoditve"
+
+#: gtk/gtkfontchooserwidget.c:697
+msgid "The toggle action to switch to the tweak page"
+msgstr "Dejanje preklopa za prehod na stran prilagoditev"
+
+#: gtk/gtkframe.c:232
+msgid "Text of the frame's label"
msgstr "Besedilo oznake okvirja"
-#: gtk/gtkframe.c:177
+#: gtk/gtkframe.c:238
msgid "Label xalign"
msgstr "Poravnava oznake po osi X"
-#: gtk/gtkframe.c:178
+#: gtk/gtkframe.c:239
msgid "The horizontal alignment of the label"
msgstr "Vodoravna poravnava oznake"
-#: gtk/gtkframe.c:185
+#: gtk/gtkframe.c:246
msgid "Label yalign"
msgstr "Poravnava oznake po osi Y"
-#: gtk/gtkframe.c:186
+#: gtk/gtkframe.c:247
msgid "The vertical alignment of the label"
msgstr "Navpična poravnava oznake"
-#: gtk/gtkframe.c:193
+#: gtk/gtkframe.c:254
msgid "Frame shadow"
msgstr "Senca okvirja"
-#: gtk/gtkframe.c:194
-msgid "Appearance of the frame"
-msgstr "Videz okvirja"
+#: gtk/gtkframe.c:255
+msgid "Appearance of the frame border"
+msgstr "Videz roba okvirja"
-#: gtk/gtkframe.c:202
+#: gtk/gtkframe.c:263
msgid "A widget to display in place of the usual frame label"
msgstr "Gradnik, ki naj se prikaže na mestu običajne oznake okvirja."
-#: gtk/gtkgesture.c:798
+#: gtk/gtkgesture.c:869
msgid "Number of points"
msgstr "Število točk"
-#: gtk/gtkgesture.c:799
+#: gtk/gtkgesture.c:870
msgid "Number of points needed to trigger the gesture"
msgstr "Število točk, ki sprožijo potezo"
-#: gtk/gtkgesturelongpress.c:282
+#: gtk/gtkgesture.c:886 gtk/gtkgesture.c:887
+msgid "GdkWindow to receive events about"
+msgstr "Predmet GtkWindow, ki prejme dogodke"
+
+#: gtk/gtkgesturelongpress.c:284
msgid "Delay factor"
msgstr "Faktor zamika"
-#: gtk/gtkgesturelongpress.c:283
+#: gtk/gtkgesturelongpress.c:285
msgid "Factor by which to modify the default timeout"
msgstr "Faktor, ki določa spreminjanje privzete nastavitve časovnega zamika"
-#: gtk/gtkgesturepan.c:237 gtk/gtkorientable.c:59
-msgid "Orientation"
-msgstr "Usmerjenost"
-
#: gtk/gtkgesturepan.c:238
msgid "Allowed orientations"
msgstr "Dovoljene usmeritve"
@@ -2939,389 +4221,375 @@ msgstr "Številka gumba"
msgid "Button number to listen to"
msgstr "Številka spremljanega gumba"
-#: gtk/gtkglarea.c:723
+#: gtk/gtkglarea.c:783
msgid "Context"
msgstr "Kontekst"
-#: gtk/gtkglarea.c:724
+#: gtk/gtkglarea.c:784
msgid "The GL context"
msgstr "Kontekst GL"
-#: gtk/gtkglarea.c:746
+#: gtk/gtkglarea.c:806
msgid "Auto render"
msgstr "Samodejno izriši"
-#: gtk/gtkglarea.c:747
+#: gtk/gtkglarea.c:807
msgid "Whether the GtkGLArea renders on each redraw"
msgstr "Ali se GtkGLArea upodobi ob vsakem izrisu"
-#: gtk/gtkglarea.c:767
+#: gtk/gtkglarea.c:827
msgid "Has alpha"
msgstr "Ima alfo"
-#: gtk/gtkglarea.c:768
+#: gtk/gtkglarea.c:828
msgid "Whether the color buffer has an alpha component"
msgstr "Ali naj ima barvni predpomnilnik komponento alfa"
-#: gtk/gtkglarea.c:784
+#: gtk/gtkglarea.c:844
msgid "Has depth buffer"
msgstr "Ima izravnalnik globine"
-#: gtk/gtkglarea.c:785
+#: gtk/gtkglarea.c:845
msgid "Whether a depth buffer is allocated"
msgstr "Ali je izravnalnik globine dodeljen"
-#: gtk/gtkglarea.c:801
+#: gtk/gtkglarea.c:861
msgid "Has stencil buffer"
msgstr "Ima izravnalnik šablone"
-#: gtk/gtkglarea.c:802
+#: gtk/gtkglarea.c:862
msgid "Whether a stencil buffer is allocated"
msgstr "Ali je izravnalnik šablone dodeljen"
-#: gtk/gtkglarea.c:820
+#: gtk/gtkglarea.c:880
msgid "Use OpenGL ES"
msgstr "Uporabi OpenGL ES"
-#: gtk/gtkglarea.c:821
+#: gtk/gtkglarea.c:881
msgid "Whether the context uses OpenGL or OpenGL ES"
msgstr "Ali naj bo uporabljen OpenGL ali OpenGL ES"
-#: gtk/gtkgrid.c:1652
-msgid "Row spacing"
-msgstr "Prostor med vrsticami"
-
-#: gtk/gtkgrid.c:1653
-msgid "The amount of space between two consecutive rows"
-msgstr "Količina prostora med zaporednima vrsticama"
-
-#: gtk/gtkgrid.c:1659
-msgid "Column spacing"
-msgstr "Prostor med stolpci"
-
-#: gtk/gtkgrid.c:1660
-msgid "The amount of space between two consecutive columns"
-msgstr "Količina prostora med zaporednima stolpcema"
-
-#: gtk/gtkgrid.c:1666
+#: gtk/gtkgrid.c:1772
msgid "Row Homogeneous"
msgstr "Homogena vrstica"
-#: gtk/gtkgrid.c:1667
+#: gtk/gtkgrid.c:1773
msgid "If TRUE, the rows are all the same height"
msgstr "Izbrana možnost omogoča, da imajo vse vrstice enako višino"
-#: gtk/gtkgrid.c:1673
+#: gtk/gtkgrid.c:1779
msgid "Column Homogeneous"
msgstr "Homogeni stolpci"
-#: gtk/gtkgrid.c:1674
+#: gtk/gtkgrid.c:1780
msgid "If TRUE, the columns are all the same width"
msgstr "Izbrana možnost omogoča, da imajo vsi stolpci enako širino"
-#: gtk/gtkgrid.c:1680
+#: gtk/gtkgrid.c:1786
msgid "Baseline Row"
msgstr "Vrstica osnovnice"
-#: gtk/gtkgrid.c:1681
+#: gtk/gtkgrid.c:1787
msgid "The row to align the to the baseline when valign is GTK_ALIGN_BASELINE"
msgstr ""
"Vrstica za poravnavo osnovnice, kadar je uveljavljena možnost "
"GTK_ALIGN_BASELINE"
-#: gtk/gtkgrid.c:1691
-msgid "Left attachment"
-msgstr "Leva priloga"
-
-#: gtk/gtkgrid.c:1692 gtk/gtkmenu.c:824
-msgid "The column number to attach the left side of the child to"
-msgstr ""
-"Številka stolpca, na katerega je pripeta leva stran podrejenega gradnika"
-
-#: gtk/gtkgrid.c:1698
-msgid "Top attachment"
-msgstr "Vrhnja priloga"
-
-#: gtk/gtkgrid.c:1699
+#: gtk/gtkgrid.c:1805
msgid "The row number to attach the top side of a child widget to"
msgstr "Številka vrstice, na katero je pripet vrh podrejenega gradnika"
-#: gtk/gtkgrid.c:1705 gtk/gtklayout.c:546 gtk/gtktreeviewcolumn.c:267
+#: gtk/gtkgrid.c:1811 gtk/gtklayout.c:674 gtk/gtktreeviewcolumn.c:268
msgid "Width"
msgstr "Širina"
-#: gtk/gtkgrid.c:1706
+#: gtk/gtkgrid.c:1812
msgid "The number of columns that a child spans"
msgstr "Število stolpcev, ki jih zaseda podrejeni predmet"
-#: gtk/gtkgrid.c:1712 gtk/gtklayout.c:555 gtk/gtkshortcutsgroup.c:359
+#: gtk/gtkgrid.c:1818 gtk/gtklayout.c:683 gtk/gtkshortcutsgroup.c:362
msgid "Height"
msgstr "Višina"
-#: gtk/gtkgrid.c:1713
+#: gtk/gtkgrid.c:1819
msgid "The number of rows that a child spans"
msgstr "Število vrstic, ki jih zaseda podrejeni predmet"
-#: gtk/gtkheaderbar.c:1884
+#: gtk/gtkheaderbar.c:2028
msgid "The title to display"
msgstr "Naslov za prikaz"
-#: gtk/gtkheaderbar.c:1891
+#: gtk/gtkheaderbar.c:2035
msgid "The subtitle to display"
msgstr "Podnaslov za prikaz"
-#: gtk/gtkheaderbar.c:1897
+#: gtk/gtkheaderbar.c:2041
msgid "Custom Title"
msgstr "Naslov po meri"
-#: gtk/gtkheaderbar.c:1898
+#: gtk/gtkheaderbar.c:2042
msgid "Custom title widget to display"
msgstr "Gradnik naziva okna po meri za prikaz"
-#: gtk/gtkheaderbar.c:1922
+#: gtk/gtkheaderbar.c:2066
msgid "Show decorations"
msgstr "Pokaži okraske"
-#: gtk/gtkheaderbar.c:1923
+#: gtk/gtkheaderbar.c:2067
msgid "Whether to show window decorations"
msgstr "Ali naj bodo okraski okna prikazani"
-#: gtk/gtkheaderbar.c:1941 gtk/gtksettings.c:918
+#: gtk/gtkheaderbar.c:2085 gtk/gtksettings.c:1616
msgid "Decoration Layout"
msgstr "Postavitev okraskov"
-#: gtk/gtkheaderbar.c:1942 gtk/gtksettings.c:919
+#: gtk/gtkheaderbar.c:2086 gtk/gtksettings.c:1617
msgid "The layout for window decorations"
msgstr "Postavitev okenskih okraskov"
-#: gtk/gtkheaderbar.c:1955
+#: gtk/gtkheaderbar.c:2099
msgid "Decoration Layout Set"
msgstr "Postavitev okraskov določena"
-#: gtk/gtkheaderbar.c:1956
+#: gtk/gtkheaderbar.c:2100
msgid "Whether the decoration-layout property has been set"
msgstr "Ali je določena lastnost decoration-layout (za postavitev okraskov)"
-#: gtk/gtkheaderbar.c:1970
+#: gtk/gtkheaderbar.c:2114
msgid "Has Subtitle"
msgstr "Ima podpis"
-#: gtk/gtkheaderbar.c:1971
+#: gtk/gtkheaderbar.c:2115
msgid "Whether to reserve space for a subtitle"
msgstr "Ali naj bo prihranjen prostor za podnapis"
-#: gtk/gtkiconview.c:413
+#: gtk/gtkiconview.c:427
msgid "Pixbuf column"
msgstr "Stolpec medpomnilnika sličic"
-#: gtk/gtkiconview.c:414
+#: gtk/gtkiconview.c:428
msgid "Model column used to retrieve the icon pixbuf from"
msgstr "Stolpec modela iz katerega se pridobijo slike ikon"
-#: gtk/gtkiconview.c:432
+#: gtk/gtkiconview.c:446
msgid "Model column used to retrieve the text from"
msgstr "Stolpec modela iz katerega se pridobi besedilo"
-#: gtk/gtkiconview.c:451
+#: gtk/gtkiconview.c:465
msgid "Markup column"
msgstr "Stolpec oblikovanja"
-#: gtk/gtkiconview.c:452
+#: gtk/gtkiconview.c:466
msgid "Model column used to retrieve the text if using Pango markup"
msgstr "Stolpec modela iz katerega se pridobi besedilo s Pango označevanjem"
-#: gtk/gtkiconview.c:459
+#: gtk/gtkiconview.c:473
msgid "Icon View Model"
msgstr "Način pogleda ikon"
-#: gtk/gtkiconview.c:460
+#: gtk/gtkiconview.c:474
msgid "The model for the icon view"
msgstr "Način za pogled ikon"
-#: gtk/gtkiconview.c:476
+#: gtk/gtkiconview.c:490
msgid "Number of columns"
msgstr "Število stolpcev"
-#: gtk/gtkiconview.c:477
+#: gtk/gtkiconview.c:491
msgid "Number of columns to display"
msgstr "Število prikazanih stolpcev"
-#: gtk/gtkiconview.c:494
+#: gtk/gtkiconview.c:508
msgid "Width for each item"
msgstr "Širina posameznega predmeta"
-#: gtk/gtkiconview.c:495
+#: gtk/gtkiconview.c:509
msgid "The width used for each item"
msgstr "Širina posameznega predmeta"
-#: gtk/gtkiconview.c:511
+#: gtk/gtkiconview.c:525
msgid "Space which is inserted between cells of an item"
msgstr "Prostor, vstavljen med celice predmeta"
-#: gtk/gtkiconview.c:526
+#: gtk/gtkiconview.c:540
msgid "Row Spacing"
msgstr "Prostor med vrsticami"
-#: gtk/gtkiconview.c:527
+#: gtk/gtkiconview.c:541
msgid "Space which is inserted between grid rows"
msgstr "Prostor, vstavljen med vrstice mreže"
-#: gtk/gtkiconview.c:542
+#: gtk/gtkiconview.c:556
msgid "Column Spacing"
msgstr "Prostor med stolpci"
-#: gtk/gtkiconview.c:543
+#: gtk/gtkiconview.c:557
msgid "Space which is inserted between grid columns"
msgstr "Prostor, vstavljen med stolpce mreže"
-#: gtk/gtkiconview.c:558
+#: gtk/gtkiconview.c:572
msgid "Margin"
msgstr "Rob"
-#: gtk/gtkiconview.c:559
+#: gtk/gtkiconview.c:573
msgid "Space which is inserted at the edges of the icon view"
msgstr "Prostor, vstavljen na robovih ikonskega pogleda"
-#: gtk/gtkiconview.c:574
+#: gtk/gtkiconview.c:588
msgid "Item Orientation"
msgstr "Usmerjenost predmeta"
-#: gtk/gtkiconview.c:575
+#: gtk/gtkiconview.c:589
msgid ""
"How the text and icon of each item are positioned relative to each other"
msgstr "Kako sta med seboj razvrščena besedilo in ikona vsakega predmeta"
-#: gtk/gtkiconview.c:591 gtk/gtktreeview.c:1049 gtk/gtktreeviewcolumn.c:350
+#: gtk/gtkiconview.c:605 gtk/gtktreeview.c:1061 gtk/gtktreeviewcolumn.c:351
msgid "Reorderable"
msgstr "Preuredljivo"
-#: gtk/gtkiconview.c:592 gtk/gtktreeview.c:1050
+#: gtk/gtkiconview.c:606 gtk/gtktreeview.c:1062
msgid "View is reorderable"
msgstr "Pogled je preuredljiv"
-#: gtk/gtkiconview.c:599 gtk/gtktreeview.c:1179
+#: gtk/gtkiconview.c:613 gtk/gtktreeview.c:1206
msgid "Tooltip Column"
msgstr "Stolpec z namigi"
-#: gtk/gtkiconview.c:600
+#: gtk/gtkiconview.c:614
msgid "The column in the model containing the tooltip texts for the items"
msgstr "Stolpec modela, ki vsebuje besedilo namigov za predmete"
-#: gtk/gtkiconview.c:617
+#: gtk/gtkiconview.c:631
msgid "Item Padding"
msgstr "Blazinjenje predmetov"
-#: gtk/gtkiconview.c:618
+#: gtk/gtkiconview.c:632
msgid "Padding around icon view items"
msgstr "Blazinjenje okoli predmetov v ikonskem prikazu"
-#: gtk/gtkimage.c:170
-msgid "Pixbuf"
-msgstr "Medpomnilnik sličic"
+#: gtk/gtkiconview.c:687
+msgid "Selection Box Color"
+msgstr "Barva izbirnega polja"
-#: gtk/gtkimage.c:171
-msgid "A GdkPixbuf to display"
-msgstr "Predmet GdkPixbuf, ki naj se prikaže"
+#: gtk/gtkiconview.c:688
+msgid "Color of the selection box"
+msgstr "Barva izbirnega polja"
-#: gtk/gtkimage.c:177
+#: gtk/gtkiconview.c:703
+msgid "Selection Box Alpha"
+msgstr "Alfa izbirnega polja"
+
+#: gtk/gtkiconview.c:704
+msgid "Opacity of the selection box"
+msgstr "Prekrivnost izbirnega polja"
+
+#: gtk/gtkimage.c:262
msgid "Surface"
msgstr "Površina"
-#: gtk/gtkimage.c:178
+#: gtk/gtkimage.c:263
msgid "A cairo_surface_t to display"
msgstr "Predmet cairo_surface_t za prikaz"
-#: gtk/gtkimage.c:184 gtk/gtkrecentmanager.c:289
-msgid "Filename"
-msgstr "Ime datoteke"
+#: gtk/gtkimage.c:294
+msgid "Icon set"
+msgstr "Nabor ikon"
-#: gtk/gtkimage.c:185
-msgid "Filename to load and display"
-msgstr "Ime datoteke, ki naj se naloži in prikaže"
+#: gtk/gtkimage.c:295
+msgid "Icon set to display"
+msgstr "Nabor ikon, ki naj se prikaže"
-#: gtk/gtkimage.c:191 gtk/gtkscalebutton.c:206 gtk/gtktoolbar.c:523
-#: gtk/gtktoolpalette.c:915
+#: gtk/gtkimage.c:302 gtk/gtkscalebutton.c:206 gtk/gtktoolbar.c:564
+#: gtk/gtktoolpalette.c:965
msgid "Icon size"
msgstr "Velikost ikone"
-#: gtk/gtkimage.c:192
-msgid "Symbolic size to use for icon set or named icon"
-msgstr "Simbolna velikost osnovne ikone za sklad ikon ali imenovane ikone"
+#: gtk/gtkimage.c:303
+msgid "Symbolic size to use for stock icon, icon set or named icon"
+msgstr "Simbolna velikost osnovne ikone, ikone sklada ali imenovane ikone"
-#: gtk/gtkimage.c:208
+#: gtk/gtkimage.c:319
msgid "Pixel size"
msgstr "Velikost slikovne točke"
-#: gtk/gtkimage.c:209
+#: gtk/gtkimage.c:320
msgid "Pixel size to use for named icon"
msgstr "Velikost slikovne točke, ki naj bo uporabljena za imenovano ikono"
-#: gtk/gtkimage.c:216
+#: gtk/gtkimage.c:327
msgid "Animation"
msgstr "Animacija"
-#: gtk/gtkimage.c:217
+#: gtk/gtkimage.c:328
msgid "GdkPixbufAnimation to display"
msgstr "GdkPixbufAnimation, ki naj se prikaže"
-#: gtk/gtkimage.c:261
+#: gtk/gtkimage.c:372
msgid "Resource"
msgstr "Vir"
-#: gtk/gtkimage.c:262
+#: gtk/gtkimage.c:373
msgid "The resource path being displayed"
msgstr "Prikazana pot vira"
-#: gtk/gtkimage.c:268
-msgid "Storage type"
-msgstr "Vrsta hrambe"
-
-#: gtk/gtkimage.c:269
-msgid "The representation being used for image data"
-msgstr "Način predstavitve, uporabljene za slikovne podatke"
-
-#: gtk/gtkimage.c:286
+#: gtk/gtkimage.c:397
msgid "Use Fallback"
msgstr "Uporabi nadomestna imena"
-#: gtk/gtkimage.c:287
+#: gtk/gtkimage.c:398
msgid "Whether to use icon names fallback"
msgstr "Ali naj se uporabijo nadomestna imena ikon"
-#: gtk/gtkinfobar.c:331 gtk/gtkmessagedialog.c:176
+#: gtk/gtkinfobar.c:339 gtk/gtkmessagedialog.c:189
msgid "Message Type"
msgstr "Vrsta sporočila"
-#: gtk/gtkinfobar.c:332 gtk/gtkmessagedialog.c:177
+#: gtk/gtkinfobar.c:340 gtk/gtkmessagedialog.c:190
msgid "The type of message"
msgstr "Vrsta sporočila"
-#: gtk/gtkinfobar.c:346 gtk/gtksearchbar.c:397
+#: gtk/gtkinfobar.c:354 gtk/gtksearchbar.c:425
msgid "Show Close Button"
msgstr "Pokaži gumb za zapiranje"
-#: gtk/gtkinfobar.c:347
+#: gtk/gtkinfobar.c:355
msgid "Whether to include a standard close button"
msgstr "Ali naj ima okno gumb za zapiranje"
-#: gtk/gtkinvisible.c:95 gtk/gtkmountoperation.c:180 gtk/gtkstylecontext.c:210
-#: gtk/gtkwindow.c:983
-msgid "Screen"
-msgstr "Zaslon"
+#: gtk/gtkinfobar.c:361
+msgid "Reveal"
+msgstr "Razkrij"
+
+#: gtk/gtkinfobar.c:362
+msgid "Controls whether the action bar shows its contents or not"
+msgstr "Nadzira, ali vrstica dejanj kaže vsebino ali ne"
+
+#: gtk/gtkinfobar.c:420
+msgid "Width of border around the content area"
+msgstr "Širina obrobe okoli področja vsebine"
+
+#: gtk/gtkinfobar.c:438
+msgid "Spacing between elements of the area"
+msgstr "Razmik med predmeti območja"
+
+#: gtk/gtkinfobar.c:472
+msgid "Width of border around the action area"
+msgstr "Širina robu okoli območja dejanj"
-#: gtk/gtkinvisible.c:96 gtk/gtkwindow.c:984
+#: gtk/gtkinvisible.c:99 gtk/gtkwindow.c:895
msgid "The screen where this window will be displayed"
msgstr "Zaslon, na katerem bo to okno prikazano"
-#: gtk/gtklabel.c:756
+#: gtk/gtklabel.c:806
msgid "The text of the label"
msgstr "Besedilo oznake"
-#: gtk/gtklabel.c:783 gtk/gtktexttag.c:382 gtk/gtktextview.c:833
+#: gtk/gtklabel.c:833 gtk/gtktexttag.c:416 gtk/gtktextview.c:841
msgid "Justification"
msgstr "Poravnava"
-#: gtk/gtklabel.c:784
+#: gtk/gtklabel.c:834
msgid ""
"The alignment of the lines in the text of the label relative to each other. "
"This does NOT affect the alignment of the label within its allocation. See "
@@ -3331,63 +4599,55 @@ msgstr ""
"ne vpliva na poravnavo nalepk znotraj dodelitve. Za več podrobnosti si "
"oglejte GtkLabel:xalign"
-#: gtk/gtklabel.c:819
-msgid "Y align"
-msgstr "Poravnava Y"
-
-#: gtk/gtklabel.c:820
-msgid "The vertical alignment, from 0 (top) to 1 (bottom)"
-msgstr "Navpična poravnava, od 0 (zgoraj) do 1 (spodaj)"
-
-#: gtk/gtklabel.c:827
+#: gtk/gtklabel.c:877
msgid "Pattern"
msgstr "Vzorec"
-#: gtk/gtklabel.c:828
+#: gtk/gtklabel.c:878
msgid ""
"A string with _ characters in positions correspond to characters in the text "
"to underline"
msgstr ""
"Niz s podčrtaji ('_') na mestih, kjer naj bodo znaki v besedilu podčrtani"
-#: gtk/gtklabel.c:834
+#: gtk/gtklabel.c:884
msgid "Line wrap"
msgstr "Prelom vrstic"
-#: gtk/gtklabel.c:835
+#: gtk/gtklabel.c:885
msgid "If set, wrap lines if the text becomes too wide"
msgstr ""
"Izbrana možnost določa, da se vrstice prelomijo, kadar je besedilo preširoko"
-#: gtk/gtklabel.c:850
+#: gtk/gtklabel.c:900
msgid "Line wrap mode"
msgstr "Način preloma vrstic"
-#: gtk/gtklabel.c:851
+#: gtk/gtklabel.c:901
msgid "If wrap is set, controls how linewrapping is done"
msgstr "Možnost določa način preloma, kadar je izbrana ta možnost"
-#: gtk/gtklabel.c:859
+#: gtk/gtklabel.c:909
msgid "Whether the label text can be selected with the mouse"
msgstr "Ali naj se besedilo oznake lahko izbere z miško"
-#: gtk/gtklabel.c:865
+#: gtk/gtklabel.c:915
msgid "Mnemonic key"
msgstr "Menijska bližnjica"
-#: gtk/gtklabel.c:866
+#: gtk/gtklabel.c:916
msgid "The mnemonic accelerator key for this label"
msgstr "Menijska bližnjica te oznake"
-#: gtk/gtklabel.c:873
+#: gtk/gtklabel.c:923
msgid "Mnemonic widget"
msgstr "Gradnik menijske bližnjice"
-#: gtk/gtklabel.c:874
-msgid "The widget to be activated when the label’s mnemonic key is pressed"
-msgstr "Gradnik, ki naj se zažene, ko je pritisnjena tipka bližnjice oznake"
+#: gtk/gtklabel.c:924
+msgid "The widget to be activated when the label's mnemonic key is pressed"
+msgstr "Gradnik, ki naj se zažene, ko je pritisnjena menijska bližnjica oznake"
-#: gtk/gtklabel.c:914
+#: gtk/gtklabel.c:964
msgid ""
"The preferred place to ellipsize the string, if the label does not have "
"enough room to display the entire string"
@@ -3395,78 +4655,102 @@ msgstr ""
"Prednostno mesto okrajšanja niti, če oznaka nima dovolj prostora za prikaz "
"celotnega niza."
-#: gtk/gtklabel.c:952
+#: gtk/gtklabel.c:1002
msgid "Single Line Mode"
msgstr "Enovrstični način"
-#: gtk/gtklabel.c:953
+#: gtk/gtklabel.c:1003
msgid "Whether the label is in single line mode"
msgstr "Ali naj bo besedilo oznake v enovrstičnem načinu"
-#: gtk/gtklabel.c:972
+#: gtk/gtklabel.c:1019
+msgid "Angle"
+msgstr "Kot"
+
+#: gtk/gtklabel.c:1020
+msgid "Angle at which the label is rotated"
+msgstr "Kot, pod katerim naj bo zasukana oznaka"
+
+#: gtk/gtklabel.c:1040
msgid "The desired maximum width of the label, in characters"
msgstr "Želena največja širina oznake (v znakih)"
-#: gtk/gtklabel.c:988
+#: gtk/gtklabel.c:1056
msgid "Track visited links"
msgstr "Sledi obiskanim povezavam"
-#: gtk/gtklabel.c:989
+#: gtk/gtklabel.c:1057
msgid "Whether visited links should be tracked"
msgstr "Ali naj se sledi obiskanim povezavam"
-#: gtk/gtklabel.c:1005
+#: gtk/gtklabel.c:1073
msgid "Number of lines"
msgstr "Število vrstic"
-#: gtk/gtklabel.c:1006
+#: gtk/gtklabel.c:1074
msgid "The desired number of lines, when ellipsizing a wrapping label"
msgstr "Želeno število vrstic za prikaz okrajšane oznake med prelomom"
-#: gtk/gtklayout.c:547
+#: gtk/gtklayout.c:675
msgid "The width of the layout"
msgstr "Širina postavitve"
-#: gtk/gtklayout.c:556
+#: gtk/gtklayout.c:684
msgid "The height of the layout"
msgstr "Višina postavitve"
-#: gtk/gtklevelbar.c:975
+#: gtk/gtklevelbar.c:1030
msgid "Currently filled value level"
msgstr "Trenutno zapolnjena raven vrednosti"
-#: gtk/gtklevelbar.c:976
+#: gtk/gtklevelbar.c:1031
msgid "Currently filled value level of the level bar"
msgstr "Trenutno zapolnjena raven vrednosti, ki jo lahko prikaže vrstica"
-#: gtk/gtklevelbar.c:990
+#: gtk/gtklevelbar.c:1045
msgid "Minimum value level for the bar"
msgstr "Najmanjša raven vrednosti za vrstico"
-#: gtk/gtklevelbar.c:991
+#: gtk/gtklevelbar.c:1046
msgid "Minimum value level that can be displayed by the bar"
msgstr "Najmanjša raven vrednosti, ki jo lahko prikaže vrstica"
-#: gtk/gtklevelbar.c:1005
+#: gtk/gtklevelbar.c:1060
msgid "Maximum value level for the bar"
msgstr "Največja raven vrednosti za vrstico"
-#: gtk/gtklevelbar.c:1006
+#: gtk/gtklevelbar.c:1061
msgid "Maximum value level that can be displayed by the bar"
msgstr "Največja raven vrednosti, ki jo lahko prikaže vrstica"
-#: gtk/gtklevelbar.c:1026
+#: gtk/gtklevelbar.c:1081
msgid "The mode of the value indicator"
msgstr "Način pokazatelja vrednosti"
-#: gtk/gtklevelbar.c:1027
+#: gtk/gtklevelbar.c:1082
msgid "The mode of the value indicator displayed by the bar"
msgstr "Način pokazatelja vrednosti, prikazanega v vrstici"
-#: gtk/gtklevelbar.c:1043
+#: gtk/gtklevelbar.c:1098
msgid "Invert the direction in which the level bar grows"
msgstr "Obrni smer, v katero narašča vrstica napredka"
+#: gtk/gtklevelbar.c:1115
+msgid "Minimum height for filling blocks"
+msgstr "Najmanjša višina polnilnih blokov"
+
+#: gtk/gtklevelbar.c:1116
+msgid "Minimum height for blocks that fill the bar"
+msgstr "Najmanjša višina blokov, ki zapolnijo vrstico"
+
+#: gtk/gtklevelbar.c:1132
+msgid "Minimum width for filling blocks"
+msgstr "Najmanjša širina polnilnih blokov"
+
+#: gtk/gtklevelbar.c:1133
+msgid "Minimum width for blocks that fill the bar"
+msgstr "Najmanjša širina blokov, ki zapolnijo vrstico"
+
#: gtk/gtklinkbutton.c:168
msgid "URI"
msgstr "URI"
@@ -3483,11 +4767,11 @@ msgstr "Obiskano"
msgid "Whether this link has been visited."
msgstr "Ali je bila povezava obiskana."
-#: gtk/gtklistbox.c:3443
+#: gtk/gtklistbox.c:3907
msgid "Whether this row can be activated"
msgstr "Ali je vrstico mogoče omogočiti?"
-#: gtk/gtklistbox.c:3457
+#: gtk/gtklistbox.c:3921
msgid "Whether this row can be selected"
msgstr "Ali je to vrstico mogoče izbrati?"
@@ -3541,38 +4825,50 @@ msgid ""
msgstr ""
"Orodni namig za prikaz podatkov, kdaj uporabnik nima pooblastila za overitev."
-#: gtk/gtkmagnifier.c:284
+#: gtk/gtkmagnifier.c:295
msgid "Inspected"
msgstr "Proučeni"
-#: gtk/gtkmagnifier.c:285
+#: gtk/gtkmagnifier.c:296
msgid "Inspected widget"
msgstr "Proučeni gradnik"
-#: gtk/gtkmagnifier.c:291 gtk/gtkmagnifier.c:292
+#: gtk/gtkmagnifier.c:302 gtk/gtkmagnifier.c:303
msgid "magnification"
msgstr "povečava"
-#: gtk/gtkmagnifier.c:298 gtk/gtkmagnifier.c:299
+#: gtk/gtkmagnifier.c:309 gtk/gtkmagnifier.c:310
msgid "resize"
msgstr "spremeni velikost"
-#: gtk/gtkmenubar.c:180
+#: gtk/gtkmenubar.c:219
msgid "Pack direction"
msgstr "Smer zlaganja"
-#: gtk/gtkmenubar.c:181
+#: gtk/gtkmenubar.c:220
msgid "The pack direction of the menubar"
msgstr "Smer zlaganja menijske vrstice"
-#: gtk/gtkmenubar.c:197
+#: gtk/gtkmenubar.c:236
msgid "Child Pack direction"
msgstr "Smer zlaganja podrejenega predmeta"
-#: gtk/gtkmenubar.c:198
+#: gtk/gtkmenubar.c:237
msgid "The child pack direction of the menubar"
msgstr "Smer zlaganja podrejenega predmeta menijske vrstice"
+#: gtk/gtkmenubar.c:254
+msgid "Style of bevel around the menubar"
+msgstr "Slog obrobe okoli menijske vrstice"
+
+#: gtk/gtkmenubar.c:270 gtk/gtktoolbar.c:630
+msgid "Internal padding"
+msgstr "Notranje blazinjenje"
+
+#: gtk/gtkmenubar.c:271
+msgid "Amount of border space between the menubar shadow and the menu items"
+msgstr "Količina obrobe med senco menijske vrstice in predmeti menija"
+
#: gtk/gtkmenubutton.c:486
msgid "Popup"
msgstr "Pojavno okno"
@@ -3597,7 +4893,8 @@ msgstr "Poravnaj z"
msgid "The parent widget which the menu should align with."
msgstr "Nadrejeni gradnik, s katerim naj se poravna meni."
-#: gtk/gtkmenubutton.c:534 gtk/gtkshortcutsshortcut.c:680
+#: gtk/gtkmenubutton.c:534 gtk/gtkshortcutsshortcut.c:645
+#: gtk/gtkstylecontext.c:243
msgid "Direction"
msgstr "Smer"
@@ -3621,255 +4918,365 @@ msgstr "Pojavnik"
msgid "The popover"
msgstr "Pojavnik"
-#: gtk/gtkmenu.c:615
+#: gtk/gtkmenu.c:633
msgid "The currently selected menu item"
msgstr "Trenutno izbran predmet menija"
-#: gtk/gtkmenu.c:629
-msgid "Accel Group"
-msgstr "Pospeševalna skupina"
-
-#: gtk/gtkmenu.c:630
+#: gtk/gtkmenu.c:648
msgid "The accel group holding accelerators for the menu"
msgstr "Pospeševalna skupina, ki drži pospeševalnike menija"
-#: gtk/gtkmenu.c:644 gtk/gtkmenuitem.c:627
+#: gtk/gtkmenu.c:662 gtk/gtkmenuitem.c:775
msgid "Accel Path"
msgstr "Pot pospeševalnika"
-#: gtk/gtkmenu.c:645
+#: gtk/gtkmenu.c:663
msgid "An accel path used to conveniently construct accel paths of child items"
msgstr ""
"Pot pospeševalnika, uporabljena za izgradnjo poti bližnjic podrejenih "
"predmetov"
-#: gtk/gtkmenu.c:661
+#: gtk/gtkmenu.c:679
msgid "Attach Widget"
msgstr "Pripni gradnik"
-#: gtk/gtkmenu.c:662
+#: gtk/gtkmenu.c:680
msgid "The widget the menu is attached to"
msgstr "Gradnik, na katerega je pripet meni"
-#: gtk/gtkmenu.c:676
+#: gtk/gtkmenu.c:696
+msgid ""
+"A title that may be displayed by the window manager when this menu is torn-"
+"off"
+msgstr "Naziv, ki ga lahko prikaže upravljalnik oken, kadar je meni odtrgan"
+
+#: gtk/gtkmenu.c:712
+msgid "Tearoff State"
+msgstr "Stanje odpenjalnika"
+
+#: gtk/gtkmenu.c:713
+msgid "A boolean that indicates whether the menu is torn-off"
+msgstr "Logična spremenljivka, ki določa, ali je meni odpet"
+
+#: gtk/gtkmenu.c:727
msgid "Monitor"
msgstr "Zaslon"
-#: gtk/gtkmenu.c:677
+#: gtk/gtkmenu.c:728
msgid "The monitor the menu will be popped up on"
msgstr "Zaslon, na katerem se bo pojavil meni"
-#: gtk/gtkmenu.c:697
+#: gtk/gtkmenu.c:748
msgid "Reserve Toggle Size"
msgstr "Ohrani velikost preklopa"
-#: gtk/gtkmenu.c:698
+#: gtk/gtkmenu.c:749
msgid ""
"A boolean that indicates whether the menu reserves space for toggles and "
"icons"
msgstr ""
"Logično določilo, ki določa ali naj meni ohranja prostor za preklop in ikone"
-#: gtk/gtkmenu.c:726
+#: gtk/gtkmenu.c:776
msgid "Anchor hints"
msgstr "Zasidraj namige"
-#: gtk/gtkmenu.c:727
+#: gtk/gtkmenu.c:777
msgid "Positioning hints for when the menu might fall off-screen"
msgstr "Postavitev namigov, kadar je meni okna izven območja zaslona"
-#: gtk/gtkmenu.c:755
+#: gtk/gtkmenu.c:804
msgid "Rect anchor dx"
msgstr "Sidro X"
-#: gtk/gtkmenu.c:756
+#: gtk/gtkmenu.c:805
msgid "Rect anchor horizontal offset"
msgstr "Vodoravni odmik sidrišča"
-#: gtk/gtkmenu.c:782
+#: gtk/gtkmenu.c:830
msgid "Rect anchor dy"
msgstr "Sidro Y"
-#: gtk/gtkmenu.c:783
+#: gtk/gtkmenu.c:831
msgid "Rect anchor vertical offset"
msgstr "Navpični odmik sidrišča"
-#: gtk/gtkmenu.c:809
+#: gtk/gtkmenu.c:856
msgid "Menu type hint"
msgstr "Vrsta namiga v meniju"
-#: gtk/gtkmenu.c:810
+#: gtk/gtkmenu.c:857
msgid "Menu window type hint"
msgstr "Namig vrste okna menija"
-#: gtk/gtkmenu.c:823
+#: gtk/gtkmenu.c:878
+msgid "Horizontal Padding"
+msgstr "Vodoravno blazinjenje"
+
+#: gtk/gtkmenu.c:879
+msgid "Extra space at the left and right edges of the menu"
+msgstr "Dodaten prostor na levi in desni strani menija"
+
+#: gtk/gtkmenu.c:897
+msgid "Vertical Padding"
+msgstr "Navpično blazinjenje"
+
+#: gtk/gtkmenu.c:898
+msgid "Extra space at the top and bottom of the menu"
+msgstr "Dodaten prostor na vrhu in na dnu menija"
+
+#: gtk/gtkmenu.c:907
+msgid "Vertical Offset"
+msgstr "Navpični odmik"
+
+#: gtk/gtkmenu.c:908
+msgid ""
+"When the menu is a submenu, position it this number of pixels offset "
+"vertically"
+msgstr ""
+"Kadar je meni podmeni, naj bo zamaknjen za toliko slikovnih točk navpično"
+
+#: gtk/gtkmenu.c:916
+msgid "Horizontal Offset"
+msgstr "Vodoravni odmik"
+
+#: gtk/gtkmenu.c:917
+msgid ""
+"When the menu is a submenu, position it this number of pixels offset "
+"horizontally"
+msgstr ""
+"Kadar je meni podmeni, naj bo zamaknjen za toliko slikovnih točk vodoravno"
+
+#: gtk/gtkmenu.c:932
+msgid "Double Arrows"
+msgstr "Dvojne puščice"
+
+#: gtk/gtkmenu.c:933
+msgid "When scrolling, always show both arrows."
+msgstr "Pri drsenju vedno pokaži obe puščici."
+
+#: gtk/gtkmenu.c:948
+msgid "Arrow Placement"
+msgstr "Postavitev puščice"
+
+#: gtk/gtkmenu.c:949
+msgid "Indicates where scroll arrows should be placed"
+msgstr "Določa kje bodo nameščene puščice drsnika"
+
+#: gtk/gtkmenu.c:957
msgid "Left Attach"
msgstr "Leva priloga"
-#: gtk/gtkmenu.c:831
+#: gtk/gtkmenu.c:965
msgid "Right Attach"
msgstr "Desna priloga"
-#: gtk/gtkmenu.c:832
+#: gtk/gtkmenu.c:966
msgid "The column number to attach the right side of the child to"
msgstr ""
"Številka stolpca, na katerega je pripeta desna stran podrejenega gradnika"
-#: gtk/gtkmenu.c:839
+#: gtk/gtkmenu.c:973
msgid "Top Attach"
msgstr "Vrhnja priloga"
-#: gtk/gtkmenu.c:840
+#: gtk/gtkmenu.c:974
msgid "The row number to attach the top of the child to"
msgstr "Številka vrstice, na katero je pripet vrh podrejenega gradnika"
-#: gtk/gtkmenu.c:847
+#: gtk/gtkmenu.c:981
msgid "Bottom Attach"
msgstr "Spodnja priloga"
-#: gtk/gtkmenu.c:848
-msgid "The row number to attach the bottom of the child to"
+#: gtk/gtkmenu.c:999
+msgid "Arbitrary constant to scale down the size of the scroll arrow"
+msgstr "Konstanta za prilagajanje velikosti puščice drsnika"
+
+#: gtk/gtkmenuitem.c:745
+msgid "Right Justified"
+msgstr "Desna poravnava"
+
+#: gtk/gtkmenuitem.c:746
+msgid ""
+"Sets whether the menu item appears justified at the right side of a menu bar"
msgstr ""
-"Številka vrstice, ki naj se priloži spodnji strani podrejenega gradnika"
+"Izbrana možnost omgoča, da je predmet menija poravnan na desni strani "
+"menijske vrstice"
-#: gtk/gtkmenuitem.c:611 gtk/gtkpopovermenu.c:363
+#: gtk/gtkmenuitem.c:759 gtk/gtkpopovermenu.c:376
msgid "Submenu"
msgstr "Podmeni"
-#: gtk/gtkmenuitem.c:612
+#: gtk/gtkmenuitem.c:760
msgid "The submenu attached to the menu item, or NULL if it has none"
msgstr "Podmeni, pripet glavnemu meniju, ali prazna vrednost, če ga ni"
-#: gtk/gtkmenuitem.c:628
+#: gtk/gtkmenuitem.c:776
msgid "Sets the accelerator path of the menu item"
msgstr "Določi pot pospeševalnika predmeta menija"
-#: gtk/gtkmenuitem.c:642
+#: gtk/gtkmenuitem.c:790
msgid "The text for the child label"
msgstr "Besedilo podrejene oznake"
-#: gtk/gtkmenushell.c:404
+#: gtk/gtkmenuitem.c:899
+msgid "Amount of space used up by arrow, relative to the menu item's font size"
+msgstr ""
+"Velikost prostora, ki ga porabi puščica, v razmerju z velikostjo pisave "
+"predmeta"
+
+#: gtk/gtkmenuitem.c:915
+msgid "Width in Characters"
+msgstr "Širina v znakih"
+
+#: gtk/gtkmenuitem.c:916
+msgid "The minimum desired width of the menu item in characters"
+msgstr "Najmanjša želena širina predmeta menija v znakih"
+
+#: gtk/gtkmenushell.c:419
msgid "Take Focus"
msgstr "Prevzemi dejavnost"
-#: gtk/gtkmenushell.c:405
+#: gtk/gtkmenushell.c:420
msgid "A boolean that determines whether the menu grabs the keyboard focus"
msgstr ""
"Logična spremenljivka, ki določa, ali meni prevzame dejavnost tipkovnice"
-#: gtk/gtkmenutoolbutton.c:261
+#: gtk/gtkmenutoolbutton.c:266
msgid "Menu"
msgstr "Meni"
-#: gtk/gtkmenutoolbutton.c:262
+#: gtk/gtkmenutoolbutton.c:267
msgid "The dropdown menu"
msgstr "Spustni meni"
-#: gtk/gtkmessagedialog.c:184
+#: gtk/gtkmessagedialog.c:174
+msgid "label border"
+msgstr "obroba oznake"
+
+#: gtk/gtkmessagedialog.c:175
+msgid "Width of border around the label in the message dialog"
+msgstr "Širina robu okoli oznake v pogovornem oknu"
+
+#: gtk/gtkmessagedialog.c:197
msgid "Message Buttons"
msgstr "Gumbi sporočila"
-#: gtk/gtkmessagedialog.c:185
+#: gtk/gtkmessagedialog.c:198
msgid "The buttons shown in the message dialog"
msgstr "Gumbi, ki se pokažejo v pogovornem oknu sporočila"
-#: gtk/gtkmessagedialog.c:202
+#: gtk/gtkmessagedialog.c:215
msgid "The primary text of the message dialog"
msgstr "Osnovno besedilo pogovornega okna sporočila"
-#: gtk/gtkmessagedialog.c:217
+#: gtk/gtkmessagedialog.c:230
msgid "Use Markup"
msgstr "Uporabi označevanje"
-#: gtk/gtkmessagedialog.c:218
+#: gtk/gtkmessagedialog.c:231
msgid "The primary text of the title includes Pango markup."
msgstr "Osnovno besedilo naslova vsebuje oznake Pango."
-#: gtk/gtkmessagedialog.c:232
+#: gtk/gtkmessagedialog.c:245
msgid "Secondary Text"
msgstr "Drugotno besedilo"
-#: gtk/gtkmessagedialog.c:233
+#: gtk/gtkmessagedialog.c:246
msgid "The secondary text of the message dialog"
msgstr "Drugotno besedilo okna s sporočilom"
-#: gtk/gtkmessagedialog.c:248
+#: gtk/gtkmessagedialog.c:261
msgid "Use Markup in secondary"
msgstr "Uporabi označevanje v drugotnem besedilu"
-#: gtk/gtkmessagedialog.c:249
+#: gtk/gtkmessagedialog.c:262
msgid "The secondary text includes Pango markup."
msgstr "Drugotno besedilo vsebuje oznake Pango."
-#: gtk/gtkmessagedialog.c:265
+#: gtk/gtkmessagedialog.c:277
+msgid "Image"
+msgstr "Slika"
+
+#: gtk/gtkmessagedialog.c:278
+msgid "The image"
+msgstr "Slika"
+
+#: gtk/gtkmessagedialog.c:294
msgid "Message area"
msgstr "Sporočilno področje"
-#: gtk/gtkmessagedialog.c:266
-msgid "GtkBox that holds the dialog’s primary and secondary labels"
+#: gtk/gtkmessagedialog.c:295
+msgid "GtkBox that holds the dialog's primary and secondary labels"
msgstr "Predmet GtkBox, ki vsebuje osnovne in drugotne oznake"
-#: gtk/gtkmodelbutton.c:934
+#: gtk/gtkmodelbutton.c:1128
msgid "Role"
msgstr "Vloga"
-#: gtk/gtkmodelbutton.c:935
+#: gtk/gtkmodelbutton.c:1129
msgid "The role of this button"
msgstr "Vloga tega gumba"
-#: gtk/gtkmodelbutton.c:951
+#: gtk/gtkmodelbutton.c:1145
msgid "The icon"
msgstr "Ikona"
-#: gtk/gtkmodelbutton.c:965
+#: gtk/gtkmodelbutton.c:1159
msgid "The text"
msgstr "Besedilo"
-#: gtk/gtkmodelbutton.c:994
+#: gtk/gtkmodelbutton.c:1175
+msgid "The text of the button includes XML markup. See pango_parse_markup()"
+msgstr ""
+"Besedilo gumba vključuje zapis XML. Za več podrobnosti si poglejte "
+"pango_parse_markup()."
+
+#: gtk/gtkmodelbutton.c:1204
msgid "Menu name"
msgstr "Ime menija"
-#: gtk/gtkmodelbutton.c:995
+#: gtk/gtkmodelbutton.c:1205
msgid "The name of the menu to open"
msgstr "Ime menija, ki naj se odpre"
-#: gtk/gtkmodelbutton.c:1011
+#: gtk/gtkmodelbutton.c:1221
msgid "Whether the menu is a parent"
msgstr "Ali je meni nadrejen"
-#: gtk/gtkmodelbutton.c:1025
+#: gtk/gtkmodelbutton.c:1235
msgid "Centered"
msgstr "Sredinjeno"
-#: gtk/gtkmodelbutton.c:1026
+#: gtk/gtkmodelbutton.c:1236
msgid "Whether to center the contents"
msgstr "Ali naj bodo vrstice besedila sredinjene"
-#: gtk/gtkmodelbutton.c:1041
+#: gtk/gtkmodelbutton.c:1251
msgid "Iconic"
msgstr "Ikonično"
-#: gtk/gtkmodelbutton.c:1042
+#: gtk/gtkmodelbutton.c:1252
msgid "Whether to prefer the icon over text"
msgstr "Ali naj imajo ikone prednost pred besedilom"
-#: gtk/gtkmountoperation.c:164 gtk/gtkstylecontext.c:232
+#: gtk/gtkmountoperation.c:163 gtk/gtkstylecontext.c:259
msgid "Parent"
msgstr "Nadrejeni predmet"
-#: gtk/gtkmountoperation.c:165
+#: gtk/gtkmountoperation.c:164
msgid "The parent window"
msgstr "Nadrejeno okno"
-#: gtk/gtkmountoperation.c:172
+#: gtk/gtkmountoperation.c:171
msgid "Is Showing"
msgstr "Je prikazano"
-#: gtk/gtkmountoperation.c:173
+#: gtk/gtkmountoperation.c:172
msgid "Are we showing a dialog"
msgstr "Ali naj je pogovorno okno prikazano"
-#: gtk/gtkmountoperation.c:181
+#: gtk/gtkmountoperation.c:180
msgid "The screen where this window will be displayed."
msgstr "Zaslon, na katerem bo to okno prikazano."
@@ -3881,7 +5288,7 @@ msgstr "Naziv pogovornega okna"
msgid "The title of the file chooser dialog"
msgstr "Naziv pogovornega okna za izbor datoteke."
-#: gtk/gtknativedialog.c:228 gtk/gtkpopover.c:1650 gtk/gtkwindow.c:889
+#: gtk/gtknativedialog.c:228 gtk/gtkpopover.c:1753 gtk/gtkwindow.c:786
msgid "Modal"
msgstr "Modalni"
@@ -3897,61 +5304,61 @@ msgstr ""
msgid "Whether the dialog is currently visible"
msgstr "Ali je pogovorno okno trenutno vidno"
-#: gtk/gtknativedialog.c:256 gtk/gtkwindow.c:1106
+#: gtk/gtknativedialog.c:256 gtk/gtkwindow.c:1061
msgid "Transient for Window"
msgstr "Začasno opravilo okna"
-#: gtk/gtknativedialog.c:257 gtk/gtkwindow.c:1107
+#: gtk/gtknativedialog.c:257 gtk/gtkwindow.c:1062
msgid "The transient parent of the dialog"
msgstr "Začasno nadrejeno opravilo sporočila"
-#: gtk/gtknotebook.c:715
+#: gtk/gtknotebook.c:765
msgid "Page"
msgstr "Stran"
-#: gtk/gtknotebook.c:716
+#: gtk/gtknotebook.c:766
msgid "The index of the current page"
msgstr "Kazalo trenutne strani"
-#: gtk/gtknotebook.c:723
+#: gtk/gtknotebook.c:773
msgid "Tab Position"
msgstr "Položaj zavihka"
-#: gtk/gtknotebook.c:724
+#: gtk/gtknotebook.c:774
msgid "Which side of the notebook holds the tabs"
msgstr "Na kateri strani beležke so zavihki"
-#: gtk/gtknotebook.c:731
+#: gtk/gtknotebook.c:781
msgid "Show Tabs"
msgstr "Pokaži zavihke"
-#: gtk/gtknotebook.c:732
+#: gtk/gtknotebook.c:782
msgid "Whether tabs should be shown"
msgstr "Ali naj bodo zavihki prikazani"
-#: gtk/gtknotebook.c:738
+#: gtk/gtknotebook.c:788
msgid "Show Border"
msgstr "Pokaži obrobo"
-#: gtk/gtknotebook.c:739
+#: gtk/gtknotebook.c:789
msgid "Whether the border should be shown"
msgstr "Ali naj bo obroba prikazana"
-#: gtk/gtknotebook.c:745
+#: gtk/gtknotebook.c:795
msgid "Scrollable"
msgstr "Drsljivo"
-#: gtk/gtknotebook.c:746
+#: gtk/gtknotebook.c:796
msgid "If TRUE, scroll arrows are added if there are too many tabs to fit"
msgstr ""
"Izbrana možnost omogoča, da se ob prevelikem številu zavihkov za prikaz "
"dodajo drsne puščice"
-#: gtk/gtknotebook.c:752
+#: gtk/gtknotebook.c:802
msgid "Enable Popup"
msgstr "Omogoči pojavni meni"
-#: gtk/gtknotebook.c:753
+#: gtk/gtknotebook.c:803
msgid ""
"If TRUE, pressing the right mouse button on the notebook pops up a menu that "
"you can use to go to a page"
@@ -3959,79 +5366,155 @@ msgstr ""
"Izbrana možnost omogoča, da se ob pritisku na desni miškin gumb nad beležko "
"prikaže meni, ki se lahko uporabi za dostop do strani"
-#: gtk/gtknotebook.c:766
+#: gtk/gtknotebook.c:816
msgid "Group Name"
msgstr "Ime skupine"
-#: gtk/gtknotebook.c:767
+#: gtk/gtknotebook.c:817
msgid "Group name for tab drag and drop"
msgstr "Ime skupine za vlečenje in spuščanje zavihkov"
-#: gtk/gtknotebook.c:776
+#: gtk/gtknotebook.c:826
msgid "Tab label"
msgstr "Oznaka zavihka"
-#: gtk/gtknotebook.c:777
-msgid "The string displayed on the child’s tab label"
+#: gtk/gtknotebook.c:827
+msgid "The string displayed on the child's tab label"
msgstr "Niz, prikazan v oznaki zavihka podrejenega predmeta"
-#: gtk/gtknotebook.c:783
+#: gtk/gtknotebook.c:833
msgid "Menu label"
msgstr "Oznaka menija"
-#: gtk/gtknotebook.c:784
-msgid "The string displayed in the child’s menu entry"
+#: gtk/gtknotebook.c:834
+msgid "The string displayed in the child's menu entry"
msgstr "Niz, prikazan v meniju podrejenega predmeta"
-#: gtk/gtknotebook.c:797
+#: gtk/gtknotebook.c:847
msgid "Tab expand"
msgstr "Razširitev zavihka"
-#: gtk/gtknotebook.c:798
-msgid "Whether to expand the child’s tab"
+#: gtk/gtknotebook.c:848
+msgid "Whether to expand the child's tab"
msgstr "Ali naj se razširi zavihek podrejenega predmeta"
-#: gtk/gtknotebook.c:804
+#: gtk/gtknotebook.c:854
msgid "Tab fill"
msgstr "Polnjenje zavihka"
-#: gtk/gtknotebook.c:805
-msgid "Whether the child’s tab should fill the allocated area"
+#: gtk/gtknotebook.c:855
+msgid "Whether the child's tab should fill the allocated area"
msgstr "Ali naj zavihek podrejenega predmeta zapolni celotno dodeljeno območje"
-#: gtk/gtknotebook.c:812
+#: gtk/gtknotebook.c:862
msgid "Tab reorderable"
msgstr "Prerazvrstljiv zavihek"
-#: gtk/gtknotebook.c:813
+#: gtk/gtknotebook.c:863
msgid "Whether the tab is reorderable by user action"
msgstr "Ali naj bo zavihek mogoče prerazvrstiti z dejanjem uporabnika"
-#: gtk/gtknotebook.c:819
+#: gtk/gtknotebook.c:869
msgid "Tab detachable"
msgstr "Odpenljiv zavihek"
-#: gtk/gtknotebook.c:820
+#: gtk/gtknotebook.c:870
msgid "Whether the tab is detachable"
msgstr "Ali je zavihek mogoče odpeti"
-#: gtk/gtkorientable.c:60
+#: gtk/gtknotebook.c:885 gtk/gtkscrollbar.c:136
+msgid "Secondary backward stepper"
+msgstr "Drugotni povratni koračnik"
+
+#: gtk/gtknotebook.c:886
+msgid ""
+"Display a second backward arrow button on the opposite end of the tab area"
+msgstr ""
+"Pokaži drugi gumb s puščico nazaj na nasprotnem koncu področja zavihkov"
+
+#: gtk/gtknotebook.c:901 gtk/gtkscrollbar.c:143
+msgid "Secondary forward stepper"
+msgstr "Drugotni koračnik naprej"
+
+#: gtk/gtknotebook.c:902
+msgid ""
+"Display a second forward arrow button on the opposite end of the tab area"
+msgstr ""
+"Pokaži drugi gumb s puščico naprej na nasprotnem koncu področja zavihkov"
+
+#: gtk/gtknotebook.c:916 gtk/gtkscrollbar.c:122
+msgid "Backward stepper"
+msgstr "Povratni koračnik"
+
+#: gtk/gtknotebook.c:917 gtk/gtkscrollbar.c:123
+msgid "Display the standard backward arrow button"
+msgstr "Pokaži običajni gumb s puščico za nazaj"
+
+#: gtk/gtknotebook.c:931 gtk/gtkscrollbar.c:129
+msgid "Forward stepper"
+msgstr "Koračnik naprej"
+
+#: gtk/gtknotebook.c:932 gtk/gtkscrollbar.c:130
+msgid "Display the standard forward arrow button"
+msgstr "Pokaži običajni gumb s puščico za naprej"
+
+#: gtk/gtknotebook.c:949
+msgid "Tab overlap"
+msgstr "Prekrivanje zavihkov"
+
+#: gtk/gtknotebook.c:950
+msgid "Size of tab overlap area"
+msgstr "Velikost področja prekrivanja zavihkov"
+
+#: gtk/gtknotebook.c:968
+msgid "Tab curvature"
+msgstr "Ukrivljenost zavihka"
+
+#: gtk/gtknotebook.c:969
+msgid "Size of tab curvature"
+msgstr "Velikost ukrivljenosti zavihka"
+
+#: gtk/gtknotebook.c:988
+msgid "Arrow spacing"
+msgstr "Razmik puščic"
+
+#: gtk/gtknotebook.c:989
+msgid "Scroll arrow spacing"
+msgstr "Razmik drsne puščice"
+
+#: gtk/gtknotebook.c:1008
+msgid "Initial gap"
+msgstr "Začetni zamik"
+
+#: gtk/gtknotebook.c:1009
+msgid "Initial gap before the first tab"
+msgstr "Začetni zamik pred prvim zavihkom"
+
+#: gtk/gtknotebook.c:1029
+msgid "Tab gap"
+msgstr "Razmik med zavihki"
+
+#: gtk/gtknotebook.c:1030
+msgid "Active tab is drawn with a gap at the bottom"
+msgstr "Dejavni zavihek je izrisan z zamikom na spodnjem delu"
+
+#: gtk/gtkorientable.c:62
msgid "The orientation of the orientable"
msgstr "Usmeritev predmetov, ki jih je mogoče usmeriti"
-#: gtk/gtkoverlay.c:623
+#: gtk/gtkoverlay.c:779
msgid "Pass Through"
msgstr "Prehod"
-#: gtk/gtkoverlay.c:623
+#: gtk/gtkoverlay.c:779
msgid "Pass through input, does not affect main child"
msgstr "Vnos na prehodu ne vpliva na glavno podrejeno okno"
-#: gtk/gtkoverlay.c:636
+#: gtk/gtkoverlay.c:792
msgid "Index"
msgstr "Kazalo"
-#: gtk/gtkoverlay.c:637
+#: gtk/gtkoverlay.c:793
msgid "The index of the overlay in the parent, -1 for the main child"
msgstr "Kazalo prekivanja nadrejenega okna, -1 za glavni podrejeni predmet"
@@ -4051,76 +5534,84 @@ msgstr "Tablična naprava"
msgid "Pad device to control"
msgstr "Tablična naprava za nadzor"
-#: gtk/gtkpaned.c:389
+#: gtk/gtkpaned.c:369
msgid ""
"Position of paned separator in pixels (0 means all the way to the left/top)"
msgstr ""
"Položaj ločilnika v slikovnih točkah (0 pomeni popolnoma na levi/na vrhu)"
-#: gtk/gtkpaned.c:396
+#: gtk/gtkpaned.c:376
msgid "Position Set"
msgstr "Nastavi položaj"
-#: gtk/gtkpaned.c:397
+#: gtk/gtkpaned.c:377
msgid "TRUE if the Position property should be used"
msgstr "Izbrana možnost omogoča, da se uporabi lastnost položaja."
-#: gtk/gtkpaned.c:413
+#: gtk/gtkpaned.c:393
msgid "Minimal Position"
msgstr "Najmanjši položaj"
-#: gtk/gtkpaned.c:414
-msgid "Smallest possible value for the “position” property"
-msgstr "Najnižja možna vrednost za lastnost »položaj«"
+#: gtk/gtkpaned.c:394
+msgid "Smallest possible value for the \"position\" property"
+msgstr "Najnižja možna vrednost za lastnost \"Položaj\""
-#: gtk/gtkpaned.c:430
+#: gtk/gtkpaned.c:410
msgid "Maximal Position"
msgstr "Največji položaj"
-#: gtk/gtkpaned.c:431
-msgid "Largest possible value for the “position” property"
-msgstr "Najvišja možna vrednost za lastnost »položaj«"
+#: gtk/gtkpaned.c:411
+msgid "Largest possible value for the \"position\" property"
+msgstr "Najvišja možna vrednost za lastnost \"Položaj\""
-#: gtk/gtkpaned.c:447
+#: gtk/gtkpaned.c:427
msgid "Wide Handle"
msgstr "Široka ročica"
-#: gtk/gtkpaned.c:448
+#: gtk/gtkpaned.c:428
msgid "Whether the paned should have a prominent handle"
msgstr "Ali naj ima okvir konkretno ročico"
-#: gtk/gtkpaned.c:463
+#: gtk/gtkpaned.c:441
+msgid "Handle Size"
+msgstr "Velikost ročice"
+
+#: gtk/gtkpaned.c:442
+msgid "Width of handle"
+msgstr "Širina ročice"
+
+#: gtk/gtkpaned.c:459
msgid "Resize"
msgstr "Spremeni velikost"
-#: gtk/gtkpaned.c:464
+#: gtk/gtkpaned.c:460
msgid "If TRUE, the child expands and shrinks along with the paned widget"
msgstr ""
"Izbrana možnost omogoča, da podrejeno opravilo spreminja velikost skupaj z "
"gradnikom"
-#: gtk/gtkpaned.c:479
+#: gtk/gtkpaned.c:475
msgid "Shrink"
msgstr "Skrči"
-#: gtk/gtkpaned.c:480
+#: gtk/gtkpaned.c:476
msgid "If TRUE, the child can be made smaller than its requisition"
msgstr ""
"Izbrana možnost omogoča, da je podrejeno opravilo manjše od zahtevanega"
-#: gtk/gtkplacessidebar.c:4352
+#: gtk/gtkplacessidebar.c:4789
msgid "Location to Select"
msgstr "Izbro mesta"
-#: gtk/gtkplacessidebar.c:4353
+#: gtk/gtkplacessidebar.c:4790
msgid "The location to highlight in the sidebar"
msgstr "Mesto za poudarjanje v bočnem oknu"
-#: gtk/gtkplacessidebar.c:4358 gtk/gtkplacesview.c:2221
+#: gtk/gtkplacessidebar.c:4795 gtk/gtkplacesview.c:2283
msgid "Open Flags"
msgstr "Odpri zastavice"
-#: gtk/gtkplacessidebar.c:4359 gtk/gtkplacesview.c:2222
+#: gtk/gtkplacessidebar.c:4796 gtk/gtkplacesview.c:2284
msgid ""
"Modes in which the calling application can open locations selected in the "
"sidebar"
@@ -4128,164 +5619,204 @@ msgstr ""
"Načini, v katerih lahko program za klic odpira mesta, ki so izbrana v bočnem "
"oknu"
-#: gtk/gtkplacessidebar.c:4365
+#: gtk/gtkplacessidebar.c:4802
msgid "Show recent files"
msgstr "Pokaži nedavne datoteke"
-#: gtk/gtkplacessidebar.c:4366
+#: gtk/gtkplacessidebar.c:4803
msgid "Whether the sidebar includes a builtin shortcut for recent files"
msgstr "Ali bočno okno vključuje tudi vgrajeno bližnjico do nedavnih datotek"
-#: gtk/gtkplacessidebar.c:4371
-msgid "Show “Desktop”"
+#: gtk/gtkplacessidebar.c:4808
+msgid "Show 'Desktop'"
msgstr "Pokaži »Namizje«"
-#: gtk/gtkplacessidebar.c:4372
+#: gtk/gtkplacessidebar.c:4809
msgid "Whether the sidebar includes a builtin shortcut to the Desktop folder"
msgstr "Ali naj bočno okno vključuje tudi bližnico do mape namizja"
-#: gtk/gtkplacessidebar.c:4377
-msgid "Show “Enter Location”"
+#: gtk/gtkplacessidebar.c:4814
+msgid "Show 'Connect to Server'"
+msgstr "Pokaži možnost 'Poveži s strežnikom'"
+
+#: gtk/gtkplacessidebar.c:4815
+msgid ""
+"Whether the sidebar includes a builtin shortcut to a 'Connect to server' "
+"dialog"
+msgstr ""
+"Ali naj bočno okno vključuje tudi bližnico do pogovornega okna 'Povezave s "
+"strežnikom'"
+
+#: gtk/gtkplacessidebar.c:4820
+msgid "Show 'Enter Location'"
msgstr "Pokaži »Vpis mesta«"
-#: gtk/gtkplacessidebar.c:4378
+#: gtk/gtkplacessidebar.c:4821
msgid ""
"Whether the sidebar includes a builtin shortcut to manually enter a location"
msgstr "Ali naj bočno okno vključuje tudi bližnico do polja za vnos mesta"
-#: gtk/gtkplacessidebar.c:4384 gtk/gtkplacesview.c:2201
+#: gtk/gtkplacessidebar.c:4827 gtk/gtkplacesview.c:2263
msgid "Whether the sidebar only includes local files"
msgstr "Ali naj bočno okno vključuje le krajevne datoteke"
-#: gtk/gtkplacessidebar.c:4389
-msgid "Show “Trash”"
+#: gtk/gtkplacessidebar.c:4832
+msgid "Show 'Trash'"
msgstr "Pokaži »Smeti«"
-#: gtk/gtkplacessidebar.c:4390
+#: gtk/gtkplacessidebar.c:4833
msgid "Whether the sidebar includes a builtin shortcut to the Trash location"
msgstr "Ali bočno okno vključuje tudi vgrajeno bližnjico do Smeti"
-#: gtk/gtkplacessidebar.c:4395
-msgid "Show “Other locations”"
+#: gtk/gtkplacessidebar.c:4838
+msgid "Show 'Other locations'"
msgstr "Pokaži »Druga mesta«"
-#: gtk/gtkplacessidebar.c:4396
+#: gtk/gtkplacessidebar.c:4839
msgid "Whether the sidebar includes an item to show external locations"
msgstr "Ali bočno okno vključuje tudi predmet, ki kaže zunanja omrežna mesta"
-#: gtk/gtkplacessidebar.c:4411
+#: gtk/gtkplacessidebar.c:4844
+msgid "Show “Starred Location”"
+msgstr "Pokaži »Mesta z zvezdico«"
+
+#: gtk/gtkplacessidebar.c:4845
+msgid "Whether the sidebar includes an item to show starred files"
+msgstr "Ali bočno okno vključuje tudi predmet, ki kaže datoteke z zvezdico"
+
+#: gtk/gtkplacessidebar.c:4861
msgid "Whether to emit ::populate-popup for popups that are not menus"
msgstr "Ali naj se izpolnijo pojavna okna za okna ni niso meni"
-#: gtk/gtkplacesview.c:2207
+#: gtk/gtkplacesview.c:2269
msgid "Loading"
msgstr "Poteka nalaganje"
-#: gtk/gtkplacesview.c:2208
+#: gtk/gtkplacesview.c:2270
msgid "Whether the view is loading locations"
msgstr "Ali pogled nalaga omrežna mesta"
-#: gtk/gtkplacesview.c:2214
+#: gtk/gtkplacesview.c:2276
msgid "Fetching networks"
msgstr "Pridobivanje omrežij"
-#: gtk/gtkplacesview.c:2215
+#: gtk/gtkplacesview.c:2277
msgid "Whether the view is fetching networks"
msgstr "Ali pogled pridobiva omrežja"
-#: gtk/gtkplacesviewrow.c:327
+#: gtk/gtkplacesviewrow.c:329
msgid "Icon of the row"
msgstr "Ikona vrstice"
-#: gtk/gtkplacesviewrow.c:328
+#: gtk/gtkplacesviewrow.c:330
msgid "The icon representing the volume"
msgstr "Ikona, ki določa pogon"
-#: gtk/gtkplacesviewrow.c:334
+#: gtk/gtkplacesviewrow.c:336
msgid "Name of the volume"
msgstr "Ime pogona"
-#: gtk/gtkplacesviewrow.c:335
+#: gtk/gtkplacesviewrow.c:337
msgid "The name of the volume"
msgstr "Ime pogona"
-#: gtk/gtkplacesviewrow.c:341
+#: gtk/gtkplacesviewrow.c:343
msgid "Path of the volume"
msgstr "Pot nosilca"
-#: gtk/gtkplacesviewrow.c:342
+#: gtk/gtkplacesviewrow.c:344
msgid "The path of the volume"
msgstr "Pot nosilca"
-#: gtk/gtkplacesviewrow.c:348
+#: gtk/gtkplacesviewrow.c:350
msgid "Volume represented by the row"
msgstr "Pogon, ki ga določa vrstica"
-#: gtk/gtkplacesviewrow.c:349
+#: gtk/gtkplacesviewrow.c:351
msgid "The volume represented by the row"
msgstr "Pogon, ki ga določa vrstica"
-#: gtk/gtkplacesviewrow.c:355
+#: gtk/gtkplacesviewrow.c:357
msgid "Mount represented by the row"
msgstr "Priklop, ki ga določa vrstica"
-#: gtk/gtkplacesviewrow.c:356
+#: gtk/gtkplacesviewrow.c:358
msgid "The mount point represented by the row, if any"
msgstr "Priklopna točka, ki jo določa vrstica, če je navedena"
-#: gtk/gtkplacesviewrow.c:362
+#: gtk/gtkplacesviewrow.c:364
msgid "File represented by the row"
msgstr "Datoteka, ki jo določa vrstica"
-#: gtk/gtkplacesviewrow.c:363
+#: gtk/gtkplacesviewrow.c:365
msgid "The file represented by the row, if any"
msgstr "Datoteka, ki jo določa vrstica, če je navedena"
-#: gtk/gtkplacesviewrow.c:369 gtk/gtkplacesviewrow.c:370
+#: gtk/gtkplacesviewrow.c:371 gtk/gtkplacesviewrow.c:372
msgid "Whether the row represents a network location"
msgstr "Ali vrstica predstavlja omrežno mesto"
-#: gtk/gtkpopover.c:1607
+#: gtk/gtkplug.c:197
+msgid "Whether the plug is embedded"
+msgstr "Ali je vtič vstavljen"
+
+#: gtk/gtkplug.c:211
+msgid "Socket Window"
+msgstr "Okno vtiča"
+
+#: gtk/gtkplug.c:212
+msgid "The window of the socket the plug is embedded in"
+msgstr "Okno vtiča, v katerega je vstavljen vtič"
+
+#: gtk/gtkpopover.c:1710
msgid "Relative to"
msgstr "Relativno na"
-#: gtk/gtkpopover.c:1608
+#: gtk/gtkpopover.c:1711
msgid "Widget the bubble window points to"
msgstr "Gradnik, na katerega kaže obvestilo v oblačku"
-#: gtk/gtkpopover.c:1621
+#: gtk/gtkpopover.c:1724
msgid "Pointing to"
msgstr "Kaže na"
-#: gtk/gtkpopover.c:1622
+#: gtk/gtkpopover.c:1725
msgid "Rectangle the bubble window points to"
msgstr "Polje, na katerega kaže obvestilo v oblačku"
-#: gtk/gtkpopover.c:1636
+#: gtk/gtkpopover.c:1739
msgid "Position to place the bubble window"
msgstr "Položaj prikaza obvestila v oblačku"
-#: gtk/gtkpopover.c:1651
+#: gtk/gtkpopover.c:1754
msgid "Whether the popover is modal"
msgstr "Ali je pojavnik modalen"
-#: gtk/gtkpopover.c:1664
+#: gtk/gtkpopover.c:1771
+msgid "Transitions enabled"
+msgstr "Prehodi omogočeni"
+
+#: gtk/gtkpopover.c:1772
+msgid "Whether show/hide transitions are enabled or not"
+msgstr "Ali naj bodo prehodi prikazovanja/skrivanja omogočeni ali ne"
+
+#: gtk/gtkpopover.c:1785
msgid "Constraint"
msgstr "Omejitev"
-#: gtk/gtkpopover.c:1665
+#: gtk/gtkpopover.c:1786
msgid "Constraint for the popover position"
msgstr "Omejitev položaja pojavnega menija"
-#: gtk/gtkpopovermenu.c:346
+#: gtk/gtkpopovermenu.c:359
msgid "Visible submenu"
msgstr "Vidni podmeni"
-#: gtk/gtkpopovermenu.c:347
+#: gtk/gtkpopovermenu.c:360
msgid "The name of the visible submenu"
msgstr "Ime vidnega podmenija"
-#: gtk/gtkpopovermenu.c:364
+#: gtk/gtkpopovermenu.c:377
msgid "The name of the submenu"
msgstr "Ime podmenija"
@@ -4405,7 +5936,7 @@ msgstr "Nastavitve"
msgid "Printer settings"
msgstr "Nastavitve tiskalnika"
-#: gtk/gtkprintjob.c:159 gtk/gtkprintjob.c:160 gtk/gtkprintunixdialog.c:415
+#: gtk/gtkprintjob.c:159 gtk/gtkprintjob.c:160 gtk/gtkprintunixdialog.c:412
msgid "Page Setup"
msgstr "Nastavitev strani"
@@ -4430,11 +5961,11 @@ msgstr "Privzeta nastavitev strani"
msgid "The GtkPageSetup used by default"
msgstr "Privzeto uporabljeni GtkPageSetup"
-#: gtk/gtkprintoperation.c:1128 gtk/gtkprintunixdialog.c:433
+#: gtk/gtkprintoperation.c:1128 gtk/gtkprintunixdialog.c:430
msgid "Print Settings"
msgstr "Nastavitve tiskanja"
-#: gtk/gtkprintoperation.c:1129 gtk/gtkprintunixdialog.c:434
+#: gtk/gtkprintoperation.c:1129 gtk/gtkprintunixdialog.c:431
msgid "The GtkPrintSettings used for initializing the dialog"
msgstr "Nastavitve predmeta GtkPrintSettings, uporabljene za zagon okna"
@@ -4454,11 +5985,11 @@ msgstr "Število strani"
msgid "The number of pages in the document."
msgstr "Število strani v dokumentu."
-#: gtk/gtkprintoperation.c:1194 gtk/gtkprintunixdialog.c:423
+#: gtk/gtkprintoperation.c:1194 gtk/gtkprintunixdialog.c:420
msgid "Current Page"
msgstr "Trenutna stran"
-#: gtk/gtkprintoperation.c:1195 gtk/gtkprintunixdialog.c:424
+#: gtk/gtkprintoperation.c:1195 gtk/gtkprintunixdialog.c:421
msgid "The current page in the document"
msgstr "Trenutna stran v dokumentu"
@@ -4534,7 +6065,7 @@ msgstr "Oznaka zavihka po meri"
msgid "Label for the tab containing custom widgets."
msgstr "Oznaka za zavihek, ki vsebuje gradnike po meri"
-#: gtk/gtkprintoperation.c:1391 gtk/gtkprintunixdialog.c:458
+#: gtk/gtkprintoperation.c:1391 gtk/gtkprintunixdialog.c:455
msgid "Support Selection"
msgstr "Podpora izbiranju"
@@ -4544,7 +6075,7 @@ msgstr ""
"Izbrana možnost omogoča, da opravilo tiskanja podpira tudi tiskanje "
"izbranega besedila."
-#: gtk/gtkprintoperation.c:1408 gtk/gtkprintunixdialog.c:466
+#: gtk/gtkprintoperation.c:1408 gtk/gtkprintunixdialog.c:463
msgid "Has Selection"
msgstr "Vsebuje izbrano"
@@ -4552,11 +6083,11 @@ msgstr "Vsebuje izbrano"
msgid "TRUE if a selection exists."
msgstr "Izbrana možnost določa, da izbor obstaja."
-#: gtk/gtkprintoperation.c:1424 gtk/gtkprintunixdialog.c:474
+#: gtk/gtkprintoperation.c:1424 gtk/gtkprintunixdialog.c:471
msgid "Embed Page Setup"
msgstr "Vstavi nastavljanje strani"
-#: gtk/gtkprintoperation.c:1425 gtk/gtkprintunixdialog.c:475
+#: gtk/gtkprintoperation.c:1425 gtk/gtkprintunixdialog.c:472
msgid "TRUE if page setup combos are embedded in GtkPrintUnixDialog"
msgstr ""
"Izbrana možnost določa, da so spustna okna nastavitve strani vstavljena v "
@@ -4570,64 +6101,64 @@ msgstr "Število strani za tiskanje"
msgid "The number of pages that will be printed."
msgstr "Število strani, ki bodo natisnjene."
-#: gtk/gtkprintunixdialog.c:416
+#: gtk/gtkprintunixdialog.c:413
msgid "The GtkPageSetup to use"
msgstr "GtkPageSetup, ki naj bo uporabljen"
-#: gtk/gtkprintunixdialog.c:441
+#: gtk/gtkprintunixdialog.c:438
msgid "Selected Printer"
msgstr "Izbrani tiskalnik"
-#: gtk/gtkprintunixdialog.c:442
+#: gtk/gtkprintunixdialog.c:439
msgid "The GtkPrinter which is selected"
msgstr "Izbrani predmet GtkPrinter"
-#: gtk/gtkprintunixdialog.c:449
+#: gtk/gtkprintunixdialog.c:446
msgid "Manual Capabilities"
msgstr "Ročne zmožnosti"
-#: gtk/gtkprintunixdialog.c:450
+#: gtk/gtkprintunixdialog.c:447
msgid "Capabilities the application can handle"
msgstr "Zmožnosti, ki jih program lahko opravlja"
-#: gtk/gtkprintunixdialog.c:459
+#: gtk/gtkprintunixdialog.c:456
msgid "Whether the dialog supports selection"
msgstr "Ali pogovorno okno podpira izbiranje"
-#: gtk/gtkprintunixdialog.c:467
+#: gtk/gtkprintunixdialog.c:464
msgid "Whether the application has a selection"
msgstr "Ali ima program izbor"
-#: gtk/gtkprogressbar.c:199
+#: gtk/gtkprogressbar.c:271
msgid "Fraction"
msgstr "Delež"
-#: gtk/gtkprogressbar.c:200
+#: gtk/gtkprogressbar.c:272
msgid "The fraction of total work that has been completed"
msgstr "Delež celotnega dela, ki je bil opravljen"
-#: gtk/gtkprogressbar.c:207
+#: gtk/gtkprogressbar.c:279
msgid "Pulse Step"
msgstr "Korak pulza"
-#: gtk/gtkprogressbar.c:208
+#: gtk/gtkprogressbar.c:280
msgid "The fraction of total progress to move the bouncing block when pulsed"
msgstr ""
"Delež celotnega napredka, ki naj premakne poskakujoč blok, ko je izzvan"
-#: gtk/gtkprogressbar.c:216
+#: gtk/gtkprogressbar.c:288
msgid "Text to be displayed in the progress bar"
msgstr "Besedilo, ki je prikazano v vrstici napredka."
-#: gtk/gtkprogressbar.c:237
+#: gtk/gtkprogressbar.c:309
msgid "Show text"
msgstr "Pokaži besedilo"
-#: gtk/gtkprogressbar.c:238
+#: gtk/gtkprogressbar.c:310
msgid "Whether the progress is shown as text."
msgstr "Ali naj je napredek prikazan kot besedilo."
-#: gtk/gtkprogressbar.c:259
+#: gtk/gtkprogressbar.c:331
msgid ""
"The preferred place to ellipsize the string, if the progress bar does not "
"have enough room to display the entire string, if at all."
@@ -4635,16 +6166,59 @@ msgstr ""
"Prednostno mesto okrajšanega niza, kadar vrstica napredka nima dovolj "
"prostora za prikaz celotnega niza."
-#: gtk/gtkradiobutton.c:184 gtk/gtkradiomenuitem.c:423
-#: gtk/gtkradiotoolbutton.c:83
-msgid "Group"
-msgstr "Skupina"
+#: gtk/gtkprogressbar.c:349
+msgid "X spacing"
+msgstr "Razmik X"
+
+#: gtk/gtkprogressbar.c:350
+msgid "Extra spacing applied to the width of a progress bar."
+msgstr "Dodaten razmik določen širini vrstice napredka."
+
+#: gtk/gtkprogressbar.c:364
+msgid "Y spacing"
+msgstr "Razmik Y"
+
+#: gtk/gtkprogressbar.c:365
+msgid "Extra spacing applied to the height of a progress bar."
+msgstr "Dodaten razmik določen višini vrstice napredka."
+
+#: gtk/gtkprogressbar.c:380
+msgid "Minimum horizontal bar width"
+msgstr "Najmanjša vodoravna širina vrstice"
+
+#: gtk/gtkprogressbar.c:381
+msgid "The minimum horizontal width of the progress bar"
+msgstr "Najmanjša vodoravna širina vrstice napredka."
+
+#: gtk/gtkprogressbar.c:395
+msgid "Minimum horizontal bar height"
+msgstr "Najmanjša vodoravna višina vrstice"
+
+#: gtk/gtkprogressbar.c:396
+msgid "Minimum horizontal height of the progress bar"
+msgstr "Najmanjša vodoravna višina vrstice napredka."
+
+#: gtk/gtkprogressbar.c:410
+msgid "Minimum vertical bar width"
+msgstr "Najmanjša navpična širina vrstice"
+
+#: gtk/gtkprogressbar.c:411
+msgid "The minimum vertical width of the progress bar"
+msgstr "Najmanjša navpična širina vrstice napredka."
+
+#: gtk/gtkprogressbar.c:425
+msgid "Minimum vertical bar height"
+msgstr "Najmanjša navpična višina vrstice"
+
+#: gtk/gtkprogressbar.c:426
+msgid "The minimum vertical height of the progress bar"
+msgstr "Najmanjša navpična višina vrstice napredka."
#: gtk/gtkradiobutton.c:185
msgid "The radio button whose group this widget belongs to."
msgstr "Izbirni gumb, katerega skupini pripada gradnik."
-#: gtk/gtkradiomenuitem.c:424
+#: gtk/gtkradiomenuitem.c:425
msgid "The radio menu item whose group this widget belongs to."
msgstr "Predmet izbirnega menija, katerega skupini pripada gradnik."
@@ -4652,126 +6226,208 @@ msgstr "Predmet izbirnega menija, katerega skupini pripada gradnik."
msgid "The radio tool button whose group this button belongs to."
msgstr "Orodni izbirni gumb, katerega skupini pripada gradnik."
-#: gtk/gtkrange.c:385
+#: gtk/gtkrange.c:435
msgid "The GtkAdjustment that contains the current value of this range object"
msgstr "GtkAdjustment, ki vsebuje trenutno vrednost tega predmeta"
-#: gtk/gtkrange.c:392
+#: gtk/gtkrange.c:442
msgid "Invert direction slider moves to increase range value"
msgstr "Obrni smer, v katero vodoravni drsnik povečuje obseg"
-#: gtk/gtkrange.c:407
+#: gtk/gtkrange.c:448
+msgid "Lower stepper sensitivity"
+msgstr "Občutljivost spodnjega koračnika"
+
+#: gtk/gtkrange.c:449
+msgid ""
+"The sensitivity policy for the stepper that points to the adjustment's lower "
+"side"
+msgstr "Pravila občutljivosti koračnika, ki kaže na spodnjo stran prilagoditve"
+
+#: gtk/gtkrange.c:456
+msgid "Upper stepper sensitivity"
+msgstr "Občutljivost zgornjega koračnika"
+
+#: gtk/gtkrange.c:457
+msgid ""
+"The sensitivity policy for the stepper that points to the adjustment's upper "
+"side"
+msgstr "Pravila občutljivosti koračnika, ki kaže na zgornjo stran prilagoditve"
+
+#: gtk/gtkrange.c:473
msgid "Show Fill Level"
msgstr "Pokaži raven polnjenja"
-#: gtk/gtkrange.c:408
+#: gtk/gtkrange.c:474
msgid "Whether to display a fill level indicator graphics on trough."
msgstr "Ali naj bo prikazan kazalnik ravni polnjenja zareze."
-#: gtk/gtkrange.c:423
+#: gtk/gtkrange.c:489
msgid "Restrict to Fill Level"
msgstr "Omejitev ravni polnjenja"
-#: gtk/gtkrange.c:424
+#: gtk/gtkrange.c:490
msgid "Whether to restrict the upper boundary to the fill level."
msgstr "Ali naj bo omejen zgornji rob ravni polnjenja"
-#: gtk/gtkrange.c:438
+#: gtk/gtkrange.c:504
msgid "Fill Level"
msgstr "Raven polnjenja"
-#: gtk/gtkrange.c:439
+#: gtk/gtkrange.c:505
msgid "The fill level."
msgstr "Raven polnjenja."
-#: gtk/gtkrange.c:454
+#: gtk/gtkrange.c:520
msgid "Round Digits"
msgstr "Zaokroževanje števil"
-#: gtk/gtkrange.c:455
+#: gtk/gtkrange.c:521
msgid "The number of digits to round the value to."
msgstr "Število števk za zaokroževanje vrednosti."
-#: gtk/gtkrecentchooser.c:117
+#: gtk/gtkrange.c:538 gtk/gtkswitch.c:947
+msgid "Slider Width"
+msgstr "Širina vodoravnega drsnika"
+
+#: gtk/gtkrange.c:539
+msgid "Width of scrollbar or scale thumb"
+msgstr "Širina drsnika ali gumba za povečavo"
+
+#: gtk/gtkrange.c:554
+msgid "Trough Border"
+msgstr "Zarezan rob"
+
+#: gtk/gtkrange.c:555
+msgid "Spacing between thumb/steppers and outer trough bevel"
+msgstr "Razmik med gumbom/koračnikom in zunanjo zarezo obrobe"
+
+#: gtk/gtkrange.c:570
+msgid "Stepper Size"
+msgstr "Velikost koračnika"
+
+#: gtk/gtkrange.c:571
+msgid "Length of step buttons at ends"
+msgstr "Dolžina koračnih gumbov na koncih"
+
+#: gtk/gtkrange.c:587
+msgid "Stepper Spacing"
+msgstr "Razmik koračnika"
+
+#: gtk/gtkrange.c:588
+msgid "Spacing between step buttons and thumb"
+msgstr "Razmik med gumbi korakov in sličico"
+
+#: gtk/gtkrange.c:603
+msgid "Arrow X Displacement"
+msgstr "Premik puščice po osi X"
+
+#: gtk/gtkrange.c:604
+msgid ""
+"How far in the x direction to move the arrow when the button is depressed"
+msgstr "Kako daleč v smeri X naj se premakne puščica, ko je gumb spuščen"
+
+#: gtk/gtkrange.c:619
+msgid "Arrow Y Displacement"
+msgstr "Premik puščice po osi Y"
+
+#: gtk/gtkrange.c:620
+msgid ""
+"How far in the y direction to move the arrow when the button is depressed"
+msgstr "Kako daleč v smeri Y naj se premakne puščica, ko je gumb spuščen"
+
+#: gtk/gtkrange.c:639
+msgid "Trough Under Steppers"
+msgstr "Zareza pod koračniki"
+
+#: gtk/gtkrange.c:640
+msgid ""
+"Whether to draw trough for full length of range or exclude the steppers and "
+"spacing"
+msgstr ""
+"Ali naj se izriše zareza skozi celotno dolžino območja ali pa se izloči "
+"koračnike in presledke"
+
+#: gtk/gtkrange.c:656
+msgid "Arrow scaling"
+msgstr "Prilagajanje velikosti puščice"
+
+#: gtk/gtkrange.c:657
+msgid "Arrow scaling with regard to scroll button size"
+msgstr "Prilagajanje puščic v povezavi z velikostjo drsnih gumbov"
+
+#: gtk/gtkrecentchooser.c:130
msgid "Recent Manager"
msgstr "Upravljalnik nedavnih datotek"
-#: gtk/gtkrecentchooser.c:118
+#: gtk/gtkrecentchooser.c:131
msgid "The RecentManager object to use"
msgstr "Predmet RecentManager, ki naj se uporabi"
-#: gtk/gtkrecentchooser.c:133
+#: gtk/gtkrecentchooser.c:146
msgid "Show Private"
msgstr "Pokaži zasebne"
-#: gtk/gtkrecentchooser.c:134
+#: gtk/gtkrecentchooser.c:147
msgid "Whether the private items should be displayed"
msgstr "Ali naj se prikažejo zasebni predmeti"
-#: gtk/gtkrecentchooser.c:148
+#: gtk/gtkrecentchooser.c:161
msgid "Show Tooltips"
msgstr "Pokaži orodne namige"
-#: gtk/gtkrecentchooser.c:149
+#: gtk/gtkrecentchooser.c:162
msgid "Whether there should be a tooltip on the item"
msgstr "Ali naj predmet vsebuje orodni namig"
-#: gtk/gtkrecentchooser.c:162
+#: gtk/gtkrecentchooser.c:175
msgid "Show Icons"
msgstr "Pokaži ikone"
-#: gtk/gtkrecentchooser.c:163
+#: gtk/gtkrecentchooser.c:176
msgid "Whether there should be an icon near the item"
msgstr "Ali naj bo blizu predmeta ikona"
-#: gtk/gtkrecentchooser.c:179
+#: gtk/gtkrecentchooser.c:192
msgid "Show Not Found"
msgstr "Prikaza ni mogoče najti"
-#: gtk/gtkrecentchooser.c:180
+#: gtk/gtkrecentchooser.c:193
msgid "Whether the items pointing to unavailable resources should be displayed"
msgstr "Ali naj bodo prikazani predmeti, ki so povezani z neobstoječimi viri."
-#: gtk/gtkrecentchooser.c:194
+#: gtk/gtkrecentchooser.c:207
msgid "Whether to allow multiple items to be selected"
msgstr "Ali naj je mogoče izbrati več predmetov hkrati"
-#: gtk/gtkrecentchooser.c:208
+#: gtk/gtkrecentchooser.c:221
msgid "Local only"
msgstr "Samo krajevno"
-#: gtk/gtkrecentchooser.c:209
+#: gtk/gtkrecentchooser.c:222
msgid "Whether the selected resource(s) should be limited to local file: URIs"
msgstr "Ali naj bodo izbrani viri omejeni na krajevno datoteko: URI."
-#: gtk/gtkrecentchooser.c:223
+#: gtk/gtkrecentchooser.c:236
msgid "Limit"
msgstr "Omejitev"
-#: gtk/gtkrecentchooser.c:224
+#: gtk/gtkrecentchooser.c:237
msgid "The maximum number of items to be displayed"
msgstr "Največje število prikazanih predmetov"
-#: gtk/gtkrecentchooser.c:237
+#: gtk/gtkrecentchooser.c:250
msgid "Sort Type"
msgstr "Vrsta razvrščanja"
-#: gtk/gtkrecentchooser.c:238
+#: gtk/gtkrecentchooser.c:251
msgid "The sorting order of the items displayed"
msgstr "Vrstni red prikazanih predmetov"
-#: gtk/gtkrecentchooser.c:254
+#: gtk/gtkrecentchooser.c:267
msgid "The current filter for selecting which resources are displayed"
msgstr "Trenutni filter za izbiranje virov, ki naj bodo prikazani"
-#: gtk/gtkrecentchoosermenu.c:216
-msgid "Show Numbers"
-msgstr "Pokaži številke"
-
-#: gtk/gtkrecentchoosermenu.c:217
-msgid "Whether the items should be displayed with a number"
-msgstr "Ali naj bodo predmeti prikazani s številkami"
-
#: gtk/gtkrecentmanager.c:290
msgid "The full path to the file to be used to store and read the list"
msgstr "Polna pot do datoteke uporabljene za shranjevanje in branje seznama"
@@ -4780,35 +6436,35 @@ msgstr "Polna pot do datoteke uporabljene za shranjevanje in branje seznama"
msgid "The size of the recently used resources list"
msgstr "Velikost seznama nedavno uporabljenih virov"
-#: gtk/gtkrevealer.c:236 gtk/gtkstack.c:366
+#: gtk/gtkrevealer.c:242 gtk/gtkstack.c:499
msgid "Transition type"
msgstr "Vrsta prehoda"
-#: gtk/gtkrevealer.c:237 gtk/gtkstack.c:366
+#: gtk/gtkrevealer.c:243 gtk/gtkstack.c:499
msgid "The type of animation used to transition"
msgstr "Vrsta a nimacije, uporabljene za prehode"
-#: gtk/gtkrevealer.c:244 gtk/gtkstack.c:362
+#: gtk/gtkrevealer.c:250 gtk/gtkstack.c:495
msgid "Transition duration"
msgstr "Trajanje prehoda"
-#: gtk/gtkrevealer.c:245 gtk/gtkstack.c:362
+#: gtk/gtkrevealer.c:251 gtk/gtkstack.c:495
msgid "The animation duration, in milliseconds"
msgstr "Trajanje animacije v milisekundah"
-#: gtk/gtkrevealer.c:251
+#: gtk/gtkrevealer.c:257
msgid "Reveal Child"
msgstr "Pokaži podrejen predmet"
-#: gtk/gtkrevealer.c:252
+#: gtk/gtkrevealer.c:258
msgid "Whether the container should reveal the child"
msgstr "Ali naj vsebnik pokaže podrejen predmet"
-#: gtk/gtkrevealer.c:258
+#: gtk/gtkrevealer.c:264
msgid "Child Revealed"
msgstr "Prikazan podrejen predmet"
-#: gtk/gtkrevealer.c:259
+#: gtk/gtkrevealer.c:265
msgid "Whether the child is revealed and the animation target reached"
msgstr "Ali naj bo podrejeni predmet prikazan in cilj animacije dosežen"
@@ -4833,34 +6489,51 @@ msgstr "Ikone"
msgid "List of icon names"
msgstr "Seznam imen ikon"
-#: gtk/gtkscale.c:710
+#: gtk/gtkscale.c:768
msgid "The number of decimal places that are displayed in the value"
msgstr "Število decimalnih mest prikaza vrednosti"
-#: gtk/gtkscale.c:717
+#: gtk/gtkscale.c:775
msgid "Draw Value"
msgstr "Nariši vrednost"
-#: gtk/gtkscale.c:718
+#: gtk/gtkscale.c:776
msgid "Whether the current value is displayed as a string next to the slider"
msgstr "Ali se trenutna vrednost izpisuje kot niz ob vodoravnem drsniku"
-#: gtk/gtkscale.c:724
+#: gtk/gtkscale.c:782
msgid "Has Origin"
msgstr "Ima izvor"
-#: gtk/gtkscale.c:725
+#: gtk/gtkscale.c:783
msgid "Whether the scale has an origin"
msgstr "Ali ima merilo izvorno točko"
-#: gtk/gtkscale.c:731
+#: gtk/gtkscale.c:789
msgid "Value Position"
msgstr "Položaj vrednosti"
-#: gtk/gtkscale.c:732
+#: gtk/gtkscale.c:790
msgid "The position in which the current value is displayed"
msgstr "Položaj, kjer se prikaže trenutna vrednost"
+#: gtk/gtkscale.c:807
+msgid "Slider Length"
+msgstr "Dolžina vodoravnega drsnika"
+
+#: gtk/gtkscale.c:808
+msgid "Length of scale's slider"
+msgstr "Dolžina merila vodoravnega drsnika"
+
+#: gtk/gtkscale.c:822
+msgid "Value spacing"
+msgstr "Razmik vrednosti"
+
+#: gtk/gtkscale.c:823
+msgid "Space between value text and the slider/trough area"
+msgstr ""
+"Prostor med besedilom vrednosti in območjem vodoravnega drsnika in zareze"
+
#: gtk/gtkscrollable.c:77
msgid "Horizontal adjustment"
msgstr "Vodoravna poravnava"
@@ -4895,142 +6568,194 @@ msgstr "Kako naj bo velikost vsebine določena"
msgid "Vertical Scrollable Policy"
msgstr "Pravila navpičnega drsenja"
-#: gtk/gtkscrollbar.c:224
-msgid "The GtkAdjustment that contains the current value of this scrollbar"
-msgstr "GtkAdjustment, ki vsebuje trenutno vrednost tega drsnika"
+#: gtk/gtkscrollbar.c:106
+msgid "Minimum Slider Length"
+msgstr "Najmanjša dolžina vodoravnega drsnika"
-#: gtk/gtkscrolledwindow.c:530
+#: gtk/gtkscrollbar.c:107
+msgid "Minimum length of scrollbar slider"
+msgstr "Najmanjša dolžina vodoravnega drsnika"
+
+#: gtk/gtkscrollbar.c:115
+msgid "Fixed slider size"
+msgstr "Nespremenljiva velikost vodoravnega drsnika"
+
+#: gtk/gtkscrollbar.c:116
+msgid "Don't change slider size, just lock it to the minimum length"
+msgstr ""
+"Ne spreminjaj velikosti vodoravnega drsnika, le zakleni jo na najmanjšo "
+"vrednost"
+
+#: gtk/gtkscrollbar.c:137
+msgid ""
+"Display a second backward arrow button on the opposite end of the scrollbar"
+msgstr "Pokaži drugo puščico nazaj na nasprotnem koncu drsnika"
+
+#: gtk/gtkscrollbar.c:144
+msgid ""
+"Display a second forward arrow button on the opposite end of the scrollbar"
+msgstr "Pokaži drugo puščico naprej na nasprotnem koncu drsnika"
+
+#: gtk/gtkscrolledwindow.c:569
msgid "Horizontal Adjustment"
msgstr "Vodoravna prilagoditev"
-#: gtk/gtkscrolledwindow.c:531
+#: gtk/gtkscrolledwindow.c:570
msgid "The GtkAdjustment for the horizontal position"
msgstr "GtkAdjustment za vodoravni položaj"
-#: gtk/gtkscrolledwindow.c:537
+#: gtk/gtkscrolledwindow.c:576
msgid "Vertical Adjustment"
msgstr "Navpična prilagoditev"
-#: gtk/gtkscrolledwindow.c:538
+#: gtk/gtkscrolledwindow.c:577
msgid "The GtkAdjustment for the vertical position"
msgstr "GtkAdjustment za navpični položaj"
-#: gtk/gtkscrolledwindow.c:544
+#: gtk/gtkscrolledwindow.c:583
msgid "Horizontal Scrollbar Policy"
msgstr "Vedenje vodoravnega drsnika"
-#: gtk/gtkscrolledwindow.c:545
+#: gtk/gtkscrolledwindow.c:584
msgid "When the horizontal scrollbar is displayed"
msgstr "Kdaj je prikazan vodoravni drsnik"
-#: gtk/gtkscrolledwindow.c:552
+#: gtk/gtkscrolledwindow.c:591
msgid "Vertical Scrollbar Policy"
msgstr "Vedenje navpičnega drsnika"
-#: gtk/gtkscrolledwindow.c:553
+#: gtk/gtkscrolledwindow.c:592
msgid "When the vertical scrollbar is displayed"
msgstr "Kdaj je prikazan navpični drsnik"
-#: gtk/gtkscrolledwindow.c:560
+#: gtk/gtkscrolledwindow.c:599
msgid "Window Placement"
msgstr "Postavitev okna"
-#: gtk/gtkscrolledwindow.c:561
+#: gtk/gtkscrolledwindow.c:600
msgid "Where the contents are located with respect to the scrollbars."
msgstr "Kje je vsebina glede na drsnike."
-#: gtk/gtkscrolledwindow.c:568
+#: gtk/gtkscrolledwindow.c:618
+msgid "Window Placement Set"
+msgstr "Nastavi postavitev okna"
+
+#: gtk/gtkscrolledwindow.c:619
+msgid ""
+"Whether \"window-placement\" should be used to determine the location of the "
+"contents with respect to the scrollbars."
+msgstr ""
+"Ali naj bo uporabljena možnost \"Postavitev okna\" pri določevanju lege "
+"vsebine glede na drsnike."
+
+#: gtk/gtkscrolledwindow.c:625 gtk/gtkspinbutton.c:455
msgid "Shadow Type"
msgstr "Vrsta sence"
-#: gtk/gtkscrolledwindow.c:569
+#: gtk/gtkscrolledwindow.c:626
msgid "Style of bevel around the contents"
msgstr "Vrsta obrobe okoli vsebine"
-#: gtk/gtkscrolledwindow.c:583
+#: gtk/gtkscrolledwindow.c:642
+msgid "Scrollbars within bevel"
+msgstr "Drsniki znotraj obrobe"
+
+#: gtk/gtkscrolledwindow.c:643
+msgid "Place scrollbars within the scrolled window's bevel"
+msgstr "Postavi drsnike znotraj obrobe drsečega okna"
+
+#: gtk/gtkscrolledwindow.c:649
+msgid "Scrollbar spacing"
+msgstr "Razmik do drsnika"
+
+#: gtk/gtkscrolledwindow.c:650
+msgid "Number of pixels between the scrollbars and the scrolled window"
+msgstr "Število slikovnih točk med drsnikom in drsenim oknom"
+
+#: gtk/gtkscrolledwindow.c:665
msgid "Minimum Content Width"
msgstr "Najmanjša širina vsebine"
-#: gtk/gtkscrolledwindow.c:584
+#: gtk/gtkscrolledwindow.c:666
msgid "The minimum width that the scrolled window will allocate to its content"
msgstr "Najmanjša širina, ki jo okno z drsenjem dodeli svoji vsebini"
-#: gtk/gtkscrolledwindow.c:597
+#: gtk/gtkscrolledwindow.c:679
msgid "Minimum Content Height"
msgstr "Najmanjša višina vsebine"
-#: gtk/gtkscrolledwindow.c:598
+#: gtk/gtkscrolledwindow.c:680
msgid ""
"The minimum height that the scrolled window will allocate to its content"
msgstr "Najmanjša višina vsebine, ki bo dodeljena vsebini okna z drsnikom"
-#: gtk/gtkscrolledwindow.c:612
+#: gtk/gtkscrolledwindow.c:694
msgid "Kinetic Scrolling"
msgstr "Drsenje z gibi"
-#: gtk/gtkscrolledwindow.c:613
+#: gtk/gtkscrolledwindow.c:695
msgid "Kinetic scrolling mode."
msgstr "Način drsenja s pomočjo gibov"
-#: gtk/gtkscrolledwindow.c:629
+#: gtk/gtkscrolledwindow.c:711
msgid "Overlay Scrolling"
msgstr "Prekrivno drsenje"
-#: gtk/gtkscrolledwindow.c:630
+#: gtk/gtkscrolledwindow.c:712
msgid "Overlay scrolling mode"
msgstr "Način prekrivnega drsenja"
-#: gtk/gtkscrolledwindow.c:643
+#: gtk/gtkscrolledwindow.c:725
msgid "Maximum Content Width"
msgstr "Največja širina vsebine"
-#: gtk/gtkscrolledwindow.c:644
+#: gtk/gtkscrolledwindow.c:726
msgid "The maximum width that the scrolled window will allocate to its content"
msgstr "Največja širina, ki bo dodeljena vsebini okna z drsnikom."
-#: gtk/gtkscrolledwindow.c:657
+#: gtk/gtkscrolledwindow.c:739
msgid "Maximum Content Height"
msgstr "Največja višina vsebine"
-#: gtk/gtkscrolledwindow.c:658
+#: gtk/gtkscrolledwindow.c:740
msgid ""
"The maximum height that the scrolled window will allocate to its content"
msgstr "Največja višina vsebine, ki bo dodeljena vsebini okna z drsnikom."
-#: gtk/gtkscrolledwindow.c:675 gtk/gtkscrolledwindow.c:676
+#: gtk/gtkscrolledwindow.c:757 gtk/gtkscrolledwindow.c:758
msgid "Propagate Natural Width"
msgstr "Upoštevaj naravno višino"
-#: gtk/gtkscrolledwindow.c:693 gtk/gtkscrolledwindow.c:694
+#: gtk/gtkscrolledwindow.c:775 gtk/gtkscrolledwindow.c:776
msgid "Propagate Natural Height"
msgstr "Upoštevaj naravno višino"
-#: gtk/gtksearchbar.c:386
+#: gtk/gtksearchbar.c:414
msgid "Search Mode Enabled"
msgstr "Omogočen iskalni način"
-#: gtk/gtksearchbar.c:387
+#: gtk/gtksearchbar.c:415
msgid "Whether the search mode is on and the search bar shown"
msgstr ""
"Ali naj bo omogočen iskalni način in prikazana iskalna vrstica izbrano pisavo"
-#: gtk/gtksearchbar.c:398
+#: gtk/gtksearchbar.c:426
msgid "Whether to show the close button in the toolbar"
msgstr "Ali naj se pokaže gumb za zapiranje v orodni vrstici"
-#: gtk/gtkseparatortoolitem.c:99
+#: gtk/gtkseparatortoolitem.c:143
msgid "Draw"
msgstr "Nariši"
-#: gtk/gtkseparatortoolitem.c:100
+#: gtk/gtkseparatortoolitem.c:144
msgid "Whether the separator is drawn, or just blank"
msgstr "Ali naj je ločilnik narisan ali samo prazen"
-#: gtk/gtksettings.c:351
+#: gtk/gtksettings.c:390
msgid "Double Click Time"
msgstr "Čas dvojnega klika"
-#: gtk/gtksettings.c:352
+#: gtk/gtksettings.c:391
msgid ""
"Maximum time allowed between two clicks for them to be considered a double "
"click (in milliseconds)"
@@ -5038,11 +6763,11 @@ msgstr ""
"Največji dovoljen čas med dvema klikoma, da se obravnava kot dvoklik (v "
"milisekundah)"
-#: gtk/gtksettings.c:359
+#: gtk/gtksettings.c:398
msgid "Double Click Distance"
msgstr "Razdalja dvojnega klika"
-#: gtk/gtksettings.c:360
+#: gtk/gtksettings.c:399
msgid ""
"Maximum distance allowed between two clicks for them to be considered a "
"double click (in pixels)"
@@ -5050,35 +6775,35 @@ msgstr ""
"Največji dovoljena razdalja med dvema klikoma, da se dejanje obravnava kot "
"dvoklik (v slikovnih točkah)"
-#: gtk/gtksettings.c:376
+#: gtk/gtksettings.c:415
msgid "Cursor Blink"
msgstr "Utripanje kazalke"
-#: gtk/gtksettings.c:377
+#: gtk/gtksettings.c:416
msgid "Whether the cursor should blink"
msgstr "Ali naj kazalka utripa"
-#: gtk/gtksettings.c:384
+#: gtk/gtksettings.c:423
msgid "Cursor Blink Time"
msgstr "Čas utripanja kazalke"
-#: gtk/gtksettings.c:385
+#: gtk/gtksettings.c:424
msgid "Length of the cursor blink cycle, in milliseconds"
msgstr "Dolžina cikla utripanja kazalke, v milisekundah"
-#: gtk/gtksettings.c:404
+#: gtk/gtksettings.c:443
msgid "Cursor Blink Timeout"
msgstr "Zakasnitev utripanja kazalke"
-#: gtk/gtksettings.c:405
+#: gtk/gtksettings.c:444
msgid "Time after which the cursor stops blinking, in seconds"
msgstr "Čas po katerem kazalka preneha utripati, v sekundah"
-#: gtk/gtksettings.c:412
+#: gtk/gtksettings.c:451
msgid "Split Cursor"
msgstr "Razdeljena kazalka"
-#: gtk/gtksettings.c:413
+#: gtk/gtksettings.c:452
msgid ""
"Whether two cursors should be displayed for mixed left-to-right and right-to-"
"left text"
@@ -5086,129 +6811,153 @@ msgstr ""
"Ali naj bosta pri mešanem besedilu prikazana dve kazalki ločeni za besedilo "
"od leve proti desni in od desne proti levi"
-#: gtk/gtksettings.c:420
+#: gtk/gtksettings.c:459
msgid "Theme Name"
msgstr "Ime teme"
-#: gtk/gtksettings.c:421
+#: gtk/gtksettings.c:460
msgid "Name of theme to load"
msgstr "Ime teme z a nalaganje"
-#: gtk/gtksettings.c:429
+#: gtk/gtksettings.c:468
msgid "Icon Theme Name"
msgstr "Ime teme ikon"
-#: gtk/gtksettings.c:430
+#: gtk/gtksettings.c:469
msgid "Name of icon theme to use"
msgstr "Ime uporabljene teme ikon"
-#: gtk/gtksettings.c:438
+#: gtk/gtksettings.c:484
+msgid "Fallback Icon Theme Name"
+msgstr "Ime povrnitvene teme ikon"
+
+#: gtk/gtksettings.c:485
+msgid "Name of a icon theme to fall back to"
+msgstr "Ime povrnitvene teme ikon"
+
+#: gtk/gtksettings.c:493
msgid "Key Theme Name"
msgstr "Ime tipkovne teme"
-#: gtk/gtksettings.c:439
+#: gtk/gtksettings.c:494
msgid "Name of key theme to load"
msgstr "Ime ključne teme za nalaganje"
-#: gtk/gtksettings.c:447
+#: gtk/gtksettings.c:510
+msgid "Menu bar accelerator"
+msgstr "Pospeševalnik menijske vrstice"
+
+#: gtk/gtksettings.c:511
+msgid "Keybinding to activate the menu bar"
+msgstr "Tipkovna bližnjica, ki zažene menijsko vrstico"
+
+#: gtk/gtksettings.c:519
msgid "Drag threshold"
msgstr "Prag vlečenja"
-#: gtk/gtksettings.c:448
+#: gtk/gtksettings.c:520
msgid "Number of pixels the cursor can move before dragging"
msgstr ""
"Koliko slikovnih točk se lahko premakne kazalka, preden je to obravnavano "
"kot vleka"
-#: gtk/gtksettings.c:461
+#: gtk/gtksettings.c:533
msgid "Font Name"
msgstr "Ime pisave"
-#: gtk/gtksettings.c:462
+#: gtk/gtksettings.c:534
msgid "The default font family and size to use"
msgstr "Privzeta družina pisave in velikost za uporabo"
-#: gtk/gtksettings.c:470
+#: gtk/gtksettings.c:558
+msgid "Icon Sizes"
+msgstr "Velikosti ikon"
+
+#: gtk/gtksettings.c:559
+msgid "List of icon sizes (gtk-menu=16,16:gtk-button=20,20..."
+msgstr "Seznam velikosti ikon (gtk-menu=16,16;gtk-button=20,20..."
+
+#: gtk/gtksettings.c:567
msgid "GTK Modules"
msgstr "Moduli GTK"
-#: gtk/gtksettings.c:471
+#: gtk/gtksettings.c:568
msgid "List of currently active GTK modules"
msgstr "Seznam trenutno dejavnih modulov GTK"
-#: gtk/gtksettings.c:479
+#: gtk/gtksettings.c:576
msgid "Xft Antialias"
msgstr "Glajenje robov Xft"
-#: gtk/gtksettings.c:480
+#: gtk/gtksettings.c:577
msgid "Whether to antialias Xft fonts; 0=no, 1=yes, -1=default"
msgstr "Ali se gladijo robovi pisav Xtf; 0=ne, 1=da, -1=privzeto"
-#: gtk/gtksettings.c:489
+#: gtk/gtksettings.c:586
msgid "Xft Hinting"
msgstr "Prilagajanje Xft"
-#: gtk/gtksettings.c:490
+#: gtk/gtksettings.c:587
msgid "Whether to hint Xft fonts; 0=no, 1=yes, -1=default"
msgstr "Ali naj se prilagodijo pisave Xft; 0=ne, 1=da, -1=privzeto"
-#: gtk/gtksettings.c:499
+#: gtk/gtksettings.c:596
msgid "Xft Hint Style"
msgstr "Slog prilagajanja Xft"
-#: gtk/gtksettings.c:500
+#: gtk/gtksettings.c:597
msgid ""
"What degree of hinting to use; hintnone, hintslight, hintmedium, or hintfull"
msgstr ""
"Raven prilagajanja pisave; hintnone, hintslight, hintmedium, or hintfull"
-#: gtk/gtksettings.c:509
+#: gtk/gtksettings.c:606
msgid "Xft RGBA"
msgstr "Xft RGBA"
-#: gtk/gtksettings.c:510
+#: gtk/gtksettings.c:607
msgid "Type of subpixel antialiasing; none, rgb, bgr, vrgb, vbgr"
msgstr "Vrsta podtočkovnega glajenja robov; brez, rgb, bgr, vrgb, vbgr"
-#: gtk/gtksettings.c:519
+#: gtk/gtksettings.c:616
msgid "Xft DPI"
msgstr "Xft DPI"
-#: gtk/gtksettings.c:520
+#: gtk/gtksettings.c:617
msgid "Resolution for Xft, in 1024 * dots/inch. -1 to use default value"
msgstr "Ločljivost Xtf, v 1024 * točk/palec. -1 za uporabo privzete vrednosti."
-#: gtk/gtksettings.c:529
+#: gtk/gtksettings.c:626
msgid "Cursor theme name"
msgstr "Ime teme kazalke"
-#: gtk/gtksettings.c:530
+#: gtk/gtksettings.c:627
msgid "Name of the cursor theme to use, or NULL to use the default theme"
msgstr "Ime privzeto uporabljene teme kazalke; vrednost NULL za privzeto temo"
-#: gtk/gtksettings.c:538
+#: gtk/gtksettings.c:635
msgid "Cursor theme size"
msgstr "Velikost teme kazalke"
-#: gtk/gtksettings.c:539
+#: gtk/gtksettings.c:636
msgid "Size to use for cursors, or 0 to use the default size"
msgstr "Določitev velikosti kazalk, vrednost 0 je privzeta vrednost"
-#: gtk/gtksettings.c:548
+#: gtk/gtksettings.c:645
msgid "Alternative button order"
msgstr "Nadomestni razpored gumbov"
-#: gtk/gtksettings.c:549
+#: gtk/gtksettings.c:646
msgid "Whether buttons in dialogs should use the alternative button order"
msgstr ""
"Ali naj gumbi v pogovornih oknih uporabljajo drugačen način razvrstitve "
"gumbov"
-#: gtk/gtksettings.c:566
+#: gtk/gtksettings.c:663
msgid "Alternative sort indicator direction"
msgstr "Nadomestni smer kazalnika razvrščanja"
-#: gtk/gtksettings.c:567
+#: gtk/gtksettings.c:664
msgid ""
"Whether the direction of the sort indicators in list and tree views is "
"inverted compared to the default (where down means ascending)"
@@ -5216,138 +6965,419 @@ msgstr ""
"Ali je smer kazalnikov razvrščanja v seznamu in drevesnih pogledih obrnjena "
"v primerjavi s privzeto vrednostjo (kjer dol pomeni naraščajoče)"
-#: gtk/gtksettings.c:575
+#: gtk/gtksettings.c:677
+msgid "Show the 'Input Methods' menu"
+msgstr "Pokaži meni 'Način vnosa'"
+
+#: gtk/gtksettings.c:678
+msgid ""
+"Whether the context menus of entries and text views should offer to change "
+"the input method"
+msgstr ""
+"Ali naj vsebinski meniji vnosov in pogledov besedila ponudijo možnost "
+"spreminjanja načina vnosa"
+
+#: gtk/gtksettings.c:691
+msgid "Show the 'Insert Unicode Control Character' menu"
+msgstr "Pokaži meni 'Vstavi nadzorni znak Unicode'"
+
+#: gtk/gtksettings.c:692
+msgid ""
+"Whether the context menus of entries and text views should offer to insert "
+"control characters"
+msgstr ""
+"Ali naj vsebinski meniji vnosov in pogledov besedila ponudijo možnost "
+"vstavljanja nadzornih znakov"
+
+#: gtk/gtksettings.c:705
+msgid "Start timeout"
+msgstr "Začetna časovna omejitev"
+
+#: gtk/gtksettings.c:706
+msgid "Starting value for timeouts, when button is pressed"
+msgstr "Začetna vrednost za časovno omejitev, kadar je gumb pritisnjen."
+
+#: gtk/gtksettings.c:720
+msgid "Repeat timeout"
+msgstr "Ponovi časovni zamik"
+
+#: gtk/gtksettings.c:721
+msgid "Repeat value for timeouts, when button is pressed"
+msgstr "Ponovi vrednost časovnih zamikov, kadar je pritisnjen gumb"
+
+#: gtk/gtksettings.c:735
+msgid "Expand timeout"
+msgstr "Časovni zamik razširitve"
+
+#: gtk/gtksettings.c:736
+msgid "Expand value for timeouts, when a widget is expanding a new region"
+msgstr "Časovni zamik za razširitve, kadar gradnik razširi novo območje"
+
+#: gtk/gtksettings.c:774
+msgid "Color scheme"
+msgstr "Barvna shema"
+
+#: gtk/gtksettings.c:775
+msgid "A palette of named colors for use in themes"
+msgstr "Paleta imenovanih barv za uporabo v temah"
+
+#: gtk/gtksettings.c:784
msgid "Enable Animations"
msgstr "Omogoči animacije"
-#: gtk/gtksettings.c:576
+#: gtk/gtksettings.c:785
msgid "Whether to enable toolkit-wide animations."
msgstr "Ali naj bodo omogočene animacije v zbirki orodij."
-#: gtk/gtksettings.c:596
+#: gtk/gtksettings.c:806
+msgid "Enable Touchscreen Mode"
+msgstr "Omogoči način na dotik občutljivega zaslona"
+
+#: gtk/gtksettings.c:807
+msgid "When TRUE, there are no motion notify events delivered on this screen"
+msgstr "Izbrana možnost omogoča, da ni obvestil o dogodkih gibanja."
+
+#: gtk/gtksettings.c:826
+msgid "Tooltip timeout"
+msgstr "Zakasnitev orodnega namiga"
+
+#: gtk/gtksettings.c:827
+msgid "Timeout before tooltip is shown"
+msgstr "Časovni zamik preden se pokaže namig orodja"
+
+#: gtk/gtksettings.c:854
+msgid "Tooltip browse timeout"
+msgstr "Zakasnitev brskanja namigov"
+
+#: gtk/gtksettings.c:855
+msgid "Timeout before tooltip is shown when browse mode is enabled"
+msgstr "Zakasnitev namigov preden se omogoči brskalni način"
+
+#: gtk/gtksettings.c:878
+msgid "Tooltip browse mode timeout"
+msgstr "Zakasnitev načina brskanja namigov"
+
+#: gtk/gtksettings.c:879
+msgid "Timeout after which browse mode is disabled"
+msgstr "Zakasnitev preden se onemogoči brskalni način"
+
+#: gtk/gtksettings.c:901
+msgid "Keynav Cursor Only"
+msgstr "Upravljanje samo s smernimi tipkami"
+
+#: gtk/gtksettings.c:902
+msgid "When TRUE, there are only cursor keys available to navigate widgets"
+msgstr ""
+"Izbrana možnost omogoča, da so na voljo le smerne tipke za upravljanje z "
+"gradniki"
+
+#: gtk/gtksettings.c:921
+msgid "Keynav Wrap Around"
+msgstr "Prelom med upravljanjem s tipkovnico"
+
+#: gtk/gtksettings.c:922
+msgid "Whether to wrap around when keyboard-navigating widgets"
+msgstr "Ali naj pride do preloma, ko gradnik upravljamo s tipkovnico"
+
+#: gtk/gtksettings.c:942
msgid "Error Bell"
msgstr "Pisk napake"
-#: gtk/gtksettings.c:597
+#: gtk/gtksettings.c:943
msgid "When TRUE, keyboard navigation and other errors will cause a beep"
msgstr "Izbrana možnost omogoča, da sistem napako javi tudi s piskom"
-#: gtk/gtksettings.c:615
+#: gtk/gtksettings.c:962
+msgid "Color Hash"
+msgstr "Barvno razpršilo"
+
+#: gtk/gtksettings.c:963
+msgid "A hash table representation of the color scheme."
+msgstr "Preglednica razpršil barvne sheme"
+
+#: gtk/gtksettings.c:978
+msgid "Default file chooser backend"
+msgstr "Privzet ozadnji program izbirnika datotek"
+
+#: gtk/gtksettings.c:979
+msgid "Name of the GtkFileChooser backend to use by default"
+msgstr "Ime privzetega zaledja GtkFileChooser"
+
+#: gtk/gtksettings.c:996
msgid "Default print backend"
msgstr "Privzeto zaledje tiskanja"
-#: gtk/gtksettings.c:616
+#: gtk/gtksettings.c:997
msgid "List of the GtkPrintBackend backends to use by default"
msgstr ""
"Seznam ozadnjih programov GtkPrintBackend, ki naj bodo privzeto uporabljeni"
-#: gtk/gtksettings.c:639
+#: gtk/gtksettings.c:1020
msgid "Default command to run when displaying a print preview"
msgstr "Privzeti ukaz, ki naj se izvede ob prikazu predogleda tiskanja"
-#: gtk/gtksettings.c:640
+#: gtk/gtksettings.c:1021
msgid "Command to run when displaying a print preview"
msgstr "Ukaz, ki naj se izvede, ko se prikaže predogled tiskanja"
-#: gtk/gtksettings.c:656
+#: gtk/gtksettings.c:1040
+msgid "Enable Mnemonics"
+msgstr "Omogoči menijske bližnjice"
+
+#: gtk/gtksettings.c:1041
+msgid "Whether labels should have mnemonics"
+msgstr "Ali naj oznake vsebujejo menijske bližnjice"
+
+#: gtk/gtksettings.c:1057
msgid "Enable Accelerators"
msgstr "Omogoči pospeševalnike"
-#: gtk/gtksettings.c:657
+#: gtk/gtksettings.c:1058
msgid "Whether menu items should have accelerators"
msgstr "Ali naj imajo predmeti menija pospeševalnike"
-#: gtk/gtksettings.c:676
+#: gtk/gtksettings.c:1077
+msgid "Recent Files Limit"
+msgstr "Omejitev nedavnih datotek"
+
+#: gtk/gtksettings.c:1078
+msgid "Number of recently used files"
+msgstr "Število nedavno uporabljenih datotek"
+
+#: gtk/gtksettings.c:1098
msgid "Default IM module"
msgstr "Privzeta enota načina vnosa"
-#: gtk/gtksettings.c:677
+#: gtk/gtksettings.c:1099
msgid "Which IM module should be used by default"
msgstr "Katera enota načina vnosa naj bo privzeto uporabljena"
-#: gtk/gtksettings.c:695
+#: gtk/gtksettings.c:1117
msgid "Recent Files Max Age"
msgstr "Največja starost nedavno uporabljenih datotek"
-#: gtk/gtksettings.c:696
+#: gtk/gtksettings.c:1118
msgid "Maximum age of recently used files, in days"
msgstr "Največja starost nedavno uporabljenih datotek (v dneh)"
-#: gtk/gtksettings.c:705
+#: gtk/gtksettings.c:1127
msgid "Fontconfig configuration timestamp"
msgstr "Časovni žig nastavitev fontconfig"
-#: gtk/gtksettings.c:706
+#: gtk/gtksettings.c:1128
msgid "Timestamp of current fontconfig configuration"
msgstr "Časovni žig trenutne nastavitve fontconfig"
-#: gtk/gtksettings.c:728
+#: gtk/gtksettings.c:1150
msgid "Sound Theme Name"
msgstr "Ime zvočne teme"
-#: gtk/gtksettings.c:729
+#: gtk/gtksettings.c:1151
msgid "XDG sound theme name"
msgstr "Ime zvočne teme XDG"
#. Translators: this means sounds that are played as feedback to user input
-#: gtk/gtksettings.c:751
+#: gtk/gtksettings.c:1173
msgid "Audible Input Feedback"
msgstr "Zvočni odziv na vnos"
-#: gtk/gtksettings.c:752
+#: gtk/gtksettings.c:1174
msgid "Whether to play event sounds as feedback to user input"
msgstr "Ali se predvajajo zvočni odzivi na uporabniki vnos"
-#: gtk/gtksettings.c:773
+#: gtk/gtksettings.c:1195
msgid "Enable Event Sounds"
msgstr "Omogoči zvoke dogodkov"
-#: gtk/gtksettings.c:774
+#: gtk/gtksettings.c:1196
msgid "Whether to play any event sounds at all"
msgstr "Ali naj se predvajajo zvoki dogodkov"
-#: gtk/gtksettings.c:790
+#: gtk/gtksettings.c:1213
+msgid "Enable Tooltips"
+msgstr "Omogoči orodne namige"
+
+#: gtk/gtksettings.c:1214
+msgid "Whether tooltips should be shown on widgets"
+msgstr "Ali naj se na gradnikih prikažejo orodni namigi"
+
+#: gtk/gtksettings.c:1229
+msgid "Toolbar style"
+msgstr "Slog orodne vrstice"
+
+#: gtk/gtksettings.c:1230
+msgid ""
+"Whether default toolbars have text only, text and icons, icons only, etc."
+msgstr ""
+"Ali imajo privzete orodne vrstice le besedilo, besedilo in ikone, samo "
+"ikone, itd."
+
+#: gtk/gtksettings.c:1246
+msgid "Toolbar Icon Size"
+msgstr "Velikost ikon orodne vrstice"
+
+#: gtk/gtksettings.c:1247
+msgid "The size of icons in default toolbars."
+msgstr "Velikost ikon v privzetih orodnih vrsticah."
+
+#: gtk/gtksettings.c:1266
+msgid "Auto Mnemonics"
+msgstr "Samodejne menijske bližnjice"
+
+#: gtk/gtksettings.c:1267
+msgid ""
+"Whether mnemonics should be automatically shown and hidden when the user "
+"presses the mnemonic activator."
+msgstr ""
+"Ali naj bodo pospeševalne tipke samodejno prikazane (in skrite), kadar "
+"uporabnik pritisne (spusti) ustrezno tipko."
+
+#: gtk/gtksettings.c:1289
msgid "Primary button warps slider"
msgstr "Osnovni gumb prikaže drsnik"
-#: gtk/gtksettings.c:791
+#: gtk/gtksettings.c:1290
msgid ""
"Whether a primary click on the trough should warp the slider into position"
msgstr "Ali naj osnovni klik na zarezo prikaže drsnik v položaju"
-#: gtk/gtksettings.c:816
+#: gtk/gtksettings.c:1308
+msgid "Visible Focus"
+msgstr "Okno v žarišču"
+
+#: gtk/gtksettings.c:1309
+msgid ""
+"Whether 'focus rectangles' should be hidden until the user starts to use the "
+"keyboard."
+msgstr ""
+"Ali naj bodo 'pravokotniki žariščenja' skriti, dokler uporabnik ne začne "
+"uporabljati tipkovnice."
+
+#: gtk/gtksettings.c:1335
msgid "Application prefers a dark theme"
msgstr "Program daje prednost temnejši temi"
-#: gtk/gtksettings.c:817
+#: gtk/gtksettings.c:1336
msgid "Whether the application prefers to have a dark theme."
msgstr "Ali program daje prednost temnejši temi."
-#: gtk/gtksettings.c:825 gtk/gtksettings.c:853
+#: gtk/gtksettings.c:1357
+msgid "Show button images"
+msgstr "Pokaži slike gumbov"
+
+#: gtk/gtksettings.c:1358
+msgid "Whether images should be shown on buttons"
+msgstr "Ali naj bodo na gumbih prikazane slike"
+
+#: gtk/gtksettings.c:1366 gtk/gtksettings.c:1501
msgid "Select on focus"
msgstr "Izbira ob dejavnosti"
-#: gtk/gtksettings.c:826
+#: gtk/gtksettings.c:1367
msgid "Whether to select the contents of an entry when it is focused"
msgstr "Ali naj bo izbrana vsebina vnosa, kadar je vnos dejaven"
-#: gtk/gtksettings.c:843
+#: gtk/gtksettings.c:1384
msgid "Password Hint Timeout"
msgstr "Časovna omejitev namiga za geslo"
-#: gtk/gtksettings.c:844
+#: gtk/gtksettings.c:1385
msgid "How long to show the last input character in hidden entries"
msgstr "Kako dolgo naj bo prikazan zadnji vneseni znak v skritih vnosih."
-#: gtk/gtksettings.c:854
+#: gtk/gtksettings.c:1405
+msgid "Show menu images"
+msgstr "Pokaži slike v menijih"
+
+#: gtk/gtksettings.c:1406
+msgid "Whether images should be shown in menus"
+msgstr "Ali naj bodo v menijih prikazane slike ali ne"
+
+#: gtk/gtksettings.c:1421
+msgid "Delay before drop down menus appear"
+msgstr "Zakasnitev, preden se pojavijo spustni meniji"
+
+#: gtk/gtksettings.c:1422
+msgid "Delay before the submenus of a menu bar appear"
+msgstr "Zakasnitev, preden se pojavijo podmeniji menijske vrstice"
+
+#: gtk/gtksettings.c:1441
+msgid "Scrolled Window Placement"
+msgstr "Postavitev drsečega okna"
+
+#: gtk/gtksettings.c:1442
+msgid ""
+"Where the contents of scrolled windows are located with respect to the "
+"scrollbars, if not overridden by the scrolled window's own placement."
+msgstr ""
+"Kje leži vsebina drsnih oken glede na drsnike, kadar možnosti ne prepiše "
+"lega drsnega okna."
+
+#: gtk/gtksettings.c:1458
+msgid "Can change accelerators"
+msgstr "Lahko spremeni pospeševalnike"
+
+#: gtk/gtksettings.c:1459
+msgid ""
+"Whether menu accelerators can be changed by pressing a key over the menu item"
+msgstr ""
+"Ali se lahko pospeševalniki menijev spremenijo s pritiskom tipke nad "
+"predmetom menija."
+
+#: gtk/gtksettings.c:1474
+msgid "Delay before submenus appear"
+msgstr "Zakasnitev, preden se prikažejo podmeniji"
+
+#: gtk/gtksettings.c:1475
+msgid ""
+"Minimum time the pointer must stay over a menu item before the submenu appear"
+msgstr ""
+"Najmanjši čas, kolikor mora kazalec stati nad menijem, preden se prikaže "
+"podmeni"
+
+#: gtk/gtksettings.c:1491
+msgid "Delay before hiding a submenu"
+msgstr "Zakasnitev pred skritjem podmenija"
+
+#: gtk/gtksettings.c:1492
+msgid ""
+"The time before hiding a submenu when the pointer is moving towards the "
+"submenu"
+msgstr "Čas, preden se podmeni skrije, ko se kazalec premika proti njemu"
+
+#: gtk/gtksettings.c:1502
msgid "Whether to select the contents of a selectable label when it is focused"
msgstr "Ali naj bo izbrana vsebina izbirne oznake, kadar je ta v žarišču"
-#: gtk/gtksettings.c:862
+#: gtk/gtksettings.c:1517
+msgid "Custom palette"
+msgstr "Paleta po meri"
+
+#: gtk/gtksettings.c:1518
+msgid "Palette to use in the color selector"
+msgstr "Paleta, ki naj se uporabi v izbirniku barv"
+
+#: gtk/gtksettings.c:1533
+msgid "IM Preedit style"
+msgstr "Predhodno urejevalni slog načina vnosa"
+
+#: gtk/gtksettings.c:1534
+msgid "How to draw the input method preedit string"
+msgstr "Kako naj se nariše predhodno urejevalni niz načina vnosa"
+
+#: gtk/gtksettings.c:1550
+msgid "IM Status style"
+msgstr "Slog stanja načina vnosa"
+
+#: gtk/gtksettings.c:1551
+msgid "How to draw the input method statusbar"
+msgstr "Kako naj se nariše vrstica stanja načina vnosa"
+
+#: gtk/gtksettings.c:1560
msgid "Desktop shell shows app menu"
msgstr "Lupina namizja prikaže meni programa"
-#: gtk/gtksettings.c:863
+#: gtk/gtksettings.c:1561
msgid ""
"Set to TRUE if the desktop environment is displaying the app menu, FALSE if "
"the app should display it itself."
@@ -5355,11 +7385,11 @@ msgstr ""
"Izbrana možnost omogoča, da okolje namizja prikaže meni programa, sicer ga "
"mora prikazati sam program."
-#: gtk/gtksettings.c:872
+#: gtk/gtksettings.c:1570
msgid "Desktop shell shows the menubar"
msgstr "Lupina namizja prikaže menijsko vrstico"
-#: gtk/gtksettings.c:873
+#: gtk/gtksettings.c:1571
msgid ""
"Set to TRUE if the desktop environment is displaying the menubar, FALSE if "
"the app should display it itself."
@@ -5367,46 +7397,46 @@ msgstr ""
"Izbrana možnost omogoča, da okolje namizja prikaže menijsko vrstico, sicer "
"jo mora prikazati sam program."
-#: gtk/gtksettings.c:882
+#: gtk/gtksettings.c:1580
msgid "Desktop environment shows the desktop folder"
msgstr "Okolje namizja prikazuje mapo namizja"
-#: gtk/gtksettings.c:883
+#: gtk/gtksettings.c:1581
msgid ""
"Set to TRUE if the desktop environment is displaying the desktop folder, "
"FALSE if not."
msgstr ""
"Izbrana možnost omogoča, da okolje namizja prikaže mapo namizja, sicer ga ne."
-#: gtk/gtksettings.c:937
+#: gtk/gtksettings.c:1635
msgid "Titlebar double-click action"
msgstr "Dejanje dvoklika na nazivni vrstici"
-#: gtk/gtksettings.c:938
+#: gtk/gtksettings.c:1636
msgid "The action to take on titlebar double-click"
msgstr "Dejanje, ki se izvede ob dvokliku kliku na nazivni vrstici"
-#: gtk/gtksettings.c:956
+#: gtk/gtksettings.c:1654
msgid "Titlebar middle-click action"
msgstr "Dejanje srednjega klika na nazivni vrstici"
-#: gtk/gtksettings.c:957
+#: gtk/gtksettings.c:1655
msgid "The action to take on titlebar middle-click"
msgstr "Dejanje, ki se izvede ob srednjem kliku na nazivni vrstici"
-#: gtk/gtksettings.c:975
+#: gtk/gtksettings.c:1673
msgid "Titlebar right-click action"
msgstr "Dejanje desni klik na nazivni vrstici"
-#: gtk/gtksettings.c:976
+#: gtk/gtksettings.c:1674
msgid "The action to take on titlebar right-click"
msgstr "Dejanje, ki se izvede ob desnem kliku na nazivni vrstici"
-#: gtk/gtksettings.c:998
+#: gtk/gtksettings.c:1696
msgid "Dialogs use header bar"
msgstr "Pogovorna okna imajo nazivno vrstico"
-#: gtk/gtksettings.c:999
+#: gtk/gtksettings.c:1697
msgid ""
"Whether builtin GTK+ dialogs should use a header bar instead of an action "
"area."
@@ -5414,132 +7444,132 @@ msgstr ""
"Ali naj vgrajena pogovorna okna GTK+ uporabljajo nazivno vrstico namesto "
"območja dejanj."
-#: gtk/gtksettings.c:1015
+#: gtk/gtksettings.c:1713
msgid "Enable primary paste"
msgstr "Omogoči osnovno prilepljenje"
-#: gtk/gtksettings.c:1016
+#: gtk/gtksettings.c:1714
msgid ""
-"Whether a middle click on a mouse should paste the “PRIMARY” clipboard "
+"Whether a middle click on a mouse should paste the 'PRIMARY' clipboard "
"content at the cursor location."
msgstr ""
-"Ali naj se s srednjim klikom prilepi »OSNOVNA« vsebina odložišča na mestu "
+"Ali naj se s srednjim klikom prilepi 'OSNOVNA' vsebina odložišča na mestu "
"kazalke."
-#: gtk/gtksettings.c:1032
+#: gtk/gtksettings.c:1730
msgid "Recent Files Enabled"
msgstr "Nedavno uporabljene datoteke omogočene"
-#: gtk/gtksettings.c:1033
+#: gtk/gtksettings.c:1731
msgid "Whether GTK+ remembers recent files"
msgstr "Ali GTK+ pomni nedavne datoteke"
-#: gtk/gtksettings.c:1048
+#: gtk/gtksettings.c:1746
msgid "Long press time"
msgstr "Čas dolgega pritiska"
-#: gtk/gtksettings.c:1049
+#: gtk/gtksettings.c:1747
msgid ""
"Time for a button/touch press to be considered a long press (in milliseconds)"
msgstr ""
"Najdaljši čas med dvema klikoma, da se ta obravnava kot dolgi klik (v "
"milisekundah)"
-#: gtk/gtksettings.c:1066 gtk/gtksettings.c:1067
+#: gtk/gtksettings.c:1764 gtk/gtksettings.c:1765
msgid "Whether to show cursor in text"
msgstr "Ali naj se v besedilo pokaže kazalka"
-#: gtk/gtkshortcutlabel.c:476 gtk/gtkshortcutsshortcut.c:571
+#: gtk/gtkshortcutlabel.c:479 gtk/gtkshortcutsshortcut.c:536
msgid "Accelerator"
msgstr "Tipka pospeševalnika"
-#: gtk/gtkshortcutlabel.c:488
+#: gtk/gtkshortcutlabel.c:491
msgid "Disabled text"
msgstr "Onemogočeno besedilo"
-#: gtk/gtkshortcutsgroup.c:319
+#: gtk/gtkshortcutsgroup.c:322
msgid "View"
msgstr "Pogled"
-#: gtk/gtkshortcutsgroup.c:332 gtk/gtkshortcutsgroup.c:333
-#: gtk/gtkshortcutsshortcut.c:652 gtk/gtkshortcutsshortcut.c:653
+#: gtk/gtkshortcutsgroup.c:335 gtk/gtkshortcutsgroup.c:336
+#: gtk/gtkshortcutsshortcut.c:617 gtk/gtkshortcutsshortcut.c:618
msgid "Accelerator Size Group"
msgstr "Skupina velikosti pospeševalnika"
-#: gtk/gtkshortcutsgroup.c:346 gtk/gtkshortcutsgroup.c:347
-#: gtk/gtkshortcutsshortcut.c:666 gtk/gtkshortcutsshortcut.c:667
+#: gtk/gtkshortcutsgroup.c:349 gtk/gtkshortcutsgroup.c:350
+#: gtk/gtkshortcutsshortcut.c:631 gtk/gtkshortcutsshortcut.c:632
msgid "Title Size Group"
msgstr "Skupina velikosti naziva"
-#: gtk/gtkshortcutssection.c:342 gtk/gtkshortcutswindow.c:778
+#: gtk/gtkshortcutssection.c:350 gtk/gtkshortcutswindow.c:787
msgid "Section Name"
msgstr "Ime odseka"
-#: gtk/gtkshortcutssection.c:356 gtk/gtkshortcutswindow.c:793
+#: gtk/gtkshortcutssection.c:364 gtk/gtkshortcutswindow.c:802
msgid "View Name"
msgstr "Ime pogleda"
-#: gtk/gtkshortcutssection.c:381
+#: gtk/gtkshortcutssection.c:389
msgid "Maximum Height"
msgstr "Največja višina"
-#: gtk/gtkshortcutsshortcut.c:572
-msgid "The accelerator keys for shortcuts of type “Accelerator”"
+#: gtk/gtkshortcutsshortcut.c:537
+msgid "The accelerator keys for shortcuts of type 'Accelerator'"
msgstr "Pospeševalna tipka za tipkovno bližnjico »pospeševalnika«"
-#: gtk/gtkshortcutsshortcut.c:586
-msgid "The icon to show for shortcuts of type “Other Gesture”"
+#: gtk/gtkshortcutsshortcut.c:551
+msgid "The icon to show for shortcuts of type 'Other Gesture'"
msgstr "Ikona, ki kaže tipkovno bližnjico vrste »druge poteze«"
-#: gtk/gtkshortcutsshortcut.c:597
+#: gtk/gtkshortcutsshortcut.c:562
msgid "Icon Set"
msgstr "Ikona"
-#: gtk/gtkshortcutsshortcut.c:598
+#: gtk/gtkshortcutsshortcut.c:563
msgid "Whether an icon has been set"
msgstr "Ali je ikona določena"
-#: gtk/gtkshortcutsshortcut.c:611
+#: gtk/gtkshortcutsshortcut.c:576
msgid "A short description for the shortcut"
msgstr "Kratek opis tipkovne bližnjice"
-#: gtk/gtkshortcutsshortcut.c:627
+#: gtk/gtkshortcutsshortcut.c:592
msgid "A short description for the gesture"
msgstr "Kratek opis poteze"
-#: gtk/gtkshortcutsshortcut.c:638
+#: gtk/gtkshortcutsshortcut.c:603
msgid "Subtitle Set"
msgstr "Podnapis"
-#: gtk/gtkshortcutsshortcut.c:639
+#: gtk/gtkshortcutsshortcut.c:604
msgid "Whether a subtitle has been set"
msgstr "Ali je podnapis določen"
-#: gtk/gtkshortcutsshortcut.c:681
+#: gtk/gtkshortcutsshortcut.c:646
msgid "Text direction for which this shortcut is active"
msgstr "Smer besedila za katerega je tipkovna bližnjica dejavna"
-#: gtk/gtkshortcutsshortcut.c:693
+#: gtk/gtkshortcutsshortcut.c:658
msgid "Shortcut Type"
msgstr "Vrsta tipkovne bližnjice"
-#: gtk/gtkshortcutsshortcut.c:694
+#: gtk/gtkshortcutsshortcut.c:659
msgid "The type of shortcut that is represented"
msgstr "Vrsta tipkovne bližnjice, ki jo predstavlja"
-#: gtk/gtkshortcutsshortcut.c:712
+#: gtk/gtkshortcutsshortcut.c:677
msgid "Action Name"
msgstr "Ime dejanja"
-#: gtk/gtkshortcutsshortcut.c:713
+#: gtk/gtkshortcutsshortcut.c:678
msgid "The name of the action"
msgstr "Ime dejanja"
-#: gtk/gtksizegroup.c:220 gtk/gtktreeselection.c:130
+#: gtk/gtksizegroup.c:228 gtk/gtktreeselection.c:130
msgid "Mode"
msgstr "Način"
-#: gtk/gtksizegroup.c:221
+#: gtk/gtksizegroup.c:229
msgid ""
"The directions in which the size group affects the requested sizes of its "
"component widgets"
@@ -5547,106 +7577,125 @@ msgstr ""
"Smeri v katerih velikostna skupina vpliva na želene velikosti njenih "
"gradnikov"
-#: gtk/gtkspinbutton.c:348
+#: gtk/gtksizegroup.c:253
+msgid "Ignore hidden"
+msgstr "Prezri skrito"
+
+#: gtk/gtksizegroup.c:254
+msgid ""
+"If TRUE, unmapped widgets are ignored when determining the size of the group"
+msgstr ""
+"Izbrana možnost omogoča, da so pri določanju velikosti skupine gradniki, ki "
+"niso preslikani, prezrti."
+
+#: gtk/gtkspinbutton.c:387
msgid "Climb Rate"
msgstr "Pospešek"
-#: gtk/gtkspinbutton.c:364
+#: gtk/gtkspinbutton.c:388
+msgid "The acceleration rate when you hold down a button or key"
+msgstr "Pospešek, ko držite gumb pritisnjen"
+
+#: gtk/gtkspinbutton.c:403
msgid "Snap to Ticks"
msgstr "Pripni na kljukice"
-#: gtk/gtkspinbutton.c:365
+#: gtk/gtkspinbutton.c:404
msgid ""
-"Whether erroneous values are automatically changed to a spin button’s "
+"Whether erroneous values are automatically changed to a spin button's "
"nearest step increment"
msgstr ""
"Ali napačne vrednosti samodejno preskočijo na najbližje povečave korakov "
"vrtilnega gumba"
-#: gtk/gtkspinbutton.c:372
+#: gtk/gtkspinbutton.c:411
msgid "Numeric"
msgstr "Številke"
-#: gtk/gtkspinbutton.c:373
+#: gtk/gtkspinbutton.c:412
msgid "Whether non-numeric characters should be ignored"
msgstr "Ali naj bodo ne-številčni znaki prezrti"
-#: gtk/gtkspinbutton.c:380
+#: gtk/gtkspinbutton.c:419
msgid "Wrap"
msgstr "Prelom"
-#: gtk/gtkspinbutton.c:381
+#: gtk/gtkspinbutton.c:420
msgid "Whether a spin button should wrap upon reaching its limits"
msgstr "Ali naj vrtilni gumb naredi prelom, ko doseže svojo mejo"
-#: gtk/gtkspinbutton.c:388
+#: gtk/gtkspinbutton.c:427
msgid "Update Policy"
msgstr "Pravila posodabljanja"
-#: gtk/gtkspinbutton.c:389
+#: gtk/gtkspinbutton.c:428
msgid ""
"Whether the spin button should update always, or only when the value is legal"
msgstr ""
"Ali naj se vrtilni gumb posodablja vedno, ali le takrat kadar je vrednost "
"dovoljena"
-#: gtk/gtkspinbutton.c:398
+#: gtk/gtkspinbutton.c:437
msgid "Reads the current value, or sets a new value"
msgstr "Prebere trenutno vrednost ali nastavi novo"
-#: gtk/gtkspinner.c:204
+#: gtk/gtkspinbutton.c:456
+msgid "Style of bevel around the spin button"
+msgstr "Slog obrobe okoli vrtilnega gumba"
+
+#: gtk/gtkspinner.c:222
msgid "Whether the spinner is active"
msgstr "Ali je vrtavka dejavna"
-#: gtk/gtkstack.c:326
+#: gtk/gtkstack.c:459
msgid "Homogeneous sizing"
msgstr "Homogeno prilagajanje velikosti"
-#: gtk/gtkstack.c:338
+#: gtk/gtkstack.c:471
msgid "Horizontally homogeneous"
msgstr "Vodoravno prilagajanje"
-#: gtk/gtkstack.c:338
+#: gtk/gtkstack.c:471
msgid "Horizontally homogeneous sizing"
msgstr "Homogeno vodoravno prilagajanje velikosti"
-#: gtk/gtkstack.c:350
+#: gtk/gtkstack.c:483
msgid "Vertically homogeneous"
msgstr "Navpično prilagajanje"
-#: gtk/gtkstack.c:350
+#: gtk/gtkstack.c:483
msgid "Vertically homogeneous sizing"
msgstr "Homogeno navpično prilagajanje velikosti"
-#: gtk/gtkstack.c:354
+#: gtk/gtkstack.c:487
msgid "Visible child"
msgstr "Vidni podrejeni predmet"
-#: gtk/gtkstack.c:354
+#: gtk/gtkstack.c:487
msgid "The widget currently visible in the stack"
msgstr "Gradnik, ki je trenutno viden v skladu"
-#: gtk/gtkstack.c:358
+#: gtk/gtkstack.c:491
msgid "Name of visible child"
msgstr "Ime vidnega podrejenega predmeta"
-#: gtk/gtkstack.c:358
+#: gtk/gtkstack.c:491
msgid "The name of the widget currently visible in the stack"
msgstr "Ime gradnika, ki je trenutno viden v skladu"
-#: gtk/gtkstack.c:370
+#: gtk/gtkstack.c:503
msgid "Transition running"
msgstr "Prehod se odvija"
-#: gtk/gtkstack.c:370
+#: gtk/gtkstack.c:503
msgid "Whether or not the transition is currently running"
msgstr "Ali se prehod trenutno izvaja"
-#: gtk/gtkstack.c:374
+#: gtk/gtkstack.c:507
msgid "Interpolate size"
msgstr "Interpoliraj velikost"
-#: gtk/gtkstack.c:374
+#: gtk/gtkstack.c:507
msgid ""
"Whether or not the size should smoothly change when changing between "
"differently sized children"
@@ -5654,61 +7703,65 @@ msgstr ""
"Ali naj se velikost gladko spremeni med spreminjanjem različno velikih "
"podrejenih predmetov"
-#: gtk/gtkstack.c:384
+#: gtk/gtkstack.c:517
msgid "The name of the child page"
msgstr "Ime gradnika podrejene strani"
-#: gtk/gtkstack.c:391
+#: gtk/gtkstack.c:524
msgid "The title of the child page"
msgstr "Naziv podrejene strani"
-#: gtk/gtkstack.c:397 gtk/gtktoolbutton.c:245
+#: gtk/gtkstack.c:530 gtk/gtktoolbutton.c:287
msgid "Icon name"
msgstr "Ime ikone"
-#: gtk/gtkstack.c:398
+#: gtk/gtkstack.c:531
msgid "The icon name of the child page"
msgstr "Ime ikone podrejene strani"
-#: gtk/gtkstack.c:422
+#: gtk/gtkstack.c:555
msgid "Needs Attention"
msgstr "Zahteva ponoven pregled"
-#: gtk/gtkstack.c:423
+#: gtk/gtkstack.c:556
msgid "Whether this page needs attention"
msgstr "Ali stran zahteva ponoven pregled."
-#: gtk/gtkstacksidebar.c:446 gtk/gtkstackswitcher.c:688
-#: gtk/gtkstackswitcher.c:689 gtk/inspector/gtkstackcombo.c:278
-#: gtk/inspector/gtkstackcombo.c:279
+#: gtk/gtkstacksidebar.c:449 gtk/gtkstackswitcher.c:695
+#: gtk/gtkstackswitcher.c:696 gtk/inspector/gtkstackcombo.c:232
+#: gtk/inspector/gtkstackcombo.c:233
msgid "Stack"
msgstr "Sklad"
-#: gtk/gtkstacksidebar.c:447
+#: gtk/gtkstacksidebar.c:450
msgid "Associated stack for this GtkStackSidebar"
msgstr "Povezani sklad za ta GtkStackSidebar"
-#: gtk/gtkstackswitcher.c:679
-msgid "Icon Size"
-msgstr "Velikost ikone"
-
-#: gtk/gtkstackswitcher.c:680
+#: gtk/gtkstackswitcher.c:687
msgid "Symbolic size to use for named icon"
msgstr "Simbolna velikost, ki naj bo uporabljena za imenovano ikono"
-#: gtk/gtkstylecontext.c:211
+#: gtk/gtkstatusbar.c:178
+msgid "Style of bevel around the statusbar text"
+msgstr "Slog obrobe okoli besedila vrstice stanja"
+
+#: gtk/gtkstylecontext.c:230
msgid "The associated GdkScreen"
msgstr "Povezan predmet GdkScreen"
-#: gtk/gtkstylecontext.c:217
+#: gtk/gtkstylecontext.c:236
msgid "FrameClock"
msgstr "Ura okna"
-#: gtk/gtkstylecontext.c:218
+#: gtk/gtkstylecontext.c:237
msgid "The associated GdkFrameClock"
msgstr "Povezan predmet GdkFrameClock"
-#: gtk/gtkstylecontext.c:233
+#: gtk/gtkstylecontext.c:244 gtk/gtktexttag.c:299
+msgid "Text direction"
+msgstr "Smer besedila"
+
+#: gtk/gtkstylecontext.c:260
msgid "The parent style context"
msgstr "Nadrejeni vsebinski slog"
@@ -5728,14 +7781,26 @@ msgstr "Vrsta vrednosti"
msgid "The value type returned by GtkStyleContext"
msgstr "Vrsta vrednosti, ki jo vrne predmet GtkStyleContext"
-#: gtk/gtkswitch.c:532
+#: gtk/gtkswitch.c:896
msgid "Whether the switch is on or off"
msgstr "Ali je preklop omogočen ali onemogočen"
-#: gtk/gtkswitch.c:547
+#: gtk/gtkswitch.c:911
msgid "The backend state"
msgstr "Stanje ozadnjega programa"
+#: gtk/gtkswitch.c:948
+msgid "The minimum width of the handle"
+msgstr "Najmanjša širina ročnika"
+
+#: gtk/gtkswitch.c:964
+msgid "Slider Height"
+msgstr "Višina drsnika"
+
+#: gtk/gtkswitch.c:965
+msgid "The minimum height of the handle"
+msgstr "Najmanjša višina ročice"
+
#: gtk/gtktextbuffer.c:201
msgid "Tag Table"
msgstr "Preglednica oznak"
@@ -5788,7 +7853,7 @@ msgstr ""
"Seznam ciljev katerih medpomnilnik podpira možnost lepljenja iz odložišča in "
"DND cilje"
-#: gtk/gtktexthandle.c:711 gtk/gtktexthandle.c:712 gtk/gtkwidget.c:1088
+#: gtk/gtktexthandle.c:721 gtk/gtktexthandle.c:722 gtk/gtkwidget.c:1122
msgid "Parent widget"
msgstr "Nadrejeni gradnik"
@@ -5804,24 +7869,24 @@ msgstr "Leva težnost"
msgid "Whether the mark has left gravity"
msgstr "Ali ima označba levo težnost"
-#: gtk/gtktexttag.c:201
+#: gtk/gtktexttag.c:205
msgid "Tag name"
msgstr "Ime oznake"
-#: gtk/gtktexttag.c:202
+#: gtk/gtktexttag.c:206
msgid "Name used to refer to the text tag. NULL for anonymous tags"
msgstr ""
"Ime, ki se nanaša na značko besedila. Prazna vrednost za neimenovane značke"
-#: gtk/gtktexttag.c:226
+#: gtk/gtktexttag.c:245
msgid "Background RGBA"
msgstr "Barva ozadja (RGBA)"
-#: gtk/gtktexttag.c:234
+#: gtk/gtktexttag.c:253
msgid "Background full height"
msgstr "Polna višina ozadja"
-#: gtk/gtktexttag.c:235
+#: gtk/gtktexttag.c:254
msgid ""
"Whether the background color fills the entire line height or only the height "
"of the tagged characters"
@@ -5829,27 +7894,23 @@ msgstr ""
"Ali barva ozadja napolni celotno višino vrstice ali le višino označenih "
"znakov"
-#: gtk/gtktexttag.c:257
+#: gtk/gtktexttag.c:291
msgid "Foreground RGBA"
msgstr "Barva ospredja (RGBA)"
-#: gtk/gtktexttag.c:265
-msgid "Text direction"
-msgstr "Smer besedila"
-
-#: gtk/gtktexttag.c:266
+#: gtk/gtktexttag.c:300
msgid "Text direction, e.g. right-to-left or left-to-right"
msgstr "Smer besedila, npr. od desne proti levi ali od leve proti desni"
-#: gtk/gtktexttag.c:315
+#: gtk/gtktexttag.c:349
msgid "Font style as a PangoStyle, e.g. PANGO_STYLE_ITALIC"
msgstr "Slog pisave kot PangoStyle, npr.: PANGO_STYLE_ITALIC"
-#: gtk/gtktexttag.c:324
+#: gtk/gtktexttag.c:358
msgid "Font variant as a PangoVariant, e.g. PANGO_VARIANT_SMALL_CAPS"
msgstr "Različica pisave kot PangoVariant, npr.: PANGO_VARIANT_SMALL_CAPS"
-#: gtk/gtktexttag.c:333
+#: gtk/gtktexttag.c:367
msgid ""
"Font weight as an integer, see predefined values in PangoWeight; for "
"example, PANGO_WEIGHT_BOLD"
@@ -5857,15 +7918,15 @@ msgstr ""
"Teža pisave kot celo število, poglejte vnaprej navedene vrednosti v "
"PangoWeight; npr.: PANGO_WEIGHT_BOLD"
-#: gtk/gtktexttag.c:344
+#: gtk/gtktexttag.c:378
msgid "Font stretch as a PangoStretch, e.g. PANGO_STRETCH_CONDENSED"
msgstr "Razteg pisave kot PangoStretch, npr.: PANGO_STRECTH_CONDENSED"
-#: gtk/gtktexttag.c:353
+#: gtk/gtktexttag.c:387
msgid "Font size in Pango units"
msgstr "Velikost pisave v enotah Pango"
-#: gtk/gtktexttag.c:363
+#: gtk/gtktexttag.c:397
msgid ""
"Font size as a scale factor relative to the default font size. This properly "
"adapts to theme changes etc. so is recommended. Pango predefines some scales "
@@ -5875,11 +7936,11 @@ msgstr ""
"Ta lastnost se prilagaja nastavitvam teme, zato je priporočena. Pango "
"vnaprej navede nekatera merila, npr.: PANGO_SCALE_X_LARGE"
-#: gtk/gtktexttag.c:383 gtk/gtktextview.c:834
+#: gtk/gtktexttag.c:417 gtk/gtktextview.c:842
msgid "Left, right, or center justification"
msgstr "Poravnava levo, desno ali po sredini"
-#: gtk/gtktexttag.c:402
+#: gtk/gtktexttag.c:436
msgid ""
"The language this text is in, as an ISO code. Pango can use this as a hint "
"when rendering the text. If not set, an appropriate default will be used."
@@ -5888,31 +7949,31 @@ msgstr ""
"uporabi to kot namig ob izrisovanju besedila. Če parameter ni nastavljen, bo "
"uporabljena privzeta vrednost."
-#: gtk/gtktexttag.c:409
+#: gtk/gtktexttag.c:443
msgid "Left margin"
msgstr "Levi rob"
-#: gtk/gtktexttag.c:410 gtk/gtktextview.c:855
+#: gtk/gtktexttag.c:444 gtk/gtktextview.c:863
msgid "Width of the left margin in pixels"
msgstr "Širina levega roba v slikovnih točkah"
-#: gtk/gtktexttag.c:419
+#: gtk/gtktexttag.c:453
msgid "Right margin"
msgstr "Desni rob"
-#: gtk/gtktexttag.c:420 gtk/gtktextview.c:875
+#: gtk/gtktexttag.c:454 gtk/gtktextview.c:883
msgid "Width of the right margin in pixels"
msgstr "Širina desnega roba v slikovnih točkah"
-#: gtk/gtktexttag.c:430 gtk/gtktextview.c:924
+#: gtk/gtktexttag.c:464 gtk/gtktextview.c:932
msgid "Indent"
msgstr "Zamik"
-#: gtk/gtktexttag.c:431 gtk/gtktextview.c:925
+#: gtk/gtktexttag.c:465 gtk/gtktextview.c:933
msgid "Amount to indent the paragraph, in pixels"
msgstr "Zamik odstavka (v slikovnih točkah)"
-#: gtk/gtktexttag.c:442
+#: gtk/gtktexttag.c:476
msgid ""
"Offset of text above the baseline (below the baseline if rise is negative) "
"in Pango units"
@@ -5920,365 +7981,433 @@ msgstr ""
"Odmik besedila nad osnovno črto (pod osnovno črto, je če dvig negativen) v "
"enotah Panga"
-#: gtk/gtktexttag.c:451
+#: gtk/gtktexttag.c:485
msgid "Pixels above lines"
msgstr "Slikovne točke nad vrsticami"
-#: gtk/gtktexttag.c:452 gtk/gtktextview.c:793
+#: gtk/gtktexttag.c:486 gtk/gtktextview.c:801
msgid "Pixels of blank space above paragraphs"
msgstr "Število slikovnih točk praznega prostora nad odstavki"
-#: gtk/gtktexttag.c:461
+#: gtk/gtktexttag.c:495
msgid "Pixels below lines"
msgstr "Slikovne točke pod vrsticami"
-#: gtk/gtktexttag.c:462 gtk/gtktextview.c:801
+#: gtk/gtktexttag.c:496 gtk/gtktextview.c:809
msgid "Pixels of blank space below paragraphs"
msgstr "Število slikovnih točk praznega prostora pod odstavki"
-#: gtk/gtktexttag.c:471
+#: gtk/gtktexttag.c:505
msgid "Pixels inside wrap"
msgstr "Slikovne točke znotraj preloma"
-#: gtk/gtktexttag.c:472 gtk/gtktextview.c:809
+#: gtk/gtktexttag.c:506 gtk/gtktextview.c:817
msgid "Pixels of blank space between wrapped lines in a paragraph"
msgstr ""
"Število slikovnih točk praznega prostora med prelomi vrstic znotraj odstavkov"
-#: gtk/gtktexttag.c:510
+#: gtk/gtktexttag.c:544
msgid "Underline RGBA"
msgstr "Barva podčrtanega"
-#: gtk/gtktexttag.c:511
+#: gtk/gtktexttag.c:545
msgid "Color of underline for this text"
msgstr "Barva podčrtave za to besedilo"
-#: gtk/gtktexttag.c:526
+#: gtk/gtktexttag.c:560
msgid "Strikethrough RGBA"
msgstr "Barva prečrtanja v RGBA"
-#: gtk/gtktexttag.c:527
+#: gtk/gtktexttag.c:561
msgid "Color of strikethrough for this text"
msgstr "Barva prečrtanja za to besedilo"
-#: gtk/gtktexttag.c:535 gtk/gtktextview.c:825
+#: gtk/gtktexttag.c:569 gtk/gtktextview.c:833
msgid ""
"Whether to wrap lines never, at word boundaries, or at character boundaries"
msgstr "Ali naj se vrstice prelomijo na meji besed, na meji znakov ali nikoli"
-#: gtk/gtktexttag.c:545 gtk/gtktextview.c:933
+#: gtk/gtktexttag.c:579 gtk/gtktextview.c:941
msgid "Custom tabs for this text"
msgstr "Poljubni zavihki za to besedilo"
-#: gtk/gtktexttag.c:563
+#: gtk/gtktexttag.c:597
msgid "Invisible"
msgstr "Nevidno"
-#: gtk/gtktexttag.c:564
+#: gtk/gtktexttag.c:598
msgid "Whether this text is hidden."
msgstr "Ali naj je to besedilo skrito"
-#: gtk/gtktexttag.c:578
+#: gtk/gtktexttag.c:612
msgid "Paragraph background color name"
msgstr "Ime barve ozadja odstavka"
-#: gtk/gtktexttag.c:579
+#: gtk/gtktexttag.c:613
msgid "Paragraph background color as a string"
msgstr "Barva ozadja odstavka kot niz"
-#: gtk/gtktexttag.c:593
+#: gtk/gtktexttag.c:629
+msgid "Paragraph background color"
+msgstr "Barva ozadja odstavka"
+
+#: gtk/gtktexttag.c:630
+msgid "Paragraph background color as a GdkColor"
+msgstr "Barva ozadja odstavka kot (po možnosti ni rezerviran) GdkColor"
+
+#: gtk/gtktexttag.c:644
msgid "Paragraph background RGBA"
msgstr "Barva ozadja odstavka (RGBA)"
-#: gtk/gtktexttag.c:594
+#: gtk/gtktexttag.c:645
msgid "Paragraph background RGBA as a GdkRGBA"
msgstr "Barva ozadja odstavka (RGBA kot GdkRGBA)"
-#: gtk/gtktexttag.c:611
+#: gtk/gtktexttag.c:662
msgid "Fallback"
msgstr "Nadomestne pisave"
-#: gtk/gtktexttag.c:612
+#: gtk/gtktexttag.c:663
msgid "Whether font fallback is enabled."
msgstr "Ali naj se uporabijo nadomestne pisave."
-#: gtk/gtktexttag.c:626
+#: gtk/gtktexttag.c:677
msgid "Letter Spacing"
msgstr "Določi razmik črk"
-#: gtk/gtktexttag.c:627
+#: gtk/gtktexttag.c:678
msgid "Extra spacing between graphemes"
msgstr "Dodaten razmik med grafemi"
-#: gtk/gtktexttag.c:641
+#: gtk/gtktexttag.c:692
msgid "Font Features"
msgstr "Možnosti pisave"
-#: gtk/gtktexttag.c:642
+#: gtk/gtktexttag.c:693
msgid "OpenType Font Features to use"
msgstr "Možnosti pisave OpenType za uporabo"
-#: gtk/gtktexttag.c:660
+#: gtk/gtktexttag.c:711
msgid "Margin Accumulates"
msgstr "Kopičenje robov"
-#: gtk/gtktexttag.c:661
+#: gtk/gtktexttag.c:712
msgid "Whether left and right margins accumulate."
msgstr "Ali se levi in desni robovi kopičijo."
-#: gtk/gtktexttag.c:674
+#: gtk/gtktexttag.c:725
msgid "Background full height set"
msgstr "Nastavi polno višino ozadja"
-#: gtk/gtktexttag.c:675
+#: gtk/gtktexttag.c:726
msgid "Whether this tag affects background height"
msgstr "Ali naj ta oznaka vpliva na višino ozadja"
-#: gtk/gtktexttag.c:714
+#: gtk/gtktexttag.c:765
msgid "Justification set"
msgstr "Nastavi poravnavo"
-#: gtk/gtktexttag.c:715
+#: gtk/gtktexttag.c:766
msgid "Whether this tag affects paragraph justification"
msgstr "Ali ta oznaka vpliva na poravnavo odstavka"
-#: gtk/gtktexttag.c:722
+#: gtk/gtktexttag.c:773
msgid "Left margin set"
msgstr "Nastavi levi rob"
-#: gtk/gtktexttag.c:723
+#: gtk/gtktexttag.c:774
msgid "Whether this tag affects the left margin"
msgstr "Ali ta oznaka vpliva na levi rob"
-#: gtk/gtktexttag.c:726
+#: gtk/gtktexttag.c:777
msgid "Indent set"
msgstr "Nastavi zamik"
-#: gtk/gtktexttag.c:727
+#: gtk/gtktexttag.c:778
msgid "Whether this tag affects indentation"
msgstr "Ali ta oznaka vpliva na zamik"
-#: gtk/gtktexttag.c:734
+#: gtk/gtktexttag.c:785
msgid "Pixels above lines set"
msgstr "Nastavi slikovne točke nad črtami"
-#: gtk/gtktexttag.c:735 gtk/gtktexttag.c:739
+#: gtk/gtktexttag.c:786 gtk/gtktexttag.c:790
msgid "Whether this tag affects the number of pixels above lines"
msgstr "Ali ta oznaka vpliva na število slikovnih točk nad črtami"
-#: gtk/gtktexttag.c:738
+#: gtk/gtktexttag.c:789
msgid "Pixels below lines set"
msgstr "Nastavi slikovne točke pod črtami"
-#: gtk/gtktexttag.c:742
+#: gtk/gtktexttag.c:793
msgid "Pixels inside wrap set"
msgstr "Nastavi slikovne točke v prelomih"
-#: gtk/gtktexttag.c:743
+#: gtk/gtktexttag.c:794
msgid "Whether this tag affects the number of pixels between wrapped lines"
msgstr "Ali ta oznaka vpliva na število slikovnih točk med prelomi vrstic"
-#: gtk/gtktexttag.c:750
+#: gtk/gtktexttag.c:801
msgid "Right margin set"
msgstr "Nastavi desni rob"
-#: gtk/gtktexttag.c:751
+#: gtk/gtktexttag.c:802
msgid "Whether this tag affects the right margin"
msgstr "Ali naj ta oznaka vpliva na desni rob"
-#: gtk/gtktexttag.c:765
+#: gtk/gtktexttag.c:816
msgid "Underline RGBA set"
msgstr "Nastavi barvo podčrtanosti"
-#: gtk/gtktexttag.c:766
+#: gtk/gtktexttag.c:817
msgid "Whether this tag affects underlining color"
msgstr "Ali naj ta oznaka vpliva na barvo podčrtanega"
-#: gtk/gtktexttag.c:776
+#: gtk/gtktexttag.c:827
msgid "Strikethrough RGBA set"
msgstr "Nastavi barvo prečrtanega"
-#: gtk/gtktexttag.c:777
+#: gtk/gtktexttag.c:828
msgid "Whether this tag affects strikethrough color"
msgstr "Ali naj ta oznaka vpliva na barvo prečrtanega"
-#: gtk/gtktexttag.c:780
+#: gtk/gtktexttag.c:831
msgid "Wrap mode set"
msgstr "Nastavi način prelamljanja"
-#: gtk/gtktexttag.c:781
+#: gtk/gtktexttag.c:832
msgid "Whether this tag affects line wrap mode"
msgstr "Ali ta oznaka vpliva na način prelamljanja"
-#: gtk/gtktexttag.c:784
+#: gtk/gtktexttag.c:835
msgid "Tabs set"
msgstr "Nastavi zavihke"
-#: gtk/gtktexttag.c:785
+#: gtk/gtktexttag.c:836
msgid "Whether this tag affects tabs"
msgstr "Ali naj ta oznaka vpliva na zavihke"
-#: gtk/gtktexttag.c:788
+#: gtk/gtktexttag.c:839
msgid "Invisible set"
msgstr "Nastavi nevidnost"
-#: gtk/gtktexttag.c:789
+#: gtk/gtktexttag.c:840
msgid "Whether this tag affects text visibility"
msgstr "Ali ta značka vpliva na nevidnost"
-#: gtk/gtktexttag.c:792
+#: gtk/gtktexttag.c:843
msgid "Paragraph background set"
msgstr "Nastavi barvo ozadja odstavka"
-#: gtk/gtktexttag.c:793
+#: gtk/gtktexttag.c:844
msgid "Whether this tag affects the paragraph background color"
msgstr "Ali naj ta oznaka vpliva na barvo ozadja odstavka"
-#: gtk/gtktexttag.c:796
+#: gtk/gtktexttag.c:847
msgid "Fallback set"
msgstr "Nastavi nadomestne pisave"
-#: gtk/gtktexttag.c:797
+#: gtk/gtktexttag.c:848
msgid "Whether this tag affects font fallback"
msgstr "Ali naj ta oznaka vpliva na nadomestne pisave"
-#: gtk/gtktexttag.c:800
+#: gtk/gtktexttag.c:851
msgid "Letter spacing set"
msgstr "Nastavi razmik črk"
-#: gtk/gtktexttag.c:801
+#: gtk/gtktexttag.c:852
msgid "Whether this tag affects letter spacing"
msgstr "Ali naj ta oznaka vpliva na razmik črk"
-#: gtk/gtktexttag.c:804
+#: gtk/gtktexttag.c:855
msgid "Font features set"
msgstr "Nabor značilnosti pisave"
-#: gtk/gtktexttag.c:805
+#: gtk/gtktexttag.c:856
msgid "Whether this tag affects font features"
msgstr "Ali ta oznaka vpliva na lastnosti pisave"
-#: gtk/gtktextview.c:792
+#: gtk/gtktextview.c:800
msgid "Pixels Above Lines"
msgstr "Slikovne točke nad vrsticami"
-#: gtk/gtktextview.c:800
+#: gtk/gtktextview.c:808
msgid "Pixels Below Lines"
msgstr "Slikovne točke pod vrsticami"
-#: gtk/gtktextview.c:808
+#: gtk/gtktextview.c:816
msgid "Pixels Inside Wrap"
msgstr "Slikovne točke znotraj preloma"
-#: gtk/gtktextview.c:824
+#: gtk/gtktextview.c:832
msgid "Wrap Mode"
msgstr "Način preloma"
-#: gtk/gtktextview.c:854
+#: gtk/gtktextview.c:862
msgid "Left Margin"
msgstr "Levi rob"
-#: gtk/gtktextview.c:874
+#: gtk/gtktextview.c:882
msgid "Right Margin"
msgstr "Desni rob"
-#: gtk/gtktextview.c:895
+#: gtk/gtktextview.c:903
msgid "Top Margin"
msgstr "Zgornji rob"
-#: gtk/gtktextview.c:896
+#: gtk/gtktextview.c:904
msgid "Height of the top margin in pixels"
msgstr "Višina zgornjega roba v točkah"
-#: gtk/gtktextview.c:916
+#: gtk/gtktextview.c:924
msgid "Bottom Margin"
msgstr "Spodnji rob"
-#: gtk/gtktextview.c:917
+#: gtk/gtktextview.c:925
msgid "Height of the bottom margin in pixels"
msgstr "Višina spodnjega roba v točkah"
-#: gtk/gtktextview.c:940
+#: gtk/gtktextview.c:948
msgid "Cursor Visible"
msgstr "Vidna kazalka"
-#: gtk/gtktextview.c:941
+#: gtk/gtktextview.c:949
msgid "If the insertion cursor is shown"
msgstr "Ali je vstavitvena kazalka vidna"
-#: gtk/gtktextview.c:948
+#: gtk/gtktextview.c:956
msgid "Buffer"
msgstr "Medpomnilnik"
-#: gtk/gtktextview.c:949
+#: gtk/gtktextview.c:957
msgid "The buffer which is displayed"
msgstr "Prikazan medpomnilnik"
-#: gtk/gtktextview.c:957
+#: gtk/gtktextview.c:965
msgid "Whether entered text overwrites existing contents"
msgstr "Ali naj vneseno besedilo prepiše obstoječo vsebino"
-#: gtk/gtktextview.c:964
+#: gtk/gtktextview.c:972
msgid "Accepts tab"
msgstr "Sprejme tabulator"
-#: gtk/gtktextview.c:965
+#: gtk/gtktextview.c:973
msgid "Whether Tab will result in a tab character being entered"
msgstr "Ali naj pritisk na tipko Tab povzroči vnos tabulatorja"
-#: gtk/gtktextview.c:1053
+#: gtk/gtktextview.c:1061
msgid "Monospace"
msgstr "Monospace"
-#: gtk/gtktextview.c:1054
+#: gtk/gtktextview.c:1062
msgid "Whether to use a monospace font"
msgstr "Ali naj se uporabijo pisave stalne širine"
-#: gtk/gtktogglebutton.c:157 gtk/gtktoggletoolbutton.c:116
+#: gtk/gtktextview.c:1080
+msgid "Error underline color"
+msgstr "Barva podčrtovanja napak"
+
+#: gtk/gtktextview.c:1081
+msgid "Color with which to draw error-indication underlines"
+msgstr "Barva, s katero naj bodo podčrtane nakazane napake"
+
+#: gtk/gtktogglebutton.c:189 gtk/gtktoggletoolbutton.c:131
msgid "If the toggle button should be pressed in"
msgstr "Ali naj bo preklopni gumb pritisnjen"
-#: gtk/gtktoolbar.c:494 gtk/gtktoolpalette.c:945
+#: gtk/gtktogglebutton.c:196
+msgid "If the toggle button is in an \"in between\" state"
+msgstr "Ali je preklopni gumb v »vmesnem« stanju"
+
+#: gtk/gtktogglebutton.c:202
+msgid "Draw Indicator"
+msgstr "Izriši kazalnik"
+
+#: gtk/gtktogglebutton.c:203
+msgid "If the toggle part of the button is displayed"
+msgstr "Ali je preklopni del gumba prikazan"
+
+#: gtk/gtktoolbar.c:535 gtk/gtktoolpalette.c:995
msgid "Toolbar Style"
msgstr "Slog orodne vrstice"
-#: gtk/gtktoolbar.c:495
+#: gtk/gtktoolbar.c:536
msgid "How to draw the toolbar"
msgstr "Kako naj se izriše orodna vrstica"
-#: gtk/gtktoolbar.c:502
+#: gtk/gtktoolbar.c:543
msgid "Show Arrow"
msgstr "Pokaži puščico"
-#: gtk/gtktoolbar.c:503
-msgid "If an arrow should be shown if the toolbar doesn’t fit"
+#: gtk/gtktoolbar.c:544
+msgid "If an arrow should be shown if the toolbar doesn't fit"
msgstr "Ali naj bo puščica prikazana, če orodna vrstica ni ustreznih mer"
-#: gtk/gtktoolbar.c:524
+#: gtk/gtktoolbar.c:565
msgid "Size of icons in this toolbar"
msgstr "Velikost ikon te orodne vrstice"
-#: gtk/gtktoolbar.c:539 gtk/gtktoolpalette.c:931
+#: gtk/gtktoolbar.c:580 gtk/gtktoolpalette.c:981
msgid "Icon size set"
msgstr "Nastavitev velikosti ikone"
-#: gtk/gtktoolbar.c:540 gtk/gtktoolpalette.c:932
+#: gtk/gtktoolbar.c:581 gtk/gtktoolpalette.c:982
msgid "Whether the icon-size property has been set"
msgstr "Ali je določena lastnost velikosti ikone"
-#: gtk/gtktoolbar.c:549
+#: gtk/gtktoolbar.c:590
msgid "Whether the item should receive extra space when the toolbar grows"
msgstr "Ali naj predmet dobi dodaten prostor, ko se orodna vrstica poveča"
-#: gtk/gtktoolbar.c:557 gtk/gtktoolitemgroup.c:1591
+#: gtk/gtktoolbar.c:598 gtk/gtktoolitemgroup.c:1691
msgid "Whether the item should be the same size as other homogeneous items"
msgstr "Ali naj bo predmet enake velikosti kot ostali predmeti"
-#: gtk/gtktoolbutton.c:216
+#: gtk/gtktoolbar.c:612
+msgid "Spacer size"
+msgstr "Velikost ločilnikov"
+
+#: gtk/gtktoolbar.c:613
+msgid "Size of spacers"
+msgstr "Velikost ločilnikov"
+
+#: gtk/gtktoolbar.c:631
+msgid "Amount of border space between the toolbar shadow and the buttons"
+msgstr "Količina robnega prostora med senco orodne vrstice in gumbi"
+
+#: gtk/gtktoolbar.c:639
+msgid "Maximum child expand"
+msgstr "Največja razširitev podrejenega predmeta"
+
+#: gtk/gtktoolbar.c:640
+msgid "Maximum amount of space an expandable item will be given"
+msgstr "Največja količina prostora, ki jo ima na voljo raztegljivi predmet"
+
+#: gtk/gtktoolbar.c:656
+msgid "Space style"
+msgstr "Slog ločilnikov"
+
+#: gtk/gtktoolbar.c:657
+msgid "Whether spacers are vertical lines or just blank"
+msgstr "Ali naj so ločilniki navpične črte ali le prazen prostor"
+
+#: gtk/gtktoolbar.c:664
+msgid "Button relief"
+msgstr "Sprostitev gumba"
+
+#: gtk/gtktoolbar.c:665
+msgid "Type of bevel around toolbar buttons"
+msgstr "Vrsta obrobe okoli gumbov orodne vrstice"
+
+#: gtk/gtktoolbar.c:681
+msgid "Style of bevel around the toolbar"
+msgstr "Slog obrobe okoli orodne vrstice"
+
+#: gtk/gtktoolbutton.c:244
msgid "Text to show in the item."
msgstr "Prikazano besedilo v predmetu"
-#: gtk/gtktoolbutton.c:223
+#: gtk/gtktoolbutton.c:251
msgid ""
"If set, an underline in the label property indicates that the next character "
"should be used for the mnemonic accelerator key in the overflow menu"
@@ -6286,51 +8415,39 @@ msgstr ""
"Izbrana možnost omogoča, da podčrtaj v besedilu pove, da naj bo naslednji "
"znak uporabljen kot pospeševalna tipka"
-#: gtk/gtktoolbutton.c:230
+#: gtk/gtktoolbutton.c:258
msgid "Widget to use as the item label"
msgstr "Gradnik, uporabljen kot oznaka predmeta"
-#: gtk/gtktoolbutton.c:246
+#: gtk/gtktoolbutton.c:269
+msgid "Stock Id"
+msgstr "ID sklada"
+
+#: gtk/gtktoolbutton.c:270
+msgid "The stock icon displayed on the item"
+msgstr "Privzeta ikona, prikazana na predmetu"
+
+#: gtk/gtktoolbutton.c:288
msgid "The name of the themed icon displayed on the item"
msgstr "Ime tematske ikone prikazane na predmetu"
-#: gtk/gtktoolbutton.c:252
+#: gtk/gtktoolbutton.c:294
msgid "Icon widget"
msgstr "Gradnik ikone"
-#: gtk/gtktoolbutton.c:253
+#: gtk/gtktoolbutton.c:295
msgid "Icon widget to display in the item"
msgstr "Ikonski gradnik, ki naj se prikaže v predmetu"
-#: gtk/gtktoolitem.c:129
-msgid "Visible when horizontal"
-msgstr "Viden, ko je orodna vrstica vodoravna"
-
-#: gtk/gtktoolitem.c:130
-msgid ""
-"Whether the toolbar item is visible when the toolbar is in a horizontal "
-"orientation."
-msgstr ""
-"Ali naj bo predmet orodne vrstice viden, ko je orodna vrstica postavljena "
-"vodoravno."
-
-#: gtk/gtktoolitem.c:136
-msgid "Visible when vertical"
-msgstr "Viden, ko je orodna vrstica navpična"
-
-#: gtk/gtktoolitem.c:137
-msgid ""
-"Whether the toolbar item is visible when the toolbar is in a vertical "
-"orientation."
-msgstr ""
-"Ali naj bo predmet orodne vrstice viden, ko je orodna vrstica postavljena "
-"navpično."
+#: gtk/gtktoolbutton.c:311
+msgid "Icon spacing"
+msgstr "Razmik med ikonami"
-#: gtk/gtktoolitem.c:143
-msgid "Is important"
-msgstr "Je pomembno"
+#: gtk/gtktoolbutton.c:312
+msgid "Spacing in pixels between the icon and label"
+msgstr "Razmik (v slikovnih točkah) med ikono in oznako"
-#: gtk/gtktoolitem.c:144
+#: gtk/gtktoolitem.c:194
msgid ""
"Whether the toolbar item is considered important. When TRUE, toolbar buttons "
"show text in GTK_TOOLBAR_BOTH_HORIZ mode"
@@ -6338,105 +8455,117 @@ msgstr ""
"Ali je predmet orodne vrstice pomemben. Izbrana možnost omogoča, da gumbi "
"orodne vrstice prikažejo besedilo v načinu GTK_TOOLBAR_BOTH_HORIZ"
-#: gtk/gtktoolitemgroup.c:1556
+#: gtk/gtktoolitemgroup.c:1642
msgid "The human-readable title of this item group"
msgstr "Človeku berljiv naziv skupine predmetov"
-#: gtk/gtktoolitemgroup.c:1563
+#: gtk/gtktoolitemgroup.c:1649
msgid "A widget to display in place of the usual label"
msgstr "Gradnik, ki naj se prikaže na mestu običajne oznake"
-#: gtk/gtktoolitemgroup.c:1569
+#: gtk/gtktoolitemgroup.c:1655
msgid "Collapsed"
msgstr "Zloženo"
-#: gtk/gtktoolitemgroup.c:1570
+#: gtk/gtktoolitemgroup.c:1656
msgid "Whether the group has been collapsed and items are hidden"
msgstr "Ali je bila skupina zložena in predmeti niso vidni"
-#: gtk/gtktoolitemgroup.c:1576
+#: gtk/gtktoolitemgroup.c:1662
msgid "ellipsize"
msgstr "okrajševanje"
-#: gtk/gtktoolitemgroup.c:1577
+#: gtk/gtktoolitemgroup.c:1663
msgid "Ellipsize for item group headers"
msgstr "Okrajšaj za glave skupin predmetov"
-#: gtk/gtktoolitemgroup.c:1583
+#: gtk/gtktoolitemgroup.c:1669
msgid "Header Relief"
msgstr "Sproščanje glave"
-#: gtk/gtktoolitemgroup.c:1584
+#: gtk/gtktoolitemgroup.c:1670
msgid "Relief of the group header button"
msgstr "Sproščanje gumba glave skupine"
-#: gtk/gtktoolitemgroup.c:1598
+#: gtk/gtktoolitemgroup.c:1683
+msgid "Header Spacing"
+msgstr "Prostor glave"
+
+#: gtk/gtktoolitemgroup.c:1684
+msgid "Spacing between expander arrow and caption"
+msgstr "Razmik med nazivom in puščice razširilnika gumba"
+
+#: gtk/gtktoolitemgroup.c:1698
msgid "Whether the item should receive extra space when the group grows"
msgstr "Ali naj predmet prejme dodaten prostor, ko se skupina poveča"
-#: gtk/gtktoolitemgroup.c:1604
-msgid "Fill"
-msgstr "Zapolni"
-
-#: gtk/gtktoolitemgroup.c:1605
+#: gtk/gtktoolitemgroup.c:1705
msgid "Whether the item should fill the available space"
msgstr "Ali naj predmet zapolni ves razpoložljiv prostor"
-#: gtk/gtktoolitemgroup.c:1611
+#: gtk/gtktoolitemgroup.c:1711
msgid "New Row"
msgstr "Nova vrstica"
-#: gtk/gtktoolitemgroup.c:1612
+#: gtk/gtktoolitemgroup.c:1712
msgid "Whether the item should start a new row"
msgstr "Ali naj predmet začne novo vrstico"
-#: gtk/gtktoolitemgroup.c:1619
+#: gtk/gtktoolitemgroup.c:1719
msgid "Position of the item within this group"
msgstr "Položaj predmeta znotraj te skupine"
-#: gtk/gtktoolpalette.c:916
+#: gtk/gtktoolpalette.c:966
msgid "Size of icons in this tool palette"
msgstr "Velikost ikon v tej paleti orodij"
-#: gtk/gtktoolpalette.c:946
+#: gtk/gtktoolpalette.c:996
msgid "Style of items in the tool palette"
msgstr "Slog predmetov v paleti orodij"
-#: gtk/gtktoolpalette.c:962
+#: gtk/gtktoolpalette.c:1012
msgid "Exclusive"
msgstr "Izredno"
-#: gtk/gtktoolpalette.c:963
+#: gtk/gtktoolpalette.c:1013
msgid "Whether the item group should be the only expanded at a given time"
msgstr "Ali naj bo skupina predmetov edina razširjena ob določenem času"
-#: gtk/gtktoolpalette.c:978
+#: gtk/gtktoolpalette.c:1028
msgid ""
"Whether the item group should receive extra space when the palette grows"
msgstr "Ali naj skupina predmetov prejme dodaten prostor, ko se paleta poveča"
-#: gtk/gtktreemenu.c:251
+#: gtk/gtktreemenu.c:265
msgid "TreeMenu model"
msgstr "Model TreeMenu"
-#: gtk/gtktreemenu.c:252
+#: gtk/gtktreemenu.c:266
msgid "The model for the tree menu"
msgstr "Model za drevesni pogled"
-#: gtk/gtktreemenu.c:274
+#: gtk/gtktreemenu.c:288
msgid "TreeMenu root row"
msgstr "Korenska vrstica TreeMenu"
-#: gtk/gtktreemenu.c:275
+#: gtk/gtktreemenu.c:289
msgid "The TreeMenu will display children of the specified root"
msgstr ""
"Predmet TreeMenu bo prikazoval podrejene predmete določene korenske mape"
-#: gtk/gtktreemenu.c:310
+#: gtk/gtktreemenu.c:322
+msgid "Tearoff"
+msgstr "Odpenjalnik"
+
+#: gtk/gtktreemenu.c:323
+msgid "Whether the menu has a tearoff item"
+msgstr "Ali naj imajo meniji odpenjalnike"
+
+#: gtk/gtktreemenu.c:338
msgid "Wrap Width"
msgstr "Širina preloma"
-#: gtk/gtktreemenu.c:311
+#: gtk/gtktreemenu.c:339
msgid "Wrap width for laying out items in a grid"
msgstr "Prelomi širino za razporeditev predmetov v mreži"
@@ -6464,233 +8593,317 @@ msgstr "Model TreeModelSort"
msgid "The model for the TreeModelSort to sort"
msgstr "Način po katerem naj razvršča TreeModelSort"
-#: gtk/gtktreeview.c:1021
+#: gtk/gtktreeview.c:1033
msgid "TreeView Model"
msgstr "Model TreeView"
-#: gtk/gtktreeview.c:1022
+#: gtk/gtktreeview.c:1034
msgid "The model for the tree view"
msgstr "Model drevesnega pogleda"
-#: gtk/gtktreeview.c:1028
+#: gtk/gtktreeview.c:1040
msgid "Headers Visible"
msgstr "Vidne glave"
-#: gtk/gtktreeview.c:1029
+#: gtk/gtktreeview.c:1041
msgid "Show the column header buttons"
msgstr "Pokaži gumbe glave stolpca"
-#: gtk/gtktreeview.c:1035
+#: gtk/gtktreeview.c:1047
msgid "Headers Clickable"
msgstr "Klikljive glave"
-#: gtk/gtktreeview.c:1036
+#: gtk/gtktreeview.c:1048
msgid "Column headers respond to click events"
msgstr "Glave stolpcev se odzivajo na dogodke klikov"
-#: gtk/gtktreeview.c:1042
+#: gtk/gtktreeview.c:1054
msgid "Expander Column"
msgstr "Stolpec razširilnika"
-#: gtk/gtktreeview.c:1043
+#: gtk/gtktreeview.c:1055
msgid "Set the column for the expander column"
msgstr "Nastavi stolpec stolpca razširilnika"
-#: gtk/gtktreeview.c:1056
+#: gtk/gtktreeview.c:1076
+msgid "Rules Hint"
+msgstr "Namig ravnil"
+
+#: gtk/gtktreeview.c:1077
+msgid "Set a hint to the theme engine to draw rows in alternating colors"
+msgstr "Nastavi namig programniku tem, da izriše vrstice izmenljivih barv"
+
+#: gtk/gtktreeview.c:1083
msgid "Enable Search"
msgstr "Omogoči iskanje"
-#: gtk/gtktreeview.c:1057
+#: gtk/gtktreeview.c:1084
msgid "View allows user to search through columns interactively"
msgstr "Pogled dovoli uporabniku, da interaktivno išče po stolpcih"
-#: gtk/gtktreeview.c:1063
+#: gtk/gtktreeview.c:1090
msgid "Search Column"
msgstr "Stolpec iskanja"
-#: gtk/gtktreeview.c:1064
+#: gtk/gtktreeview.c:1091
msgid "Model column to search through during interactive search"
msgstr "Stolpec preko katerega naj poteka iskanje med odzivnim iskanjem"
-#: gtk/gtktreeview.c:1082
+#: gtk/gtktreeview.c:1109
msgid "Fixed Height Mode"
msgstr "Način nespremenljive višine"
-#: gtk/gtktreeview.c:1083
+#: gtk/gtktreeview.c:1110
msgid "Speeds up GtkTreeView by assuming that all rows have the same height"
msgstr ""
"Pospeši delovanje GtkTreeView s predvidevanjem, da so vse vrstice enake "
"višine"
-#: gtk/gtktreeview.c:1102
+#: gtk/gtktreeview.c:1129
msgid "Hover Selection"
msgstr "Lebdenje izbora"
-#: gtk/gtktreeview.c:1103
+#: gtk/gtktreeview.c:1130
msgid "Whether the selection should follow the pointer"
msgstr "Ali naj izbor sledi kazalcu."
-#: gtk/gtktreeview.c:1121
+#: gtk/gtktreeview.c:1148
msgid "Hover Expand"
msgstr "Razširi pod kazalcem"
-#: gtk/gtktreeview.c:1122
+#: gtk/gtktreeview.c:1149
msgid ""
"Whether rows should be expanded/collapsed when the pointer moves over them"
msgstr "Ali naj se vrstice razširijo/zložijo, ko se kazalec premakne čeznje."
-#: gtk/gtktreeview.c:1135
+#: gtk/gtktreeview.c:1162
msgid "Show Expanders"
msgstr "Pokaži razširjevalnike"
-#: gtk/gtktreeview.c:1136
+#: gtk/gtktreeview.c:1163
msgid "View has expanders"
msgstr "Pogled ima razširilnike"
-#: gtk/gtktreeview.c:1149
+#: gtk/gtktreeview.c:1176
msgid "Level Indentation"
msgstr "Zamik ravni"
-#: gtk/gtktreeview.c:1150
+#: gtk/gtktreeview.c:1177
msgid "Extra indentation for each level"
msgstr "Dodaten zamik za vsako raven"
# Rubber banding is a system of keeping track of a graphic, such as a line, a rectangle, or an ellipse, etc, you are drawing.
-#: gtk/gtktreeview.c:1157
+#: gtk/gtktreeview.c:1184
msgid "Rubber Banding"
msgstr "Prožno sledenje risanja"
-#: gtk/gtktreeview.c:1158
+#: gtk/gtktreeview.c:1185
msgid ""
"Whether to enable selection of multiple items by dragging the mouse pointer"
msgstr ""
"Ali naj bo z vleko miškinega kazalca omogočena izbira več datotek hkrati"
-#: gtk/gtktreeview.c:1164
+#: gtk/gtktreeview.c:1191
msgid "Enable Grid Lines"
msgstr "Omogoči drevesne črte"
-#: gtk/gtktreeview.c:1165
+#: gtk/gtktreeview.c:1192
msgid "Whether grid lines should be drawn in the tree view"
msgstr "Ali naj bodo v drevesnem pogledu izrisane mrežne črte"
-#: gtk/gtktreeview.c:1172
+#: gtk/gtktreeview.c:1199
msgid "Enable Tree Lines"
msgstr "Omogoči drevesne črte"
-#: gtk/gtktreeview.c:1173
+#: gtk/gtktreeview.c:1200
msgid "Whether tree lines should be drawn in the tree view"
msgstr "Ali naj bodo v drevesnem pogledu izrisane drevesne črte"
-#: gtk/gtktreeview.c:1180
+#: gtk/gtktreeview.c:1207
msgid "The column in the model containing the tooltip texts for the rows"
msgstr "Stolpec modela, ki vsebuje besedilo namigov vrstic."
-#: gtk/gtktreeviewcolumn.c:246
+#: gtk/gtktreeview.c:1245
+msgid "Vertical Separator Width"
+msgstr "Širina navpičnega ločilnika"
+
+#: gtk/gtktreeview.c:1246
+msgid "Vertical space between cells. Must be an even number"
+msgstr "Navpični prostor med celicami. Mora biti sodo število"
+
+#: gtk/gtktreeview.c:1254
+msgid "Horizontal Separator Width"
+msgstr "Širina vodoravnega ločilnika"
+
+#: gtk/gtktreeview.c:1255
+msgid "Horizontal space between cells. Must be an even number"
+msgstr "Vodoravni prostor med celicami. Mora biti sodo število"
+
+#: gtk/gtktreeview.c:1263
+msgid "Allow Rules"
+msgstr "Dovoli ravnila"
+
+#: gtk/gtktreeview.c:1264
+msgid "Allow drawing of alternating color rows"
+msgstr "Dovoli risanje izmenično obarvanih vrstic"
+
+#: gtk/gtktreeview.c:1270
+msgid "Indent Expanders"
+msgstr "Zamakni razširilnike"
+
+#: gtk/gtktreeview.c:1271
+msgid "Make the expanders indented"
+msgstr "Naredi razširilnike zamaknjene"
+
+#: gtk/gtktreeview.c:1277
+msgid "Even Row Color"
+msgstr "Barva sodih vrstic"
+
+#: gtk/gtktreeview.c:1278
+msgid "Color to use for even rows"
+msgstr "Barva sodih vrstic"
+
+#: gtk/gtktreeview.c:1284
+msgid "Odd Row Color"
+msgstr "Barva lihih vrstic"
+
+#: gtk/gtktreeview.c:1285
+msgid "Color to use for odd rows"
+msgstr "Barva lihih vrstic"
+
+#: gtk/gtktreeview.c:1292
+msgid "Grid line width"
+msgstr "Širina mrežne črte"
+
+#: gtk/gtktreeview.c:1293
+msgid "Width, in pixels, of the tree view grid lines"
+msgstr "Širina (v slikovnih točkah) mrežnih črt v drevesnem pogledu"
+
+#: gtk/gtktreeview.c:1299
+msgid "Tree line width"
+msgstr "Širina drevesne črte"
+
+#: gtk/gtktreeview.c:1300
+msgid "Width, in pixels, of the tree view lines"
+msgstr "Širina (v slikovnih točkah) črt v drevesnem pogledu"
+
+#: gtk/gtktreeview.c:1306
+msgid "Grid line pattern"
+msgstr "Vzorec mrežne črte"
+
+#: gtk/gtktreeview.c:1307
+msgid "Dash pattern used to draw the tree view grid lines"
+msgstr "Črtkan vzorec, uporabljen za izris mrežnih črt drevesnega pogleda"
+
+#: gtk/gtktreeview.c:1313
+msgid "Tree line pattern"
+msgstr "Vzorec drevesne črte"
+
+#: gtk/gtktreeview.c:1314
+msgid "Dash pattern used to draw the tree view lines"
+msgstr "Črtkan vzorec, uporabljen za izris črt drevesnega pogleda"
+
+#: gtk/gtktreeviewcolumn.c:247
msgid "Whether to display the column"
msgstr "Ali naj je stolpec prikazan"
-#: gtk/gtktreeviewcolumn.c:252 gtk/gtkwindow.c:882
+#: gtk/gtktreeviewcolumn.c:253 gtk/gtkwindow.c:779
msgid "Resizable"
msgstr "Spremenljive velikosti"
-#: gtk/gtktreeviewcolumn.c:253
+#: gtk/gtktreeviewcolumn.c:254
msgid "Column is user-resizable"
msgstr "Stolpec je spremenljive velikosti"
-#: gtk/gtktreeviewcolumn.c:260
+#: gtk/gtktreeviewcolumn.c:261
msgid "Current X position of the column"
msgstr "Trenutni položaj X stolpca"
-#: gtk/gtktreeviewcolumn.c:268
+#: gtk/gtktreeviewcolumn.c:269
msgid "Current width of the column"
msgstr "Trenutna širina stolpca"
-#: gtk/gtktreeviewcolumn.c:283
+#: gtk/gtktreeviewcolumn.c:284
msgid "Sizing"
msgstr "Spreminjanje velikosti"
-#: gtk/gtktreeviewcolumn.c:284
+#: gtk/gtktreeviewcolumn.c:285
msgid "Resize mode of the column"
msgstr "Način spreminjanja velikosti stolpca"
-#: gtk/gtktreeviewcolumn.c:291
+#: gtk/gtktreeviewcolumn.c:292
msgid "Fixed Width"
msgstr "Nespremenljiva širina"
-#: gtk/gtktreeviewcolumn.c:292
+#: gtk/gtktreeviewcolumn.c:293
msgid "Current fixed width of the column"
msgstr "Trenutna nespremenljiva širina stolpca"
-#: gtk/gtktreeviewcolumn.c:300
+#: gtk/gtktreeviewcolumn.c:301
msgid "Minimum allowed width of the column"
msgstr "Najmanjša dovoljena širina stolpca"
-#: gtk/gtktreeviewcolumn.c:307
+#: gtk/gtktreeviewcolumn.c:308
msgid "Maximum Width"
msgstr "Največja širina"
-#: gtk/gtktreeviewcolumn.c:308
+#: gtk/gtktreeviewcolumn.c:309
msgid "Maximum allowed width of the column"
msgstr "Največja dovoljena širina stolpca"
-#: gtk/gtktreeviewcolumn.c:316
+#: gtk/gtktreeviewcolumn.c:317
msgid "Title to appear in column header"
msgstr "Naziv, ki naj se pojavi v glavi stolpca"
-#: gtk/gtktreeviewcolumn.c:323
+#: gtk/gtktreeviewcolumn.c:324
msgid "Column gets share of extra width allocated to the widget"
msgstr "Stolpec dobi del dodatne širine dodeljene gradniku"
-#: gtk/gtktreeviewcolumn.c:329
+#: gtk/gtktreeviewcolumn.c:330
msgid "Clickable"
msgstr "Klikljivo"
-#: gtk/gtktreeviewcolumn.c:330
+#: gtk/gtktreeviewcolumn.c:331
msgid "Whether the header can be clicked"
msgstr "Ali naj je glavo mogoče klikniti"
-#: gtk/gtktreeviewcolumn.c:337
+#: gtk/gtktreeviewcolumn.c:338
msgid "Widget to put in column header button instead of column title"
msgstr "Gradnik, ki naj bo v glavi stolpca namesto naziva stolpca"
-#: gtk/gtktreeviewcolumn.c:344
+#: gtk/gtktreeviewcolumn.c:345
msgid "X Alignment of the column header text or widget"
msgstr "Poravnava besedila glave stolpca ali gradnika po X"
-#: gtk/gtktreeviewcolumn.c:351
+#: gtk/gtktreeviewcolumn.c:352
msgid "Whether the column can be reordered around the headers"
msgstr "Ali je lahko stolpec pri glavah drugače urejen"
-#: gtk/gtktreeviewcolumn.c:357
+#: gtk/gtktreeviewcolumn.c:358
msgid "Sort indicator"
msgstr "Pokazatelj urejanja"
-#: gtk/gtktreeviewcolumn.c:358
+#: gtk/gtktreeviewcolumn.c:359
msgid "Whether to show a sort indicator"
msgstr "Ali naj se pokaže določilo razvrščanja"
-#: gtk/gtktreeviewcolumn.c:364
+#: gtk/gtktreeviewcolumn.c:365
msgid "Sort order"
msgstr "Vrstni red"
-#: gtk/gtktreeviewcolumn.c:365
+#: gtk/gtktreeviewcolumn.c:366
msgid "Sort direction the sort indicator should indicate"
msgstr "Smer razvrščanja, v katero kaže kazalnik razvrščanja"
-#: gtk/gtktreeviewcolumn.c:380
+#: gtk/gtktreeviewcolumn.c:381
msgid "Sort column ID"
msgstr "ID razvrščanja stolpcev"
-#: gtk/gtktreeviewcolumn.c:381
+#: gtk/gtktreeviewcolumn.c:382
msgid "Logical sort column ID this column sorts on when selected for sorting"
msgstr "Logični ID razvrščanja stolpcev, kadar je možnost izbrana"
-#: gtk/gtkviewport.c:251
-msgid "Shadow type"
-msgstr "Vrsta sence"
-
-#: gtk/gtkviewport.c:252
+#: gtk/gtkviewport.c:409
msgid "Determines how the shadowed box around the viewport is drawn"
msgstr "Določi, kako bo izrisan okvir okoli vidnega polja"
@@ -6702,23 +8915,25 @@ msgstr "Uporabi simbolne ikone"
msgid "Whether to use symbolic icons"
msgstr "Ali naj se uporabijo simbolne ikone"
-#: gtk/gtkwidget.c:1081
+#: gtk/gtkwidget.c:1115
msgid "Widget name"
msgstr "Ime gradnika"
-#: gtk/gtkwidget.c:1082
+#: gtk/gtkwidget.c:1116
msgid "The name of the widget"
msgstr "Ime gradnika"
-#: gtk/gtkwidget.c:1089
-msgid "The parent widget of this widget."
-msgstr "Nadrejeni gradnik tega gradnika."
+#: gtk/gtkwidget.c:1123
+msgid "The parent widget of this widget. Must be a Container widget"
+msgstr ""
+"Nadrejeni gradnik tega gradnika. Mora biti gradnik vrste Container "
+"(vsebovalnik)"
-#: gtk/gtkwidget.c:1095
+#: gtk/gtkwidget.c:1129
msgid "Width request"
msgstr "Zahtevek po širini"
-#: gtk/gtkwidget.c:1096
+#: gtk/gtkwidget.c:1130
msgid ""
"Override for width request of the widget, or -1 if natural request should be "
"used"
@@ -6726,11 +8941,11 @@ msgstr ""
"Prezri gradnikov zahtevek po širini, ali -1, če naj bo uporabljen običajni "
"zahtevek"
-#: gtk/gtkwidget.c:1103
+#: gtk/gtkwidget.c:1137
msgid "Height request"
msgstr "Zahtevek po višini"
-#: gtk/gtkwidget.c:1104
+#: gtk/gtkwidget.c:1138
msgid ""
"Override for height request of the widget, or -1 if natural request should "
"be used"
@@ -6738,247 +8953,429 @@ msgstr ""
"Prezri gradnikov zahtevek po višini, ali -1, če naj bo uporabljen običajni "
"zahtevek"
-#: gtk/gtkwidget.c:1112
+#: gtk/gtkwidget.c:1146
msgid "Whether the widget is visible"
msgstr "Ali naj je gradnik viden"
-#: gtk/gtkwidget.c:1119
+#: gtk/gtkwidget.c:1153
msgid "Whether the widget responds to input"
msgstr "Ali naj se gradnik odziva na vnos"
-#: gtk/gtkwidget.c:1125
+#: gtk/gtkwidget.c:1159
+msgid "Application paintable"
+msgstr "Program je izrisljiv"
+
+#: gtk/gtkwidget.c:1160
+msgid "Whether the application will paint directly on the widget"
+msgstr "Ali se bo program risal neposredno na gradnik"
+
+#: gtk/gtkwidget.c:1166
msgid "Can focus"
msgstr "Lahko prevzame dejavnost"
-#: gtk/gtkwidget.c:1126
+#: gtk/gtkwidget.c:1167
msgid "Whether the widget can accept the input focus"
msgstr "Ali lahko gradnik sprejme vnosno dejavnost"
-#: gtk/gtkwidget.c:1132
+#: gtk/gtkwidget.c:1173
msgid "Has focus"
msgstr "Je dejavno"
-#: gtk/gtkwidget.c:1133
+#: gtk/gtkwidget.c:1174
msgid "Whether the widget has the input focus"
msgstr "Ali vključuje gradnik vnosno dejavnost"
-#: gtk/gtkwidget.c:1139
+#: gtk/gtkwidget.c:1180
msgid "Is focus"
msgstr "Je dejaven"
-#: gtk/gtkwidget.c:1140
+#: gtk/gtkwidget.c:1181
msgid "Whether the widget is the focus widget within the toplevel"
msgstr "Ali je gradnik dejaven znotraj vrhnje ravni"
-#: gtk/gtkwidget.c:1158
+#: gtk/gtkwidget.c:1199
msgid "Focus on click"
msgstr "Dejavnost ob kliku"
-#: gtk/gtkwidget.c:1159
+#: gtk/gtkwidget.c:1200
msgid "Whether the widget should grab focus when it is clicked with the mouse"
msgstr "Ali naj se predmet ob kliku z miško postavi v žarišče"
-#: gtk/gtkwidget.c:1165
+#: gtk/gtkwidget.c:1206
msgid "Can default"
msgstr "Je lahko privzet"
-#: gtk/gtkwidget.c:1166
+#: gtk/gtkwidget.c:1207
msgid "Whether the widget can be the default widget"
msgstr "Ali naj je gradnik lahko privzet gradnik"
-#: gtk/gtkwidget.c:1172
+#: gtk/gtkwidget.c:1213
msgid "Has default"
msgstr "Je privzet"
-#: gtk/gtkwidget.c:1173
+#: gtk/gtkwidget.c:1214
msgid "Whether the widget is the default widget"
msgstr "Ali naj je gradnik privzeti gradnik"
-#: gtk/gtkwidget.c:1179
+#: gtk/gtkwidget.c:1220
msgid "Receives default"
msgstr "Sprejema privzeto"
-#: gtk/gtkwidget.c:1180
+#: gtk/gtkwidget.c:1221
msgid "If TRUE, the widget will receive the default action when it is focused"
msgstr ""
"Izbrana možnost omogoča, da bo gradnik sprejemal privzeta dejanja, kadar bo "
"dejaven"
-#: gtk/gtkwidget.c:1201
-msgid "Has tooltip"
-msgstr "Ima orodni namig"
+#: gtk/gtkwidget.c:1227
+msgid "Composite child"
+msgstr "Sestavljen podrejeni predmet"
-#: gtk/gtkwidget.c:1202
-msgid "Whether this widget has a tooltip"
-msgstr "Ali lahko gradniku določimo namig"
+#: gtk/gtkwidget.c:1228
+msgid "Whether the widget is part of a composite widget"
+msgstr "Ali je gradnik del sestavljenega gradnika"
-#: gtk/gtkwidget.c:1225
-msgid "Tooltip Text"
-msgstr "Besedilo orodnega namiga"
+#: gtk/gtkwidget.c:1243
+msgid "Style"
+msgstr "Slog"
-#: gtk/gtkwidget.c:1226 gtk/gtkwidget.c:1250
-msgid "The contents of the tooltip for this widget"
-msgstr "Vsebina orodnega namiga tega gradnika"
+#: gtk/gtkwidget.c:1244
+msgid ""
+"The style of the widget, which contains information about how it will look "
+"(colors etc)"
+msgstr "Slog gradnika, ki vsebuje podatke o tem kako bo videti (barve, itn.)"
-#: gtk/gtkwidget.c:1249
-msgid "Tooltip markup"
-msgstr "Oblika orodnega namiga"
+#: gtk/gtkwidget.c:1252
+msgid "Events"
+msgstr "Dogodki"
+
+#: gtk/gtkwidget.c:1253
+msgid "The event mask that decides what kind of GdkEvents this widget gets"
+msgstr "Maska dogodkov, ki določa katere vrste GdkEvents bo dobival ta gradnik"
+
+#: gtk/gtkwidget.c:1260
+msgid "No show all"
+msgstr "Brez prikazovanja vseh"
-#: gtk/gtkwidget.c:1264
-msgid "The widget’s window if it is realized"
+#: gtk/gtkwidget.c:1261
+msgid "Whether gtk_widget_show_all() should not affect this widget"
+msgstr "Ali možnost gtk_widget_show_all() ne vpliva na gradnik"
+
+#: gtk/gtkwidget.c:1283
+msgid "Whether this widget has a tooltip"
+msgstr "Ali lahko gradniku določimo namig"
+
+#: gtk/gtkwidget.c:1345
+msgid "The widget's window if it is realized"
msgstr "Okno gradnika, če je to udejanjeno"
-#: gtk/gtkwidget.c:1278
+#: gtk/gtkwidget.c:1360
+msgid "Double Buffered"
+msgstr "Dvojni medpomnilnik"
+
+#: gtk/gtkwidget.c:1361
+msgid "Whether the widget is double buffered"
+msgstr "Ali gradnik uporablja dvojni medpomnilnik"
+
+#: gtk/gtkwidget.c:1375
msgid "How to position in extra horizontal space"
msgstr "Določitev položaja v dodatnem vodoravnem prostoru"
-#: gtk/gtkwidget.c:1293
+#: gtk/gtkwidget.c:1390
msgid "How to position in extra vertical space"
msgstr "Določitev položaja v dodatnem navpičnem prostoru"
-#: gtk/gtkwidget.c:1312
+#: gtk/gtkwidget.c:1410
+msgid "Margin on Left"
+msgstr "Rob na levi strani"
+
+#: gtk/gtkwidget.c:1411
+msgid "Pixels of extra space on the left side"
+msgstr "Število slikovnih točk praznega prostora na levi strani"
+
+#: gtk/gtkwidget.c:1431
+msgid "Margin on Right"
+msgstr "Rob na desni strani"
+
+#: gtk/gtkwidget.c:1432
+msgid "Pixels of extra space on the right side"
+msgstr "Število slikovnih točk praznega prostora na desni strani"
+
+#: gtk/gtkwidget.c:1451
msgid "Margin on Start"
msgstr "Rob na začetku"
-#: gtk/gtkwidget.c:1313
+#: gtk/gtkwidget.c:1452
msgid "Pixels of extra space on the start"
msgstr "Število dodatnih slikovnih točk na začetku"
-#: gtk/gtkwidget.c:1332
+#: gtk/gtkwidget.c:1471
msgid "Margin on End"
msgstr "Rob na koncu"
-#: gtk/gtkwidget.c:1333
+#: gtk/gtkwidget.c:1472
msgid "Pixels of extra space on the end"
msgstr "Število dodatnih slikovnih točk na koncu"
-#: gtk/gtkwidget.c:1351
+#: gtk/gtkwidget.c:1490
msgid "Margin on Top"
msgstr "Rob na vrhu"
-#: gtk/gtkwidget.c:1352
+#: gtk/gtkwidget.c:1491
msgid "Pixels of extra space on the top side"
msgstr "Število slikovnih točk praznega prostora na vrhu"
-#: gtk/gtkwidget.c:1370
+#: gtk/gtkwidget.c:1509
msgid "Margin on Bottom"
msgstr "Rob na dnu"
-#: gtk/gtkwidget.c:1371
+#: gtk/gtkwidget.c:1510
msgid "Pixels of extra space on the bottom side"
msgstr "Število slikovnih točk praznega prostora na dnu"
-#: gtk/gtkwidget.c:1386
+#: gtk/gtkwidget.c:1525
msgid "All Margins"
msgstr "Vsi robovi"
-#: gtk/gtkwidget.c:1387
+#: gtk/gtkwidget.c:1526
msgid "Pixels of extra space on all four sides"
msgstr "Število slikovnih točk praznega prostora na vseh štirih straneh"
-#: gtk/gtkwidget.c:1401
+#: gtk/gtkwidget.c:1540
msgid "Horizontal Expand"
msgstr "Vodoravno širjenje"
-#: gtk/gtkwidget.c:1402
+#: gtk/gtkwidget.c:1541
msgid "Whether widget wants more horizontal space"
msgstr "Ali naj gradnik zapolni celoten razpoložljiv vodoravni prostor"
-#: gtk/gtkwidget.c:1415
+#: gtk/gtkwidget.c:1554
msgid "Horizontal Expand Set"
msgstr "Določitev vodoravne razširitve"
-#: gtk/gtkwidget.c:1416
+#: gtk/gtkwidget.c:1555
msgid "Whether to use the hexpand property"
msgstr "Ali naj je uporabljena lastnost vodoravnega razširjanja"
-#: gtk/gtkwidget.c:1429
+#: gtk/gtkwidget.c:1568
msgid "Vertical Expand"
msgstr "Navpično širjenje"
-#: gtk/gtkwidget.c:1430
+#: gtk/gtkwidget.c:1569
msgid "Whether widget wants more vertical space"
msgstr "Ali naj gradnik zapolni celoten razpoložljiv navpični prostor"
-#: gtk/gtkwidget.c:1443
+#: gtk/gtkwidget.c:1582
msgid "Vertical Expand Set"
msgstr "Določitev navpične razširitve"
-#: gtk/gtkwidget.c:1444
+#: gtk/gtkwidget.c:1583
msgid "Whether to use the vexpand property"
msgstr "Ali naj je uporabljena lastnost navpičnega razširjanja"
-#: gtk/gtkwidget.c:1457
+#: gtk/gtkwidget.c:1596
msgid "Expand Both"
msgstr "Širjenje v vse smeri"
-#: gtk/gtkwidget.c:1458
+#: gtk/gtkwidget.c:1597
msgid "Whether widget wants to expand in both directions"
msgstr "Ali naj gradnik zapolni celoten razpoložljiv prostor"
-#: gtk/gtkwidget.c:1474
+#: gtk/gtkwidget.c:1613
msgid "Opacity for Widget"
msgstr "Prosojnost gradnika"
-#: gtk/gtkwidget.c:1475
+#: gtk/gtkwidget.c:1614
msgid "The opacity of the widget, from 0 to 1"
msgstr "Prosojnost gradnika, določena med 0 in 1"
-#: gtk/gtkwidget.c:1490
+#: gtk/gtkwidget.c:1629
msgid "Scale factor"
msgstr "Določilo prilagoditve velikosti"
-#: gtk/gtkwidget.c:1491
+#: gtk/gtkwidget.c:1630
msgid "The scaling factor of the window"
msgstr "Določilo prilagajanja velikosti okna"
-#: gtk/gtkwidget.c:1505
-msgid "CSS Name"
-msgstr "Ime CSS"
+#: gtk/gtkwidget.c:3449
+msgid "Interior Focus"
+msgstr "Notranja dejavnost"
+
+#: gtk/gtkwidget.c:3450
+msgid "Whether to draw the focus indicator inside widgets"
+msgstr "Ali naj se nariše pokazatelj dejavnosti znotraj gradnika"
+
+#: gtk/gtkwidget.c:3463
+msgid "Focus linewidth"
+msgstr "Širina črte prikaza dejavnosti"
+
+#: gtk/gtkwidget.c:3464
+msgid "Width, in pixels, of the focus indicator line"
+msgstr "Širina v točkah za črto kazalca dejavnosti"
+
+#: gtk/gtkwidget.c:3478
+msgid "Focus line dash pattern"
+msgstr "Vzorec črtkane črte oznake dejavnosti"
+
+#: gtk/gtkwidget.c:3479
+msgid ""
+"Dash pattern used to draw the focus indicator. The character values are "
+"interpreted as pixel widths of alternating on and off segments of the line."
+msgstr ""
+"Črtkan vzorec za izris pokazatelja žarišča. Znakovne vrednosti se tolmačijo "
+"kot širine slikovnih točk izmenjujočih se vključenih/izključenih odsekov "
+"črte."
+
+#: gtk/gtkwidget.c:3492
+msgid "Focus padding"
+msgstr "Blazinjenje oznake dejavnosti"
+
+#: gtk/gtkwidget.c:3493
+msgid "Width, in pixels, between focus indicator and the widget 'box'"
+msgstr "Širina v točkah med pokazateljem dejavnosti in okvirjem gradnika"
+
+#: gtk/gtkwidget.c:3507
+msgid "Cursor color"
+msgstr "Barva kazalke"
+
+#: gtk/gtkwidget.c:3508
+msgid "Color with which to draw insertion cursor"
+msgstr "Barva, s katero naj bo izrisana vnosna kazalka"
+
+#: gtk/gtkwidget.c:3521
+msgid "Secondary cursor color"
+msgstr "Barva drugotne kazalke"
+
+#: gtk/gtkwidget.c:3522
+msgid ""
+"Color with which to draw the secondary insertion cursor when editing mixed "
+"right-to-left and left-to-right text"
+msgstr ""
+"Barva, s katero bo izrisana drugotna kazalka vstavljanja, kadar se ureja "
+"mešano besedilo desno-proti-levi in levo-proti-desni."
+
+#: gtk/gtkwidget.c:3528
+msgid "Cursor line aspect ratio"
+msgstr "Razmerje vrstice kazalke"
+
+#: gtk/gtkwidget.c:3529
+msgid "Aspect ratio with which to draw insertion cursor"
+msgstr "Razmerje, v katerem naj se izriše vnosna kazalka"
+
+#: gtk/gtkwidget.c:3535
+msgid "Window dragging"
+msgstr "Vleka okna"
+
+#: gtk/gtkwidget.c:3536
+msgid "Whether windows can be dragged and maximized by clicking on empty areas"
+msgstr "Ali je mogoče okna potegniti in razpeti s klikom na prazna območja"
+
+#: gtk/gtkwidget.c:3553
+msgid "Unvisited Link Color"
+msgstr "Barva neobiskanih povezav"
+
+#: gtk/gtkwidget.c:3554
+msgid "Color of unvisited links"
+msgstr "Barva neobiskanih povezav"
+
+#: gtk/gtkwidget.c:3570
+msgid "Visited Link Color"
+msgstr "Barva obiskane povezave"
+
+#: gtk/gtkwidget.c:3571
+msgid "Color of visited links"
+msgstr "Barva obiskanih povezav"
+
+#: gtk/gtkwidget.c:3589
+msgid "Wide Separators"
+msgstr "Široki ločilniki"
+
+#: gtk/gtkwidget.c:3590
+msgid ""
+"Whether separators have configurable width and should be drawn using a box "
+"instead of a line"
+msgstr ""
+"Ali je mogoče nastaviti širino ločilnika z izrisom okvirja namesto črte"
+
+#: gtk/gtkwidget.c:3607
+msgid "Separator Width"
+msgstr "Širina ločilnika"
-#: gtk/gtkwidget.c:1506
-msgid "The name of this widget in the CSS tree"
-msgstr "Ime gradnika v drevesni strukturi CSS"
+#: gtk/gtkwidget.c:3608
+msgid "The width of separators if wide-separators is TRUE"
+msgstr "Širina ločilnikov, kadar je izbrana možnost \"Široki ločilniki\""
-#: gtk/gtkwindow.c:844
+#: gtk/gtkwidget.c:3625
+msgid "Separator Height"
+msgstr "Višina ločilnika"
+
+#: gtk/gtkwidget.c:3626
+msgid "The height of separators if \"wide-separators\" is TRUE"
+msgstr "Višina ločilnikov, kadar je izbrana možnost \"Široki ločilniki\""
+
+#: gtk/gtkwidget.c:3640
+msgid "Horizontal Scroll Arrow Length"
+msgstr "Dolžina puščic vodoravnega drsnika"
+
+#: gtk/gtkwidget.c:3641
+msgid "The length of horizontal scroll arrows"
+msgstr "Dolžina puščic vodoravnega drsnika"
+
+#: gtk/gtkwidget.c:3655
+msgid "Vertical Scroll Arrow Length"
+msgstr "Dolžina puščic navpičnega drsnika"
+
+#: gtk/gtkwidget.c:3656
+msgid "The length of vertical scroll arrows"
+msgstr "Dolžina puščic navpičnega drsnika"
+
+#: gtk/gtkwidget.c:3662 gtk/gtkwidget.c:3663
+msgid "Width of text selection handles"
+msgstr "Širina ročic za izbor besedila"
+
+#: gtk/gtkwidget.c:3668 gtk/gtkwidget.c:3669
+msgid "Height of text selection handles"
+msgstr "Višina ročic za izbor besedila"
+
+#: gtk/gtkwindow.c:741
msgid "Window Type"
msgstr "Vrsta okna"
-#: gtk/gtkwindow.c:845
+#: gtk/gtkwindow.c:742
msgid "The type of the window"
msgstr "Vrsta okna"
-#: gtk/gtkwindow.c:852
+#: gtk/gtkwindow.c:749
msgid "Window Title"
msgstr "Naziv okna"
-#: gtk/gtkwindow.c:853
+#: gtk/gtkwindow.c:750
msgid "The title of the window"
msgstr "Naziv okna"
-#: gtk/gtkwindow.c:859
+#: gtk/gtkwindow.c:756
msgid "Window Role"
msgstr "Vloga okna"
-#: gtk/gtkwindow.c:860
+#: gtk/gtkwindow.c:757
msgid "Unique identifier for the window to be used when restoring a session"
msgstr "Enoznačno določilo za okno pri ponovnem zagonu seje."
-#: gtk/gtkwindow.c:875
+#: gtk/gtkwindow.c:772
msgid "Startup ID"
msgstr "ID zagona"
-#: gtk/gtkwindow.c:876
+#: gtk/gtkwindow.c:773
msgid "Unique startup identifier for the window used by startup-notification"
msgstr ""
"Enoznačno določilo zagona za okno, ki ga uporablja program obveščanja med "
"zagonom."
-#: gtk/gtkwindow.c:883
+#: gtk/gtkwindow.c:780
msgid "If TRUE, users can resize the window"
msgstr "Izbrana možnost omogoča, da lahko uporabniki spreminjajo velikost okna"
-#: gtk/gtkwindow.c:890
+#: gtk/gtkwindow.c:787
msgid ""
"If TRUE, the window is modal (other windows are not usable while this one is "
"up)"
@@ -6986,76 +9383,92 @@ msgstr ""
"Izbrana možnost omogoča, da je okno modalno (medtem, ko je to okno dejavno, "
"drugih ni mogoče uporabljati)"
-#: gtk/gtkwindow.c:896
+#: gtk/gtkwindow.c:793
msgid "Window Position"
msgstr "Položaj okna"
-#: gtk/gtkwindow.c:897
+#: gtk/gtkwindow.c:794
msgid "The initial position of the window"
msgstr "Začetni položaj okna"
-#: gtk/gtkwindow.c:904
+#: gtk/gtkwindow.c:801
msgid "Default Width"
msgstr "Privzeta širina"
-#: gtk/gtkwindow.c:905
+#: gtk/gtkwindow.c:802
msgid "The default width of the window, used when initially showing the window"
msgstr "Uporabljena privzeta širina okna, kadar se okno pokaže prvič"
-#: gtk/gtkwindow.c:912
+#: gtk/gtkwindow.c:809
msgid "Default Height"
msgstr "Privzeta višina"
-#: gtk/gtkwindow.c:913
+#: gtk/gtkwindow.c:810
msgid ""
"The default height of the window, used when initially showing the window"
msgstr "Uporabljena privzeta višina okna, kadar se okno prikaže prvič"
-#: gtk/gtkwindow.c:920
+#: gtk/gtkwindow.c:817
msgid "Destroy with Parent"
msgstr "Zapri skupaj z nadrejenim predmetom"
-#: gtk/gtkwindow.c:921
+#: gtk/gtkwindow.c:818
msgid "If this window should be destroyed when the parent is destroyed"
msgstr "Ali naj se to okno zapre skupaj z nadrejenim predmetom"
-#: gtk/gtkwindow.c:928
+#: gtk/gtkwindow.c:831
+msgid "Hide the titlebar during maximization"
+msgstr "Skrij naslovno vrstico med razpenjanjem"
+
+#: gtk/gtkwindow.c:832
+msgid "If this window's titlebar should be hidden when the window is maximized"
+msgstr "Ali naj bo naslovna vrstica okna skrita, ko je okno povsem razprto"
+
+#: gtk/gtkwindow.c:839
msgid "Icon for this window"
msgstr "Ikona okna"
-#: gtk/gtkwindow.c:944
+#: gtk/gtkwindow.c:855
msgid "Mnemonics Visible"
msgstr "Menijske bližnjice so vidne"
-#: gtk/gtkwindow.c:945
+#: gtk/gtkwindow.c:856
msgid "Whether mnemonics are currently visible in this window"
msgstr "Ali naj bodo menijske bližnjice v oknu trenutno vidne"
-#: gtk/gtkwindow.c:961
+#: gtk/gtkwindow.c:872
msgid "Focus Visible"
msgstr "Žarišče je vidno"
-#: gtk/gtkwindow.c:962
+#: gtk/gtkwindow.c:873
msgid "Whether focus rectangles are currently visible in this window"
msgstr "Ali naj bodo pravokotniki žariščenja v oknu trenutno vidni"
-#: gtk/gtkwindow.c:977
+#: gtk/gtkwindow.c:888
msgid "Name of the themed icon for this window"
msgstr "Ime tematske ikone tega okna"
-#: gtk/gtkwindow.c:990
+#: gtk/gtkwindow.c:901
msgid "Is Active"
msgstr "Je dejavno"
-#: gtk/gtkwindow.c:991
+#: gtk/gtkwindow.c:902
msgid "Whether the toplevel is the current active window"
msgstr "Ali je na vrhu trenutno dejavno okno"
-#: gtk/gtkwindow.c:997
+#: gtk/gtkwindow.c:908
+msgid "Focus in Toplevel"
+msgstr "Dejavnost vrhnje ravni"
+
+#: gtk/gtkwindow.c:909
+msgid "Whether the input focus is within this GtkWindow"
+msgstr "Ali je dejavnost predmeta znotraj GtkWindow okna"
+
+#: gtk/gtkwindow.c:915
msgid "Type hint"
msgstr "Vrstni namig"
-#: gtk/gtkwindow.c:998
+#: gtk/gtkwindow.c:916
msgid ""
"Hint to help the desktop environment understand what kind of window this is "
"and how to treat it."
@@ -7063,96 +9476,118 @@ msgstr ""
"Namig, ki pomaga okolju namizja razumeti, kakšna vrsta okna je odprta in "
"kako z njim upravljati."
-#: gtk/gtkwindow.c:1005
+#: gtk/gtkwindow.c:923
msgid "Skip taskbar"
msgstr "Preskoči opravilno vrstico"
-#: gtk/gtkwindow.c:1006
+#: gtk/gtkwindow.c:924
msgid "TRUE if the window should not be in the task bar."
msgstr "Izbrana možnost onemogoči prikaz okna v opravilni vrstici"
-#: gtk/gtkwindow.c:1012
+#: gtk/gtkwindow.c:930
msgid "Skip pager"
msgstr "Preskoči preklopnik"
-#: gtk/gtkwindow.c:1013
+#: gtk/gtkwindow.c:931
msgid "TRUE if the window should not be in the pager."
msgstr "Izbrana možnost omogoča, da okno ni v preklopniku."
-#: gtk/gtkwindow.c:1019
+#: gtk/gtkwindow.c:937
msgid "Urgent"
msgstr "Nujno"
-#: gtk/gtkwindow.c:1020
-msgid "TRUE if the window should be brought to the user’s attention."
-msgstr ""
-"Izbrana možnost omogoča, da bo okno z utripanjem pridobilo uporabnikovo "
-"pozornost."
+#: gtk/gtkwindow.c:938
+msgid "TRUE if the window should be brought to the user's attention."
+msgstr "Izbrana možnost omogoča, da okno zahteva uporabnikovo pozornost."
-#: gtk/gtkwindow.c:1033
+#: gtk/gtkwindow.c:951
msgid "Accept focus"
msgstr "Sprejmi dejavnost"
-#: gtk/gtkwindow.c:1034
+#: gtk/gtkwindow.c:952
msgid "TRUE if the window should receive the input focus."
msgstr "Izbrana možnost omogoča, da okno postane dejavno."
-#: gtk/gtkwindow.c:1047
+#: gtk/gtkwindow.c:965
msgid "Focus on map"
msgstr "Dejavnost med preslikavo"
-#: gtk/gtkwindow.c:1048
+#: gtk/gtkwindow.c:966
msgid "TRUE if the window should receive the input focus when mapped."
msgstr "Izbrana možnost omogoča, da okno postane dejavno med preslikavo."
-#: gtk/gtkwindow.c:1061
+#: gtk/gtkwindow.c:979
msgid "Decorated"
msgstr "Okrašeno"
-#: gtk/gtkwindow.c:1062
+#: gtk/gtkwindow.c:980
msgid "Whether the window should be decorated by the window manager"
msgstr "Ali naj bo okno izrisano v slogu upravljalnika oken."
-#: gtk/gtkwindow.c:1075
+#: gtk/gtkwindow.c:993
msgid "Deletable"
msgstr "Izbrisljivo"
-#: gtk/gtkwindow.c:1076
+#: gtk/gtkwindow.c:994
msgid "Whether the window frame should have a close button"
msgstr "Ali naj ima okvir okna gumb za zapiranje"
-#: gtk/gtkwindow.c:1090
+#: gtk/gtkwindow.c:1014
+msgid "Resize grip"
+msgstr "Oprijemalnik velikosti"
+
+#: gtk/gtkwindow.c:1015
+msgid "Specifies whether the window should have a resize grip"
+msgstr "Določa ali ima okno oprijemalnik velikosti okna"
+
+#: gtk/gtkwindow.c:1030
+msgid "Resize grip is visible"
+msgstr "Oprijemalnik velikosti je viden."
+
+#: gtk/gtkwindow.c:1031
+msgid "Specifies whether the window's resize grip is visible."
+msgstr "Določa ali je oprijemalnik velikosti okna viden."
+
+#: gtk/gtkwindow.c:1045
msgid "Gravity"
msgstr "Težnost"
-#: gtk/gtkwindow.c:1091
+#: gtk/gtkwindow.c:1046
msgid "The window gravity of the window"
msgstr "Težnost okna"
-#: gtk/gtkwindow.c:1126
+#: gtk/gtkwindow.c:1081
msgid "Attached to Widget"
msgstr "Pripeto gradniku"
-#: gtk/gtkwindow.c:1127
+#: gtk/gtkwindow.c:1082
msgid "The widget where the window is attached"
msgstr "Gradnik, kateremu je pripeto okno"
-#: gtk/gtkwindow.c:1133
+#: gtk/gtkwindow.c:1088
msgid "Is maximized"
msgstr "Je razpeto"
-#: gtk/gtkwindow.c:1134
+#: gtk/gtkwindow.c:1089
msgid "Whether the window is maximized"
msgstr "Ali je okno razpeto"
-#: gtk/gtkwindow.c:1155
+#: gtk/gtkwindow.c:1110
msgid "GtkApplication"
msgstr "GtkApplication"
-#: gtk/gtkwindow.c:1156
+#: gtk/gtkwindow.c:1111
msgid "The GtkApplication for the window"
msgstr "GtkApplication za okno"
+#: gtk/gtkwindow.c:1121 gtk/gtkwindow.c:1122
+msgid "Decorated button layout"
+msgstr "Porazdelitev oblikovanih gumbov"
+
+#: gtk/gtkwindow.c:1128 gtk/gtkwindow.c:1129
+msgid "Decoration resize handle size"
+msgstr "Velikost ročnika za spreminjanje velikosti oblikovanih gumbov"
+
#: modules/printbackends/cloudprint/gtkprintercloudprint.c:137
msgid "Cloud Print account"
msgstr "Račun za tiskanje v oblaku"
@@ -7177,1876 +9612,44 @@ msgstr "Naziv barvnega profila"
msgid "The title of the color profile to use"
msgstr "Naziv barvnega profila, ki bo uporabljen"
-#~ msgid "Above child"
-#~ msgstr "Nad podrejenim gradnikom"
-
-#~ msgid ""
-#~ "Whether the event-trapping window of the eventbox is above the window of "
-#~ "the child widget as opposed to below it."
-#~ msgstr ""
-#~ "Ali je okno zaznavanja dogodkov nad oknom podrejenega gradnika, namesto "
-#~ "da je spodaj"
-
-#~ msgid "Font options"
-#~ msgstr "Možnosti pisave"
-
-#~ msgid "The default font options for the screen"
-#~ msgstr "Privzete možnosti pisave zaslona"
-
-#~ msgid "A unique name for the action."
-#~ msgstr "Edinstveno ime dejanja."
-
-#~ msgid "The label used for menu items and buttons that activate this action."
-#~ msgstr ""
-#~ "Oznaka, uporabljena za predmete menija in gumbe, ki to dejanje izvedejo."
-
-#~ msgid "Short label"
-#~ msgstr "Kratka oznaka"
-
-#~ msgid "A shorter label that may be used on toolbar buttons."
-#~ msgstr "Krajša oznaka, uporabljena za gumbe orodne vrstice."
-
-#~ msgid "Tooltip"
-#~ msgstr "Orodni namig"
-
-#~ msgid "A tooltip for this action."
-#~ msgstr "Orodni namig tega dejanja."
-
-#~ msgid "Stock Icon"
-#~ msgstr "Privzeta ikona"
-
-#~ msgid "The stock icon displayed in widgets representing this action."
-#~ msgstr "Ikona, prikazana v gradnikih, ki predstavljajo to dejanje."
-
-#~ msgid "GIcon"
-#~ msgstr "GIcon"
-
-#~ msgid "Visible when overflown"
-#~ msgstr "Viden ob prehodu"
-
-#~ msgid ""
-#~ "When TRUE, toolitem proxies for this action are represented in the "
-#~ "toolbar overflow menu."
-#~ msgstr ""
-#~ "Izbrana možnost omogoča, da so orodni predmeti dejanja prikazani v "
-#~ "prekrivnem meniju orodne vrstice."
-
-#~ msgid ""
-#~ "Whether the action is considered important. When TRUE, toolitem proxies "
-#~ "for this action show text in GTK_TOOLBAR_BOTH_HORIZ mode."
-#~ msgstr ""
-#~ "Ali naj dejanje velja za pomembno. Izbrana možnost omogoča, da predmeti "
-#~ "kažejo besedilo v načinu GTK_TOOLBAR_BOTH_HORIZ."
-
-#~ msgid "Hide if empty"
-#~ msgstr "Skrij, če je prazen"
-
-#~ msgid "When TRUE, empty menu proxies for this action are hidden."
-#~ msgstr "Izbrana možnost omogoča, da so prazni predmeti menija skriti."
-
-#~ msgid "Whether the action is enabled."
-#~ msgstr "Ali naj je dejanje omogočeno."
-
-#~ msgid "Whether the action is visible."
-#~ msgstr "Ali naj bo dejanje vidno."
-
-#~ msgid "Action Group"
-#~ msgstr "Skupina dejanj"
-
-#~ msgid ""
-#~ "The GtkActionGroup this GtkAction is associated with, or NULL (for "
-#~ "internal use)."
-#~ msgstr ""
-#~ "GtkActionGroup, s katero je povezan ta GtkAction, ali NULL (za notranjo "
-#~ "uporabo)."
-
-#~ msgid "Always show image"
-#~ msgstr "Vedno pokaži sliko"
-
-#~ msgid "Whether the image will always be shown"
-#~ msgstr "Ali bo slika vedno prikazana"
-
-#~ msgid "A name for the action group."
-#~ msgstr "Ime skupine dejanj."
-
-#~ msgid "Whether the action group is enabled."
-#~ msgstr "Ali naj bo skupina dejanj omogočena."
-
-#~ msgid "Whether the action group is visible."
-#~ msgstr "Ali naj bo skupina dejanj vidna."
-
-#~ msgid "Accelerator Group"
-#~ msgstr "Skupina pospeševalnika"
-
-#~ msgid "The accelerator group the actions of this group should use."
-#~ msgstr "Dejanja skupine pospeševalnika, ki naj bi jih skupina izvajala."
-
-#~ msgid "Related Action"
-#~ msgstr "Povezano dejanje"
-
-#~ msgid "The action this activatable will activate and receive updates from"
-#~ msgstr "Dejanje, preko katerega to dejanje prejema posodobitve"
-
-#~ msgid "Use Action Appearance"
-#~ msgstr "Uporabi videz dejanj"
-
-#~ msgid "Whether to use the related actions appearance properties"
-#~ msgstr "Ali naj se uporabi lastnosti povezanega dejanja videza"
-
-#~ msgid "Horizontal alignment"
-#~ msgstr "Vodoravna poravnava"
-
-#~ msgid ""
-#~ "Horizontal position of child in available space. 0.0 is left aligned, 1.0 "
-#~ "is right aligned"
-#~ msgstr ""
-#~ "Vodoravni položaj podrejenega predmeta v razpoložljivem prostoru. 0,0 je "
-#~ "poravnan levo, 1,0 je poravnan desno"
-
-#~ msgid "Vertical alignment"
-#~ msgstr "Navpična poravnava"
-
-#~ msgid ""
-#~ "Vertical position of child in available space. 0.0 is top aligned, 1.0 is "
-#~ "bottom aligned"
-#~ msgstr ""
-#~ "Navpični položaj podrejenega predmeta v razpoložljivem prostoru. 0,0 je "
-#~ "poravnan na vrh, 1,0 je poravnan na dno."
-
-#~ msgid "Horizontal scale"
-#~ msgstr "Vodoravno prilagajanje velikosti"
-
-#~ msgid ""
-#~ "If available horizontal space is bigger than needed for the child, how "
-#~ "much of it to use for the child. 0.0 means none, 1.0 means all"
-#~ msgstr ""
-#~ "V kolikor je na voljo več vodoravnega prostora kot je treba, koliko naj "
-#~ "se ga porabi za podrejeni predmet. 0,0 pomeni nič, 1,0 pomeni vsega."
-
-#~ msgid "Vertical scale"
-#~ msgstr "Navpično prilagajanje velikosti"
-
-#~ msgid ""
-#~ "If available vertical space is bigger than needed for the child, how much "
-#~ "of it to use for the child. 0.0 means none, 1.0 means all"
-#~ msgstr ""
-#~ "V kolikor je na voljo več navpičnega prostora kot je treba, koliko naj se "
-#~ "ga porabi za podrejeni predmet. 0,0 pomeni nič, 1,0 pomeni vse."
-
-#~ msgid "Top Padding"
-#~ msgstr "Blazinjenje na vrhu"
-
-#~ msgid "The padding to insert at the top of the widget."
-#~ msgstr "Blazinjenje, ki naj se vstavi na zgornjo stran gradnika."
-
-#~ msgid "Bottom Padding"
-#~ msgstr "Blazinjenje na dnu"
-
-#~ msgid "The padding to insert at the bottom of the widget."
-#~ msgstr "Blazinjenje, ki naj se vstavi na spodnjo stran gradnika."
-
-#~ msgid "Left Padding"
-#~ msgstr "Blazinjenje na levi"
-
-#~ msgid "The padding to insert at the left of the widget."
-#~ msgstr "Blazinjenje, ki naj se vstavi na levo stran gradnika."
-
-#~ msgid "Right Padding"
-#~ msgstr "Blazinjenje na desni"
-
-#~ msgid "The padding to insert at the right of the widget."
-#~ msgstr "Blazinjenje, ki naj se vstavi na desno stran gradnika."
-
-#~ msgid "Arrow direction"
-#~ msgstr "Smer puščice"
-
-#~ msgid "The direction the arrow should point"
-#~ msgstr "Smer, v katero naj kaže puščica"
-
-#~ msgid "Arrow shadow"
-#~ msgstr "Senca puščice"
-
-#~ msgid "Appearance of the shadow surrounding the arrow"
-#~ msgstr "Videz sence, ki obkroža puščico"
-
-#~ msgid "Arrow Scaling"
-#~ msgstr "Prilagajanje velikosti puščice"
-
-#~ msgid "Amount of space used up by arrow"
-#~ msgstr "Količina prostora, ki ga uporabi puščica"
-
-#~ msgid "Has Opacity Control"
-#~ msgstr "Ima nadzor prosojnosti"
-
-#~ msgid "Whether the color selector should allow setting opacity"
-#~ msgstr "Ali izbirnik barv omogoča nastavljanje prosojnosti"
-
-#~ msgid "Has palette"
-#~ msgstr "Ima paleto"
-
-#~ msgid "Whether a palette should be used"
-#~ msgstr "Ali naj je uporabljena paleta"
-
-#~ msgid "Current Color"
-#~ msgstr "Trenutna barva"
-
-#~ msgid "The current color"
-#~ msgstr "Trenutna barva"
-
-#~ msgid "Current Alpha"
-#~ msgstr "Trenutna alfa"
-
-#~ msgid "The current opacity value (0 fully transparent, 65535 fully opaque)"
-#~ msgstr ""
-#~ "Trenutna vrednost prosojnosti (0 popolnoma prosojno, 65535 popolnoma "
-#~ "neprosojno)"
-
-#~ msgid "Current RGBA"
-#~ msgstr "Trenutna barva RGBA"
-
-#~ msgid "The current RGBA color"
-#~ msgstr "Trenutna barva RGBA"
-
-#~ msgid "Color Selection"
-#~ msgstr "Izbira barve"
-
-#~ msgid "The color selection embedded in the dialog."
-#~ msgstr "Izbira barve, vstavljene v pogovorno okno."
-
-#~ msgid "OK Button"
-#~ msgstr "Gumb V redu"
-
-#~ msgid "The OK button of the dialog."
-#~ msgstr "Gumb V redu v pogovornem oknu."
-
-#~ msgid "Cancel Button"
-#~ msgstr "Gumb Prekliči"
-
-#~ msgid "The cancel button of the dialog."
-#~ msgstr "Gumb Prekliči v pogovornem oknu."
-
-#~ msgid "Help Button"
-#~ msgstr "Gumb Pomoč"
-
-#~ msgid "The help button of the dialog."
-#~ msgstr "Gumb Pomoč v pogovornem oknu."
-
-#~ msgid "The string that represents this font"
-#~ msgstr "Niz, ki predstavlja izbrano pisavo"
-
-#~ msgid "Appearance of the shadow that surrounds the container"
-#~ msgstr "Videz sence, ki obkroža vsebovalnik"
-
-#~ msgid "Handle position"
-#~ msgstr "Položaj ročice"
-
-#~ msgid "Position of the handle relative to the child widget"
-#~ msgstr "Položaj ročice glede na podrejeni gradnik"
-
-#~ msgid "Snap edge"
-#~ msgstr "Pripni rob"
-
-#~ msgid ""
-#~ "Side of the handlebox that's lined up with the docking point to dock the "
-#~ "handlebox"
-#~ msgstr ""
-#~ "Stran gradnika ročnika, ki je poravnana s točko sidrišča za sidranje "
-#~ "gradnika."
-
-#~ msgid "Snap edge set"
-#~ msgstr "Nastavi pripenjanje robov"
-
-#~ msgid ""
-#~ "Whether to use the value from the snap_edge property or a value derived "
-#~ "from handle_position"
-#~ msgstr ""
-#~ "Ali naj se uporabi vrednost možnosti pripenjanja rubu ali vrednost "
-#~ "izpeljana iz možnosti položaja ročice"
-
-#~ msgid "Child Detached"
-#~ msgstr "Podrejeno okno odpeto"
-
-#~ msgid ""
-#~ "A boolean value indicating whether the handlebox's child is attached or "
-#~ "detached."
-#~ msgstr ""
-#~ "Logična vrednost, ki določa ali je podrejeni upravljalni predmet pripet "
-#~ "ali odpet."
-
-#~ msgid "Image widget"
-#~ msgstr "Gradnik slike"
-
-#~ msgid "Child widget to appear next to the menu text"
-#~ msgstr "Podrejeni gradnik, ki naj se pojavi ob besedilu menija"
-
-#~ msgid "Use stock"
-#~ msgstr "Uporabi sklad"
-
-#~ msgid "Whether to use the label text to create a stock menu item"
-#~ msgstr "Ali naj se uporabi besedilo oznake za vnos predmeta menija sklada"
-
-#~ msgid "The Accel Group to use for stock accelerator keys"
-#~ msgstr "Pospeševalna skupina, uporabljena za tipke sklada"
-
-#~ msgid "X pad"
-#~ msgstr "Blazinjenje X"
-
-#~ msgid ""
-#~ "The amount of space to add on the left and right of the widget, in pixels"
-#~ msgstr ""
-#~ "Količina prostora, ki naj se doda na levo in desno stran gradnika, v "
-#~ "slikovnih točkah"
-
-#~ msgid "Y pad"
-#~ msgstr "Blazinjenje Y"
-
-#~ msgid ""
-#~ "The amount of space to add on the top and bottom of the widget, in pixels"
-#~ msgstr ""
-#~ "Količina prostora, ki naj se doda na zgornjo in spodnjo stran gradnika, v "
-#~ "slikovnih točkah"
-
-#~ msgid "Icon's count"
-#~ msgstr "Števec ikone"
-
-#~ msgid "The count of the emblem currently displayed"
-#~ msgstr "Števec značke, ki je trenutno prikazana"
+#~ msgid "RGBA"
+#~ msgstr "RGBA"
-#~ msgid "Icon's label"
-#~ msgstr "Oznaka ikone"
+#~ msgid "System Information"
+#~ msgstr "Podrobnosti sistema"
-#~ msgid "The label to be displayed over the icon"
-#~ msgstr "Oznaka, ki je prikazan ob kazalniku, ko je ta nad ikono"
+#~ msgid "Information about the system on which the program is running"
+#~ msgstr "Podrobnosti o sistemu v katerem je program zagnan"
-#~ msgid "Icon's style context"
-#~ msgstr "Vsebinski slog ikone"
+#~ msgid "The text displayed next to the accelerator"
+#~ msgstr "Besedilo, prikazano ob pospeševalniku"
-#~ msgid "The style context to theme the icon appearance"
-#~ msgstr "Vsebinski slog ikone, ki pripada temi"
+#~ msgid "The name of the icon used to automatically populate the button"
+#~ msgstr "Ime ikone, uporabljene za privzeto sličico gumba"
-#~ msgid "Background icon"
-#~ msgstr "Ikona ozadja"
+#~ msgid "Content Width"
+#~ msgstr "Širina vsebine"
-#~ msgid "The icon for the number emblem background"
-#~ msgstr "Ikona ozadja številske značke"
+#~ msgid "Desired width for displayed content"
+#~ msgstr "Želena širina prikazane vsebine"
-#~ msgid "Background icon name"
-#~ msgstr "Ime ikone ozadja"
+#~ msgid "Content Height"
+#~ msgstr "Višina vsebine"
-#~ msgid "The icon name for the number emblem background"
-#~ msgstr "Ime ikone za ozadje številske značke"
+#~ msgid "Desired height for displayed content"
+#~ msgstr "Želena višina prikazane vsebine"
-#~ msgid "The value"
-#~ msgstr "Vrednost"
-
-#~ msgid ""
-#~ "The value returned by gtk_radio_action_get_current_value() when this "
-#~ "action is the current action of its group."
-#~ msgstr ""
-#~ "Vrnjena vrednost gtk_radio_action_get_current_value() kadar je dejanje "
-#~ "del trenutnega dejanja izbrane skupine."
-
-#~ msgid "The radio action whose group this action belongs to."
-#~ msgstr "Izbirno dejanje, katerega skupini pripada to dejanje."
-
-#~ msgid "The current value"
-#~ msgstr "Trenutna vrednost"
-
-#~ msgid ""
-#~ "The value property of the currently active member of the group to which "
-#~ "this action belongs."
-#~ msgstr ""
-#~ "Lastnost vrednosti trenutno dejavnega predmeta skupine, kateri dejanje "
-#~ "pripada."
-
-#~ msgid "Stock ID"
-#~ msgstr "ID sklada"
-
-#~ msgid "Stock ID for a stock image to display"
-#~ msgstr "ID sklada za prikaz slike"
-
-#~ msgid "The size of the icon"
-#~ msgstr "Velikost ikone"
-
-#~ msgid "The screen where this status icon will be displayed"
-#~ msgstr "Zaslon, na katerem bo prikazana ikona stanja"
-
-#~ msgid "Whether the status icon is visible"
-#~ msgstr "Ali naj je ikona stanja vidna"
-
-#~ msgid "Embedded"
-#~ msgstr "Vstavljeno"
-
-#~ msgid "Whether the status icon is embedded"
-#~ msgstr "Ali naj je ikona stanja vstavljena"
-
-#~ msgid "The orientation of the tray"
-#~ msgstr "Usmerjenost sistemske vrstice"
-
-#~ msgid "Whether this tray icon has a tooltip"
-#~ msgstr "Ali naj ima ikona sistemske vrstice orodni namig"
-
-#~ msgid "The contents of the tooltip for this tray icon"
-#~ msgstr "Vsebina namiga za ikono v sistemski vrstici"
-
-#~ msgid "The title of this tray icon"
-#~ msgstr "Naslov ikone sistemske vrstice"
-
-#~ msgid "Style context"
-#~ msgstr "Slogovna vsebina"
-
-#~ msgid "GtkStyleContext to get style from"
-#~ msgstr "Predmet GtkStyleContext, ki vsebuje podatek sloga"
-
-#~ msgid "Rows"
-#~ msgstr "Vrstice"
-
-#~ msgid "The number of rows in the table"
-#~ msgstr "Število vrstic v razpredelnici"
-
-#~ msgid "Columns"
-#~ msgstr "Stolpci"
-
-#~ msgid "The number of columns in the table"
-#~ msgstr "Število stolpcev v razpredelnici"
-
-#~ msgid "If TRUE, the table cells are all the same width/height"
-#~ msgstr "Izbrana možnost omogoča, da imajo vse celice enako višino in širino"
-
-#~ msgid "Right attachment"
-#~ msgstr "Desna priloga"
-
-#~ msgid "The column number to attach the right side of a child widget to"
-#~ msgstr ""
-#~ "Številka stolpca, ki naj se priloži desni strani podrejenega gradnika"
-
-#~ msgid "The row number to attach the top of a child widget to"
-#~ msgstr ""
-#~ "Številka vrstice, ki naj se priloži zgornji strani podrejenega gradnika"
-
-#~ msgid "Bottom attachment"
-#~ msgstr "Spodnja priloga"
-
-#~ msgid "Horizontal options"
-#~ msgstr "Vodoravne možnosti"
-
-#~ msgid "Options specifying the horizontal behaviour of the child"
-#~ msgstr "Možnosti, ki določajo vodoravno vedenje podrejenega predmeta"
-
-#~ msgid "Vertical options"
-#~ msgstr "Navpične možnosti"
-
-#~ msgid "Options specifying the vertical behaviour of the child"
-#~ msgstr "Možnosti, ki določajo navpično vedenje podrejenega predmeta"
-
-#~ msgid "Horizontal padding"
-#~ msgstr "Vodoravno blazinjenje"
-
-#~ msgid ""
-#~ "Extra space to put between the child and its left and right neighbors, in "
-#~ "pixels"
-#~ msgstr ""
-#~ "Količina prostora, ki naj se doda med podrejeni predmet in njegove leve "
-#~ "in desne sosede, v slikovnih točkah"
-
-#~ msgid "Vertical padding"
-#~ msgstr "Navpično blazinjenje"
-
-#~ msgid ""
-#~ "Extra space to put between the child and its upper and lower neighbors, "
-#~ "in pixels"
-#~ msgstr ""
-#~ "Količina prostora, ki naj se doda med podrejeni predmet in njegove "
-#~ "zgornje in spodnje sosede (v slikovnih točkah)"
-
-#~ msgid "Theming engine name"
-#~ msgstr "Ime programnika tem"
-
-#~ msgid "Create the same proxies as a radio action"
-#~ msgstr "Ustvari posrednike enake izbirnim dejanjem"
-
-#~ msgid "Whether the proxies for this action look like radio action proxies"
-#~ msgstr "Ali so posredniki videti kot izbirni gumbi"
-
-#~ msgid "Whether the toggle action should be active"
-#~ msgstr "Ali naj bo preklopni gumb dejaven"
-
-#~ msgid "Foreground color"
-#~ msgstr "Barva ospredja"
-
-#~ msgid "Foreground color for symbolic icons"
-#~ msgstr "Barva ospredja simbolnih ikon"
-
-#~ msgid "Error color"
-#~ msgstr "Barva napake"
-
-#~ msgid "Error color for symbolic icons"
-#~ msgstr "Barva napake simbolnih ikon"
-
-#~ msgid "Warning color"
-#~ msgstr "Barva opozorila"
-
-#~ msgid "Warning color for symbolic icons"
-#~ msgstr "Barva opozorila simbolnih ikon"
-
-#~ msgid "Success color"
-#~ msgstr "Barva uspešnega opravila"
-
-#~ msgid "Success color for symbolic icons"
-#~ msgstr "Barva uspešnega opravila simbolnih ikon"
-
-#~ msgid "Padding"
-#~ msgstr "Blazinjenje"
-
-#~ msgid "Padding that should be put around icons in the tray"
-#~ msgstr "Oblazinjenost, ki naj bo postavljena okoli ikon sistemske vrstice"
-
-#~ msgid "The pixel size that icons should be forced to, or zero"
-#~ msgstr ""
-#~ "Velikost v točkah, ki naj bo vsiljena za prikaz ikone, ali vrednost nič"
-
-#~ msgid "Add tearoffs to menus"
-#~ msgstr "Dodaj menijem odpenjalnike"
-
-#~ msgid "Whether tearoff menu items should be added to menus"
-#~ msgstr "Ali naj predmeti menija vsebujejo odpenjalnike"
-
-#~ msgid "Merged UI definition"
-#~ msgstr "Definicija združenega vmesnika"
-
-#~ msgid "An XML string describing the merged UI"
-#~ msgstr "Niz XML, ki opisuje združeni uporabniški vmesnik"
-
-#~ msgid "Header Padding"
-#~ msgstr "Blazinjenje glave"
-
-#~ msgid "Number of pixels around the header."
-#~ msgstr "Število slikovnih točk okoli glave."
-
-#~ msgid "Content Padding"
-#~ msgstr "Blazinjenje vsebine"
-
-#~ msgid "Number of pixels around the content pages."
-#~ msgstr "Število slikovnih točk okoli strani vsebine."
-
-#~ msgid "Header image"
-#~ msgstr "Slika glave"
-
-#~ msgid "Header image for the assistant page"
-#~ msgstr "Slika glave pomožne strani"
-
-#~ msgid "Sidebar image"
-#~ msgstr "Slika stranske vrstice"
-
-#~ msgid "Sidebar image for the assistant page"
-#~ msgstr "Slika stranske vrstice pomožne strani"
-
-#~ msgid "Minimum child width"
-#~ msgstr "Najmanjša širina podrejenega predmeta"
-
-#~ msgid "Minimum width of buttons inside the box"
-#~ msgstr "Najmanjša širina gumbov znotraj polja"
-
-#~ msgid "Minimum child height"
-#~ msgstr "Najmanjša višina podrejenega predmeta"
-
-#~ msgid "Minimum height of buttons inside the box"
-#~ msgstr "Najmanjša višina gumbov znotraj polja"
-
-#~ msgid "Child internal width padding"
-#~ msgstr "Notranje blazinjenje širine podrejenega predmeta"
-
-#~ msgid "Amount to increase child's size on either side"
-#~ msgstr ""
-#~ "Za koliko naj se poveča velikost podrejenega predmeta na obeh straneh"
-
-#~ msgid "Child internal height padding"
-#~ msgstr "Notranje blazinjenje višine podrejenega predmeta"
-
-#~ msgid "Amount to increase child's size on the top and bottom"
-#~ msgstr ""
-#~ "Za koliko naj se poveča velikost podrejenega predmeta na vrhu in na dnu"
-
-#~ msgid "Whether the child should receive extra space when the parent grows"
-#~ msgstr ""
-#~ "Ali naj podrejeni predmet prejme dodaten prostor, ko se nadrejeni predmet "
-#~ "poveča"
-
-#~ msgid ""
-#~ "Whether extra space given to the child should be allocated to the child "
-#~ "or used as padding"
-#~ msgstr ""
-#~ "Ali naj se dodaten prostor, dodan podrejenemu predmetu, dodeli njemu ali "
-#~ "naj se uporabi kot blazinjenje"
-
-#~ msgid "Extra space to put between the child and its neighbors, in pixels"
-#~ msgstr ""
-#~ "Dodaten prostor med podrejenim predmetom in njegovimi sosedi (v slikovnih "
-#~ "točkah)"
-
-#~ msgid ""
-#~ "If set, the label is used to pick a stock item instead of being displayed"
-#~ msgstr ""
-#~ "Izbrana možnost omogoča, da se oznaka uporabi za izbiro predmeta sklada, "
-#~ "namesto, da bi bil prikazan"
-
-#~ msgid "Horizontal alignment for child"
-#~ msgstr "Vodoravna poravnava podrejenega predmeta"
-
-#~ msgid "Vertical alignment for child"
-#~ msgstr "Navpična poravnava podrejenega predmeta"
-
-#~ msgid "Child widget to appear next to the button text"
-#~ msgstr "Podrejeni gradnik, ki naj se pojavi ob besedilu gumba"
-
-#~ msgid "Image position"
-#~ msgstr "Položaj slike"
-
-#~ msgid "The position of the image relative to the text"
-#~ msgstr "Položaj slike glede na besedilo"
-
-#~ msgid "Default Spacing"
-#~ msgstr "Privzet razmik"
-
-#~ msgid "Extra space to add for GTK_CAN_DEFAULT buttons"
-#~ msgstr "Dodaten prostor, ki je dodan gumbom GTK_CAN_DEFAULT"
-
-#~ msgid "Default Outside Spacing"
-#~ msgstr "Privzet zunanji razmik"
-
-#~ msgid ""
-#~ "Extra space to add for GTK_CAN_DEFAULT buttons that is always drawn "
-#~ "outside the border"
-#~ msgstr ""
-#~ "Dodaten prostor, ki je dodan gumbom GTK_CAN_DEFAULT in je vedno narisan "
-#~ "zunaj obrobe"
-
-#~ msgid "Child X Displacement"
-#~ msgstr "Premestitev podrejenega predmeta po X osi"
-
-#~ msgid ""
-#~ "How far in the x direction to move the child when the button is depressed"
-#~ msgstr ""
-#~ "Kako daleč v smeri X naj se premakne podrejeni predmet, ko je gumb spuščen"
-
-#~ msgid "Child Y Displacement"
-#~ msgstr "Premestitev podrejenega predmeta po Y osi"
-
-#~ msgid ""
-#~ "How far in the y direction to move the child when the button is depressed"
-#~ msgstr ""
-#~ "Kako daleč v smeri Y naj se premakne podrejeni predmet, ko je gumb spuščen"
-
-#~ msgid "Displace focus"
-#~ msgstr "Premakni dejavnost"
-
-#~ msgid ""
-#~ "Whether the child_displacement_x/_y properties should also affect the "
-#~ "focus rectangle"
-#~ msgstr ""
-#~ "Ali lastnost child_displacement_x/_y vpliva na dejavnost pravokotnika"
-
-#~ msgid "Inner Border"
-#~ msgstr "Notranja obroba"
-
-#~ msgid "Border between button edges and child."
-#~ msgstr "Obroba med robovi gumba in podrejenim predmetom."
-
-#~ msgid "Image spacing"
-#~ msgstr "Razmik slike"
-
-#~ msgid "Spacing in pixels between the image and label"
-#~ msgstr "Razmik med sliko in oznako, v slikovnih točkah"
-
-#~ msgid "Inner border"
-#~ msgstr "Notranja obroba"
-
-#~ msgid "Inner border space"
-#~ msgstr "Razmik notranjih robov"
-
-#~ msgid "Vertical separation"
-#~ msgstr "Navpični razmik"
-
-#~ msgid "Space between day headers and main area"
-#~ msgstr "Razmik med glavami dni in glavnim področjem"
-
-#~ msgid "Horizontal separation"
-#~ msgstr "Vodoravni razmik"
-
-#~ msgid "Space between week headers and main area"
-#~ msgstr "Razmik med glavami tednov in glavnim področjem"
-
-#~ msgid "Cell background color"
-#~ msgstr "Barva ozadja celice"
-
-#~ msgid "Cell background color as a GdkColor"
-#~ msgstr "Barva ozadja celice (GdkColor)"
-
-#~ msgid "The stock ID of the stock icon to render"
-#~ msgstr "ID sklada ikone za izris"
-
-#~ msgid "Follow State"
-#~ msgstr "Sledi stanju"
-
-#~ msgid ""
-#~ "Whether the rendered pixbuf should be colorized according to the state"
-#~ msgstr "Ali naj se izrisani medpomnilnik sličic obarva glede na stanje"
-
-#~ msgid "Background color"
-#~ msgstr "Barva ozadja"
-
-#~ msgid "Background color as a GdkColor"
-#~ msgstr "Barva ozadja (GdkColor)"
-
-#~ msgid "Foreground color as a GdkColor"
-#~ msgstr "Barva ospredja (GdkColor)"
-
-#~ msgid "Indicator size"
-#~ msgstr "Velikost kazalnika"
-
-#~ msgid "Size of check or radio indicator"
-#~ msgstr "Velikost potrditvenega ali izbirnega kazalnika"
-
-#~ msgid "Background RGBA color"
-#~ msgstr "Barva ozadja (RGBA)"
-
-#~ msgid "Indicator Size"
-#~ msgstr "Velikost kazalnika"
-
-#~ msgid "Indicator Spacing"
-#~ msgstr "Prostor okoli kazalnika"
-
-#~ msgid "Spacing around check or radio indicator"
-#~ msgstr "Prostor okoli potrditvenega ali izbirnega kazalnika"
-
-#~ msgid "The selected color"
-#~ msgstr "Izbrana barva"
-
-#~ msgid "The selected opacity value (0 fully transparent, 65535 fully opaque)"
-#~ msgstr ""
-#~ "Izbrana vrednost prosojnosti (0 popolnoma prosojno, 65535 popolnoma "
-#~ "neprosojno)"
-
-#~ msgid "Whether dropdowns should have a tearoff menu item"
-#~ msgstr "Ali naj imajo spustni meniji odpenjalnike"
-
-#~ msgid "Tearoff Title"
-#~ msgstr "Naziv odpenjalnika"
-
-#~ msgid ""
-#~ "A title that may be displayed by the window manager when the popup is "
-#~ "torn-off"
-#~ msgstr "Naziv, ki ga prikaže upravljalnik oken, ko je meni odpet"
-
-#~ msgid "Appears as list"
-#~ msgstr "Se pojavi kot seznam"
-
-#~ msgid "Whether dropdowns should look like lists rather than menus"
-#~ msgstr "Ali naj bo spustno polje videti kot seznam in ne kot meni."
-
-#~ msgid "Arrow Size"
-#~ msgstr "Velikost puščice"
-
-#~ msgid "The minimum size of the arrow in the combo box"
-#~ msgstr "Najmanjša velikost puščice spustnega polja"
-
-#~ msgid "The amount of space used by the arrow"
-#~ msgstr "Prostor, ki ga porabi puščica."
-
-#~ msgid "Which kind of shadow to draw around the combo box"
-#~ msgstr "Vrsta sence, ki se izriše okoli spustnega polja"
-
-#~ msgid "Resize mode"
-#~ msgstr "Način spreminjanja velikosti"
-
-#~ msgid "Specify how resize events are handled"
-#~ msgstr "Določilo obravnave sprememb velikosti"
-
-#~ msgid "Border width"
-#~ msgstr "Širina obrobe"
-
-#~ msgid "The width of the empty border outside the containers children"
-#~ msgstr "Širina prazne obrobe zunaj podrejenih predmetov vsebnika"
-
-#~ msgid "Child"
-#~ msgstr "Podrejeni predmet"
-
-#~ msgid "Can be used to add a new child to the container"
-#~ msgstr ""
-#~ "Je lahko uporabljen za dodajanje novega podrejenega predmeta vsebovalniku"
-
-#~ msgid "Content area border"
-#~ msgstr "Obroba področja vsebine"
-
-#~ msgid "Width of border around the main dialog area"
-#~ msgstr "Širina obrobe okoli glavnega področja pogovornega okna"
-
-#~ msgid "Content area spacing"
-#~ msgstr "Razmik področja vsebine"
-
-#~ msgid "Spacing between elements of the main dialog area"
-#~ msgstr "Razmik med predmeti glavnega območja pogovornega okna"
-
-#~ msgid "Button spacing"
-#~ msgstr "Prostor okoli gumbov"
-
-#~ msgid "Spacing between buttons"
-#~ msgstr "Prostor med gumbi"
-
-#~ msgid "Action area border"
-#~ msgstr "Rob okoli področja dejavnosti"
-
-#~ msgid "Width of border around the button area at the bottom of the dialog"
-#~ msgstr "Širina obrobe okoli področja gumbov na dnu pogovornega okna"
-
-#~ msgid ""
-#~ "Border between text and frame. Overrides the inner-border style property"
-#~ msgstr ""
-#~ "Rob med besedilom in okvirjem. Preglasi lastnost sloga notranjega roba."
-
-#~ msgid "Which kind of shadow to draw around the entry when has-frame is set"
-#~ msgstr ""
-#~ "Kakšna vrsta sence naj se izriše, kadar je določena možnost \"Ima okvir\""
-
-#~ msgid "Primary stock ID"
-#~ msgstr "Osnovni ID sklada"
-
-#~ msgid "Stock ID for primary icon"
-#~ msgstr "ID sklada za osnovno ikono"
-
-#~ msgid "Secondary stock ID"
-#~ msgstr "Drugotni ID sklada"
-
-#~ msgid "Stock ID for secondary icon"
-#~ msgstr "ID sklada za drugotno ikono"
-
-#~ msgid "Icon Prelight"
-#~ msgstr "Posvetlitev ikone"
-
-#~ msgid "Whether activatable icons should prelight when hovered"
-#~ msgstr "Ali naj dejavne ikone posvetlijo, če miško premaknemo preko njih"
-
-#~ msgid "Progress Border"
-#~ msgstr "Obroba vrstice napredka"
-
-#~ msgid "Border around the progress bar"
-#~ msgstr "Obroba okoli vrstice napredka"
-
-#~ msgid "Border between text and frame."
-#~ msgstr "Obroba med besedilom in okvirjem."
-
-#~ msgid "Visible Window"
-#~ msgstr "Vidno okno"
-
-#~ msgid ""
-#~ "Whether the event box is visible, as opposed to invisible and only used "
-#~ "to trap events."
-#~ msgstr ""
-#~ "Ali je okno dogodka vidno v nasprotju z nevidnim, ki le zajema dogodke."
-
-#~ msgid "Space to put between the label and the child"
-#~ msgstr "Prostor, vstavljen med oznako in podrejenim predmetom"
-
-#~ msgid "Expander Size"
-#~ msgstr "Velikost razširilnika"
-
-#~ msgid "Size of the expander arrow"
-#~ msgstr "Velikost puščice razširilnika"
-
-#~ msgid "Spacing around expander arrow"
-#~ msgstr "Razmik okoli puščice razširilnika"
-
-#~ msgid "GdkWindow to receive events about"
-#~ msgstr "Predmet GtkWindow, ki prejme dogodke"
-
-#~ msgid "Selection Box Color"
-#~ msgstr "Barva izbirnega polja"
-
-#~ msgid "Color of the selection box"
-#~ msgstr "Barva izbirnega polja"
-
-#~ msgid "Selection Box Alpha"
-#~ msgstr "Alfa izbirnega polja"
-
-#~ msgid "Opacity of the selection box"
-#~ msgstr "Prekrivnost izbirnega polja"
-
-#~ msgid "Icon set"
-#~ msgstr "Nabor ikon"
-
-#~ msgid "Icon set to display"
-#~ msgstr "Nabor ikon, ki naj se prikaže"
-
-#~ msgid "Width of border around the content area"
-#~ msgstr "Širina obrobe okoli področja vsebine"
-
-#~ msgid "Spacing between elements of the area"
-#~ msgstr "Razmik med predmeti območja"
-
-#~ msgid "Width of border around the action area"
-#~ msgstr "Širina robu okoli območja dejanj"
-
-#~ msgid "Angle"
-#~ msgstr "Kot"
-
-#~ msgid "Angle at which the label is rotated"
-#~ msgstr "Kot, pod katerim naj bo zasukana oznaka"
-
-#~ msgid "Minimum height for filling blocks"
-#~ msgstr "Najmanjša višina polnilnih blokov"
-
-#~ msgid "Minimum height for blocks that fill the bar"
-#~ msgstr "Najmanjša višina blokov, ki zapolnijo vrstico"
-
-#~ msgid "Minimum width for filling blocks"
-#~ msgstr "Najmanjša širina polnilnih blokov"
-
-#~ msgid "Minimum width for blocks that fill the bar"
-#~ msgstr "Najmanjša širina blokov, ki zapolnijo vrstico"
-
-#~ msgid "Style of bevel around the menubar"
-#~ msgstr "Slog obrobe okoli menijske vrstice"
-
-#~ msgid "Internal padding"
-#~ msgstr "Notranje blazinjenje"
-
-#~ msgid "Amount of border space between the menubar shadow and the menu items"
-#~ msgstr "Količina obrobe med senco menijske vrstice in predmeti menija"
-
-#~ msgid ""
-#~ "A title that may be displayed by the window manager when this menu is "
-#~ "torn-off"
-#~ msgstr "Naziv, ki ga lahko prikaže upravljalnik oken, kadar je meni odtrgan"
-
-#~ msgid "Tearoff State"
-#~ msgstr "Stanje odpenjalnika"
-
-#~ msgid "A boolean that indicates whether the menu is torn-off"
-#~ msgstr "Logična spremenljivka, ki določa, ali je meni odpet"
-
-#~ msgid "Horizontal Padding"
-#~ msgstr "Vodoravno blazinjenje"
-
-#~ msgid "Extra space at the left and right edges of the menu"
-#~ msgstr "Dodaten prostor na levi in desni strani menija"
-
-#~ msgid "Vertical Padding"
-#~ msgstr "Navpično blazinjenje"
-
-#~ msgid "Extra space at the top and bottom of the menu"
-#~ msgstr "Dodaten prostor na vrhu in na dnu menija"
-
-#~ msgid "Vertical Offset"
-#~ msgstr "Navpični odmik"
-
-#~ msgid ""
-#~ "When the menu is a submenu, position it this number of pixels offset "
-#~ "vertically"
-#~ msgstr ""
-#~ "Kadar je meni podmeni, naj bo zamaknjen za toliko slikovnih točk navpično"
-
-#~ msgid "Horizontal Offset"
-#~ msgstr "Vodoravni odmik"
-
-#~ msgid ""
-#~ "When the menu is a submenu, position it this number of pixels offset "
-#~ "horizontally"
-#~ msgstr ""
-#~ "Kadar je meni podmeni, naj bo zamaknjen za toliko slikovnih točk vodoravno"
-
-#~ msgid "Double Arrows"
-#~ msgstr "Dvojne puščice"
-
-#~ msgid "When scrolling, always show both arrows."
-#~ msgstr "Pri drsenju vedno pokaži obe puščici."
-
-#~ msgid "Arrow Placement"
-#~ msgstr "Postavitev puščice"
-
-#~ msgid "Indicates where scroll arrows should be placed"
-#~ msgstr "Določa kje bodo nameščene puščice drsnika"
-
-#~ msgid "Arbitrary constant to scale down the size of the scroll arrow"
-#~ msgstr "Konstanta za prilagajanje velikosti puščice drsnika"
-
-#~ msgid "Right Justified"
-#~ msgstr "Desna poravnava"
-
-#~ msgid ""
-#~ "Sets whether the menu item appears justified at the right side of a menu "
-#~ "bar"
-#~ msgstr ""
-#~ "Izbrana možnost omgoča, da je predmet menija poravnan na desni strani "
-#~ "menijske vrstice"
-
-#~ msgid ""
-#~ "Amount of space used up by arrow, relative to the menu item's font size"
-#~ msgstr ""
-#~ "Velikost prostora, ki ga porabi puščica, v razmerju z velikostjo pisave "
-#~ "predmeta"
-
-#~ msgid "Width in Characters"
-#~ msgstr "Širina v znakih"
-
-#~ msgid "The minimum desired width of the menu item in characters"
-#~ msgstr "Najmanjša želena širina predmeta menija v znakih"
-
-#~ msgid "label border"
-#~ msgstr "obroba oznake"
-
-#~ msgid "Width of border around the label in the message dialog"
-#~ msgstr "Širina robu okoli oznake v pogovornem oknu"
-
-#~ msgid "Image"
-#~ msgstr "Slika"
-
-#~ msgid "The image"
-#~ msgstr "Slika"
-
-#~ msgid "Secondary backward stepper"
-#~ msgstr "Drugotni povratni koračnik"
-
-#~ msgid ""
-#~ "Display a second backward arrow button on the opposite end of the tab area"
-#~ msgstr ""
-#~ "Pokaži drugi gumb s puščico nazaj na nasprotnem koncu področja zavihkov"
-
-#~ msgid "Secondary forward stepper"
-#~ msgstr "Drugotni koračnik naprej"
-
-#~ msgid ""
-#~ "Display a second forward arrow button on the opposite end of the tab area"
-#~ msgstr ""
-#~ "Pokaži drugi gumb s puščico naprej na nasprotnem koncu področja zavihkov"
-
-#~ msgid "Backward stepper"
-#~ msgstr "Povratni koračnik"
-
-#~ msgid "Display the standard backward arrow button"
-#~ msgstr "Pokaži običajni gumb s puščico za nazaj"
-
-#~ msgid "Forward stepper"
-#~ msgstr "Koračnik naprej"
-
-#~ msgid "Display the standard forward arrow button"
-#~ msgstr "Pokaži običajni gumb s puščico za naprej"
-
-#~ msgid "Tab overlap"
-#~ msgstr "Prekrivanje zavihkov"
-
-#~ msgid "Size of tab overlap area"
-#~ msgstr "Velikost področja prekrivanja zavihkov"
-
-#~ msgid "Tab curvature"
-#~ msgstr "Ukrivljenost zavihka"
-
-#~ msgid "Size of tab curvature"
-#~ msgstr "Velikost ukrivljenosti zavihka"
-
-#~ msgid "Arrow spacing"
-#~ msgstr "Razmik puščic"
-
-#~ msgid "Scroll arrow spacing"
-#~ msgstr "Razmik drsne puščice"
-
-#~ msgid "Initial gap"
-#~ msgstr "Začetni zamik"
-
-#~ msgid "Initial gap before the first tab"
-#~ msgstr "Začetni zamik pred prvim zavihkom"
-
-#~ msgid "Tab gap"
-#~ msgstr "Razmik med zavihki"
-
-#~ msgid "Active tab is drawn with a gap at the bottom"
-#~ msgstr "Dejavni zavihek je izrisan z zamikom na spodnjem delu"
-
-#~ msgid "Handle Size"
-#~ msgstr "Velikost ročice"
-
-#~ msgid "Width of handle"
-#~ msgstr "Širina ročice"
-
-#~ msgid "Show 'Connect to Server'"
-#~ msgstr "Pokaži možnost 'Poveži s strežnikom'"
-
-#~ msgid ""
-#~ "Whether the sidebar includes a builtin shortcut to a 'Connect to server' "
-#~ "dialog"
-#~ msgstr ""
-#~ "Ali naj bočno okno vključuje tudi bližnico do pogovornega okna 'Povezave "
-#~ "s strežnikom'"
-
-#~ msgid "Show 'Trash'"
+#~ msgid "Show “Trash”"
#~ msgstr "Pokaži »Smeti«"
-#~ msgid "Whether the plug is embedded"
-#~ msgstr "Ali je vtič vstavljen"
-
-#~ msgid "Socket Window"
-#~ msgstr "Okno vtiča"
-
-#~ msgid "The window of the socket the plug is embedded in"
-#~ msgstr "Okno vtiča, v katerega je vstavljen vtič"
-
-#~ msgid "Transitions enabled"
-#~ msgstr "Prehodi omogočeni"
-
-#~ msgid "Whether show/hide transitions are enabled or not"
-#~ msgstr "Ali naj bodo prehodi prikazovanja/skrivanja omogočeni ali ne"
-
-#~ msgid "X spacing"
-#~ msgstr "Razmik X"
-
-#~ msgid "Extra spacing applied to the width of a progress bar."
-#~ msgstr "Dodaten razmik določen širini vrstice napredka."
-
-#~ msgid "Y spacing"
-#~ msgstr "Razmik Y"
-
-#~ msgid "Extra spacing applied to the height of a progress bar."
-#~ msgstr "Dodaten razmik določen višini vrstice napredka."
-
-#~ msgid "Minimum horizontal bar width"
-#~ msgstr "Najmanjša vodoravna širina vrstice"
-
-#~ msgid "The minimum horizontal width of the progress bar"
-#~ msgstr "Najmanjša vodoravna širina vrstice napredka."
-
-#~ msgid "Minimum horizontal bar height"
-#~ msgstr "Najmanjša vodoravna višina vrstice"
-
-#~ msgid "Minimum horizontal height of the progress bar"
-#~ msgstr "Najmanjša vodoravna višina vrstice napredka."
-
-#~ msgid "Minimum vertical bar width"
-#~ msgstr "Najmanjša navpična širina vrstice"
-
-#~ msgid "The minimum vertical width of the progress bar"
-#~ msgstr "Najmanjša navpična širina vrstice napredka."
-
-#~ msgid "Minimum vertical bar height"
-#~ msgstr "Najmanjša navpična višina vrstice"
-
-#~ msgid "The minimum vertical height of the progress bar"
-#~ msgstr "Najmanjša navpična višina vrstice napredka."
-
-#~ msgid "Lower stepper sensitivity"
-#~ msgstr "Občutljivost spodnjega koračnika"
-
-#~ msgid ""
-#~ "The sensitivity policy for the stepper that points to the adjustment's "
-#~ "lower side"
-#~ msgstr ""
-#~ "Pravila občutljivosti koračnika, ki kaže na spodnjo stran prilagoditve"
-
-#~ msgid "Upper stepper sensitivity"
-#~ msgstr "Občutljivost zgornjega koračnika"
-
-#~ msgid ""
-#~ "The sensitivity policy for the stepper that points to the adjustment's "
-#~ "upper side"
-#~ msgstr ""
-#~ "Pravila občutljivosti koračnika, ki kaže na zgornjo stran prilagoditve"
-
-#~ msgid "Slider Width"
-#~ msgstr "Širina vodoravnega drsnika"
-
-#~ msgid "Width of scrollbar or scale thumb"
-#~ msgstr "Širina drsnika ali gumba za povečavo"
-
-#~ msgid "Trough Border"
-#~ msgstr "Zarezan rob"
-
-#~ msgid "Spacing between thumb/steppers and outer trough bevel"
-#~ msgstr "Razmik med gumbom/koračnikom in zunanjo zarezo obrobe"
-
-#~ msgid "Stepper Size"
-#~ msgstr "Velikost koračnika"
-
-#~ msgid "Length of step buttons at ends"
-#~ msgstr "Dolžina koračnih gumbov na koncih"
-
-#~ msgid "Stepper Spacing"
-#~ msgstr "Razmik koračnika"
-
-#~ msgid "Spacing between step buttons and thumb"
-#~ msgstr "Razmik med gumbi korakov in sličico"
-
-#~ msgid "Arrow X Displacement"
-#~ msgstr "Premik puščice po osi X"
-
-#~ msgid ""
-#~ "How far in the x direction to move the arrow when the button is depressed"
-#~ msgstr "Kako daleč v smeri X naj se premakne puščica, ko je gumb spuščen"
-
-#~ msgid "Arrow Y Displacement"
-#~ msgstr "Premik puščice po osi Y"
-
-#~ msgid ""
-#~ "How far in the y direction to move the arrow when the button is depressed"
-#~ msgstr "Kako daleč v smeri Y naj se premakne puščica, ko je gumb spuščen"
-
-#~ msgid "Trough Under Steppers"
-#~ msgstr "Zareza pod koračniki"
-
-#~ msgid ""
-#~ "Whether to draw trough for full length of range or exclude the steppers "
-#~ "and spacing"
-#~ msgstr ""
-#~ "Ali naj se izriše zareza skozi celotno dolžino območja ali pa se izloči "
-#~ "koračnike in presledke"
-
-#~ msgid "Arrow scaling"
-#~ msgstr "Prilagajanje velikosti puščice"
-
-#~ msgid "Arrow scaling with regard to scroll button size"
-#~ msgstr "Prilagajanje puščic v povezavi z velikostjo drsnih gumbov"
-
-#~ msgid "Slider Length"
-#~ msgstr "Dolžina vodoravnega drsnika"
-
-#~ msgid "Length of scale's slider"
-#~ msgstr "Dolžina merila vodoravnega drsnika"
-
-#~ msgid "Value spacing"
-#~ msgstr "Razmik vrednosti"
-
-#~ msgid "Space between value text and the slider/trough area"
-#~ msgstr ""
-#~ "Prostor med besedilom vrednosti in območjem vodoravnega drsnika in zareze"
-
-#~ msgid "Minimum Slider Length"
-#~ msgstr "Najmanjša dolžina vodoravnega drsnika"
-
-#~ msgid "Minimum length of scrollbar slider"
-#~ msgstr "Najmanjša dolžina vodoravnega drsnika"
-
-#~ msgid "Fixed slider size"
-#~ msgstr "Nespremenljiva velikost vodoravnega drsnika"
-
-#~ msgid "Don't change slider size, just lock it to the minimum length"
-#~ msgstr ""
-#~ "Ne spreminjaj velikosti vodoravnega drsnika, le zakleni jo na najmanjšo "
-#~ "vrednost"
-
-#~ msgid ""
-#~ "Display a second backward arrow button on the opposite end of the "
-#~ "scrollbar"
-#~ msgstr "Pokaži drugo puščico nazaj na nasprotnem koncu drsnika"
-
-#~ msgid ""
-#~ "Display a second forward arrow button on the opposite end of the scrollbar"
-#~ msgstr "Pokaži drugo puščico naprej na nasprotnem koncu drsnika"
-
-#~ msgid "Window Placement Set"
-#~ msgstr "Nastavi postavitev okna"
-
-#~ msgid ""
-#~ "Whether \"window-placement\" should be used to determine the location of "
-#~ "the contents with respect to the scrollbars."
-#~ msgstr ""
-#~ "Ali naj bo uporabljena možnost \"Postavitev okna\" pri določevanju lege "
-#~ "vsebine glede na drsnike."
-
-#~ msgid "Scrollbars within bevel"
-#~ msgstr "Drsniki znotraj obrobe"
-
-#~ msgid "Place scrollbars within the scrolled window's bevel"
-#~ msgstr "Postavi drsnike znotraj obrobe drsečega okna"
-
-#~ msgid "Scrollbar spacing"
-#~ msgstr "Razmik do drsnika"
-
-#~ msgid "Number of pixels between the scrollbars and the scrolled window"
-#~ msgstr "Število slikovnih točk med drsnikom in drsenim oknom"
-
-#~ msgid "Fallback Icon Theme Name"
-#~ msgstr "Ime povrnitvene teme ikon"
-
-#~ msgid "Name of a icon theme to fall back to"
-#~ msgstr "Ime povrnitvene teme ikon"
-
-#~ msgid "Menu bar accelerator"
-#~ msgstr "Pospeševalnik menijske vrstice"
-
-#~ msgid "Keybinding to activate the menu bar"
-#~ msgstr "Tipkovna bližnjica, ki zažene menijsko vrstico"
-
-#~ msgid "Icon Sizes"
-#~ msgstr "Velikosti ikon"
-
-#~ msgid "List of icon sizes (gtk-menu=16,16:gtk-button=20,20..."
-#~ msgstr "Seznam velikosti ikon (gtk-menu=16,16;gtk-button=20,20..."
-
-#~ msgid "Show the 'Input Methods' menu"
-#~ msgstr "Pokaži meni 'Način vnosa'"
-
-#~ msgid ""
-#~ "Whether the context menus of entries and text views should offer to "
-#~ "change the input method"
-#~ msgstr ""
-#~ "Ali naj vsebinski meniji vnosov in pogledov besedila ponudijo možnost "
-#~ "spreminjanja načina vnosa"
-
-#~ msgid "Show the 'Insert Unicode Control Character' menu"
-#~ msgstr "Pokaži meni 'Vstavi nadzorni znak Unicode'"
-
-#~ msgid ""
-#~ "Whether the context menus of entries and text views should offer to "
-#~ "insert control characters"
-#~ msgstr ""
-#~ "Ali naj vsebinski meniji vnosov in pogledov besedila ponudijo možnost "
-#~ "vstavljanja nadzornih znakov"
-
-#~ msgid "Start timeout"
-#~ msgstr "Začetna časovna omejitev"
-
-#~ msgid "Starting value for timeouts, when button is pressed"
-#~ msgstr "Začetna vrednost za časovno omejitev, kadar je gumb pritisnjen."
-
-#~ msgid "Repeat timeout"
-#~ msgstr "Ponovi časovni zamik"
-
-#~ msgid "Repeat value for timeouts, when button is pressed"
-#~ msgstr "Ponovi vrednost časovnih zamikov, kadar je pritisnjen gumb"
-
-#~ msgid "Expand timeout"
-#~ msgstr "Časovni zamik razširitve"
-
-#~ msgid "Expand value for timeouts, when a widget is expanding a new region"
-#~ msgstr "Časovni zamik za razširitve, kadar gradnik razširi novo območje"
-
-#~ msgid "Color scheme"
-#~ msgstr "Barvna shema"
-
-#~ msgid "A palette of named colors for use in themes"
-#~ msgstr "Paleta imenovanih barv za uporabo v temah"
-
-#~ msgid "Enable Touchscreen Mode"
-#~ msgstr "Omogoči način na dotik občutljivega zaslona"
-
-#~ msgid ""
-#~ "When TRUE, there are no motion notify events delivered on this screen"
-#~ msgstr "Izbrana možnost omogoča, da ni obvestil o dogodkih gibanja."
-
-#~ msgid "Tooltip timeout"
-#~ msgstr "Zakasnitev orodnega namiga"
-
-#~ msgid "Timeout before tooltip is shown"
-#~ msgstr "Časovni zamik preden se pokaže namig orodja"
-
-#~ msgid "Tooltip browse timeout"
-#~ msgstr "Zakasnitev brskanja namigov"
-
-#~ msgid "Timeout before tooltip is shown when browse mode is enabled"
-#~ msgstr "Zakasnitev namigov preden se omogoči brskalni način"
-
-#~ msgid "Tooltip browse mode timeout"
-#~ msgstr "Zakasnitev načina brskanja namigov"
-
-#~ msgid "Timeout after which browse mode is disabled"
-#~ msgstr "Zakasnitev preden se onemogoči brskalni način"
-
-#~ msgid "Keynav Cursor Only"
-#~ msgstr "Upravljanje samo s smernimi tipkami"
-
-#~ msgid "When TRUE, there are only cursor keys available to navigate widgets"
-#~ msgstr ""
-#~ "Izbrana možnost omogoča, da so na voljo le smerne tipke za upravljanje z "
-#~ "gradniki"
-
-#~ msgid "Keynav Wrap Around"
-#~ msgstr "Prelom med upravljanjem s tipkovnico"
-
-#~ msgid "Whether to wrap around when keyboard-navigating widgets"
-#~ msgstr "Ali naj pride do preloma, ko gradnik upravljamo s tipkovnico"
-
-#~ msgid "Color Hash"
-#~ msgstr "Barvno razpršilo"
-
-#~ msgid "A hash table representation of the color scheme."
-#~ msgstr "Preglednica razpršil barvne sheme"
-
-#~ msgid "Default file chooser backend"
-#~ msgstr "Privzet ozadnji program izbirnika datotek"
-
-#~ msgid "Name of the GtkFileChooser backend to use by default"
-#~ msgstr "Ime privzetega zaledja GtkFileChooser"
-
-#~ msgid "Enable Mnemonics"
-#~ msgstr "Omogoči menijske bližnjice"
-
-#~ msgid "Whether labels should have mnemonics"
-#~ msgstr "Ali naj oznake vsebujejo menijske bližnjice"
-
-#~ msgid "Recent Files Limit"
-#~ msgstr "Omejitev nedavnih datotek"
-
-#~ msgid "Number of recently used files"
-#~ msgstr "Število nedavno uporabljenih datotek"
-
-#~ msgid "Enable Tooltips"
-#~ msgstr "Omogoči orodne namige"
-
-#~ msgid "Whether tooltips should be shown on widgets"
-#~ msgstr "Ali naj se na gradnikih prikažejo orodni namigi"
-
-#~ msgid "Toolbar style"
-#~ msgstr "Slog orodne vrstice"
-
-#~ msgid ""
-#~ "Whether default toolbars have text only, text and icons, icons only, etc."
-#~ msgstr ""
-#~ "Ali imajo privzete orodne vrstice le besedilo, besedilo in ikone, samo "
-#~ "ikone, itd."
-
-#~ msgid "Toolbar Icon Size"
-#~ msgstr "Velikost ikon orodne vrstice"
-
-#~ msgid "The size of icons in default toolbars."
-#~ msgstr "Velikost ikon v privzetih orodnih vrsticah."
-
-#~ msgid "Auto Mnemonics"
-#~ msgstr "Samodejne menijske bližnjice"
-
-#~ msgid ""
-#~ "Whether mnemonics should be automatically shown and hidden when the user "
-#~ "presses the mnemonic activator."
-#~ msgstr ""
-#~ "Ali naj bodo pospeševalne tipke samodejno prikazane (in skrite), kadar "
-#~ "uporabnik pritisne (spusti) ustrezno tipko."
-
-#~ msgid "Visible Focus"
-#~ msgstr "Okno v žarišču"
-
-#~ msgid ""
-#~ "Whether 'focus rectangles' should be hidden until the user starts to use "
-#~ "the keyboard."
-#~ msgstr ""
-#~ "Ali naj bodo 'pravokotniki žariščenja' skriti, dokler uporabnik ne začne "
-#~ "uporabljati tipkovnice."
-
-#~ msgid "Show button images"
-#~ msgstr "Pokaži slike gumbov"
-
-#~ msgid "Whether images should be shown on buttons"
-#~ msgstr "Ali naj bodo na gumbih prikazane slike"
-
-#~ msgid "Show menu images"
-#~ msgstr "Pokaži slike v menijih"
-
-#~ msgid "Whether images should be shown in menus"
-#~ msgstr "Ali naj bodo v menijih prikazane slike ali ne"
-
-#~ msgid "Delay before drop down menus appear"
-#~ msgstr "Zakasnitev, preden se pojavijo spustni meniji"
-
-#~ msgid "Delay before the submenus of a menu bar appear"
-#~ msgstr "Zakasnitev, preden se pojavijo podmeniji menijske vrstice"
-
-#~ msgid "Scrolled Window Placement"
-#~ msgstr "Postavitev drsečega okna"
-
-#~ msgid ""
-#~ "Where the contents of scrolled windows are located with respect to the "
-#~ "scrollbars, if not overridden by the scrolled window's own placement."
-#~ msgstr ""
-#~ "Kje leži vsebina drsnih oken glede na drsnike, kadar možnosti ne prepiše "
-#~ "lega drsnega okna."
-
-#~ msgid "Can change accelerators"
-#~ msgstr "Lahko spremeni pospeševalnike"
-
-#~ msgid ""
-#~ "Whether menu accelerators can be changed by pressing a key over the menu "
-#~ "item"
-#~ msgstr ""
-#~ "Ali se lahko pospeševalniki menijev spremenijo s pritiskom tipke nad "
-#~ "predmetom menija."
-
-#~ msgid "Delay before submenus appear"
-#~ msgstr "Zakasnitev, preden se prikažejo podmeniji"
-
-#~ msgid ""
-#~ "Minimum time the pointer must stay over a menu item before the submenu "
-#~ "appear"
-#~ msgstr ""
-#~ "Najmanjši čas, kolikor mora kazalec stati nad menijem, preden se prikaže "
-#~ "podmeni"
-
-#~ msgid "Delay before hiding a submenu"
-#~ msgstr "Zakasnitev pred skritjem podmenija"
-
-#~ msgid ""
-#~ "The time before hiding a submenu when the pointer is moving towards the "
-#~ "submenu"
-#~ msgstr "Čas, preden se podmeni skrije, ko se kazalec premika proti njemu"
-
-#~ msgid "Custom palette"
-#~ msgstr "Paleta po meri"
-
-#~ msgid "Palette to use in the color selector"
-#~ msgstr "Paleta, ki naj se uporabi v izbirniku barv"
-
-#~ msgid "IM Preedit style"
-#~ msgstr "Predhodno urejevalni slog načina vnosa"
-
-#~ msgid "How to draw the input method preedit string"
-#~ msgstr "Kako naj se nariše predhodno urejevalni niz načina vnosa"
-
-#~ msgid "IM Status style"
-#~ msgstr "Slog stanja načina vnosa"
-
-#~ msgid "How to draw the input method statusbar"
-#~ msgstr "Kako naj se nariše vrstica stanja načina vnosa"
-
-#~ msgid "Ignore hidden"
-#~ msgstr "Prezri skrito"
-
-#~ msgid ""
-#~ "If TRUE, unmapped widgets are ignored when determining the size of the "
-#~ "group"
-#~ msgstr ""
-#~ "Izbrana možnost omogoča, da so pri določanju velikosti skupine gradniki, "
-#~ "ki niso preslikani, prezrti."
-
-#~ msgid "Style of bevel around the spin button"
-#~ msgstr "Slog obrobe okoli vrtilnega gumba"
-
-#~ msgid "Style of bevel around the statusbar text"
-#~ msgstr "Slog obrobe okoli besedila vrstice stanja"
-
-#~ msgid "The minimum width of the handle"
-#~ msgstr "Najmanjša širina ročnika"
-
-#~ msgid "Slider Height"
-#~ msgstr "Višina drsnika"
-
-#~ msgid "The minimum height of the handle"
-#~ msgstr "Najmanjša višina ročice"
-
-#~ msgid "Paragraph background color"
-#~ msgstr "Barva ozadja odstavka"
-
-#~ msgid "Paragraph background color as a GdkColor"
-#~ msgstr "Barva ozadja odstavka kot (po možnosti ni rezerviran) GdkColor"
-
-#~ msgid "Error underline color"
-#~ msgstr "Barva podčrtovanja napak"
-
-#~ msgid "Color with which to draw error-indication underlines"
-#~ msgstr "Barva, s katero naj bodo podčrtane nakazane napake"
-
-#~ msgid "Spacer size"
-#~ msgstr "Velikost ločilnikov"
-
-#~ msgid "Size of spacers"
-#~ msgstr "Velikost ločilnikov"
-
-#~ msgid "Amount of border space between the toolbar shadow and the buttons"
-#~ msgstr "Količina robnega prostora med senco orodne vrstice in gumbi"
-
-#~ msgid "Maximum child expand"
-#~ msgstr "Največja razširitev podrejenega predmeta"
-
-#~ msgid "Maximum amount of space an expandable item will be given"
-#~ msgstr "Največja količina prostora, ki jo ima na voljo raztegljivi predmet"
-
-#~ msgid "Space style"
-#~ msgstr "Slog ločilnikov"
-
-#~ msgid "Whether spacers are vertical lines or just blank"
-#~ msgstr "Ali naj so ločilniki navpične črte ali le prazen prostor"
-
-#~ msgid "Button relief"
-#~ msgstr "Sprostitev gumba"
-
-#~ msgid "Type of bevel around toolbar buttons"
-#~ msgstr "Vrsta obrobe okoli gumbov orodne vrstice"
-
-#~ msgid "Style of bevel around the toolbar"
-#~ msgstr "Slog obrobe okoli orodne vrstice"
-
-#~ msgid "Stock Id"
-#~ msgstr "ID sklada"
-
-#~ msgid "The stock icon displayed on the item"
-#~ msgstr "Privzeta ikona, prikazana na predmetu"
-
-#~ msgid "Icon spacing"
-#~ msgstr "Razmik med ikonami"
-
-#~ msgid "Spacing in pixels between the icon and label"
-#~ msgstr "Razmik (v slikovnih točkah) med ikono in oznako"
-
-#~ msgid "Header Spacing"
-#~ msgstr "Prostor glave"
-
-#~ msgid "Spacing between expander arrow and caption"
-#~ msgstr "Razmik med nazivom in puščice razširilnika gumba"
-
-#~ msgid "Tearoff"
-#~ msgstr "Odpenjalnik"
-
-#~ msgid "Whether the menu has a tearoff item"
-#~ msgstr "Ali naj imajo meniji odpenjalnike"
-
-#~ msgid "Rules Hint"
-#~ msgstr "Namig ravnil"
-
-#~ msgid "Set a hint to the theme engine to draw rows in alternating colors"
-#~ msgstr "Nastavi namig programniku tem, da izriše vrstice izmenljivih barv"
-
-#~ msgid "Vertical Separator Width"
-#~ msgstr "Širina navpičnega ločilnika"
-
-#~ msgid "Vertical space between cells. Must be an even number"
-#~ msgstr "Navpični prostor med celicami. Mora biti sodo število"
-
-#~ msgid "Horizontal Separator Width"
-#~ msgstr "Širina vodoravnega ločilnika"
-
-#~ msgid "Horizontal space between cells. Must be an even number"
-#~ msgstr "Vodoravni prostor med celicami. Mora biti sodo število"
-
-#~ msgid "Allow Rules"
-#~ msgstr "Dovoli ravnila"
-
-#~ msgid "Allow drawing of alternating color rows"
-#~ msgstr "Dovoli risanje izmenično obarvanih vrstic"
-
-#~ msgid "Indent Expanders"
-#~ msgstr "Zamakni razširilnike"
-
-#~ msgid "Make the expanders indented"
-#~ msgstr "Naredi razširilnike zamaknjene"
-
-#~ msgid "Even Row Color"
-#~ msgstr "Barva sodih vrstic"
-
-#~ msgid "Color to use for even rows"
-#~ msgstr "Barva sodih vrstic"
-
-#~ msgid "Odd Row Color"
-#~ msgstr "Barva lihih vrstic"
-
-#~ msgid "Color to use for odd rows"
-#~ msgstr "Barva lihih vrstic"
-
-#~ msgid "Grid line width"
-#~ msgstr "Širina mrežne črte"
-
-#~ msgid "Width, in pixels, of the tree view grid lines"
-#~ msgstr "Širina (v slikovnih točkah) mrežnih črt v drevesnem pogledu"
-
-#~ msgid "Tree line width"
-#~ msgstr "Širina drevesne črte"
-
-#~ msgid "Width, in pixels, of the tree view lines"
-#~ msgstr "Širina (v slikovnih točkah) črt v drevesnem pogledu"
-
-#~ msgid "Grid line pattern"
-#~ msgstr "Vzorec mrežne črte"
-
-#~ msgid "Dash pattern used to draw the tree view grid lines"
-#~ msgstr "Črtkan vzorec, uporabljen za izris mrežnih črt drevesnega pogleda"
-
-#~ msgid "Tree line pattern"
-#~ msgstr "Vzorec drevesne črte"
-
-#~ msgid "Dash pattern used to draw the tree view lines"
-#~ msgstr "Črtkan vzorec, uporabljen za izris črt drevesnega pogleda"
-
-#~ msgid "Application paintable"
-#~ msgstr "Program je izrisljiv"
-
-#~ msgid "Whether the application will paint directly on the widget"
-#~ msgstr "Ali se bo program risal neposredno na gradnik"
-
-#~ msgid "Whether the widget is part of a composite widget"
-#~ msgstr "Ali je gradnik del sestavljenega gradnika"
-
-#~ msgid "Style"
-#~ msgstr "Slog"
-
-#~ msgid ""
-#~ "The style of the widget, which contains information about how it will "
-#~ "look (colors etc)"
-#~ msgstr ""
-#~ "Slog gradnika, ki vsebuje podatke o tem kako bo videti (barve, itn.)"
-
-#~ msgid "Events"
-#~ msgstr "Dogodki"
-
-#~ msgid "The event mask that decides what kind of GdkEvents this widget gets"
-#~ msgstr ""
-#~ "Maska dogodkov, ki določa katere vrste GdkEvents bo dobival ta gradnik"
-
-#~ msgid "No show all"
-#~ msgstr "Brez prikazovanja vseh"
-
-#~ msgid "Whether gtk_widget_show_all() should not affect this widget"
-#~ msgstr "Ali možnost gtk_widget_show_all() ne vpliva na gradnik"
-
-#~ msgid "Double Buffered"
-#~ msgstr "Dvojni medpomnilnik"
-
-#~ msgid "Whether the widget is double buffered"
-#~ msgstr "Ali gradnik uporablja dvojni medpomnilnik"
-
-#~ msgid "Margin on Left"
-#~ msgstr "Rob na levi strani"
-
-#~ msgid "Pixels of extra space on the left side"
-#~ msgstr "Število slikovnih točk praznega prostora na levi strani"
-
-#~ msgid "Margin on Right"
-#~ msgstr "Rob na desni strani"
-
-#~ msgid "Pixels of extra space on the right side"
-#~ msgstr "Število slikovnih točk praznega prostora na desni strani"
-
-#~ msgid "Interior Focus"
-#~ msgstr "Notranja dejavnost"
-
-#~ msgid "Whether to draw the focus indicator inside widgets"
-#~ msgstr "Ali naj se nariše pokazatelj dejavnosti znotraj gradnika"
-
-#~ msgid "Focus linewidth"
-#~ msgstr "Širina črte prikaza dejavnosti"
-
-#~ msgid "Width, in pixels, of the focus indicator line"
-#~ msgstr "Širina v točkah za črto kazalca dejavnosti"
-
-#~ msgid "Focus line dash pattern"
-#~ msgstr "Vzorec črtkane črte oznake dejavnosti"
-
-#~ msgid ""
-#~ "Dash pattern used to draw the focus indicator. The character values are "
-#~ "interpreted as pixel widths of alternating on and off segments of the "
-#~ "line."
-#~ msgstr ""
-#~ "Črtkan vzorec za izris pokazatelja žarišča. Znakovne vrednosti se "
-#~ "tolmačijo kot širine slikovnih točk izmenjujočih se vključenih/"
-#~ "izključenih odsekov črte."
-
-#~ msgid "Focus padding"
-#~ msgstr "Blazinjenje oznake dejavnosti"
-
-#~ msgid "Width, in pixels, between focus indicator and the widget 'box'"
-#~ msgstr "Širina v točkah med pokazateljem dejavnosti in okvirjem gradnika"
-
-#~ msgid "Cursor color"
-#~ msgstr "Barva kazalke"
-
-#~ msgid "Color with which to draw insertion cursor"
-#~ msgstr "Barva, s katero naj bo izrisana vnosna kazalka"
-
-#~ msgid "Secondary cursor color"
-#~ msgstr "Barva drugotne kazalke"
-
-#~ msgid ""
-#~ "Color with which to draw the secondary insertion cursor when editing "
-#~ "mixed right-to-left and left-to-right text"
-#~ msgstr ""
-#~ "Barva, s katero bo izrisana drugotna kazalka vstavljanja, kadar se ureja "
-#~ "mešano besedilo desno-proti-levi in levo-proti-desni."
-
-#~ msgid "Cursor line aspect ratio"
-#~ msgstr "Razmerje vrstice kazalke"
-
-#~ msgid "Aspect ratio with which to draw insertion cursor"
-#~ msgstr "Razmerje, v katerem naj se izriše vnosna kazalka"
-
-#~ msgid "Window dragging"
-#~ msgstr "Vleka okna"
-
-#~ msgid ""
-#~ "Whether windows can be dragged and maximized by clicking on empty areas"
-#~ msgstr "Ali je mogoče okna potegniti in razpeti s klikom na prazna območja"
-
-#~ msgid "Unvisited Link Color"
-#~ msgstr "Barva neobiskanih povezav"
-
-#~ msgid "Color of unvisited links"
-#~ msgstr "Barva neobiskanih povezav"
-
-#~ msgid "Visited Link Color"
-#~ msgstr "Barva obiskane povezave"
-
-#~ msgid "Color of visited links"
-#~ msgstr "Barva obiskanih povezav"
-
-#~ msgid "Wide Separators"
-#~ msgstr "Široki ločilniki"
-
-#~ msgid ""
-#~ "Whether separators have configurable width and should be drawn using a "
-#~ "box instead of a line"
-#~ msgstr ""
-#~ "Ali je mogoče nastaviti širino ločilnika z izrisom okvirja namesto črte"
-
-#~ msgid "Separator Width"
-#~ msgstr "Širina ločilnika"
-
-#~ msgid "The width of separators if wide-separators is TRUE"
-#~ msgstr "Širina ločilnikov, kadar je izbrana možnost \"Široki ločilniki\""
-
-#~ msgid "Separator Height"
-#~ msgstr "Višina ločilnika"
-
-#~ msgid "The height of separators if \"wide-separators\" is TRUE"
-#~ msgstr "Višina ločilnikov, kadar je izbrana možnost \"Široki ločilniki\""
-
-#~ msgid "Horizontal Scroll Arrow Length"
-#~ msgstr "Dolžina puščic vodoravnega drsnika"
-
-#~ msgid "The length of horizontal scroll arrows"
-#~ msgstr "Dolžina puščic vodoravnega drsnika"
-
-#~ msgid "Vertical Scroll Arrow Length"
-#~ msgstr "Dolžina puščic navpičnega drsnika"
-
-#~ msgid "The length of vertical scroll arrows"
-#~ msgstr "Dolžina puščic navpičnega drsnika"
-
-#~ msgid "Width of text selection handles"
-#~ msgstr "Širina ročic za izbor besedila"
-
-#~ msgid "Height of text selection handles"
-#~ msgstr "Višina ročic za izbor besedila"
-
-#~ msgid "Hide the titlebar during maximization"
-#~ msgstr "Skrij naslovno vrstico med razpenjanjem"
-
-#~ msgid ""
-#~ "If this window's titlebar should be hidden when the window is maximized"
-#~ msgstr "Ali naj bo naslovna vrstica okna skrita, ko je okno povsem razprto"
-
-#~ msgid "Focus in Toplevel"
-#~ msgstr "Dejavnost vrhnje ravni"
-
-#~ msgid "Whether the input focus is within this GtkWindow"
-#~ msgstr "Ali je dejavnost predmeta znotraj GtkWindow okna"
-
-#~ msgid "Resize grip"
-#~ msgstr "Oprijemalnik velikosti"
-
-#~ msgid "Specifies whether the window should have a resize grip"
-#~ msgstr "Določa ali ima okno oprijemalnik velikosti okna"
-
-#~ msgid "Resize grip is visible"
-#~ msgstr "Oprijemalnik velikosti je viden."
-
-#~ msgid "Specifies whether the window's resize grip is visible."
-#~ msgstr "Določa ali je oprijemalnik velikosti okna viden."
+#~ msgid "The GtkAdjustment that contains the current value of this scrollbar"
+#~ msgstr "GtkAdjustment, ki vsebuje trenutno vrednost tega drsnika"
-#~ msgid "Decorated button layout"
-#~ msgstr "Porazdelitev oblikovanih gumbov"
+#~ msgid "CSS Name"
+#~ msgstr "Ime CSS"
-#~ msgid "Decoration resize handle size"
-#~ msgstr "Velikost ročnika za spreminjanje velikosti oblikovanih gumbov"
+#~ msgid "The name of this widget in the CSS tree"
+#~ msgstr "Ime gradnika v drevesni strukturi CSS"
#~ msgid "Whether the combo box grabs focus when it is clicked with the mouse"
#~ msgstr "Ali lahko spustno polje postane dejavno, kadar je izbrano z miško"
diff --git a/po/eo.po b/po/eo.po
index afc0ebaaa5..aa6e920242 100644
--- a/po/eo.po
+++ b/po/eo.po
@@ -7,12 +7,13 @@
# Tiffany ANTOPOLSKI <tiffany.antopolski@gmail.com>, 2011, 2012.
# Kristjan SCHMIDT <kristjan.schmidt@googlemail.com>, 2010, 2011, 2012, 2016, 2018.
# Tirifto <tirifto@posteo.cz>, 2018.
+# Carmen Bianca BAKKER <carmen@carmenbianca.eu>, 2018.
msgid ""
msgstr ""
"Project-Id-Version: gtk+\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-27 13:53+0000\n"
-"PO-Revision-Date: 2018-09-30 12:23+0200\n"
+"POT-Creation-Date: 2018-10-16 20:52+0000\n"
+"PO-Revision-Date: 2018-10-24 10:10+0200\n"
"Last-Translator: Kristjan SCHMIDT <kristjan.schmidt@googlemail.com>\n"
"Language-Team: Esperanto <gnome-eo-list@gnome.org>\n"
"Language: eo\n"
@@ -22,54 +23,77 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Virtaal 0.7.1\n"
-#: gdk/broadway/gdkbroadway-server.c:130
+#: gdk/broadway/gdkbroadway-server.c:144
#, c-format
msgid "Broadway display type not supported: %s"
msgstr "Ekrantipo Broadway ne estas subtenata: %s"
-#: gdk/gdkclipboard.c:239
-msgid "This clipboard cannot store data."
-msgstr "Tiu ĉi tondujo ne povas enhavi datumojn."
-
-#: gdk/gdkclipboard.c:294 gdk/gdkclipboard.c:789 gdk/gdkclipboard.c:1086
-msgid "Cannot read from empty clipboard."
-msgstr "Ne povas legi el malplena tondujo."
-
-#: gdk/gdkclipboard.c:325 gdk/gdkclipboard.c:1136 gdk/gdkdrag.c:592
-msgid "No compatible formats to transfer clipboard contents."
-msgstr "Neniuj kongruaj formoj por transigi enhavon de tondujo."
-
-#: gdk/gdkcontentprovider.c:108 gdk/gdkcontentproviderimpl.c:215
-#: gtk/gtkdnd.c:818
-#, c-format
-msgid "Cannot provide contents as “%s”"
-msgstr "Ne povas provizi enhavon kiel “%s”"
-
-#: gdk/gdkcontentprovider.c:129
-#, c-format
-msgid "Cannot provide contents as %s"
-msgstr "Ne povas provizi enhavon kiel %s"
-
-#: gdk/gdkdrop.c:110
-msgid "Drag’n’drop from other applications is not supported."
-msgstr "Ŝovi-kaj-demeti el aliaj aplikoj ne estas subtenata."
-
-#: gdk/gdkdrop.c:143
-msgid "No compatible formats to transfer contents."
-msgstr "Neniuj kongruaj formoj por transigi enhavon."
-
-#: gdk/gdksurface.c:1338
+#: gdk/gdk.c:182
+#, c-format
+msgid "Error parsing option --gdk-debug"
+msgstr "Eraro dum analizo de elekteblo --gdk-debug"
+
+#: gdk/gdk.c:202
+#, c-format
+msgid "Error parsing option --gdk-no-debug"
+msgstr "Eraro dum analizo de elekteblo --gdk-no-debug"
+
+#. Description of --class=CLASS in --help output
+#: gdk/gdk.c:231
+msgid "Program class as used by the window manager"
+msgstr "Programa klaso kiel uzata de la fenestra administrilo"
+
+#. Placeholder in --class=CLASS in --help output
+#: gdk/gdk.c:232
+msgid "CLASS"
+msgstr "KLASO"
+
+#. Description of --name=NAME in --help output
+#: gdk/gdk.c:234
+msgid "Program name as used by the window manager"
+msgstr "Programa nomo kiel uzata de la fenestra administrilo"
+
+#. Placeholder in --name=NAME in --help output
+#: gdk/gdk.c:235
+msgid "NAME"
+msgstr "NOMO"
+
+#. Description of --display=DISPLAY in --help output
+#: gdk/gdk.c:238
+msgid "X display to use"
+msgstr "X-ekrano uzota"
+
+#. Placeholder in --display=DISPLAY in --help output
+#: gdk/gdk.c:239
+msgid "DISPLAY"
+msgstr "EKRANO"
+
+#. Description of --gdk-debug=FLAGS in --help output
+#: gdk/gdk.c:243
+msgid "GDK debugging flags to set"
+msgstr "Ŝaltendaj GDK-sencimigmarkoj"
+
+#. Placeholder in --gdk-debug=FLAGS in --help output
+#. Placeholder in --gdk-no-debug=FLAGS in --help output
+#. Placeholder in --gtk-debug=FLAGS in --help output
+#. Placeholder in --gtk-no-debug=FLAGS in --help output
+#: gdk/gdk.c:244 gdk/gdk.c:247 gtk/gtkmain.c:471 gtk/gtkmain.c:474
+msgid "FLAGS"
+msgstr "FLAGOJ"
+
+#. Description of --gdk-no-debug=FLAGS in --help output
+#: gdk/gdk.c:246
+msgid "GDK debugging flags to unset"
+msgstr "Malŝaltendaj GDK-sencimigmarkoj"
+
+#: gdk/gdkwindow.c:2829
msgid "GL support disabled via GDK_DEBUG"
msgstr "Subteno de GL malŝaltita per GDK_DEBUG"
-#: gdk/gdksurface.c:1349
+#: gdk/gdkwindow.c:2840
msgid "The current backend does not support OpenGL"
msgstr "OpenGL ne subteniĝas de la nuna interno"
-#: gdk/gdksurface.c:1460
-msgid "Vulkan support disabled via GDK_DEBUG"
-msgstr "Subteno de Vulkan malŝaltita per GDK_DEBUG"
-
#.
#. * Translators, the strings in the “keyboard label” context are
#. * display names for keyboard keys. Some of them have prefixes like
@@ -350,7 +374,7 @@ msgstr "Aŭdvidea sono"
#: gdk/keyname-table.h:6897
msgctxt "keyboard label"
msgid "Eject"
-msgstr "Eligi"
+msgstr "_Eligi"
#: gdk/keyname-table.h:6898
msgctxt "keyboard label"
@@ -447,207 +471,46 @@ msgctxt "keyboard label"
msgid "Suspend"
msgstr "Interrompi"
-#: gdk/quartz/gdkglcontext-quartz.c:37
-msgid "Not implemented on OS X"
-msgstr "Nerealigita por OS X"
-
-#: gdk/wayland/gdkclipboard-wayland.c:231 gdk/wayland/gdkdrop-wayland.c:207
-#: gdk/wayland/gdkprimary-wayland.c:312 gdk/win32/gdkdrop-win32.c:1285
-#: gdk/win32/gdkdrop-win32.c:1330 gdk/x11/gdkclipboard-x11.c:760
-#: gdk/x11/gdkdrop-x11.c:196
-msgid "No compatible transfer format found"
-msgstr "Neniu kongrua formo transiga troviĝis"
+#: gdk/mir/gdkmirglcontext.c:48 gdk/mir/gdkmirwindowimpl.c:2226
+#: gdk/wayland/gdkglcontext-wayland.c:468 gdk/win32/gdkglcontext-win32.c:1177
+#: gdk/x11/gdkglcontext-x11.c:1277
+msgid "No GL implementation is available"
+msgstr "Neniu GL-realigo haveblas"
-#: gdk/wayland/gdkglcontext-wayland.c:146 gdk/win32/gdkglcontext-win32.c:705
-#: gdk/x11/gdkglcontext-x11.c:660 gdk/x11/gdkglcontext-x11.c:710
+#: gdk/mir/gdkmirglcontext.c:89 gdk/wayland/gdkglcontext-wayland.c:208
+#: gdk/win32/gdkglcontext-win32.c:1070 gdk/win32/gdkglcontext-win32.c:1110
+#: gdk/x11/gdkglcontext-x11.c:720 gdk/x11/gdkglcontext-x11.c:770
msgid "Unable to create a GL context"
msgstr "Ne povas krei GL-kuntekston"
-#: gdk/wayland/gdkglcontext-wayland.c:396
-#: gdk/wayland/gdkglcontext-wayland.c:406 gdk/win32/gdkglcontext-win32.c:659
-#: gdk/x11/gdkglcontext-x11.c:908
+#: gdk/mir/gdkmirwindowimpl.c:2188 gdk/mir/gdkmirwindowimpl.c:2198
+#: gdk/wayland/gdkglcontext-wayland.c:418
+#: gdk/wayland/gdkglcontext-wayland.c:428 gdk/win32/gdkglcontext-win32.c:908
+#: gdk/win32/gdkglcontext-win32.c:918 gdk/win32/gdkglcontext-win32.c:1035
+#: gdk/x11/gdkglcontext-x11.c:971
msgid "No available configurations for the given pixel format"
-msgstr "Neniuj disponeblaj agordaroj por la donita rastrumera formato"
-
-#: gdk/wayland/gdkglcontext-wayland.c:435 gdk/win32/gdkglcontext-win32.c:771
-#: gdk/x11/gdkglcontext-x11.c:1211
-msgid "No GL implementation is available"
-msgstr "Neniu GL-realigo haveblas"
+msgstr "Neniu disponebla agordaro por la specifita bildera formo"
-#: gdk/wayland/gdkglcontext-wayland.c:443
-msgid "Core GL is not available on EGL implementation"
-msgstr "Kerna GL ne disponeblas en realigo de EGL"
-
-#: gdk/win32/gdkclipdrop-win32.c:718
-#, c-format
-msgid "Cannot claim clipboard ownership. OpenClipboard() timed out."
-msgstr "Ne povas aserti posedon de tondujo. OpenClipboard() eltempiĝis."
-
-#: gdk/win32/gdkclipdrop-win32.c:728
-#, c-format
-msgid "Cannot claim clipboard ownership. Another process claimed it before us."
-msgstr ""
-"Ne povas aserti posedon de tondujo. Alia procezo ekposedis ĝin antaŭ ni."
+#: gdk/mir/gdkmirwindowimpl.c:2234
+msgid "3.2 core GL profile is not available on EGL implementation"
+msgstr "3.2 kerna GL-profilo ne disponeblas per realigo de EGL"
-#: gdk/win32/gdkclipdrop-win32.c:742
-#, c-format
-msgid "Cannot claim clipboard ownership. OpenClipboard() failed: 0x%lx."
-msgstr "Ne povas aserti posedon de tondujo. OpenClipboard() fiaskis: 0x%lx."
-
-#: gdk/win32/gdkclipdrop-win32.c:754
-#, c-format
-msgid "Cannot claim clipboard ownership. EmptyClipboard() failed: 0x%lx."
-msgstr "Ne povas aserti posedon de tondujo. EmptyClipboard() fiaskis: 0x%lx."
-
-#: gdk/win32/gdkclipdrop-win32.c:797
-#, c-format
-msgid "Cannot set clipboard data. OpenClipboard() timed out."
-msgstr "Ne povas agordi datumojn de tondujo. OpenClipboard() eltempiĝis."
-
-#: gdk/win32/gdkclipdrop-win32.c:807 gdk/win32/gdkclipdrop-win32.c:838
-#, c-format
-msgid "Cannot set clipboard data. Another process claimed clipboard ownership."
-msgstr ""
-"Ne povas agordi datumojn de tondujo. Alia procezo ekposedis ĝin antaŭ ni."
-
-#: gdk/win32/gdkclipdrop-win32.c:821
-#, c-format
-msgid "Cannot set clipboard data. OpenClipboard() failed: 0x%lx."
-msgstr "Ne povas agordi datumojn de tondujo. OpenClipboard() fiaskis: 0x%lx."
-
-#: gdk/win32/gdkclipdrop-win32.c:873
-#, c-format
-msgid "Cannot get clipboard data. GlobalLock(0x%p) failed: 0x%lx."
-msgstr "Ne povas ricevi datumojn de tondujo. GlobalLock(0x%p) fiaskis: 0x%lx."
-
-#: gdk/win32/gdkclipdrop-win32.c:884
-#, c-format
-msgid "Cannot get clipboard data. GlobalSize(0x%p) failed: 0x%lx."
-msgstr "Ne povas ricevi datumojn de tondujo. GlobalSize(0x%p) fiaskis: 0x%lx."
-
-#: gdk/win32/gdkclipdrop-win32.c:896
-#, c-format
-msgid ""
-"Cannot get clipboard data. Failed to allocate %lu bytes to store the data."
-msgstr ""
-"Ne povas ricevi datumojn de tondujo. Malsukcesis asigni %lu bajtojn por "
-"enmemorigi la datumojn."
-
-#: gdk/win32/gdkclipdrop-win32.c:927
-#, c-format
-msgid "Cannot get clipboard data. OpenClipboard() timed out."
-msgstr "Ne povas ricevi datumojn de tondujo. OpenClipboard() eltempiĝis."
-
-#: gdk/win32/gdkclipdrop-win32.c:937
-#, c-format
-msgid "Cannot get clipboard data. Clipboard ownership changed."
-msgstr "Ne povas ricevi datumojn de tondujo. Posedo de tondujo ŝanĝiĝis."
-
-#: gdk/win32/gdkclipdrop-win32.c:947
-#, c-format
-msgid ""
-"Cannot get clipboard data. Clipboard data changed before we could get it."
-msgstr ""
-"Ne povas ricevi datumojn de tondujo. Ili ŝanĝiĝis antaŭ ni sukcesis ilin "
-"ricevi."
-
-#: gdk/win32/gdkclipdrop-win32.c:964
-#, c-format
-msgid "Cannot get clipboard data. OpenClipboard() failed: 0x%lx."
-msgstr ""
-"Ne povas ricevi datumojn de tondujo. OpenClipboard() malsukcesis: 0x%lx."
-
-#: gdk/win32/gdkclipdrop-win32.c:989
-#, c-format
-msgid "Cannot get clipboard data. No compatible transfer format found."
-msgstr ""
-"Ne povas ricevi datumojn de tondujo. Neniu kongrua formo transiga troviĝis."
-
-#: gdk/win32/gdkclipdrop-win32.c:999
-#, c-format
-msgid "Cannot get clipboard data. GetClipboardData() failed: 0x%lx."
-msgstr ""
-"Ne povas ricevi datumojn de tondujo. GetClipboardData() fiaskis: 0x%lx."
-
-#: gdk/win32/gdkdrop-win32.c:1218
-#, c-format
-msgid "Cannot get DnD data. GlobalLock(0x%p) failed: 0x%lx."
-msgstr "Ne povas ricevi datumojn de DnD. GlobalLock(0x%p) fiaskis: 0x%lx."
-
-#: gdk/win32/gdkdrop-win32.c:1227
-#, c-format
-msgid "Cannot get DnD data. GlobalSize(0x%p) failed: 0x%lx."
-msgstr "Ne povas ricevi datumojn de DnD. GlobalSize(0x%p) fiaskis: 0x%lx."
-
-#: gdk/win32/gdkdrop-win32.c:1237
-#, c-format
-msgid "Cannot get DnD data. Failed to allocate %lu bytes to store the data."
-msgstr ""
-"Ne povas ricevi datumojn de DnD. Malsukcesis asigni %lu bajtojn por "
-"enmemorigi la datumojn."
-
-#: gdk/win32/gdkdrop-win32.c:1304
-#, c-format
-msgid "GDK surface 0x%p is not registered as a drop target"
-msgstr "GDK-surfaco 0x%p ne estas registrita kiel demet-celo"
-
-#: gdk/win32/gdkdrop-win32.c:1311
-#, c-format
-msgid "Target context record 0x%p has no data object"
-msgstr "Celo kunteksto arkivo 0x%p havas neniun datumo-objekto"
-
-#: gdk/win32/gdkdrop-win32.c:1349
-#, c-format
-msgid "IDataObject_GetData (0x%x) failed, returning 0x%lx"
-msgstr "IDataObject_GetData (0x%x) fiaskis, liverante 0x%lx"
-
-#: gdk/win32/gdkdrop-win32.c:1381
-#, c-format
-msgid "Failed to transmute DnD data W32 format 0x%x to %p (%s)"
-msgstr "Malsukcesis transigi formon DnD data W32 0x%x al %p (%s)"
-
-#: gdk/win32/gdkhdataoutputstream-win32.c:64
-msgid "writing a closed stream"
-msgstr "enskribanta malfermitan fluon"
-
-#: gdk/win32/gdkhdataoutputstream-win32.c:86
-msgid "g_try_realloc () failed"
-msgstr "g_try_realloc () fiaskis"
-
-#: gdk/win32/gdkhdataoutputstream-win32.c:94
-#: gdk/win32/gdkhdataoutputstream-win32.c:232
-msgid "GlobalReAlloc() failed: "
-msgstr "GlobalReAlloc() fiaskis: "
-
-#: gdk/win32/gdkhdataoutputstream-win32.c:106
-msgid "Ran out of buffer space (buffer size is fixed)"
-msgstr "Elkuris bufro-spaco (bufra grandeco estas fiksa)"
-
-#: gdk/win32/gdkhdataoutputstream-win32.c:204
-msgid "Can’t transmute a single handle"
-msgstr "Ne povas transigi sola traktilo"
-
-#: gdk/win32/gdkhdataoutputstream-win32.c:216
-#, c-format
-msgid "Failed to transmute %zu bytes of data from %s to %u"
-msgstr "Malsukcesis transigi %zu bajtojn de datumoj el %s al %u"
-
-#: gdk/win32/gdkhdataoutputstream-win32.c:251
-msgid "GlobalLock() failed: "
-msgstr "GlobalLock() fiaskis: "
+#: gdk/quartz/gdkglcontext-quartz.c:37
+msgid "Not implemented on OS X"
+msgstr "Nerealigita por OS X"
-#: gdk/win32/gdkhdataoutputstream-win32.c:365
-msgid "GlobalAlloc() failed: "
-msgstr "GlobalAlloc() fiaskis: "
+#: gdk/wayland/gdkglcontext-wayland.c:476
+msgid "Core GL is not available on EGL implementation"
+msgstr "Kerna GL ne disponeblas per realigo de EGL"
#. Description of --sync in --help output
#: gdk/win32/gdkmain-win32.c:56
-msgid "Don’t batch GDI requests"
+msgid "Don't batch GDI requests"
msgstr "Ne trakti amase GDI-petojn"
#. Description of --no-wintab in --help output
#: gdk/win32/gdkmain-win32.c:58
-msgid "Don’t use the Wintab API for tablet support"
+msgid "Don't use the Wintab API for tablet support"
msgstr "Ne uzi la API-on Wintab por subteno de tabulkomputiloj"
#. Description of --ignore-wintab in --help output
@@ -658,7 +521,7 @@ msgstr "Same kiel --no-wintab"
#. Description of --use-wintab in --help output
#: gdk/win32/gdkmain-win32.c:62
msgid "Do use the Wintab API [default]"
-msgstr "Uzi la API-on Wintab [implicite]"
+msgstr "Uzi la API-on Wintab [implicita]"
#. Description of --max-colors=COLORS in --help output
#: gdk/win32/gdkmain-win32.c:64
@@ -670,62 +533,27 @@ msgstr "Grando de la paletro en 8-bita reĝimo"
msgid "COLORS"
msgstr "KOLOROJ"
-#: gdk/x11/gdkapplaunchcontext-x11.c:292
+#: gdk/x11/gdkapplaunchcontext-x11.c:295
#, c-format
msgid "Starting %s"
-msgstr "Komencanta %s"
+msgstr "Komencante %s"
-#: gdk/x11/gdkapplaunchcontext-x11.c:305
+#: gdk/x11/gdkapplaunchcontext-x11.c:308
#, c-format
msgid "Opening %s"
-msgstr "Malfermanta %s"
+msgstr "Malfermante %s"
-#: gdk/x11/gdkapplaunchcontext-x11.c:310
+#: gdk/x11/gdkapplaunchcontext-x11.c:313
#, c-format
msgid "Opening %d Item"
msgid_plural "Opening %d Items"
-msgstr[0] "Malfermanta %d eron"
-msgstr[1] "Malfermanta %d erojn"
-
-#: gdk/x11/gdkclipboard-x11.c:436
-msgid "Clipboard manager could not store selection."
-msgstr "Tonduja mastrumilo ne povis enmemorigi elektaĵon."
+msgstr[0] "Malfermante %d eron"
+msgstr[1] "Malfermante %d erojn"
-#: gdk/x11/gdkclipboard-x11.c:612
-msgid "Cannot store clipboard. No clipboard manager is active."
-msgstr "Ne povas konservi tondujon. Neniu tonduja mastrumilo aktivas."
-
-#: gdk/x11/gdkglcontext-x11.c:936
+#: gdk/x11/gdkglcontext-x11.c:999
#, c-format
msgid "No available configurations for the given RGBA pixel format"
-msgstr "Neniuj disponeblaj agordaroj por la donita RVBA-rastrumera formato"
-
-#: gdk/x11/gdkselectioninputstream-x11.c:462
-#, c-format
-msgid "Format %s not supported"
-msgstr "Formo %s ne estas subtenata"
-
-#: gdk/x11/gdktextlistconverter-x11.c:65 gdk/x11/gdktextlistconverter-x11.c:105
-msgid "Not enough space in destination"
-msgstr "Ne sufiĉas spaco en celo"
-
-#: gdk/x11/gdktextlistconverter-x11.c:91 gdk/x11/gdktextlistconverter-x11.c:138
-msgid "Need complete input to do conversion"
-msgstr "Necesas plena enigo por fari konverton"
-
-#: gdk/x11/gdktextlistconverter-x11.c:159
-#: gdk/x11/gdktextlistconverter-x11.c:193
-msgid "Invalid byte sequence in conversion input"
-msgstr "Nevalida bajta sinsekvo en konvreta enigo"
-
-#: gdk/x11/gdktextlistconverter-x11.c:185
-msgid "Invalid formats in compound text conversion."
-msgstr "Nevalidaj formoj en konverto de kunmetita teksto."
-
-#: gdk/x11/gdktextlistconverter-x11.c:202
-#, c-format
-msgid "Unsupported encoding “%s”"
-msgstr "Nesubtenata kodoprezento “%s”"
+msgstr "Neniu disponebla agordaro por la specifita RVBA-bildera formo"
#: gtk/a11y/gtkbooleancellaccessible.c:43
msgctxt "Action description"
@@ -737,12 +565,12 @@ msgctxt "Action name"
msgid "Toggle"
msgstr "Baskuligi"
-#: gtk/a11y/gtkbuttonaccessible.c:317 gtk/a11y/gtkmenuitemaccessible.c:436
+#: gtk/a11y/gtkbuttonaccessible.c:321 gtk/a11y/gtkmenuitemaccessible.c:436
msgctxt "Action name"
msgid "Click"
msgstr "Klaki"
-#: gtk/a11y/gtkbuttonaccessible.c:326
+#: gtk/a11y/gtkbuttonaccessible.c:330
msgctxt "Action description"
msgid "Clicks the button"
msgstr "Alklakas la butonon"
@@ -758,7 +586,7 @@ msgid "Edit"
msgstr "Redakti"
#: gtk/a11y/gtkcellaccessible.c:259 gtk/a11y/gtkcolorswatchaccessible.c:149
-#: gtk/a11y/gtkentryaccessible.c:1537 gtk/a11y/gtkexpanderaccessible.c:281
+#: gtk/a11y/gtkentryaccessible.c:1557 gtk/a11y/gtkexpanderaccessible.c:281
msgctxt "Action name"
msgid "Activate"
msgstr "Aktivigi"
@@ -813,7 +641,7 @@ msgctxt "Action description"
msgid "Presses the combobox"
msgstr "Premas la falliston"
-#: gtk/a11y/gtkentryaccessible.c:1546
+#: gtk/a11y/gtkentryaccessible.c:1566
msgctxt "Action description"
msgid "Activates the entry"
msgstr "Aktivigas la enigon"
@@ -823,384 +651,414 @@ msgctxt "Action description"
msgid "Activates the expander"
msgstr "Aktivigas la etendilon"
-#: gtk/a11y/gtkimageaccessible.c:54
+#. FIXME these need accelerators when appropriate, and
+#. * need the mnemonics to be rationalized
+#.
+#: gtk/a11y/gtkimageaccessible.c:53 gtk/deprecated/gtkstock.c:345
msgctxt "Stock label"
msgid "_About"
msgstr "_Pri"
-#: gtk/a11y/gtkimageaccessible.c:55
+#: gtk/a11y/gtkimageaccessible.c:54 gtk/deprecated/gtkstock.c:346
msgctxt "Stock label"
msgid "_Add"
msgstr "_Aldoni"
-#: gtk/a11y/gtkimageaccessible.c:56
+#: gtk/a11y/gtkimageaccessible.c:55 gtk/deprecated/gtkstock.c:348
msgctxt "Stock label"
msgid "_Bold"
msgstr "_Grase"
-#: gtk/a11y/gtkimageaccessible.c:57
+#: gtk/a11y/gtkimageaccessible.c:56 gtk/deprecated/gtkstock.c:350
msgctxt "Stock label"
msgid "_CD-ROM"
msgstr "_KD-ROM"
-#: gtk/a11y/gtkimageaccessible.c:58
+#: gtk/a11y/gtkimageaccessible.c:57 gtk/deprecated/gtkstock.c:351
msgctxt "Stock label"
msgid "_Clear"
msgstr "_Vakigi"
-#: gtk/a11y/gtkimageaccessible.c:59
+#: gtk/a11y/gtkimageaccessible.c:58 gtk/deprecated/gtkstock.c:352
msgctxt "Stock label"
msgid "_Close"
msgstr "_Fermi"
-#: gtk/a11y/gtkimageaccessible.c:60 gtk/gtkheaderbar.c:410 gtk/gtkwindow.c:8108
+#: gtk/a11y/gtkimageaccessible.c:59 gtk/gtkheaderbar.c:415 gtk/gtkwindow.c:9253
msgid "Minimize"
msgstr "Minimumigi"
-#: gtk/a11y/gtkimageaccessible.c:61 gtk/gtkheaderbar.c:433 gtk/gtkwindow.c:8117
+#: gtk/a11y/gtkimageaccessible.c:60 gtk/gtkheaderbar.c:439 gtk/gtkwindow.c:9262
msgid "Maximize"
msgstr "Maksimumigi"
-#: gtk/a11y/gtkimageaccessible.c:62 gtk/gtkheaderbar.c:433 gtk/gtkwindow.c:8074
+#: gtk/a11y/gtkimageaccessible.c:61 gtk/gtkheaderbar.c:439 gtk/gtkwindow.c:9219
msgid "Restore"
msgstr "Restaŭri"
-#: gtk/a11y/gtkimageaccessible.c:63
+#: gtk/a11y/gtkimageaccessible.c:62 gtk/deprecated/gtkstock.c:355
msgctxt "Stock label"
msgid "_Copy"
msgstr "_Kopii"
-#: gtk/a11y/gtkimageaccessible.c:64
+#: gtk/a11y/gtkimageaccessible.c:63 gtk/deprecated/gtkstock.c:356
msgctxt "Stock label"
msgid "Cu_t"
msgstr "El_tondi"
-#: gtk/a11y/gtkimageaccessible.c:65
+#: gtk/a11y/gtkimageaccessible.c:64 gtk/deprecated/gtkstock.c:357
msgctxt "Stock label"
msgid "_Delete"
msgstr "_Forigi"
-#: gtk/a11y/gtkimageaccessible.c:66
+#: gtk/a11y/gtkimageaccessible.c:65 gtk/deprecated/gtkstock.c:339
msgctxt "Stock label"
msgid "Error"
msgstr "Eraro"
-#: gtk/a11y/gtkimageaccessible.c:67
+#. KEEP IN SYNC with gtkiconfactory.c stock icons, when appropriate
+#: gtk/a11y/gtkimageaccessible.c:66 gtk/deprecated/gtkstock.c:337
msgctxt "Stock label"
msgid "Information"
msgstr "Informo"
-#: gtk/a11y/gtkimageaccessible.c:68
+#: gtk/a11y/gtkimageaccessible.c:67 gtk/deprecated/gtkstock.c:340
msgctxt "Stock label"
msgid "Question"
msgstr "Demando"
-#: gtk/a11y/gtkimageaccessible.c:69
+#: gtk/a11y/gtkimageaccessible.c:68 gtk/deprecated/gtkstock.c:338
msgctxt "Stock label"
msgid "Warning"
msgstr "Averto"
-#: gtk/a11y/gtkimageaccessible.c:70
+#: gtk/a11y/gtkimageaccessible.c:69 gtk/deprecated/gtkstock.c:360
msgctxt "Stock label"
msgid "_Execute"
msgstr "_Plenumi"
-#: gtk/a11y/gtkimageaccessible.c:71
+#: gtk/a11y/gtkimageaccessible.c:70 gtk/deprecated/gtkstock.c:362
msgctxt "Stock label"
msgid "_File"
msgstr "_Dosiero"
-#: gtk/a11y/gtkimageaccessible.c:72
+#: gtk/a11y/gtkimageaccessible.c:71 gtk/deprecated/gtkstock.c:363
msgctxt "Stock label"
msgid "_Find"
msgstr "_Serĉi"
-#: gtk/a11y/gtkimageaccessible.c:73
+#: gtk/a11y/gtkimageaccessible.c:72 gtk/deprecated/gtkstock.c:364
msgctxt "Stock label"
msgid "Find and _Replace"
msgstr "Serĉi kaj _anstataŭigi"
-#: gtk/a11y/gtkimageaccessible.c:74
+#: gtk/a11y/gtkimageaccessible.c:73 gtk/deprecated/gtkstock.c:365
msgctxt "Stock label"
msgid "_Floppy"
msgstr "_Disketo"
-#: gtk/a11y/gtkimageaccessible.c:75
+#: gtk/a11y/gtkimageaccessible.c:74 gtk/deprecated/gtkstock.c:366
msgctxt "Stock label"
msgid "_Fullscreen"
msgstr "_Tutekrana reĝimo"
-#: gtk/a11y/gtkimageaccessible.c:76
+#. This is a navigation label as in "go to the bottom of the page"
+#: gtk/a11y/gtkimageaccessible.c:75 gtk/deprecated/gtkstock.c:369
msgctxt "Stock label, navigation"
msgid "_Bottom"
msgstr "_Malsupren"
-#: gtk/a11y/gtkimageaccessible.c:77
+#. This is a navigation label as in "go to the first page"
+#: gtk/a11y/gtkimageaccessible.c:76 gtk/deprecated/gtkstock.c:371
msgctxt "Stock label, navigation"
msgid "_First"
msgstr "_Unuapaĝen"
-#: gtk/a11y/gtkimageaccessible.c:78
+#. This is a navigation label as in "go to the last page"
+#: gtk/a11y/gtkimageaccessible.c:77 gtk/deprecated/gtkstock.c:373
msgctxt "Stock label, navigation"
msgid "_Last"
msgstr "_Lastapaĝen"
-#: gtk/a11y/gtkimageaccessible.c:79
+#. This is a navigation label as in "go to the top of the page"
+#: gtk/a11y/gtkimageaccessible.c:78 gtk/deprecated/gtkstock.c:375
msgctxt "Stock label, navigation"
msgid "_Top"
msgstr "_Supren"
-#: gtk/a11y/gtkimageaccessible.c:80
+#. This is a navigation label as in "go back"
+#: gtk/a11y/gtkimageaccessible.c:79 gtk/deprecated/gtkstock.c:377
msgctxt "Stock label, navigation"
msgid "_Back"
msgstr "_Reen"
-#: gtk/a11y/gtkimageaccessible.c:81
+#. This is a navigation label as in "go down"
+#: gtk/a11y/gtkimageaccessible.c:80 gtk/deprecated/gtkstock.c:379
msgctxt "Stock label, navigation"
msgid "_Down"
msgstr "_Malsupren"
-#: gtk/a11y/gtkimageaccessible.c:82
+#. This is a navigation label as in "go forward"
+#: gtk/a11y/gtkimageaccessible.c:81 gtk/deprecated/gtkstock.c:381
msgctxt "Stock label, navigation"
msgid "_Forward"
msgstr "_Antaŭen"
-#: gtk/a11y/gtkimageaccessible.c:83
+#. This is a navigation label as in "go up"
+#: gtk/a11y/gtkimageaccessible.c:82 gtk/deprecated/gtkstock.c:383
msgctxt "Stock label, navigation"
msgid "_Up"
msgstr "S_upren"
-#: gtk/a11y/gtkimageaccessible.c:84
+#: gtk/a11y/gtkimageaccessible.c:83 gtk/deprecated/gtkstock.c:384
msgctxt "Stock label"
msgid "_Hard Disk"
msgstr "_Fiksita disko"
-#: gtk/a11y/gtkimageaccessible.c:85
+#: gtk/a11y/gtkimageaccessible.c:84 gtk/deprecated/gtkstock.c:385
msgctxt "Stock label"
msgid "_Help"
msgstr "_Helpo"
-#: gtk/a11y/gtkimageaccessible.c:86
+#: gtk/a11y/gtkimageaccessible.c:85 gtk/deprecated/gtkstock.c:386
msgctxt "Stock label"
msgid "_Home"
msgstr "_Hejmo"
-#: gtk/a11y/gtkimageaccessible.c:87
+#: gtk/a11y/gtkimageaccessible.c:86 gtk/deprecated/gtkstock.c:387
msgctxt "Stock label"
msgid "Increase Indent"
msgstr "Pligrandigi krommarĝenon"
-#: gtk/a11y/gtkimageaccessible.c:88
+#: gtk/a11y/gtkimageaccessible.c:87 gtk/deprecated/gtkstock.c:391
msgctxt "Stock label"
msgid "_Italic"
msgstr "Kurs_ive"
-#: gtk/a11y/gtkimageaccessible.c:89
+#: gtk/a11y/gtkimageaccessible.c:88 gtk/deprecated/gtkstock.c:392
msgctxt "Stock label"
msgid "_Jump to"
msgstr "_Salti al"
-#: gtk/a11y/gtkimageaccessible.c:90
+#. This is about text justification, "centered text"
+#: gtk/a11y/gtkimageaccessible.c:89 gtk/deprecated/gtkstock.c:394
msgctxt "Stock label"
msgid "_Center"
msgstr "_Centre"
-#: gtk/a11y/gtkimageaccessible.c:91
+#. This is about text justification
+#: gtk/a11y/gtkimageaccessible.c:90 gtk/deprecated/gtkstock.c:396
msgctxt "Stock label"
msgid "_Fill"
msgstr "_Plenigi"
-#: gtk/a11y/gtkimageaccessible.c:92
+#. This is about text justification, "left-justified text"
+#: gtk/a11y/gtkimageaccessible.c:91 gtk/deprecated/gtkstock.c:398
msgctxt "Stock label"
msgid "_Left"
msgstr "Ma_ldekstre"
-#: gtk/a11y/gtkimageaccessible.c:93
+#. This is about text justification, "right-justified text"
+#: gtk/a11y/gtkimageaccessible.c:92 gtk/deprecated/gtkstock.c:400
msgctxt "Stock label"
msgid "_Right"
msgstr "Dekst_re"
-#: gtk/a11y/gtkimageaccessible.c:94
+#: gtk/a11y/gtkimageaccessible.c:93 gtk/deprecated/gtkstock.c:367
msgctxt "Stock label"
msgid "_Leave Fullscreen"
msgstr "_Lasi tutekranan reĝimon"
-#: gtk/a11y/gtkimageaccessible.c:95
+#. Media label, as in "fast forward"
+#: gtk/a11y/gtkimageaccessible.c:94 gtk/deprecated/gtkstock.c:403
msgctxt "Stock label, media"
msgid "_Forward"
msgstr "_Antaŭen"
-#: gtk/a11y/gtkimageaccessible.c:96
+#. Media label, as in "next song"
+#: gtk/a11y/gtkimageaccessible.c:95 gtk/deprecated/gtkstock.c:405
msgctxt "Stock label, media"
msgid "_Next"
msgstr "_Sekva"
-#: gtk/a11y/gtkimageaccessible.c:97
+#. Media label, as in "pause music"
+#: gtk/a11y/gtkimageaccessible.c:96 gtk/deprecated/gtkstock.c:407
msgctxt "Stock label, media"
msgid "P_ause"
msgstr "P_aŭzo"
-#: gtk/a11y/gtkimageaccessible.c:98
+#. Media label, as in "play music"
+#: gtk/a11y/gtkimageaccessible.c:97 gtk/deprecated/gtkstock.c:409
msgctxt "Stock label, media"
msgid "_Play"
msgstr "_Ludi"
-#: gtk/a11y/gtkimageaccessible.c:99
+#. Media label, as in "previous song"
+#: gtk/a11y/gtkimageaccessible.c:98 gtk/deprecated/gtkstock.c:411
msgctxt "Stock label, media"
msgid "Pre_vious"
msgstr "_Antaŭa"
-#: gtk/a11y/gtkimageaccessible.c:100
+#. Media label
+#: gtk/a11y/gtkimageaccessible.c:99 gtk/deprecated/gtkstock.c:413
msgctxt "Stock label, media"
msgid "_Record"
msgstr "_Registri"
-#: gtk/a11y/gtkimageaccessible.c:101
+#. Media label
+#: gtk/a11y/gtkimageaccessible.c:100 gtk/deprecated/gtkstock.c:415
msgctxt "Stock label, media"
msgid "R_ewind"
msgstr "R_evolvi"
-#: gtk/a11y/gtkimageaccessible.c:102
+#. Media label
+#: gtk/a11y/gtkimageaccessible.c:101 gtk/deprecated/gtkstock.c:417
msgctxt "Stock label, media"
msgid "_Stop"
msgstr "_Haltigi"
-#: gtk/a11y/gtkimageaccessible.c:103
+#: gtk/a11y/gtkimageaccessible.c:102 gtk/deprecated/gtkstock.c:418
msgctxt "Stock label"
msgid "_Network"
msgstr "_Reto"
-#: gtk/a11y/gtkimageaccessible.c:104
+#: gtk/a11y/gtkimageaccessible.c:103 gtk/deprecated/gtkstock.c:419
msgctxt "Stock label"
msgid "_New"
msgstr "_Nova"
-#: gtk/a11y/gtkimageaccessible.c:105
+#: gtk/a11y/gtkimageaccessible.c:104 gtk/deprecated/gtkstock.c:422
msgctxt "Stock label"
msgid "_Open"
msgstr "_Malfermi"
-#: gtk/a11y/gtkimageaccessible.c:106
+#: gtk/a11y/gtkimageaccessible.c:105 gtk/deprecated/gtkstock.c:432
msgctxt "Stock label"
msgid "_Paste"
msgstr "_Alglui"
-#: gtk/a11y/gtkimageaccessible.c:107
+#: gtk/a11y/gtkimageaccessible.c:106 gtk/deprecated/gtkstock.c:434
msgctxt "Stock label"
msgid "_Print"
msgstr "_Presi"
-#: gtk/a11y/gtkimageaccessible.c:108
+#: gtk/a11y/gtkimageaccessible.c:107 gtk/deprecated/gtkstock.c:435
msgctxt "Stock label"
msgid "Print Pre_view"
msgstr "Presi antaŭ_vidon"
-#: gtk/a11y/gtkimageaccessible.c:109
+#: gtk/a11y/gtkimageaccessible.c:108 gtk/deprecated/gtkstock.c:436
msgctxt "Stock label"
msgid "_Properties"
msgstr "_Ecoj"
-#: gtk/a11y/gtkimageaccessible.c:110
+#: gtk/a11y/gtkimageaccessible.c:109 gtk/deprecated/gtkstock.c:437
msgctxt "Stock label"
msgid "_Quit"
msgstr "Ĉ_esi"
-#: gtk/a11y/gtkimageaccessible.c:111
+#: gtk/a11y/gtkimageaccessible.c:110 gtk/deprecated/gtkstock.c:438
msgctxt "Stock label"
msgid "_Redo"
msgstr "_Refari"
-#: gtk/a11y/gtkimageaccessible.c:112
+#: gtk/a11y/gtkimageaccessible.c:111 gtk/deprecated/gtkstock.c:439
msgctxt "Stock label"
msgid "_Refresh"
msgstr "_Aktualigi"
-#: gtk/a11y/gtkimageaccessible.c:113
+#: gtk/a11y/gtkimageaccessible.c:112 gtk/deprecated/gtkstock.c:440
msgctxt "Stock label"
msgid "_Remove"
msgstr "Fo_rigi"
-#: gtk/a11y/gtkimageaccessible.c:114
+#: gtk/a11y/gtkimageaccessible.c:113 gtk/deprecated/gtkstock.c:441
msgctxt "Stock label"
msgid "_Revert"
msgstr "_Malfari"
-#: gtk/a11y/gtkimageaccessible.c:115
+#: gtk/a11y/gtkimageaccessible.c:114 gtk/deprecated/gtkstock.c:442
msgctxt "Stock label"
msgid "_Save"
msgstr "Kon_servi"
-#: gtk/a11y/gtkimageaccessible.c:116
+#: gtk/a11y/gtkimageaccessible.c:115 gtk/deprecated/gtkstock.c:443
msgctxt "Stock label"
msgid "Save _As"
msgstr "Konservi _kiel"
-#: gtk/a11y/gtkimageaccessible.c:117
+#: gtk/a11y/gtkimageaccessible.c:116 gtk/deprecated/gtkstock.c:444
msgctxt "Stock label"
msgid "Select _All"
msgstr "Elekti ĉi_on"
-#: gtk/a11y/gtkimageaccessible.c:118
+#. Sorting direction
+#: gtk/a11y/gtkimageaccessible.c:117 gtk/deprecated/gtkstock.c:448
msgctxt "Stock label"
msgid "_Ascending"
-msgstr "_Kreskante"
+msgstr "_Kreskanta"
-#: gtk/a11y/gtkimageaccessible.c:119
+#. Sorting direction
+#: gtk/a11y/gtkimageaccessible.c:118 gtk/deprecated/gtkstock.c:450
msgctxt "Stock label"
msgid "_Descending"
-msgstr "_Malkreskante"
+msgstr "_Malkreskanta"
-#: gtk/a11y/gtkimageaccessible.c:120
+#: gtk/a11y/gtkimageaccessible.c:119 gtk/deprecated/gtkstock.c:451
msgctxt "Stock label"
msgid "_Spell Check"
msgstr "_Literumada kontrolo"
-#: gtk/a11y/gtkimageaccessible.c:121
+#: gtk/a11y/gtkimageaccessible.c:120 gtk/deprecated/gtkstock.c:452
msgctxt "Stock label"
msgid "_Stop"
msgstr "_Halti"
-#: gtk/a11y/gtkimageaccessible.c:122
+#. Font variant
+#: gtk/a11y/gtkimageaccessible.c:121 gtk/deprecated/gtkstock.c:454
msgctxt "Stock label"
msgid "_Strikethrough"
-msgstr "_Trastrekite"
+msgstr "_Trastrekita"
-#: gtk/a11y/gtkimageaccessible.c:123
+#. Font variant
+#: gtk/a11y/gtkimageaccessible.c:122 gtk/deprecated/gtkstock.c:457
msgctxt "Stock label"
msgid "_Underline"
-msgstr "_Substrekite"
+msgstr "_Substrekita"
-#: gtk/a11y/gtkimageaccessible.c:124
+#: gtk/a11y/gtkimageaccessible.c:123 gtk/deprecated/gtkstock.c:458
msgctxt "Stock label"
msgid "_Undo"
msgstr "_Malfari"
-#: gtk/a11y/gtkimageaccessible.c:125
+#: gtk/a11y/gtkimageaccessible.c:124 gtk/deprecated/gtkstock.c:388
msgctxt "Stock label"
msgid "Decrease Indent"
msgstr "Malpligrandigi krommarĝenon"
-#: gtk/a11y/gtkimageaccessible.c:126
+#. Zoom
+#: gtk/a11y/gtkimageaccessible.c:125 gtk/deprecated/gtkstock.c:461
msgctxt "Stock label"
msgid "_Normal Size"
msgstr "_Normala grando"
-#: gtk/a11y/gtkimageaccessible.c:127
+#. Zoom
+#: gtk/a11y/gtkimageaccessible.c:126 gtk/deprecated/gtkstock.c:463
msgctxt "Stock label"
msgid "Best _Fit"
msgstr "_Optimuma adapto"
-#: gtk/a11y/gtkimageaccessible.c:128
+#: gtk/a11y/gtkimageaccessible.c:127 gtk/deprecated/gtkstock.c:464
msgctxt "Stock label"
msgid "Zoom _In"
-msgstr "E_nzomi"
+msgstr "_Zomi"
-#: gtk/a11y/gtkimageaccessible.c:129
+#: gtk/a11y/gtkimageaccessible.c:128 gtk/deprecated/gtkstock.c:465
msgctxt "Stock label"
msgid "Zoom _Out"
-msgstr "E_lzomi"
+msgstr "Ma_lzomi"
-#: gtk/a11y/gtkmenubuttonaccessible.c:102 gtk/inspector/window.ui:364
+#: gtk/a11y/gtkmenubuttonaccessible.c:102 gtk/inspector/window.ui:459
msgid "Menu"
msgstr "Menuo"
@@ -1217,7 +1075,7 @@ msgstr "Ŝprucigas la ŝovbutonon"
#: gtk/a11y/gtkscalebuttonaccessible.c:142
msgctxt "Action description"
msgid "Dismisses the slider"
-msgstr "Relasas la ŝovbutonon"
+msgstr "Rezignas la ŝovbutonon"
#: gtk/a11y/gtkscalebuttonaccessible.c:170
msgctxt "Action name"
@@ -1227,7 +1085,7 @@ msgstr "Ŝprucfenestro"
#: gtk/a11y/gtkscalebuttonaccessible.c:172
msgctxt "Action name"
msgid "Dismiss"
-msgstr "Relasi"
+msgstr "Rezigni"
#: gtk/a11y/gtkspinneraccessible.c:39
msgctxt "throbbing progress animation widget"
@@ -1243,113 +1101,466 @@ msgctxt "Action description"
msgid "Toggles the switch"
msgstr "Baskuligas la ŝaltilon"
-#: gtk/gtkaboutdialog.c:119 gtk/ui/gtkaboutdialog.ui:182
+#: gtk/deprecated/gtkcolorsel.c:425
+msgid ""
+"Select the color you want from the outer ring. Select the darkness or "
+"lightness of that color using the inner triangle."
+msgstr ""
+"Elektu la koloron kiun vi volas el la ekstera ringo. Elektu la malhelecon aŭ "
+"helecon de tiu koloro uzante la internan triangulon."
+
+#: gtk/deprecated/gtkcolorsel.c:451
+msgid ""
+"Click the eyedropper, then click a color anywhere on your screen to select "
+"that color."
+msgstr ""
+"Alklaku la gutigilon, poste alklaku koloron ie ajn en la ekrano por elekti "
+"tiun koloron."
+
+#: gtk/deprecated/gtkcolorsel.c:461
+msgid "_Hue:"
+msgstr "_Nuanco:"
+
+#: gtk/deprecated/gtkcolorsel.c:462
+msgid "Position on the color wheel."
+msgstr "Pozicio en la kolora rado."
+
+#: gtk/deprecated/gtkcolorsel.c:464
+msgid "S_aturation:"
+msgstr "Satur_eco:"
+
+#: gtk/deprecated/gtkcolorsel.c:465
+msgid "Intensity of the color."
+msgstr "Intenso de la koloro."
+
+#: gtk/deprecated/gtkcolorsel.c:466
+msgid "_Value:"
+msgstr "_Valoro:"
+
+#: gtk/deprecated/gtkcolorsel.c:467
+msgid "Brightness of the color."
+msgstr "Brileco de la koloro."
+
+#: gtk/deprecated/gtkcolorsel.c:468
+msgid "_Red:"
+msgstr "_Ruĝo:"
+
+#: gtk/deprecated/gtkcolorsel.c:469
+msgid "Amount of red light in the color."
+msgstr "Kvanto de ruĝa lumo en la koloro."
+
+#: gtk/deprecated/gtkcolorsel.c:470
+msgid "_Green:"
+msgstr "_Verdo:"
+
+#: gtk/deprecated/gtkcolorsel.c:471
+msgid "Amount of green light in the color."
+msgstr "Kvanto de verda lumo en la koloro."
+
+#: gtk/deprecated/gtkcolorsel.c:472
+msgid "_Blue:"
+msgstr "_Bluo:"
+
+#: gtk/deprecated/gtkcolorsel.c:473
+msgid "Amount of blue light in the color."
+msgstr "Kvanto de blua lumo en la koloro."
+
+#: gtk/deprecated/gtkcolorsel.c:476
+msgid "Op_acity:"
+msgstr "Netr_avidebleco:"
+
+#: gtk/deprecated/gtkcolorsel.c:484 gtk/deprecated/gtkcolorsel.c:494
+msgid "Transparency of the color."
+msgstr "Travidebleco de la koloro."
+
+#: gtk/deprecated/gtkcolorsel.c:501
+msgid "Color _name:"
+msgstr "_Nomo de la koloro:"
+
+#: gtk/deprecated/gtkcolorsel.c:516
+msgid ""
+"You can enter an HTML-style hexadecimal color value, or simply a color name "
+"such as “orange” in this entry."
+msgstr ""
+"Vi povas enigi HTML-stilan deksesuman kolorvaloron, aŭ simple kolornomon "
+"kiel “oranĝkolora” en tiun ĉi eron."
+
+#: gtk/deprecated/gtkcolorsel.c:548
+msgid "_Palette:"
+msgstr "_Paletro:"
+
+#: gtk/deprecated/gtkcolorsel.c:578
+msgid "Color Wheel"
+msgstr "Rado por koloroj"
+
+#: gtk/deprecated/gtkcolorsel.c:1072
+msgid ""
+"The previously-selected color, for comparison to the color you’re selecting "
+"now. You can drag this color to a palette entry, or select this color as "
+"current by dragging it to the other color swatch alongside."
+msgstr ""
+"La antaŭe elektita koloro, por komparo kun la nuna. Vi povas ŝovi ĝin al "
+"paletrero, aŭ elekti tiun ĉi koloron kiel nunan, ŝovinte ĝin al la aliaj "
+"kolora modelo apudflanke."
+
+#: gtk/deprecated/gtkcolorsel.c:1078
+msgid ""
+"The color you’ve chosen. You can drag this color to a palette entry to save "
+"it for use in the future."
+msgstr ""
+"La elektita koloro. Vi povas ŝovi ĝin al paletrero kaj konservi ĝin por "
+"estonta uzo."
+
+#: gtk/deprecated/gtkcolorsel.c:1084
+msgid ""
+"The previously-selected color, for comparison to the color you’re selecting "
+"now."
+msgstr "La antaŭe elektita koloro, por komparo kun la nuna."
+
+#: gtk/deprecated/gtkcolorsel.c:1088
+msgid "The color you’ve chosen."
+msgstr "La koloro, kiun vi elektis."
+
+#: gtk/deprecated/gtkcolorsel.c:1458
+msgid "_Save color here"
+msgstr "Kon_servi koloron ĉi tien"
+
+#: gtk/deprecated/gtkcolorsel.c:1664
+msgid ""
+"Click this palette entry to make it the current color. To change this entry, "
+"drag a color swatch here or right-click it and select “Save color here.”"
+msgstr ""
+"Alklaku ĉi tiun paletreron por fari ĝin la aktuala koloro. Por ŝanĝi ĉi tiun "
+"elementon, ŝovu koloran ekzemplon ĉi tien aŭ dekstre-klaku ĝin kaj elektu "
+"“Konservi koloron ĉi tie.”"
+
+#: gtk/deprecated/gtkcolorseldialog.c:191 gtk/deprecated/gtkfontsel.c:1689
+#: gtk/gtkfilechoosernative.c:540 gtk/gtkfilechoosernative.c:632
+#: gtk/gtkfilechooserwidget.c:1475 gtk/gtkfilechooserwidget.c:6330
+#: gtk/gtkmessagedialog.c:952 gtk/gtkmessagedialog.c:965
+#: gtk/gtkmountoperation.c:545 gtk/gtkpagesetupunixdialog.c:196
+#: gtk/gtkprintbackend.c:781 gtk/gtkprinteroptionwidget.c:545
+#: gtk/gtkprintunixdialog.c:673 gtk/gtkprintunixdialog.c:746
+#: gtk/gtkwindow.c:12722 gtk/inspector/css-editor.c:201
+#: gtk/ui/gtkappchooserdialog.ui:61 gtk/ui/gtkassistant.ui:125
+#: gtk/ui/gtkcolorchooserdialog.ui:34 gtk/ui/gtkfontchooserdialog.ui:31
+msgid "_Cancel"
+msgstr "_Nuligi"
+
+#: gtk/deprecated/gtkcolorseldialog.c:195 gtk/gtkprinteroptionwidget.c:546
+#: gtk/ui/gtkappchooserdialog.ui:67 gtk/ui/gtkcolorchooserdialog.ui:40
+#: gtk/ui/gtkfontchooserdialog.ui:37
+msgid "_Select"
+msgstr "_Elekti"
+
+#: gtk/deprecated/gtkcolorseldialog.c:201
+msgid "_Help"
+msgstr "_Helpo"
+
+#: gtk/deprecated/gtkcolorseldialog.c:213
+msgid "Color Selection"
+msgstr "Kolorelekto"
+
+#. This is the default text shown in the preview entry, though the user
+#. can set it. Remember that some fonts only have capital letters.
+#: gtk/deprecated/gtkfontsel.c:121
+msgid "abcdefghijk ABCDEFGHIJK"
+msgstr "abcĉdefgĝhĥ ABCĈDEFGĜHĤ"
+
+#: gtk/deprecated/gtkfontsel.c:386
+msgid "_Family:"
+msgstr "_Familio:"
+
+#: gtk/deprecated/gtkfontsel.c:393
+msgid "_Style:"
+msgstr "_Stilo:"
+
+#: gtk/deprecated/gtkfontsel.c:400
+msgid "Si_ze:"
+msgstr "_Grando:"
+
+#. create the text entry widget
+#: gtk/deprecated/gtkfontsel.c:577
+msgid "_Preview:"
+msgstr "As_pekto:"
+
+#: gtk/deprecated/gtkfontsel.c:1693 gtk/gtkpagesetupunixdialog.c:197
+#: gtk/ui/gtkassistant.ui:50
+msgid "_Apply"
+msgstr "_Apliki"
+
+#: gtk/deprecated/gtkfontsel.c:1698 gtk/gtkmessagedialog.c:944
+#: gtk/gtkmessagedialog.c:966 gtk/gtkprintbackend.c:782 gtk/gtkwindow.c:12723
+msgid "_OK"
+msgstr "_Bone"
+
+#: gtk/deprecated/gtkfontsel.c:1709
+msgid "Font Selection"
+msgstr "Tipara elekto"
+
+#. Translators: the format here is used to build the string that will be rendered
+#. * in the number emblem.
+#.
+#: gtk/deprecated/gtknumerableicon.c:473
+#, c-format
+msgctxt "Number format"
+msgid "%d"
+msgstr "%d"
+
+#: gtk/deprecated/gtkstock.c:347
+msgctxt "Stock label"
+msgid "_Apply"
+msgstr "_Apliki"
+
+#: gtk/deprecated/gtkstock.c:349
+msgctxt "Stock label"
+msgid "_Cancel"
+msgstr "_Nuligi"
+
+#: gtk/deprecated/gtkstock.c:353
+msgctxt "Stock label"
+msgid "C_onnect"
+msgstr "_Konekti"
+
+#: gtk/deprecated/gtkstock.c:354
+msgctxt "Stock label"
+msgid "_Convert"
+msgstr "_Konverti"
+
+#: gtk/deprecated/gtkstock.c:358
+msgctxt "Stock label"
+msgid "_Discard"
+msgstr "_Ne konservi"
+
+#: gtk/deprecated/gtkstock.c:359
+msgctxt "Stock label"
+msgid "_Disconnect"
+msgstr "_Malkonekti"
+
+#: gtk/deprecated/gtkstock.c:361
+msgctxt "Stock label"
+msgid "_Edit"
+msgstr "_Redakti"
+
+#: gtk/deprecated/gtkstock.c:389
+msgctxt "Stock label"
+msgid "_Index"
+msgstr "_Indekso"
+
+#: gtk/deprecated/gtkstock.c:390
+msgctxt "Stock label"
+msgid "_Information"
+msgstr "_Informoj"
+
+#: gtk/deprecated/gtkstock.c:420
+msgctxt "Stock label"
+msgid "_No"
+msgstr "_Ne"
+
+#: gtk/deprecated/gtkstock.c:421
+msgctxt "Stock label"
+msgid "_OK"
+msgstr "_Bone"
+
+#. Page orientation
+#: gtk/deprecated/gtkstock.c:424
+msgctxt "Stock label"
+msgid "Landscape"
+msgstr "Horizontala orientiĝo"
+
+#. Page orientation
+#: gtk/deprecated/gtkstock.c:426
+msgctxt "Stock label"
+msgid "Portrait"
+msgstr "Vertikala orientiĝo"
+
+#. Page orientation
+#: gtk/deprecated/gtkstock.c:428
+msgctxt "Stock label"
+msgid "Reverse landscape"
+msgstr "Renversita horizontala orientiĝo"
+
+#. Page orientation
+#: gtk/deprecated/gtkstock.c:430
+msgctxt "Stock label"
+msgid "Reverse portrait"
+msgstr "Renversita vertikala orientiĝo"
+
+#: gtk/deprecated/gtkstock.c:431
+msgctxt "Stock label"
+msgid "Page Set_up"
+msgstr "A_gordoj de paĝo"
+
+#: gtk/deprecated/gtkstock.c:433
+msgctxt "Stock label"
+msgid "_Preferences"
+msgstr "A_gordoj"
+
+#: gtk/deprecated/gtkstock.c:445
+msgctxt "Stock label"
+msgid "_Color"
+msgstr "_Koloro"
+
+#: gtk/deprecated/gtkstock.c:446
+msgctxt "Stock label"
+msgid "_Font"
+msgstr "_Tiparo"
+
+#: gtk/deprecated/gtkstock.c:455
+msgctxt "Stock label"
+msgid "_Undelete"
+msgstr "_Malforigi"
+
+#: gtk/deprecated/gtkstock.c:459
+msgctxt "Stock label"
+msgid "_Yes"
+msgstr "_Jes"
+
+#: gtk/deprecated/gtkuimanager.c:1782
+#, c-format
+msgid "Unexpected start tag '%s' on line %d char %d"
+msgstr "Neatendita komenca marko '%s' sur linio %d signo %d"
+
+#: gtk/deprecated/gtkuimanager.c:1872
+#, c-format
+msgid "Unexpected character data on line %d char %d"
+msgstr "Neatenditaj signaj datumoj sur linio %d signo %d"
+
+#: gtk/deprecated/gtkuimanager.c:2709
+msgid "Empty"
+msgstr "Malplene"
+
+#: gtk/encodesymbolic.c:38
+msgid "Output to this directory instead of cwd"
+msgstr "Eligi al tiu ĉi dosierujo anstataŭ la nuna (cwd)"
+
+#: gtk/encodesymbolic.c:266
+#, c-format
+msgid "Invalid size %s\n"
+msgstr "Nevalida grando: %s\n"
+
+#: gtk/encodesymbolic.c:279 gtk/gtk-builder-tool.c:671
+#, c-format
+msgid "Can't load file: %s\n"
+msgstr "Ne povas ŝargi dosieron: %s\n"
+
+#: gtk/encodesymbolic.c:307 gtk/encodesymbolic.c:313
+#, c-format
+msgid "Can't save file %s: %s\n"
+msgstr "Ne povas konservi dosieron %s : %s\n"
+
+#: gtk/encodesymbolic.c:319
+#, c-format
+msgid "Can't close stream"
+msgstr "Ne povas fermi fluon"
+
+#: gtk/gtkaboutdialog.c:114 gtk/ui/gtkaboutdialog.ui:206
msgid "License"
msgstr "Permesilo"
-#: gtk/gtkaboutdialog.c:120
+#: gtk/gtkaboutdialog.c:115
msgid "Custom License"
msgstr "Propra permesilo"
-#: gtk/gtkaboutdialog.c:121
+#: gtk/gtkaboutdialog.c:116
msgid "GNU General Public License, version 2 or later"
-msgstr "GNU General Public License, versio 2 aŭ pli alta"
+msgstr "GNU Ĝenerala Publika Permesilo, versio 2 aŭ posta"
-#: gtk/gtkaboutdialog.c:122
+#: gtk/gtkaboutdialog.c:117
msgid "GNU General Public License, version 3 or later"
-msgstr "GNU General Public License, versio 3 aŭ pli alta"
+msgstr "GNU Ĝenerala Publika Permesilo, versio 3 aŭ posta"
-#: gtk/gtkaboutdialog.c:123
+#: gtk/gtkaboutdialog.c:118
msgid "GNU Lesser General Public License, version 2.1 or later"
-msgstr "GNU Lesser General Public License, versio 2.1 aŭ pli alta"
+msgstr "GNU Malplia Ĝenerala Publika Permesilo, versio 2.1 aŭ pli alta"
-#: gtk/gtkaboutdialog.c:124
+#: gtk/gtkaboutdialog.c:119
msgid "GNU Lesser General Public License, version 3 or later"
-msgstr "GNU Lesser General Public License, versio 3 aŭ pli alta"
+msgstr "GNU Malplia Ĝenerala Publika Permesilo, versio 3 aŭ pli alta"
-#: gtk/gtkaboutdialog.c:125
+#: gtk/gtkaboutdialog.c:120
msgid "BSD 2-Clause License"
-msgstr "BSD 2-Clause License"
+msgstr "BSD 2-Klaŭza Permesilo"
-#: gtk/gtkaboutdialog.c:126
+#: gtk/gtkaboutdialog.c:121
msgid "The MIT License (MIT)"
-msgstr "The MIT License (MIT)"
+msgstr "La MIT Permesilo (MIT)"
-#: gtk/gtkaboutdialog.c:127
+#: gtk/gtkaboutdialog.c:122
msgid "Artistic License 2.0"
-msgstr "Artistic License 2.0"
+msgstr "Arta Permesilo 2.0"
-#: gtk/gtkaboutdialog.c:128
+#: gtk/gtkaboutdialog.c:123
msgid "GNU General Public License, version 2 only"
-msgstr "GNU General Public License, nur versio 2"
+msgstr "GNU Ĝenerala Publika Permesilo, nur versio 2"
-#: gtk/gtkaboutdialog.c:129
+#: gtk/gtkaboutdialog.c:124
msgid "GNU General Public License, version 3 only"
-msgstr "GNU General Public License, nur versio 3"
+msgstr "GNU Ĝenerala Publika Permesilo, nur versio 3"
-#: gtk/gtkaboutdialog.c:130
+#: gtk/gtkaboutdialog.c:125
msgid "GNU Lesser General Public License, version 2.1 only"
-msgstr "GNU Lesser General Public License, nur versio 2.1"
+msgstr "GNU Malplia Ĝenerala Publika Permesilo, nur versio 2.1"
-#: gtk/gtkaboutdialog.c:131
+#: gtk/gtkaboutdialog.c:126
msgid "GNU Lesser General Public License, version 3 only"
-msgstr "GNU Lesser General Public License, nur versio 3"
+msgstr "GNU Malplia Ĝenerala Publika Permesilo, nur versio 3"
-#: gtk/gtkaboutdialog.c:132
+#: gtk/gtkaboutdialog.c:127
msgid "GNU Affero General Public License, version 3 or later"
-msgstr "GNU Affero General Public License, nur versio 3"
+msgstr "GNU Affero Ĝenerala Publika Permesilo, nur versio 3"
-#: gtk/gtkaboutdialog.c:133
+#: gtk/gtkaboutdialog.c:128
msgid "GNU Affero General Public License, version 3 only"
-msgstr "GNU General Public License, nur versio 3"
+msgstr "GNU Affero Ĝenerala Publika Permesilo, nur versio 3"
-#: gtk/gtkaboutdialog.c:714
+#: gtk/gtkaboutdialog.c:697
msgid "C_redits"
msgstr "_Dankoj"
-#: gtk/gtkaboutdialog.c:725
+#: gtk/gtkaboutdialog.c:705
msgid "_License"
msgstr "Permesi_lo"
-#: gtk/gtkaboutdialog.c:736 gtk/gtkcustompaperunixdialog.c:329
-#: gtk/gtkmessagedialog.c:821 gtk/ui/gtkassistant.ui:124
+#: gtk/gtkaboutdialog.c:714 gtk/gtkcustompaperunixdialog.c:329
+#: gtk/gtkmessagedialog.c:948 gtk/ui/gtkassistant.ui:144
msgid "_Close"
msgstr "_Fermi"
-#: gtk/gtkaboutdialog.c:993
+#: gtk/gtkaboutdialog.c:998
msgid "Could not show link"
msgstr "Ligilo ne montreblas"
-#: gtk/gtkaboutdialog.c:1030
+#: gtk/gtkaboutdialog.c:1035
msgid "Website"
msgstr "Retejo"
#. used for the application menu on MacOS. %s is replaced with the application name.
-#: gtk/gtkaboutdialog.c:1078 gtk/ui/gtkapplication-quartz.ui:7
+#: gtk/gtkaboutdialog.c:1085 gtk/ui/gtkapplication-quartz.ui:7
#, c-format
msgid "About %s"
msgstr "Pri %s"
-#: gtk/gtkaboutdialog.c:2286
+#: gtk/gtkaboutdialog.c:2312
msgid "Created by"
msgstr "Kreita de"
-#: gtk/gtkaboutdialog.c:2289
+#: gtk/gtkaboutdialog.c:2315
msgid "Documented by"
msgstr "Dokumentita de"
-#: gtk/gtkaboutdialog.c:2299
+#: gtk/gtkaboutdialog.c:2325
msgid "Translated by"
msgstr "Tradukita de"
-#: gtk/gtkaboutdialog.c:2304
-msgid "Design by"
-msgstr "Dezajno de"
+#: gtk/gtkaboutdialog.c:2330
+msgid "Artwork by"
+msgstr "Artaĵoj de"
#. Translators: this is the license preamble; the string at the end
#. * contains the name of the license as link text.
#.
-#: gtk/gtkaboutdialog.c:2473
+#: gtk/gtkaboutdialog.c:2490
#, c-format
msgid ""
"This program comes with absolutely no warranty.\n"
@@ -1363,7 +1574,7 @@ msgstr ""
#. * translated on keyboards used for your language, don't translate
#. * this.
#.
-#: gtk/gtkaccellabel.c:195 gtk/gtkshortcutlabel.c:102
+#: gtk/gtkaccellabel.c:181 gtk/gtkshortcutlabel.c:102
#: gtk/gtkshortcutlabel.c:138
msgctxt "keyboard label"
msgid "Shift"
@@ -1374,7 +1585,7 @@ msgstr "Majuskliga klavo"
#. * translated on keyboards used for your language, don't translate
#. * this.
#.
-#: gtk/gtkaccellabel.c:201 gtk/gtkshortcutlabel.c:105
+#: gtk/gtkaccellabel.c:187 gtk/gtkshortcutlabel.c:105
#: gtk/gtkshortcutlabel.c:140
msgctxt "keyboard label"
msgid "Ctrl"
@@ -1385,7 +1596,7 @@ msgstr "Stirklavo"
#. * translated on keyboards used for your language, don't translate
#. * this.
#.
-#: gtk/gtkaccellabel.c:207 gtk/gtkshortcutlabel.c:108
+#: gtk/gtkaccellabel.c:193 gtk/gtkshortcutlabel.c:108
#: gtk/gtkshortcutlabel.c:142
msgctxt "keyboard label"
msgid "Alt"
@@ -1396,7 +1607,7 @@ msgstr "Alt-klavo"
#. * translated on keyboards used for your language, don't translate
#. * this.
#.
-#: gtk/gtkaccellabel.c:796 gtk/gtkshortcutlabel.c:114
+#: gtk/gtkaccellabel.c:845 gtk/gtkshortcutlabel.c:114
#: gtk/gtkshortcutlabel.c:152
msgctxt "keyboard label"
msgid "Super"
@@ -1407,7 +1618,7 @@ msgstr "Super-klavo"
#. * translated on keyboards used for your language, don't translate
#. * this.
#.
-#: gtk/gtkaccellabel.c:810 gtk/gtkshortcutlabel.c:117
+#: gtk/gtkaccellabel.c:858 gtk/gtkshortcutlabel.c:117
#: gtk/gtkshortcutlabel.c:154
msgctxt "keyboard label"
msgid "Hyper"
@@ -1418,18 +1629,18 @@ msgstr "Hiper-klavo"
#. * translated on keyboards used for your language, don't translate
#. * this.
#.
-#: gtk/gtkaccellabel.c:825 gtk/gtkshortcutlabel.c:111
+#: gtk/gtkaccellabel.c:872 gtk/gtkshortcutlabel.c:111
#: gtk/gtkshortcutlabel.c:156
msgctxt "keyboard label"
msgid "Meta"
msgstr "Meta-klavo"
-#: gtk/gtkaccellabel.c:842
+#: gtk/gtkaccellabel.c:889
msgctxt "keyboard label"
msgid "Space"
msgstr "Spaco-klavo"
-#: gtk/gtkaccellabel.c:845 gtk/gtkshortcutlabel.c:181
+#: gtk/gtkaccellabel.c:892 gtk/gtkshortcutlabel.c:181
msgctxt "keyboard label"
msgid "Backslash"
msgstr "Malsuprenstreko-klavo"
@@ -1447,7 +1658,7 @@ msgstr "Elekti aplikaĵon"
#: gtk/gtkappchooserdialog.c:206
#, c-format
msgid "Opening “%s”."
-msgstr "Malfermanta “%s”."
+msgstr "Malfermante “%s”."
#: gtk/gtkappchooserdialog.c:207
#, c-format
@@ -1458,7 +1669,7 @@ msgstr "Neniu aplikaĵo troviĝis por “%s”"
#: gtk/gtkappchooserdialog.c:213
#, c-format
msgid "Opening “%s” files."
-msgstr "Malfermanta dosierojn “%s”."
+msgstr "Malfermante “%s” dosierojn."
#: gtk/gtkappchooserdialog.c:215
#, c-format
@@ -1469,33 +1680,33 @@ msgstr "Neniu aplikaĵo troviĝis por “%s”-dosieroj"
msgid "Forget association"
msgstr "Forgesi asocion"
-#: gtk/gtkappchooserdialog.c:445
+#: gtk/gtkappchooserdialog.c:451
msgid "Failed to start GNOME Software"
msgstr "Malsukcesis ruli Programaron de GNOME"
-#: gtk/gtkappchooserwidget.c:590
+#: gtk/gtkappchooserwidget.c:593
msgid "Default Application"
msgstr "Norma aplikaĵo"
-#: gtk/gtkappchooserwidget.c:640
+#: gtk/gtkappchooserwidget.c:643
#, c-format
msgid "No applications found for “%s”."
msgstr "Neniu aplikaĵo estas trovita por “%s”."
-#: gtk/gtkappchooserwidget.c:723
+#: gtk/gtkappchooserwidget.c:726
msgid "Recommended Applications"
msgstr "Rekomenditaj aplikaĵoj"
-#: gtk/gtkappchooserwidget.c:738
+#: gtk/gtkappchooserwidget.c:741
msgid "Related Applications"
msgstr "Rilataj aplikaĵoj"
-#: gtk/gtkappchooserwidget.c:752
+#: gtk/gtkappchooserwidget.c:755
msgid "Other Applications"
msgstr "Aliaj aplikaĵoj"
-#: gtk/gtkapplicationwindow.c:340 gtk/gtkprintoperation-unix.c:479
-#: gtk/gtkprintoperation-win32.c:1479 gtk/inspector/prop-editor.c:1623
+#: gtk/gtkapplicationwindow.c:345 gtk/gtkprintoperation-unix.c:485
+#: gtk/gtkprintoperation-win32.c:1453 gtk/inspector/prop-editor.c:1686
msgid "Application"
msgstr "Aplikaĵo"
@@ -1504,7 +1715,7 @@ msgstr "Aplikaĵo"
msgid "%s does not exist in the bookmarks list"
msgstr "%s ne ekzistas en la legosignaro"
-#: gtk/gtkbookmarksmanager.c:370
+#: gtk/gtkbookmarksmanager.c:362
#, c-format
msgid "%s already exists in the bookmarks list"
msgstr "%s jam ekzistas en la legosignaro"
@@ -1524,6 +1735,70 @@ msgstr "Elemento <%s> ne estas permesita ĉe la supra nivelo"
msgid "Text may not appear inside <%s>"
msgstr "Teksto ne povas aperi ene de <%s>"
+#: gtk/gtk-builder-tool.c:124
+#, c-format
+msgid "Packing property %s::%s not found\n"
+msgstr "Paka eco %s::%s ne troviĝis\n"
+
+#: gtk/gtk-builder-tool.c:126
+#, c-format
+msgid "Cell property %s::%s not found\n"
+msgstr "Ĉela eco %s::%s ne troviĝis\n"
+
+#: gtk/gtk-builder-tool.c:128
+#, c-format
+msgid "Property %s::%s not found\n"
+msgstr "Eco %s::%s ne troviĝis\n"
+
+#: gtk/gtk-builder-tool.c:136
+#, c-format
+msgid "Couldn't parse value for %s::%s: %s\n"
+msgstr "Ne povis analizi valoron por %s::%s: %s\n"
+
+#: gtk/gtk-builder-tool.c:692
+#, c-format
+msgid "Can't parse file: %s\n"
+msgstr "Ne povas analizi dosieron: %s\n"
+
+#: gtk/gtk-builder-tool.c:1056
+#, c-format
+msgid ""
+"Usage:\n"
+" gtk-builder-tool [COMMAND] FILE\n"
+"\n"
+"Commands:\n"
+" validate Validate the file\n"
+" simplify [OPTIONS] Simplify the file\n"
+" enumerate List all named objects\n"
+" preview [OPTIONS] Preview the file\n"
+"\n"
+"Simplify Options:\n"
+" --replace Replace the file\n"
+"\n"
+"Preview Options:\n"
+" --id=ID Preview only the named object\n"
+" --css=FILE Use style from CSS file\n"
+"\n"
+"Perform various tasks on GtkBuilder .ui files.\n"
+msgstr ""
+"Uzo:\n"
+" gtk-builder-tool [KOMANDO] DOSIERO\n"
+"\n"
+"Komandoj:\n"
+" validate Validigi la dosieron\n"
+" simplify [ELEKTEBLOJ] Simpligi la dosieron\n"
+" enumerate Listigi ĉiujn nomitajn objektojn\n"
+" preview [ELEKTEBLOJ] Antaŭrigardigi la dosieron\n"
+"\n"
+"Elektebloj de simplify:\n"
+" --replace Anstataŭigi la dosieron\n"
+"\n"
+"Elektebloj de preview:\n"
+" --id=ID Antaŭrigardigi nur la nomitan objekton\n"
+" --css=FILE Uzi stilon de CSS-dosiero\n"
+"\n"
+"Diverse prifari .ui-dosierojn de GtkBuilder.\n"
+
#. Translate to calendar:YM if you want years to be displayed
#. * before months; otherwise translate to calendar:MY.
#. * Do *not* translate it to anything else, if it
@@ -1534,7 +1809,7 @@ msgstr "Teksto ne povas aperi ene de <%s>"
#. * text direction of RTL and specify "calendar:YM", then the year
#. * will appear to the right of the month.
#.
-#: gtk/gtkcalendar.c:793
+#: gtk/gtkcalendar.c:815
msgid "calendar:MY"
msgstr "calendar:YM"
@@ -1542,7 +1817,7 @@ msgstr "calendar:YM"
#. * first day of the week to calendar:week_start:1 if you want Monday
#. * to be the first day of the week, and so on.
#.
-#: gtk/gtkcalendar.c:831
+#: gtk/gtkcalendar.c:853
msgid "calendar:week_start:0"
msgstr "calendar:week_start:1"
@@ -1551,7 +1826,7 @@ msgstr "calendar:week_start:1"
#. *
#. * If you don't understand this, leave it as "2000"
#.
-#: gtk/gtkcalendar.c:1635
+#: gtk/gtkcalendar.c:1881
msgctxt "year measurement template"
msgid "2000"
msgstr "2000"
@@ -1566,7 +1841,7 @@ msgstr "2000"
#. * digits. That needs support from your system and locale definition
#. * too.
#.
-#: gtk/gtkcalendar.c:1666 gtk/gtkcalendar.c:2275
+#: gtk/gtkcalendar.c:1912 gtk/gtkcalendar.c:2608
#, c-format
msgctxt "calendar:day:digits"
msgid "%d"
@@ -1582,7 +1857,7 @@ msgstr "%d"
#. * digits. That needs support from your system and locale definition
#. * too.
#.
-#: gtk/gtkcalendar.c:1698 gtk/gtkcalendar.c:2167
+#: gtk/gtkcalendar.c:1944 gtk/gtkcalendar.c:2474
#, c-format
msgctxt "calendar:week:digits"
msgid "%d"
@@ -1598,7 +1873,7 @@ msgstr "%d"
#. *
#. * "%Y" is appropriate for most locales.
#.
-#: gtk/gtkcalendar.c:1940
+#: gtk/gtkcalendar.c:2241
msgctxt "calendar year format"
msgid "%Y"
msgstr "%Y"
@@ -1606,7 +1881,7 @@ msgstr "%Y"
#. This label is displayed in a treeview cell displaying
#. * a disabled accelerator key combination.
#.
-#: gtk/gtkcellrendereraccel.c:270
+#: gtk/gtkcellrendereraccel.c:273
msgctxt "Accelerator"
msgid "Disabled"
msgstr "Malŝaltita"
@@ -1615,7 +1890,7 @@ msgstr "Malŝaltita"
#. * an accelerator key combination that is not valid according
#. * to gtk_accelerator_valid().
#.
-#: gtk/gtkcellrendereraccel.c:280
+#: gtk/gtkcellrendereraccel.c:283
msgctxt "Accelerator"
msgid "Invalid"
msgstr "Nevalida"
@@ -1623,234 +1898,234 @@ msgstr "Nevalida"
#. This label is displayed in a treeview cell displaying an accelerator
#. * when the cell is clicked to change the acelerator.
#.
-#: gtk/gtkcellrendereraccel.c:412 gtk/gtkcellrendereraccel.c:489
+#: gtk/gtkcellrendereraccel.c:414 gtk/gtkcellrendereraccel.c:488
msgid "New accelerator…"
msgstr "Nova plirapidigilo…"
-#: gtk/gtkcellrendererprogress.c:365 gtk/gtkcellrendererprogress.c:458
+#: gtk/gtkcellrendererprogress.c:377 gtk/gtkcellrendererprogress.c:470
#, c-format
msgctxt "progress bar label"
msgid "%d %%"
msgstr "%d %%"
-#: gtk/gtkcolorbutton.c:218 gtk/gtkcolorbutton.c:385
+#: gtk/gtkcolorbutton.c:185 gtk/gtkcolorbutton.c:398
msgid "Pick a Color"
msgstr "Elekti koloron"
-#: gtk/gtkcolorchooserwidget.c:302
+#: gtk/gtkcolorchooserwidget.c:304
#, c-format
msgid "Red %d%%, Green %d%%, Blue %d%%, Alpha %d%%"
msgstr "Ruĝa %d%%, Verda %d%%, Blua %d%%, Alfa %d%%"
-#: gtk/gtkcolorchooserwidget.c:308
+#: gtk/gtkcolorchooserwidget.c:310
#, c-format
msgid "Red %d%%, Green %d%%, Blue %d%%"
msgstr "Ruĝa %d%%, Verda %d%%, Blua %d%%"
-#: gtk/gtkcolorchooserwidget.c:385
+#: gtk/gtkcolorchooserwidget.c:387
#, c-format
msgid "Color: %s"
msgstr "Koloro: %s"
-#: gtk/gtkcolorchooserwidget.c:442
+#: gtk/gtkcolorchooserwidget.c:446
msgctxt "Color name"
msgid "Light Scarlet Red"
msgstr "Hela skarlata ruĝa"
-#: gtk/gtkcolorchooserwidget.c:443
+#: gtk/gtkcolorchooserwidget.c:447
msgctxt "Color name"
msgid "Scarlet Red"
msgstr "Skarlata ruĝa"
-#: gtk/gtkcolorchooserwidget.c:444
+#: gtk/gtkcolorchooserwidget.c:448
msgctxt "Color name"
msgid "Dark Scarlet Red"
msgstr "Malhela skarlata ruĝa"
-#: gtk/gtkcolorchooserwidget.c:445
+#: gtk/gtkcolorchooserwidget.c:449
msgctxt "Color name"
msgid "Light Orange"
msgstr "Hela oranĝkolora"
-#: gtk/gtkcolorchooserwidget.c:446
+#: gtk/gtkcolorchooserwidget.c:450
msgctxt "Color name"
msgid "Orange"
msgstr "Oranĝkolora"
-#: gtk/gtkcolorchooserwidget.c:447
+#: gtk/gtkcolorchooserwidget.c:451
msgctxt "Color name"
msgid "Dark Orange"
msgstr "Malhela oranĝkolora"
-#: gtk/gtkcolorchooserwidget.c:448
+#: gtk/gtkcolorchooserwidget.c:452
msgctxt "Color name"
msgid "Light Butter"
msgstr "Hela buterkolora"
-#: gtk/gtkcolorchooserwidget.c:449
+#: gtk/gtkcolorchooserwidget.c:453
msgctxt "Color name"
msgid "Butter"
msgstr "Buterkolora"
-#: gtk/gtkcolorchooserwidget.c:450
+#: gtk/gtkcolorchooserwidget.c:454
msgctxt "Color name"
msgid "Dark Butter"
msgstr "Malhela buterkolora"
-#: gtk/gtkcolorchooserwidget.c:451
+#: gtk/gtkcolorchooserwidget.c:455
msgctxt "Color name"
msgid "Light Chameleon"
msgstr "Hela ĥameleona"
-#: gtk/gtkcolorchooserwidget.c:452
+#: gtk/gtkcolorchooserwidget.c:456
msgctxt "Color name"
msgid "Chameleon"
msgstr "Ĥameleona"
-#: gtk/gtkcolorchooserwidget.c:453
+#: gtk/gtkcolorchooserwidget.c:457
msgctxt "Color name"
msgid "Dark Chameleon"
msgstr "Malhela ĥameleona"
-#: gtk/gtkcolorchooserwidget.c:454
+#: gtk/gtkcolorchooserwidget.c:458
msgctxt "Color name"
msgid "Light Sky Blue"
msgstr "Hela lazura"
-#: gtk/gtkcolorchooserwidget.c:455
+#: gtk/gtkcolorchooserwidget.c:459
msgctxt "Color name"
msgid "Sky Blue"
msgstr "Lazura"
-#: gtk/gtkcolorchooserwidget.c:456
+#: gtk/gtkcolorchooserwidget.c:460
msgctxt "Color name"
msgid "Dark Sky Blue"
msgstr "Malhela lazura"
-#: gtk/gtkcolorchooserwidget.c:457
+#: gtk/gtkcolorchooserwidget.c:461
msgctxt "Color name"
msgid "Light Plum"
msgstr "Hela pruna"
-#: gtk/gtkcolorchooserwidget.c:458
+#: gtk/gtkcolorchooserwidget.c:462
msgctxt "Color name"
msgid "Plum"
msgstr "Pruna"
-#: gtk/gtkcolorchooserwidget.c:459
+#: gtk/gtkcolorchooserwidget.c:463
msgctxt "Color name"
msgid "Dark Plum"
msgstr "Malhela pruna"
-#: gtk/gtkcolorchooserwidget.c:460
+#: gtk/gtkcolorchooserwidget.c:464
msgctxt "Color name"
msgid "Light Chocolate"
msgstr "Hela ĉokolada"
-#: gtk/gtkcolorchooserwidget.c:461
+#: gtk/gtkcolorchooserwidget.c:465
msgctxt "Color name"
msgid "Chocolate"
msgstr "Ĉokolada"
-#: gtk/gtkcolorchooserwidget.c:462
+#: gtk/gtkcolorchooserwidget.c:466
msgctxt "Color name"
msgid "Dark Chocolate"
msgstr "Malhela ĉokolada"
-#: gtk/gtkcolorchooserwidget.c:463
+#: gtk/gtkcolorchooserwidget.c:467
msgctxt "Color name"
msgid "Light Aluminum 1"
msgstr "Hela aluminia 1"
-#: gtk/gtkcolorchooserwidget.c:464
+#: gtk/gtkcolorchooserwidget.c:468
msgctxt "Color name"
msgid "Aluminum 1"
msgstr "Aluminia 1"
-#: gtk/gtkcolorchooserwidget.c:465
+#: gtk/gtkcolorchooserwidget.c:469
msgctxt "Color name"
msgid "Dark Aluminum 1"
msgstr "Malhela aluminia 1"
-#: gtk/gtkcolorchooserwidget.c:466
+#: gtk/gtkcolorchooserwidget.c:470
msgctxt "Color name"
msgid "Light Aluminum 2"
msgstr "Hela aluminia 2"
-#: gtk/gtkcolorchooserwidget.c:467
+#: gtk/gtkcolorchooserwidget.c:471
msgctxt "Color name"
msgid "Aluminum 2"
msgstr "Aluminia 2"
-#: gtk/gtkcolorchooserwidget.c:468
+#: gtk/gtkcolorchooserwidget.c:472
msgctxt "Color name"
msgid "Dark Aluminum 2"
msgstr "Malhela aluminia 2"
-#: gtk/gtkcolorchooserwidget.c:482
+#: gtk/gtkcolorchooserwidget.c:486
msgctxt "Color name"
msgid "Black"
msgstr "Nigra"
-#: gtk/gtkcolorchooserwidget.c:483
+#: gtk/gtkcolorchooserwidget.c:487
msgctxt "Color name"
msgid "Very Dark Gray"
msgstr "Tre malhela griza"
-#: gtk/gtkcolorchooserwidget.c:484
+#: gtk/gtkcolorchooserwidget.c:488
msgctxt "Color name"
msgid "Darker Gray"
msgstr "Pli malhela griza"
-#: gtk/gtkcolorchooserwidget.c:485
+#: gtk/gtkcolorchooserwidget.c:489
msgctxt "Color name"
msgid "Dark Gray"
msgstr "Malhela griza"
-#: gtk/gtkcolorchooserwidget.c:486
+#: gtk/gtkcolorchooserwidget.c:490
msgctxt "Color name"
msgid "Medium Gray"
msgstr "Mezhela griza"
-#: gtk/gtkcolorchooserwidget.c:487
+#: gtk/gtkcolorchooserwidget.c:491
msgctxt "Color name"
msgid "Light Gray"
msgstr "Hela griza"
-#: gtk/gtkcolorchooserwidget.c:488
+#: gtk/gtkcolorchooserwidget.c:492
msgctxt "Color name"
msgid "Lighter Gray"
msgstr "Pli hela griza"
-#: gtk/gtkcolorchooserwidget.c:489
+#: gtk/gtkcolorchooserwidget.c:493
msgctxt "Color name"
msgid "Very Light Gray"
msgstr "Tre hela griza"
-#: gtk/gtkcolorchooserwidget.c:490
+#: gtk/gtkcolorchooserwidget.c:494
msgctxt "Color name"
msgid "White"
msgstr "Blanka"
#. translators: label for the custom section in the color chooser
-#: gtk/gtkcolorchooserwidget.c:539
+#: gtk/gtkcolorchooserwidget.c:543
msgid "Custom"
msgstr "Propra"
-#: gtk/gtkcolorchooserwidget.c:546
+#: gtk/gtkcolorchooserwidget.c:550
msgid "Custom color"
msgstr "Propra koloro"
-#: gtk/gtkcolorchooserwidget.c:547
+#: gtk/gtkcolorchooserwidget.c:551
msgid "Create a custom color"
msgstr "Krei propran koloron"
-#: gtk/gtkcolorchooserwidget.c:566
+#: gtk/gtkcolorchooserwidget.c:570
#, c-format
msgid "Custom color %d: %s"
msgstr "Propra koloro %d: %s"
-#: gtk/gtkcolorplane.c:405
+#: gtk/gtkcolorplane.c:409
msgid "Color Plane"
msgstr "Kolora ebeno"
@@ -1864,7 +2139,7 @@ msgctxt "Color channel"
msgid "Alpha"
msgstr "Alfo"
-#: gtk/gtkcolorswatch.c:290
+#: gtk/gtkcolorswatch.c:360
msgid "C_ustomize"
msgstr "_Adapti"
@@ -1879,212 +2154,140 @@ msgid "default:mm"
msgstr "default:mm"
#. And show the custom paper dialog
-#: gtk/gtkcustompaperunixdialog.c:403 gtk/gtkprintunixdialog.c:3312
+#: gtk/gtkcustompaperunixdialog.c:405 gtk/gtkprintunixdialog.c:3336
msgid "Manage Custom Sizes"
msgstr "Agordi proprajn grandojn"
-#: gtk/gtkcustompaperunixdialog.c:565 gtk/gtkpagesetupunixdialog.c:804
+#: gtk/gtkcustompaperunixdialog.c:567 gtk/gtkpagesetupunixdialog.c:811
msgid "inch"
msgstr "colo"
-#: gtk/gtkcustompaperunixdialog.c:567 gtk/gtkpagesetupunixdialog.c:802
+#: gtk/gtkcustompaperunixdialog.c:569 gtk/gtkpagesetupunixdialog.c:809
msgid "mm"
msgstr "mm"
-#: gtk/gtkcustompaperunixdialog.c:613
+#: gtk/gtkcustompaperunixdialog.c:615
msgid "Margins from Printer…"
msgstr "Marĝenoj de presilo…"
-#: gtk/gtkcustompaperunixdialog.c:779
+#: gtk/gtkcustompaperunixdialog.c:781
#, c-format
msgid "Custom Size %d"
msgstr "Kutima amplekso %d"
-#: gtk/gtkcustompaperunixdialog.c:1106
+#: gtk/gtkcustompaperunixdialog.c:1120
msgid "_Width:"
msgstr "_Larĝo:"
-#: gtk/gtkcustompaperunixdialog.c:1117
+#: gtk/gtkcustompaperunixdialog.c:1131
msgid "_Height:"
msgstr "_Alto:"
-#: gtk/gtkcustompaperunixdialog.c:1128
+#: gtk/gtkcustompaperunixdialog.c:1142
msgid "Paper Size"
msgstr "Papergrando"
-#: gtk/gtkcustompaperunixdialog.c:1137
+#: gtk/gtkcustompaperunixdialog.c:1151
msgid "_Top:"
msgstr "Su_pre:"
-#: gtk/gtkcustompaperunixdialog.c:1148
+#: gtk/gtkcustompaperunixdialog.c:1162
msgid "_Bottom:"
msgstr "Su_be:"
-#: gtk/gtkcustompaperunixdialog.c:1159
+#: gtk/gtkcustompaperunixdialog.c:1173
msgid "_Left:"
msgstr "Ma_ldekstre:"
-#: gtk/gtkcustompaperunixdialog.c:1170
+#: gtk/gtkcustompaperunixdialog.c:1184
msgid "_Right:"
msgstr "Dekst_re:"
-#: gtk/gtkcustompaperunixdialog.c:1209
+#: gtk/gtkcustompaperunixdialog.c:1223
msgid "Paper Margins"
msgstr "Marĝenoj de papero"
-#: gtk/gtkentry.c:8212 gtk/gtklabel.c:6097 gtk/gtktextview.c:8579
+#: gtk/gtkentry.c:9582 gtk/gtklabel.c:6680 gtk/gtktextview.c:9492
msgid "Cu_t"
msgstr "El_tondi"
-#: gtk/gtkentry.c:8216 gtk/gtklabel.c:6098 gtk/gtktextview.c:8583
+#: gtk/gtkentry.c:9586 gtk/gtklabel.c:6681 gtk/gtktextview.c:9496
msgid "_Copy"
msgstr "_Kopii"
-#: gtk/gtkentry.c:8220 gtk/gtklabel.c:6099 gtk/gtktextview.c:8585
+#: gtk/gtkentry.c:9590 gtk/gtklabel.c:6682 gtk/gtktextview.c:9498
msgid "_Paste"
msgstr "_Alglui"
-#: gtk/gtkentry.c:8223 gtk/gtkfilechooserwidget.c:1488
-#: gtk/gtkfilechooserwidget.c:2208 gtk/gtklabel.c:6101 gtk/gtktextview.c:8588
+#: gtk/gtkentry.c:9593 gtk/gtkfilechooserwidget.c:1476
+#: gtk/gtkfilechooserwidget.c:2276 gtk/gtklabel.c:6684 gtk/gtktextview.c:9501
msgid "_Delete"
msgstr "_Forigi"
-#: gtk/gtkentry.c:8234 gtk/gtklabel.c:6110 gtk/gtktextview.c:8602
+#: gtk/gtkentry.c:9604 gtk/gtklabel.c:6693 gtk/gtktextview.c:9515
msgid "Select _All"
msgstr "Elekti ĉ_ion"
-#: gtk/gtkentry.c:8244 gtk/gtktextview.c:8612
+#: gtk/gtkentry.c:9614 gtk/gtktextview.c:9525
msgid "Insert _Emoji"
msgstr "Enmeti _bildosignon"
-#: gtk/gtkentry.c:8398 gtk/gtktextview.c:8804
+#: gtk/gtkentry.c:9790 gtk/gtktextview.c:9745
msgid "Select all"
msgstr "Elekti ĉion"
-#: gtk/gtkentry.c:8401 gtk/gtktextview.c:8807
+#: gtk/gtkentry.c:9793 gtk/gtktextview.c:9748
msgid "Cut"
msgstr "Eltondi"
-#: gtk/gtkentry.c:8404 gtk/gtktextview.c:8810
+#: gtk/gtkentry.c:9796 gtk/gtktextview.c:9751
msgid "Copy"
msgstr "Kopii"
-#: gtk/gtkentry.c:8407 gtk/gtktextview.c:8813
+#: gtk/gtkentry.c:9799 gtk/gtktextview.c:9754
msgid "Paste"
msgstr "Alglui"
-#: gtk/gtkentry.c:9268
+#: gtk/gtkentry.c:10869
msgid "Caps Lock is on"
msgstr "Majuskla baskulo estas ŝaltita"
-#: gtk/gtkentry.c:9540
+#: gtk/gtkentry.c:11144
msgid "Insert Emoji"
msgstr "Enmelti bildosignon"
-#: gtk/gtkfilechooserbutton.c:106
+#: gtk/gtkfilechooserbutton.c:107
msgid "Select a File"
msgstr "Elekti dosieron"
-#: gtk/gtkfilechooserbutton.c:107 gtk/gtkplacessidebar.c:1101
+#: gtk/gtkfilechooserbutton.c:108 gtk/gtkplacessidebar.c:1109
msgid "Desktop"
msgstr "Labortablo"
-#: gtk/gtkfilechooserbutton.c:108
+#: gtk/gtkfilechooserbutton.c:109 gtk/ui/gtkfilechooserbutton.ui:33
msgid "(None)"
msgstr "(Neniu)"
-#: gtk/gtkfilechooserbutton.c:2123
+#: gtk/gtkfilechooserbutton.c:2158
msgid "Other…"
msgstr "Alia…"
-#: gtk/gtkfilechooserdialog.c:538
+#: gtk/gtkfilechooserdialog.c:542
msgid "_Name"
msgstr "_Nomo"
-#: gtk/gtkfilechoosererrorstack.c:45
-msgid "A folder cannot be called “.”"
-msgstr "Dosierujo ne povas nomiĝi “.”"
-
-#: gtk/gtkfilechoosererrorstack.c:49
-msgid "A file cannot be called “.”"
-msgstr "Dosiero ne povas nomiĝi “.”"
-
-#: gtk/gtkfilechoosererrorstack.c:53
-msgid "A folder cannot be called “..”"
-msgstr "Dosierujo ne povas nomiĝi “..”"
-
-#: gtk/gtkfilechoosererrorstack.c:57
-msgid "A file cannot be called “..”"
-msgstr "Dosiero ne povas nomiĝi “..”"
-
-#: gtk/gtkfilechoosererrorstack.c:61
-msgid "Folder names cannot contain “/”"
-msgstr "Desierujaj nomoj ne povas enhavi signon “/”"
-
-#: gtk/gtkfilechoosererrorstack.c:65
-msgid "File names cannot contain “/”"
-msgstr "Dosieraj nomoj ne povas enhavi signon “/”"
-
-#: gtk/gtkfilechoosererrorstack.c:69
-msgid "Folder names should not begin with a space"
-msgstr "Dosierujaj nomoj ne enhavu spaceton komence"
-
-#: gtk/gtkfilechoosererrorstack.c:73
-msgid "File names should not begin with a space"
-msgstr "Dosieraj nomoj ne enhavu spaceton komence"
-
-#: gtk/gtkfilechoosererrorstack.c:77
-msgid "Folder names should not end with a space"
-msgstr "Dosierujaj nomoj ne enhavu spaceton fine"
-
-#: gtk/gtkfilechoosererrorstack.c:81
-msgid "File names should not end with a space"
-msgstr "Dosieraj nomoj ne enhavu spaceton fine"
-
-# »Kaŝaj« estas transitiva, ĉar la nomo ĉefe kaŝas ne sin mem, sed la dosierujon de la uzulo.
-#: gtk/gtkfilechoosererrorstack.c:85
-msgid "Folder names starting with a “.” are hidden"
-msgstr "Dosierujaj nomoj kun “.” komence estas kaŝaj"
-
-# »Kaŝaj« estas transitiva, ĉar la nomo ĉefe kaŝas ne sin mem, sed la dosieron de la uzulo.
-#: gtk/gtkfilechoosererrorstack.c:89
-msgid "File names starting with a “.” are hidden"
-msgstr "Dosieraj nomoj kun “.” komence estas kaŝaj"
-
-#: gtk/gtkfilechoosererrorstack.c:93
-msgid "A folder with that name already exists"
-msgstr "Dosierujo kun tiu nomo jam ekzistas"
-
-#: gtk/gtkfilechoosererrorstack.c:97
-msgid "A file with that name already exists"
-msgstr "Dosiero kun tiu nomo jam ekzistas"
-
-#: gtk/gtkfilechoosernative.c:524 gtk/gtkfilechoosernative.c:602
-#: gtk/gtkfilechooserwidget.c:1487 gtk/gtkfilechooserwidget.c:6225
-#: gtk/gtkmessagedialog.c:825 gtk/gtkmessagedialog.c:834
-#: gtk/gtkmountoperation.c:543 gtk/gtkpagesetupunixdialog.c:196
-#: gtk/gtkprintbackend.c:657 gtk/gtkprinteroptionwidget.c:545
-#: gtk/gtkprintunixdialog.c:660 gtk/gtkprintunixdialog.c:727
-#: gtk/gtkwindow.c:10848 gtk/inspector/css-editor.c:201
-#: gtk/inspector/recorder.c:1017 gtk/ui/gtkappchooserdialog.ui:49
-#: gtk/ui/gtkassistant.ui:107 gtk/ui/gtkcolorchooserdialog.ui:32
-#: gtk/ui/gtkfontchooserdialog.ui:26
-msgid "_Cancel"
-msgstr "_Nuligi"
-
#. Open item is always present
-#: gtk/gtkfilechoosernative.c:525 gtk/gtkfilechoosernative.c:596
-#: gtk/gtkplacessidebar.c:3562 gtk/gtkplacessidebar.c:3631
-#: gtk/gtkplacesview.c:1611
+#: gtk/gtkfilechoosernative.c:541 gtk/gtkfilechoosernative.c:626
+#: gtk/gtkplacessidebar.c:3615 gtk/gtkplacessidebar.c:3683
+#: gtk/gtkplacesview.c:1633
msgid "_Open"
msgstr "_Malfermi"
-#: gtk/gtkfilechoosernative.c:596 gtk/inspector/css-editor.c:202
-#: gtk/inspector/recorder.c:1018
+#: gtk/gtkfilechoosernative.c:626 gtk/inspector/css-editor.c:202
msgid "_Save"
msgstr "Kon_servi"
-#: gtk/gtkfilechoosernativequartz.c:331 gtk/ui/gtkfilechooserwidget.ui:363
+#: gtk/gtkfilechoosernativequartz.c:331 gtk/ui/gtkfilechooserwidget.ui:392
msgid "Select which types of files are shown"
msgstr "Elektu, kiuj dosieraj tipoj montriĝos"
@@ -2097,15 +2300,15 @@ msgstr "Elektu, kiuj dosieraj tipoj montriĝos"
msgid "%1$s on %2$s"
msgstr "%1$s ĉe %2$s"
-#: gtk/gtkfilechooserwidget.c:368
+#: gtk/gtkfilechooserwidget.c:369
msgid "Type name of new folder"
msgstr "Entajpu nomon de nova dosierujo"
-#: gtk/gtkfilechooserwidget.c:783
+#: gtk/gtkfilechooserwidget.c:788
msgid "The folder could not be created"
msgstr "La dosierujo ne kreeblas"
-#: gtk/gtkfilechooserwidget.c:796
+#: gtk/gtkfilechooserwidget.c:801
msgid ""
"The folder could not be created, as a file with the same name already "
"exists. Try using a different name for the folder, or rename the file first."
@@ -2113,190 +2316,247 @@ msgstr ""
"La dosierujo ne kreeblas, ĉar dosiero kun sama nomo jam ekzistas. Provu uzi "
"malsaman nomon por la dosierujo, aŭ alinomu antaŭe la dosieron."
-#: gtk/gtkfilechooserwidget.c:811
+#: gtk/gtkfilechooserwidget.c:816
msgid "You need to choose a valid filename."
msgstr "Vi elektu validan dosiernomon."
-#: gtk/gtkfilechooserwidget.c:814
+#: gtk/gtkfilechooserwidget.c:819
#, c-format
msgid "Cannot create a file under %s as it is not a folder"
msgstr "Dosiero ne kreeblas en %s ĉar tiu ne estas dosierujo"
-#: gtk/gtkfilechooserwidget.c:824
+#: gtk/gtkfilechooserwidget.c:829
msgid "Cannot create file as the filename is too long"
msgstr "Dosiero ne kreeblas pro tro longa dosiernomo"
-#: gtk/gtkfilechooserwidget.c:825
+#: gtk/gtkfilechooserwidget.c:830
msgid "Try using a shorter name."
msgstr "Provu malpli longan nomon."
-#: gtk/gtkfilechooserwidget.c:835
+#: gtk/gtkfilechooserwidget.c:840
msgid "You may only select folders"
msgstr "Nur dosierujoj elekteblas"
-#: gtk/gtkfilechooserwidget.c:836
+#: gtk/gtkfilechooserwidget.c:841
msgid "The item that you selected is not a folder try using a different item."
msgstr "La ero, kiun vi elektis, ne estas dosierujo; provu alian."
-#: gtk/gtkfilechooserwidget.c:844
+#: gtk/gtkfilechooserwidget.c:849
msgid "Invalid file name"
msgstr "Nevalida dosiernomo"
-#: gtk/gtkfilechooserwidget.c:853
+#: gtk/gtkfilechooserwidget.c:858
msgid "The folder contents could not be displayed"
msgstr "Ne povis vidigi enhavon de la dosierujo"
-#: gtk/gtkfilechooserwidget.c:861
+#: gtk/gtkfilechooserwidget.c:866
msgid "The file could not be deleted"
msgstr "Ne povis forigi la dosieron"
-#: gtk/gtkfilechooserwidget.c:869
+#: gtk/gtkfilechooserwidget.c:874
msgid "The file could not be moved to the Trash"
msgstr "Ne povis movi la dosieron al Rubujo"
-#: gtk/gtkfilechooserwidget.c:1483
+#: gtk/gtkfilechooserwidget.c:1019
+msgid "A folder with that name already exists"
+msgstr "Dosierujo kun tiu nomo jam ekzistas"
+
+#: gtk/gtkfilechooserwidget.c:1021
+msgid "A file with that name already exists"
+msgstr "Dosiero kun tiu nomo jam ekzistas"
+
+#: gtk/gtkfilechooserwidget.c:1056
+msgid "A folder cannot be called “.”"
+msgstr "Dosierujo ne povas nomiĝi “.”"
+
+#: gtk/gtkfilechooserwidget.c:1057
+msgid "A file cannot be called “.”"
+msgstr "Dosiero ne povas nomiĝi “.”"
+
+#: gtk/gtkfilechooserwidget.c:1060
+msgid "A folder cannot be called “..”"
+msgstr "Dosierujo ne povas nomiĝi “..”"
+
+#: gtk/gtkfilechooserwidget.c:1061
+msgid "A file cannot be called “..”"
+msgstr "Dosiero ne povas nomiĝi “..”"
+
+#: gtk/gtkfilechooserwidget.c:1064
+msgid "Folder names cannot contain “/”"
+msgstr "Desierujaj nomoj ne povas enhavi signon “/”"
+
+#: gtk/gtkfilechooserwidget.c:1065
+msgid "File names cannot contain “/”"
+msgstr "Dosieraj nomoj ne povas enhavi signon “/”"
+
+#: gtk/gtkfilechooserwidget.c:1091
+msgid "Folder names should not begin with a space"
+msgstr "Dosierujaj nomoj ne enhavu spaceton komence"
+
+#: gtk/gtkfilechooserwidget.c:1092
+msgid "File names should not begin with a space"
+msgstr "Dosieraj nomoj ne enhavu spaceton komence"
+
+#: gtk/gtkfilechooserwidget.c:1096
+msgid "Folder names should not end with a space"
+msgstr "Dosierujaj nomoj ne enhavu spaceton fine"
+
+#: gtk/gtkfilechooserwidget.c:1097
+msgid "File names should not end with a space"
+msgstr "Dosieraj nomoj ne enhavu spaceton fine"
+
+# »Kaŝaj« estas transitiva, ĉar la nomo ĉefe kaŝas ne sin mem, sed la dosierujon de la uzulo.
+#: gtk/gtkfilechooserwidget.c:1100
+msgid "Folder names starting with a “.” are hidden"
+msgstr "Dosierujaj nomoj kun “.” komence estas kaŝaj"
+
+# »Kaŝaj« estas transitiva, ĉar la nomo ĉefe kaŝas ne sin mem, sed la dosieron de la uzulo.
+#: gtk/gtkfilechooserwidget.c:1101
+msgid "File names starting with a “.” are hidden"
+msgstr "Dosieraj nomoj kun “.” komence estas kaŝaj"
+
+#: gtk/gtkfilechooserwidget.c:1471
#, c-format
msgid "Are you sure you want to permanently delete “%s”?"
msgstr "Ĉu vi certe volas porĉiame forigi “%s”?"
-#: gtk/gtkfilechooserwidget.c:1486
+#: gtk/gtkfilechooserwidget.c:1474
#, c-format
msgid "If you delete an item, it will be permanently lost."
msgstr "Se vi forigos eron, ĝi perdiĝos porĉiame."
-#: gtk/gtkfilechooserwidget.c:1614
+#: gtk/gtkfilechooserwidget.c:1608
msgid "The file could not be renamed"
msgstr "Ne povis alinomi la dosieron"
-#: gtk/gtkfilechooserwidget.c:1858
+#: gtk/gtkfilechooserwidget.c:1922
msgid "Could not select file"
msgstr "Ne povis elekti dosieron"
-#: gtk/gtkfilechooserwidget.c:2203
+#: gtk/gtkfilechooserwidget.c:2271
msgid "_Visit File"
msgstr "_Viziti dosieron"
-#: gtk/gtkfilechooserwidget.c:2204
+#: gtk/gtkfilechooserwidget.c:2272
msgid "_Open With File Manager"
msgstr "_Malfermi per dosier-mastrumilo"
-#: gtk/gtkfilechooserwidget.c:2205
+#: gtk/gtkfilechooserwidget.c:2273
msgid "_Copy Location"
msgstr "_Kopii lokon"
-#: gtk/gtkfilechooserwidget.c:2206
+#: gtk/gtkfilechooserwidget.c:2274
msgid "_Add to Bookmarks"
msgstr "_Aldoni al legosignoj"
-#: gtk/gtkfilechooserwidget.c:2207 gtk/gtkplacessidebar.c:2681
-#: gtk/ui/gtkfilechooserwidget.ui:492
+#: gtk/gtkfilechooserwidget.c:2275 gtk/gtkplacessidebar.c:2731
+#: gtk/ui/gtkfilechooserwidget.ui:526
msgid "_Rename"
msgstr "_Alinomi"
-#: gtk/gtkfilechooserwidget.c:2209
+#: gtk/gtkfilechooserwidget.c:2277
msgid "_Move to Trash"
msgstr "_Movi rubujen"
-#: gtk/gtkfilechooserwidget.c:2213
+#: gtk/gtkfilechooserwidget.c:2281
msgid "Show _Hidden Files"
msgstr "Montri _kaŝitajn dosierojn"
-#: gtk/gtkfilechooserwidget.c:2214
+#: gtk/gtkfilechooserwidget.c:2282
msgid "Show _Size Column"
msgstr "Montri _grandon de kolono"
-#: gtk/gtkfilechooserwidget.c:2215
+#: gtk/gtkfilechooserwidget.c:2283
msgid "Show _Time"
msgstr "Montri _tempon"
-#: gtk/gtkfilechooserwidget.c:2216
+#: gtk/gtkfilechooserwidget.c:2284
msgid "Sort _Folders before Files"
msgstr "Ordigi _dosierujojn antaŭ dosierojn"
#. this is the header for the location column in the print dialog
-#: gtk/gtkfilechooserwidget.c:2503 gtk/inspector/css-node-tree.ui:134
-#: gtk/ui/gtkfilechooserwidget.ui:197 gtk/ui/gtkprintunixdialog.ui:117
+#: gtk/gtkfilechooserwidget.c:2559 gtk/inspector/css-node-tree.ui:141
+#: gtk/ui/gtkfilechooserwidget.ui:207 gtk/ui/gtkprintunixdialog.ui:123
msgid "Location"
msgstr "Loko"
#. Label
-#: gtk/gtkfilechooserwidget.c:2596
+#: gtk/gtkfilechooserwidget.c:2652
msgid "_Name:"
msgstr "_Nomo:"
-#: gtk/gtkfilechooserwidget.c:3218 gtk/gtkfilechooserwidget.c:3232
+#: gtk/gtkfilechooserwidget.c:3277 gtk/gtkfilechooserwidget.c:3291
#, c-format
msgid "Searching in %s"
msgstr "Serĉante en %s"
-#: gtk/gtkfilechooserwidget.c:3238
+#: gtk/gtkfilechooserwidget.c:3297
msgid "Searching"
msgstr "Serĉante"
-#: gtk/gtkfilechooserwidget.c:3245
+#: gtk/gtkfilechooserwidget.c:3304
msgid "Enter location"
msgstr "Enigi lokon"
-#: gtk/gtkfilechooserwidget.c:3247
+#: gtk/gtkfilechooserwidget.c:3306
msgid "Enter location or URL"
msgstr "Enigi lokon aŭ retejan adreson"
-#: gtk/gtkfilechooserwidget.c:4249 gtk/gtkfilechooserwidget.c:7139
-#: gtk/ui/gtkfilechooserwidget.ui:225
+#: gtk/gtkfilechooserwidget.c:4340 gtk/gtkfilechooserwidget.c:7244
+#: gtk/ui/gtkfilechooserwidget.ui:235
msgid "Modified"
msgstr "Modifita"
-#: gtk/gtkfilechooserwidget.c:4527
+#: gtk/gtkfilechooserwidget.c:4618
#, c-format
msgid "Could not read the contents of %s"
msgstr "Ne povis legi enhavon de %s"
-#: gtk/gtkfilechooserwidget.c:4531
+#: gtk/gtkfilechooserwidget.c:4622
msgid "Could not read the contents of the folder"
msgstr "Ne povis legi enhavon de la dosierujo"
-#. Translators: see g_date_time_format() for details on the format
-#: gtk/gtkfilechooserwidget.c:4661 gtk/gtkfilechooserwidget.c:4709
+#: gtk/gtkfilechooserwidget.c:4752 gtk/gtkfilechooserwidget.c:4800
msgid "%H:%M"
msgstr "%H:%M"
-#: gtk/gtkfilechooserwidget.c:4663 gtk/gtkfilechooserwidget.c:4711
+#: gtk/gtkfilechooserwidget.c:4754 gtk/gtkfilechooserwidget.c:4802
msgid "%l:%M %p"
msgstr "%l:%M %p"
-#: gtk/gtkfilechooserwidget.c:4667
+#: gtk/gtkfilechooserwidget.c:4758
msgid "Yesterday"
msgstr "Hieraŭ"
-#: gtk/gtkfilechooserwidget.c:4675
+#: gtk/gtkfilechooserwidget.c:4766
msgid "%-e %b"
-msgstr "%-e %b"
+msgstr "%-e-a de %b"
-#: gtk/gtkfilechooserwidget.c:4679
+#: gtk/gtkfilechooserwidget.c:4770
msgid "%-e %b %Y"
-msgstr "%-e %b %Y"
+msgstr "%-e-a de %b %Y"
#. Translators: We don't know whether this printer is
#. * available to print to.
-#: gtk/gtkfilechooserwidget.c:4909 gtk/inspector/prop-editor.c:1626
-#: modules/printbackends/gtkprintbackendcloudprint.c:731
+#: gtk/gtkfilechooserwidget.c:5005 gtk/inspector/prop-editor.c:1689
+#: modules/printbackends/cloudprint/gtkprintbackendcloudprint.c:748
msgid "Unknown"
msgstr "Nekonata"
-#: gtk/gtkfilechooserwidget.c:4948 gtk/gtkplacessidebar.c:1086
+#: gtk/gtkfilechooserwidget.c:5044 gtk/gtkplacessidebar.c:1094
msgid "Home"
msgstr "Hejmo"
-#: gtk/gtkfilechooserwidget.c:5441
+#: gtk/gtkfilechooserwidget.c:5537
msgid "Cannot change to folder because it is not local"
msgstr "Ne povas ŝanĝi al dosierujo ĉar ĝi ne estas loka"
-#: gtk/gtkfilechooserwidget.c:6218 gtk/gtkprintunixdialog.c:651
+#: gtk/gtkfilechooserwidget.c:6323 gtk/gtkprintunixdialog.c:664
#, c-format
msgid "A file named “%s” already exists. Do you want to replace it?"
msgstr "Dosiero nomita “%s” jam ekzistas. Ĉu vi volas anstataŭigi ĝin?"
-#: gtk/gtkfilechooserwidget.c:6221 gtk/gtkprintunixdialog.c:655
+#: gtk/gtkfilechooserwidget.c:6326 gtk/gtkprintunixdialog.c:668
#, c-format
msgid ""
"The file already exists in “%s”. Replacing it will overwrite its contents."
@@ -2304,19 +2564,19 @@ msgstr ""
"La dosiero jam ekzistas en “%s”. Anstataŭigi ĝin ankaŭ anstataŭigos ĝian "
"enhavon."
-#: gtk/gtkfilechooserwidget.c:6226 gtk/gtkprintunixdialog.c:663
+#: gtk/gtkfilechooserwidget.c:6331 gtk/gtkprintunixdialog.c:676
msgid "_Replace"
msgstr "_Anstataŭigi"
-#: gtk/gtkfilechooserwidget.c:6434
+#: gtk/gtkfilechooserwidget.c:6545
msgid "You do not have access to the specified folder."
msgstr "Vi ne havas atingon al la precizigita dosierujo."
-#: gtk/gtkfilechooserwidget.c:7063
+#: gtk/gtkfilechooserwidget.c:7168
msgid "Could not send the search request"
msgstr "Ne povis sendi la serĉan peton"
-#: gtk/gtkfilechooserwidget.c:7349
+#: gtk/gtkfilechooserwidget.c:7454
msgid "Accessed"
msgstr "Atingita"
@@ -2329,135 +2589,206 @@ msgstr "Atingita"
msgid "File System"
msgstr "Dosiersistemo"
-#: gtk/gtkfontbutton.c:405
+#: gtk/gtkfontbutton.c:379 gtk/gtkfontbutton.c:509
msgid "Sans 12"
msgstr "Senserifa 12"
-#: gtk/gtkfontbutton.c:530 gtk/gtkfontbutton.c:618
+#: gtk/gtkfontbutton.c:492 gtk/gtkfontbutton.c:626
msgid "Pick a Font"
msgstr "Elektu tiparon"
-#: gtk/gtkfontbutton.c:595 gtk/inspector/visual.ui:188
-msgid "Font"
-msgstr "Tiparo"
-
-#: gtk/gtkfontbutton.c:1311
+#: gtk/gtkfontbutton.c:1393
msgctxt "font"
msgid "None"
msgstr "Neniu"
-#: gtk/gtkfontchooserwidget.c:1539
+#: gtk/gtkfontchooserwidget.c:1523
msgid "Width"
msgstr "Larĝo"
-#: gtk/gtkfontchooserwidget.c:1540
+#: gtk/gtkfontchooserwidget.c:1524
msgid "Weight"
msgstr "Pezo"
-#: gtk/gtkfontchooserwidget.c:1541
+#: gtk/gtkfontchooserwidget.c:1525
msgid "Italic"
-msgstr "Kursivo"
+msgstr "Kursiva"
-#: gtk/gtkfontchooserwidget.c:1542
+#: gtk/gtkfontchooserwidget.c:1526
msgid "Slant"
-msgstr "Kliniĝo"
+msgstr "Dekliveco"
-#: gtk/gtkfontchooserwidget.c:1543
+#: gtk/gtkfontchooserwidget.c:1527
msgid "Optical Size"
msgstr "Optika grando"
-#: gtk/gtkfontchooserwidget.c:2068 gtk/inspector/prop-editor.c:1613
+#: gtk/gtkfontchooserwidget.c:2064 gtk/inspector/prop-editor.c:1676
msgid "Default"
msgstr "Implicito"
-#: gtk/gtkfontchooserwidget.c:2112
+#: gtk/gtkfontchooserwidget.c:2111
msgid "Ligatures"
msgstr "Ligaĵoj"
-#: gtk/gtkfontchooserwidget.c:2113
+#: gtk/gtkfontchooserwidget.c:2112
msgid "Letter Case"
msgstr "Litera uskleco"
-#: gtk/gtkfontchooserwidget.c:2114
+#: gtk/gtkfontchooserwidget.c:2113
msgid "Number Case"
-msgstr "Numera uskleco"
+msgstr "Cifera uskleco"
-#: gtk/gtkfontchooserwidget.c:2115
+#: gtk/gtkfontchooserwidget.c:2114
msgid "Number Spacing"
msgstr "Numera interspaco"
-#: gtk/gtkfontchooserwidget.c:2116
+#: gtk/gtkfontchooserwidget.c:2115
msgid "Number Formatting"
-msgstr "Numera tekstaranĝo"
+msgstr "Numera formo"
-#: gtk/gtkfontchooserwidget.c:2117
+#: gtk/gtkfontchooserwidget.c:2116
msgid "Character Variants"
-msgstr "Signaj variaĵoj"
+msgstr "Signaj variantoj"
-#: gtk/gtkglarea.c:286
+#: gtk/gtkglarea.c:313
msgid "OpenGL context creation failed"
msgstr "Malsukcesis krei situacion de OpenGL"
-#: gtk/gtkheaderbar.c:386
+#: gtk/gtkheaderbar.c:391
msgid "Application menu"
msgstr "Aplikaĵa menuo"
-#: gtk/gtkheaderbar.c:451 gtk/gtkwindow.c:8144
+#: gtk/gtkheaderbar.c:458 gtk/gtkwindow.c:9289
msgid "Close"
msgstr "Fermi"
-#: gtk/gtkicontheme.c:2258
+#: gtk/gtkicontheme.c:2341 gtk/gtkicontheme.c:2406
#, c-format
-msgid "Icon “%s” not present in theme %s"
-msgstr "Bildsimbolo “%s” ne ĉeestas en haŭto %s"
+msgid "Icon '%s' not present in theme %s"
+msgstr "Bildsimbolo '%s' ne ĉeestas en haŭto %s"
-#: gtk/gtkicontheme.c:3816 gtk/gtkicontheme.c:4163
+#: gtk/gtkicontheme.c:4080 gtk/gtkicontheme.c:4447
msgid "Failed to load icon"
msgstr "Malsukcesis enlegi bildsimbolon"
-#: gtk/gtkinfobar.c:1036 gtk/gtkmessagedialog.c:339
+#: gtk/gtkimmodule.c:547
+msgctxt "input method menu"
+msgid "Simple"
+msgstr "Simpla"
+
+#: gtk/gtkimmodule.c:563
+msgctxt "input method menu"
+msgid "None"
+msgstr "Neniu"
+
+#: gtk/gtkimmulticontext.c:609
+msgctxt "input method menu"
+msgid "System"
+msgstr "Sistema"
+
+#: gtk/gtkimmulticontext.c:688
+#, c-format
+msgctxt "input method menu"
+msgid "System (%s)"
+msgstr "Sistema (%s)"
+
+#: gtk/gtkinfobar.c:1152 gtk/gtkmessagedialog.c:385
msgid "Information"
msgstr "Informo"
-#: gtk/gtkinfobar.c:1040 gtk/gtkmessagedialog.c:343
+#: gtk/gtkinfobar.c:1156 gtk/gtkmessagedialog.c:389
msgid "Question"
msgstr "Demando"
-#: gtk/gtkinfobar.c:1044 gtk/gtkmessagedialog.c:347
+#: gtk/gtkinfobar.c:1160 gtk/gtkmessagedialog.c:393
msgid "Warning"
msgstr "Averto"
-#: gtk/gtkinfobar.c:1048 gtk/gtkmessagedialog.c:351
+#: gtk/gtkinfobar.c:1164 gtk/gtkmessagedialog.c:397
msgid "Error"
msgstr "Eraro"
#. Open Link
-#: gtk/gtklabel.c:6078
+#: gtk/gtklabel.c:6661
msgid "_Open Link"
msgstr "_Malfermi ligilon"
#. Copy Link Address
-#: gtk/gtklabel.c:6087
+#: gtk/gtklabel.c:6670
msgid "Copy _Link Address"
msgstr "Kopii la _ligiladreson"
-#: gtk/gtklinkbutton.c:344
+#: gtk/gtk-launch.c:40
+msgid "Show program version"
+msgstr "Montri version de programo"
+
+#: gtk/gtk-launch.c:74
+msgid "APPLICATION [URI...] — launch an APPLICATION"
+msgstr "APLIKAĴO [URI...] – lanĉi APLIKAĴON"
+
+#. Translators: this message will appear after the usage string
+#. and before the list of options.
+#: gtk/gtk-launch.c:78
+msgid ""
+"Launch an application (specified by its desktop file name),\n"
+"optionally passing one or more URIs as arguments."
+msgstr ""
+"Lanĉi aplikaĵon (precizigitan per nomo de ĝia labortabla dosiernomo),\n"
+"elekteble donante unu aŭ pli da URI-oj kiel argumentojn."
+
+#: gtk/gtk-launch.c:90
+#, c-format
+msgid "Error parsing commandline options: %s\n"
+msgstr "Eraro dum analizo de komandliniaj elektebloj: %s\n"
+
+#: gtk/gtk-launch.c:92 gtk/gtk-launch.c:113
+#, c-format
+msgid "Try \"%s --help\" for more information."
+msgstr "Provu \"%s --help\" por pliaj informoj."
+
+#. Translators: the %s is the program name. This error message
+#. means the user is calling gtk-launch without any argument.
+#: gtk/gtk-launch.c:111
+#, c-format
+msgid "%s: missing application name"
+msgstr "%s: mankas nomo de aplikaĵo"
+
+#: gtk/gtk-launch.c:140
+#, c-format
+msgid "Creating AppInfo from id not supported on non unix operating systems"
+msgstr "Kreado de AppInfo el identigaĵo ne subtenata de neuniksaj operaciumoj"
+
+#. Translators: the first %s is the program name, the second one
+#. is the application name.
+#: gtk/gtk-launch.c:148
+#, c-format
+msgid "%s: no such application %s"
+msgstr "%s: neniu tia aplikaĵo %s"
+
+#. Translators: the first %s is the program name, the second one
+#. is the error message.
+#: gtk/gtk-launch.c:166
+#, c-format
+msgid "%s: error launching application: %s\n"
+msgstr "%s: eraro rulante aplikaĵo: %s\n"
+
+#: gtk/gtklinkbutton.c:374
msgid "Copy URL"
msgstr "Kopii la retejan adreson"
-#: gtk/gtklinkbutton.c:487
+#: gtk/gtklinkbutton.c:522
msgid "Invalid URI"
msgstr "Nevalida URI"
-#: gtk/gtklockbutton.c:278 gtk/ui/gtklockbutton.ui:22
+#: gtk/gtklockbutton.c:275 gtk/ui/gtklockbutton.ui:30
msgid "Lock"
msgstr "Ŝlosi"
-#: gtk/gtklockbutton.c:287 gtk/ui/gtklockbutton.ui:28
+#: gtk/gtklockbutton.c:284 gtk/ui/gtklockbutton.ui:37
msgid "Unlock"
msgstr "Malŝlosi"
-#: gtk/gtklockbutton.c:296
+#: gtk/gtklockbutton.c:293
msgid ""
"Dialog is unlocked.\n"
"Click to prevent further changes"
@@ -2465,7 +2796,7 @@ msgstr ""
"Dialogo estas malŝlosita.\n"
"Klaku por malhelpi pliajn ŝanĝojn"
-#: gtk/gtklockbutton.c:305
+#: gtk/gtklockbutton.c:302
msgid ""
"Dialog is locked.\n"
"Click to make changes"
@@ -2473,7 +2804,7 @@ msgstr ""
"Dialogo estas ŝlosita.\n"
"Klaku por fari ŝanĝojn"
-#: gtk/gtklockbutton.c:314
+#: gtk/gtklockbutton.c:311
msgid ""
"System policy prevents changes.\n"
"Contact your system administrator"
@@ -2481,127 +2812,112 @@ msgstr ""
"Sistempolitiko malhelpas ŝanĝojn.\n"
"Kontaktu vian sistem-administranton"
+#. Description of --gtk-module=MODULES in --help output
+#: gtk/gtkmain.c:464
+msgid "Load additional GTK+ modules"
+msgstr "Enlegi aldonajn modulojn de GTK+"
+
+#. Placeholder in --gtk-module=MODULES in --help output
+#: gtk/gtkmain.c:465
+msgid "MODULES"
+msgstr "MODULOJ"
+
+#. Description of --g-fatal-warnings in --help output
+#: gtk/gtkmain.c:467
+msgid "Make all warnings fatal"
+msgstr "Fari ĉiujn avertojn fatalaj"
+
+#. Description of --gtk-debug=FLAGS in --help output
+#: gtk/gtkmain.c:470
+msgid "GTK+ debugging flags to set"
+msgstr "Agordotaj cimo-flagoj de GTK+"
+
+#. Description of --gtk-no-debug=FLAGS in --help output
+#: gtk/gtkmain.c:473
+msgid "GTK+ debugging flags to unset"
+msgstr "Malagordotaj cimo-flagoj de GTK+"
+
+#: gtk/gtkmain.c:808 gtk/gtkmain.c:1002
+#, c-format
+msgid "Cannot open display: %s"
+msgstr "Ne povas malfermi ekranon: %s"
+
+#: gtk/gtkmain.c:920
+msgid "GTK+ Options"
+msgstr "Agordoj de GTK+"
+
+#: gtk/gtkmain.c:920
+msgid "Show GTK+ Options"
+msgstr "Montri agordojn de GTK+"
+
#. Translate to default:RTL if you want your widgets
#. * to be RTL, otherwise translate to default:LTR.
#. * Do *not* translate it to "predefinito:LTR", if it
#. * it isn't default:LTR or default:RTL it will not work
#.
-#: gtk/gtkmain.c:972
+#: gtk/gtkmain.c:1270
msgid "default:LTR"
msgstr "default:LTR"
-#. hour:minutes:seconds
-#. Translators: This is a time format, like "-9:05:02" for 9
-#. * hours, 5 minutes, and 2 seconds. You may change ":" to
-#. * the separator that your locale uses or use "%Id" instead
-#. * of "%d" if your locale uses localized digits.
-#.
-#: gtk/gtkmediacontrols.c:97
-#, c-format
-msgctxt "long time format"
-msgid "%d:%02d:%02d"
-msgstr "%d:%02d:%02d"
-
-#. -hour:minutes:seconds
-#. Translators: This is a time format, like "-9:05:02" for 9
-#. * hours, 5 minutes, and 2 seconds playback remaining. You may
-#. * change ":" to the separator that your locale uses or use
-#. * "%Id" instead of "%d" if your locale uses localized digits.
-#.
-#: gtk/gtkmediacontrols.c:105
-#, c-format
-msgctxt "long time format"
-msgid "-%d:%02d:%02d"
-msgstr "-%d:%02d:%02d"
-
-#. -minutes:seconds
-#. Translators: This is a time format, like "-5:02" for 5
-#. * minutes and 2 seconds playback remaining. You may change
-#. * ":" to the separator that your locale uses or use "%Id"
-#. * instead of "%d" if your locale uses localized digits.
-#.
-#: gtk/gtkmediacontrols.c:116
-#, c-format
-msgctxt "short time format"
-msgid "-%d:%02d"
-msgstr "-%d:%02d"
-
-#. minutes:seconds
-#. Translators: This is a time format, like "5:02" for 5
-#. * minutes and 2 seconds. You may change ":" to the
-#. * separator that your locale uses or use "%Id" instead of
-#. * "%d" if your locale uses localized digits.
-#.
-#: gtk/gtkmediacontrols.c:125
-#, c-format
-msgctxt "short time format"
-msgid "%d:%02d"
-msgstr "%d:%02d"
-
-#: gtk/gtkmessagedialog.c:817 gtk/gtkmessagedialog.c:835
-#: gtk/gtkprintbackend.c:658 gtk/gtkwindow.c:10849
-msgid "_OK"
-msgstr "_Bone"
-
-#: gtk/gtkmessagedialog.c:829
+#: gtk/gtkmessagedialog.c:956
msgid "_No"
msgstr "_Ne"
-#: gtk/gtkmessagedialog.c:830
+#: gtk/gtkmessagedialog.c:957
msgid "_Yes"
msgstr "_Jes"
-#: gtk/gtkmountoperation.c:544
+#: gtk/gtkmountoperation.c:546
msgid "Co_nnect"
msgstr "_Konekti"
-#: gtk/gtkmountoperation.c:611
+#: gtk/gtkmountoperation.c:622
msgid "Connect As"
msgstr "Konekti kiel"
-#: gtk/gtkmountoperation.c:620
+#: gtk/gtkmountoperation.c:631
msgid "_Anonymous"
msgstr "_Anonime"
-#: gtk/gtkmountoperation.c:628
+#: gtk/gtkmountoperation.c:640
msgid "Registered U_ser"
msgstr "Registrita _uzanto"
-#: gtk/gtkmountoperation.c:638
+#: gtk/gtkmountoperation.c:651
msgid "_Username"
msgstr "_Uzantonomo"
-#: gtk/gtkmountoperation.c:643
+#: gtk/gtkmountoperation.c:656
msgid "_Domain"
msgstr "_Domajno"
-#: gtk/gtkmountoperation.c:649
+#: gtk/gtkmountoperation.c:662
msgid "_Password"
msgstr "_Pasvorto"
-#: gtk/gtkmountoperation.c:671
+#: gtk/gtkmountoperation.c:684
msgid "Forget password _immediately"
msgstr "Forgesi pasvorton _tuj"
-#: gtk/gtkmountoperation.c:681
+#: gtk/gtkmountoperation.c:694
msgid "Remember password until you _logout"
msgstr "Memori pasvorton ĝis a_diaŭo"
-#: gtk/gtkmountoperation.c:691
+#: gtk/gtkmountoperation.c:704
msgid "Remember _forever"
msgstr "Memori porĉ_iame"
-#: gtk/gtkmountoperation.c:1080
+#: gtk/gtkmountoperation.c:1093
#, c-format
msgid "Unknown Application (PID %d)"
msgstr "Nekonata aplikaĵo (PID %d)"
-#: gtk/gtkmountoperation.c:1265
+#: gtk/gtkmountoperation.c:1278
#, c-format
msgid "Unable to end process"
msgstr "Ne povas fini procezon"
-#: gtk/gtkmountoperation.c:1300
+#: gtk/gtkmountoperation.c:1312
msgid "_End Process"
msgstr "_Fini procezon"
@@ -2611,57 +2927,49 @@ msgid "Cannot kill process with PID %d. Operation is not implemented."
msgstr "Procezo kun PID %d ne mortigeblas. Ago ne estas realigita."
#. translators: this string is a name for the 'less' command
-#: gtk/gtkmountoperation-x11.c:974
+#: gtk/gtkmountoperation-x11.c:954
msgid "Terminal Pager"
msgstr "Terminala tabulpaĝilo"
-#: gtk/gtkmountoperation-x11.c:975
+#: gtk/gtkmountoperation-x11.c:955
msgid "Top Command"
msgstr "Supra komando"
-#: gtk/gtkmountoperation-x11.c:976
+#: gtk/gtkmountoperation-x11.c:956
msgid "Bourne Again Shell"
-msgstr "Ŝelo \"Bourne Again\""
+msgstr "Ŝelo “Bourne Again”"
-#: gtk/gtkmountoperation-x11.c:977
+#: gtk/gtkmountoperation-x11.c:957
msgid "Bourne Shell"
-msgstr "Ŝelo \"Bourne\""
+msgstr "Ŝelo “Bourne”"
-#: gtk/gtkmountoperation-x11.c:978
+#: gtk/gtkmountoperation-x11.c:958
msgid "Z Shell"
-msgstr "Z-ŝelo"
+msgstr "Ŝelo “Z”"
-#: gtk/gtkmountoperation-x11.c:1075
+#: gtk/gtkmountoperation-x11.c:1055
#, c-format
msgid "Cannot end process with PID %d: %s"
msgstr "Procezo kun PID %d ne mortigeblas: %s"
-#: gtk/gtknomediafile.c:48
-msgid "GTK could not find a media module. Check your installation."
-msgstr "GTK ne sukcesis trovi aŭdvidaĵan modulon. Kontrolu vian instalaĵon."
-
-#: gtk/gtknotebook.c:4245 gtk/gtknotebook.c:6498
+#: gtk/gtknotebook.c:5123 gtk/gtknotebook.c:7401
#, c-format
msgid "Page %u"
msgstr "Paĝo %u"
-#: gtk/gtkpagesetup.c:608 gtk/gtkpapersize.c:946 gtk/gtkpapersize.c:986
+#: gtk/gtkpagesetup.c:652 gtk/gtkpapersize.c:986 gtk/gtkpapersize.c:1026
msgid "Not a valid page setup file"
msgstr "Nevalida paĝa agorda dosiero"
-#: gtk/gtkpagesetupunixdialog.c:197 gtk/ui/gtkassistant.ui:40
-msgid "_Apply"
-msgstr "_Apliki"
-
-#: gtk/gtkpagesetupunixdialog.c:203
+#: gtk/gtkpagesetupunixdialog.c:210
msgid "Any Printer"
msgstr "Iu ajn presilo"
-#: gtk/gtkpagesetupunixdialog.c:203
+#: gtk/gtkpagesetupunixdialog.c:210
msgid "For portable documents"
msgstr "Por porteblaj dokumentoj"
-#: gtk/gtkpagesetupunixdialog.c:822
+#: gtk/gtkpagesetupunixdialog.c:829
#, c-format
msgid ""
"Margins:\n"
@@ -2676,274 +2984,280 @@ msgstr ""
" Supra: %s %s\n"
" Suba: %s %s"
-#: gtk/gtkpagesetupunixdialog.c:871 gtk/gtkprintunixdialog.c:3366
+#: gtk/gtkpagesetupunixdialog.c:878 gtk/gtkprintunixdialog.c:3390
msgid "Manage Custom Sizes…"
msgstr "Agordi proprajn grandojn…"
-#: gtk/gtkpagesetupunixdialog.c:891 gtk/ui/gtkpagesetupunixdialog.ui:29
-#: gtk/ui/gtkprintunixdialog.ui:745
+#: gtk/gtkpagesetupunixdialog.c:900 gtk/ui/gtkpagesetupunixdialog.ui:31
+#: gtk/ui/gtkprintunixdialog.ui:854
msgid "Page Setup"
msgstr "Agordoj de paĝo"
-#: gtk/gtkpathbar.c:1354
+#: gtk/gtkpathbar.c:1572
msgid "File System Root"
msgstr "Dosiersistema radiko"
#. translators: %s is the name of a cloud provider for files
-#: gtk/gtkplacessidebar.c:976
+#: gtk/gtkplacessidebar.c:981
#, c-format
msgid "Open %s"
msgstr "Malfermi %s"
-#: gtk/gtkplacessidebar.c:1064
+#: gtk/gtkplacessidebar.c:1070 gtk/ui/gtkemojichooser.ui:197
msgid "Recent"
msgstr "Lasttempaj"
-#: gtk/gtkplacessidebar.c:1066
+#: gtk/gtkplacessidebar.c:1072
msgid "Recent files"
msgstr "Lasttempaj dosieroj"
-#: gtk/gtkplacessidebar.c:1075
+#: gtk/gtkplacessidebar.c:1082
msgid "Starred"
msgstr "Elstarigitaj"
-#: gtk/gtkplacessidebar.c:1077
-msgid "Starred files"
-msgstr "Elstarigitaj dosieroj"
+#. TODO: Rename to 'Starred files'
+#: gtk/gtkplacessidebar.c:1085
+msgid "Favorite files"
+msgstr "Ŝatataj dosieroj"
-#: gtk/gtkplacessidebar.c:1088
+#: gtk/gtkplacessidebar.c:1096
msgid "Open your personal folder"
msgstr "Malfermi vian personan dosierujon"
-#: gtk/gtkplacessidebar.c:1103
+#: gtk/gtkplacessidebar.c:1111
msgid "Open the contents of your desktop in a folder"
msgstr "Malfermi la enhavojn de via labortablo en dosierujo"
-#: gtk/gtkplacessidebar.c:1117
+#: gtk/gtkplacessidebar.c:1125
msgid "Enter Location"
msgstr "Enigi lokon"
-#: gtk/gtkplacessidebar.c:1119
+#: gtk/gtkplacessidebar.c:1127
msgid "Manually enter a location"
msgstr "Permane enigi lokon"
-#: gtk/gtkplacessidebar.c:1129
+#: gtk/gtkplacessidebar.c:1137
msgid "Trash"
msgstr "Rubujo"
-#: gtk/gtkplacessidebar.c:1131
+#: gtk/gtkplacessidebar.c:1139
msgid "Open the trash"
msgstr "Malfermi la rubujon"
-#: gtk/gtkplacessidebar.c:1242 gtk/gtkplacessidebar.c:1270
-#: gtk/gtkplacessidebar.c:1469
+#: gtk/gtkplacessidebar.c:1248 gtk/gtkplacessidebar.c:1276
+#: gtk/gtkplacessidebar.c:1484
#, c-format
msgid "Mount and open “%s”"
msgstr "Surmeti kaj malfermi “%s”"
-#: gtk/gtkplacessidebar.c:1358
+#: gtk/gtkplacessidebar.c:1364
msgid "Open the contents of the file system"
msgstr "Malfermi la enhavojn de la dosiersistemo"
-#: gtk/gtkplacessidebar.c:1444
+#: gtk/gtkplacessidebar.c:1448
msgid "New bookmark"
msgstr "Nova legosigno"
-#: gtk/gtkplacessidebar.c:1446
+#: gtk/gtkplacessidebar.c:1450
msgid "Add a new bookmark"
msgstr "Aldoni novan legosignon"
-#: gtk/gtkplacessidebar.c:1514
+#: gtk/gtkplacessidebar.c:1463
+msgid "Connect to Server"
+msgstr "Konektiĝi al servilo"
+
+#: gtk/gtkplacessidebar.c:1465
+msgid "Connect to a network server address"
+msgstr "Konektiĝi al reta servila adreso"
+
+#: gtk/gtkplacessidebar.c:1527
msgid "Other Locations"
msgstr "Aliaj lokoj"
-#: gtk/gtkplacessidebar.c:1515
+#: gtk/gtkplacessidebar.c:1528
msgid "Show other locations"
msgstr "Montri aliajn lokojn"
#. Adjust start/stop items to reflect the type of the drive
-#: gtk/gtkplacessidebar.c:2276 gtk/gtkplacessidebar.c:3651
+#: gtk/gtkplacessidebar.c:2324 gtk/gtkplacessidebar.c:3703
msgid "_Start"
msgstr "_Komenci"
-#: gtk/gtkplacessidebar.c:2277 gtk/gtkplacessidebar.c:3652
+#: gtk/gtkplacessidebar.c:2325 gtk/gtkplacessidebar.c:3704
msgid "_Stop"
msgstr "_Halti"
#. start() for type G_DRIVE_START_STOP_TYPE_SHUTDOWN is normally not used
-#: gtk/gtkplacessidebar.c:2284
+#: gtk/gtkplacessidebar.c:2332
msgid "_Power On"
msgstr "_Startigi"
-#: gtk/gtkplacessidebar.c:2285
+#: gtk/gtkplacessidebar.c:2333
msgid "_Safely Remove Drive"
msgstr "Sekure _eligi datumujon"
-#: gtk/gtkplacessidebar.c:2289
+#: gtk/gtkplacessidebar.c:2337
msgid "_Connect Drive"
msgstr "_Konekti datumujon"
-#: gtk/gtkplacessidebar.c:2290
+#: gtk/gtkplacessidebar.c:2338
msgid "_Disconnect Drive"
msgstr "_Malkonekti datumujon"
-#: gtk/gtkplacessidebar.c:2294
+#: gtk/gtkplacessidebar.c:2342
msgid "_Start Multi-disk Device"
msgstr "_Malhaltigi plurdiskan aparaton"
-#: gtk/gtkplacessidebar.c:2295
+#: gtk/gtkplacessidebar.c:2343
msgid "_Stop Multi-disk Device"
msgstr "_Haltigi plurdiskan aparaton"
#. stop() for type G_DRIVE_START_STOP_TYPE_PASSWORD is normally not used
-#: gtk/gtkplacessidebar.c:2300
+#: gtk/gtkplacessidebar.c:2348
msgid "_Unlock Device"
msgstr "_Malŝlosi aparaton"
-#: gtk/gtkplacessidebar.c:2301
+#: gtk/gtkplacessidebar.c:2349
msgid "_Lock Device"
msgstr "Ŝ_losi aparaton"
-#: gtk/gtkplacessidebar.c:2339 gtk/gtkplacessidebar.c:3333
+#: gtk/gtkplacessidebar.c:2387 gtk/gtkplacessidebar.c:3384
#, c-format
msgid "Unable to start “%s”"
msgstr "Ne povas startigi “%s”"
-#. Translators: This means that unlocking an encrypted storage
-#. * device failed. %s is the name of the device.
-#.
-#: gtk/gtkplacessidebar.c:2375
+#: gtk/gtkplacessidebar.c:2420
#, c-format
msgid "Error unlocking “%s”"
-msgstr "Eraro okazis dum malŝloso de “%s”"
+msgstr "Eraro dum malŝlosi “%s”"
-#: gtk/gtkplacessidebar.c:2377
+#: gtk/gtkplacessidebar.c:2422
#, c-format
msgid "Unable to access “%s”"
msgstr "Ne povas atingi “%s”"
-#: gtk/gtkplacessidebar.c:2606
+#: gtk/gtkplacessidebar.c:2656
msgid "This name is already taken"
msgstr "La nomo jam estas uzata"
-#: gtk/gtkplacessidebar.c:2675 gtk/inspector/actions.ui:40
-#: gtk/inspector/css-node-tree.ui:35 gtk/ui/gtkfilechooserwidget.ui:179
-#: gtk/ui/gtkfilechooserwidget.ui:468
+#: gtk/gtkplacessidebar.c:2725 gtk/inspector/actions.ui:43
+#: gtk/inspector/css-node-tree.ui:39 gtk/inspector/object-tree.ui:110
+#: gtk/ui/gtkfilechooserwidget.ui:189 gtk/ui/gtkfilechooserwidget.ui:500
msgid "Name"
msgstr "Nomo"
-#: gtk/gtkplacessidebar.c:2874
+#: gtk/gtkplacessidebar.c:2925
#, c-format
msgid "Unable to unmount “%s”"
msgstr "Ne povas demeti “%s”"
-#: gtk/gtkplacessidebar.c:3050
+#: gtk/gtkplacessidebar.c:3101
#, c-format
msgid "Unable to stop “%s”"
msgstr "Ne povas haltigi “%s”"
-#: gtk/gtkplacessidebar.c:3079
+#: gtk/gtkplacessidebar.c:3130
#, c-format
msgid "Unable to eject “%s”"
msgstr "Ne povas eligi “%s”"
-#: gtk/gtkplacessidebar.c:3108 gtk/gtkplacessidebar.c:3137
+#: gtk/gtkplacessidebar.c:3159 gtk/gtkplacessidebar.c:3188
#, c-format
msgid "Unable to eject %s"
msgstr "Ne povas eligi %s"
-#: gtk/gtkplacessidebar.c:3285
+#: gtk/gtkplacessidebar.c:3336
#, c-format
msgid "Unable to poll “%s” for media changes"
msgstr "Ne povas enketi “%s” pri aŭdvidaĵaj ŝanĝoj"
-#: gtk/gtkplacessidebar.c:3568 gtk/gtkplacessidebar.c:3634
-#: gtk/gtkplacesview.c:1620
+#: gtk/gtkplacessidebar.c:3620 gtk/gtkplacessidebar.c:3686
+#: gtk/gtkplacesview.c:1643
msgid "Open in New _Tab"
msgstr "Malfermi en nova lange_to"
-#: gtk/gtkplacessidebar.c:3574 gtk/gtkplacessidebar.c:3637
-#: gtk/gtkplacesview.c:1630
+#: gtk/gtkplacessidebar.c:3626 gtk/gtkplacessidebar.c:3689
+#: gtk/gtkplacesview.c:1654
msgid "Open in New _Window"
msgstr "Malfermi en nova _fenestro"
-#: gtk/gtkplacessidebar.c:3641
+#: gtk/gtkplacessidebar.c:3693
msgid "_Add Bookmark"
msgstr "_Aldoni legosignon"
-#: gtk/gtkplacessidebar.c:3642
+#: gtk/gtkplacessidebar.c:3694
msgid "_Remove"
msgstr "Fo_rigi"
-#: gtk/gtkplacessidebar.c:3643
+#: gtk/gtkplacessidebar.c:3695
msgid "Rename…"
msgstr "Alinomi…"
-#: gtk/gtkplacessidebar.c:3647 gtk/gtkplacesview.c:1661
+#: gtk/gtkplacessidebar.c:3699 gtk/gtkplacesview.c:1688
msgid "_Mount"
msgstr "Sur_meti"
-#: gtk/gtkplacessidebar.c:3648 gtk/gtkplacesview.c:1652
+#: gtk/gtkplacessidebar.c:3700 gtk/gtkplacesview.c:1678
msgid "_Unmount"
msgstr "_Demeti"
-#: gtk/gtkplacessidebar.c:3649
+#: gtk/gtkplacessidebar.c:3701
msgid "_Eject"
msgstr "_Eligi"
-#: gtk/gtkplacessidebar.c:3650
+#: gtk/gtkplacessidebar.c:3702
msgid "_Detect Media"
msgstr "Malkovri aŭd_vidaĵojn"
-#: gtk/gtkplacessidebar.c:4144 gtk/gtkplacesview.c:1099
+#: gtk/gtkplacessidebar.c:4148 gtk/gtkplacesview.c:1121
msgid "Computer"
msgstr "Komputilo"
-#: gtk/gtkplacesview.c:875
+#: gtk/gtkplacesview.c:897
msgid "Searching for network locations"
-msgstr "Serĉanta retlokojn"
+msgstr "Serĉante retlokojn"
-#: gtk/gtkplacesview.c:882
+#: gtk/gtkplacesview.c:904
msgid "No network locations found"
msgstr "Neniuj retlokoj troviĝis"
#. if it wasn't cancelled show a dialog
-#: gtk/gtkplacesview.c:1209 gtk/gtkplacesview.c:1284
+#: gtk/gtkplacesview.c:1231 gtk/gtkplacesview.c:1306
msgid "Unable to access location"
msgstr "Ne povas atingi lokon"
#. Restore from Cancel to Connect
-#: gtk/gtkplacesview.c:1227 gtk/ui/gtkplacesview.ui:406
+#: gtk/gtkplacesview.c:1249 gtk/ui/gtkplacesview.ui:449
msgid "Con_nect"
msgstr "_Konekti"
#. if it wasn't cancelled show a dialog
-#: gtk/gtkplacesview.c:1347
+#: gtk/gtkplacesview.c:1369
msgid "Unable to unmount volume"
msgstr "Ne povas demeti portilon"
#. Allow to cancel the operation
-#: gtk/gtkplacesview.c:1448
+#: gtk/gtkplacesview.c:1470
msgid "Cance_l"
msgstr "_Nuligi"
-#: gtk/gtkplacesview.c:1652
+#: gtk/gtkplacesview.c:1678
msgid "_Disconnect"
msgstr "_Malkonekti"
-#: gtk/gtkplacesview.c:1661
+#: gtk/gtkplacesview.c:1688
msgid "_Connect"
msgstr "_Konekti"
-#: gtk/gtkplacesview.c:1783
+#: gtk/gtkplacesview.c:1829
msgid "Unable to get remote server location"
msgstr "Ne povas akiri lokon de fora servilo"
-#: gtk/gtkplacesview.c:1970 gtk/gtkplacesview.c:1979
+#: gtk/gtkplacesview.c:2017 gtk/gtkplacesview.c:2026
msgid "Networks"
msgstr "Retoj"
-#: gtk/gtkplacesview.c:1970 gtk/gtkplacesview.c:1979
+#: gtk/gtkplacesview.c:2017 gtk/gtkplacesview.c:2026
msgid "On This Computer"
msgstr "En ĉi tiu komputilo"
@@ -2951,27 +3265,27 @@ msgstr "En ĉi tiu komputilo"
#. * should be based on the free space available.
#. * i.e. 1 GB / 24 GB available.
#.
-#: gtk/gtkplacesviewrow.c:133
+#: gtk/gtkplacesviewrow.c:134
#, c-format
msgid "%s / %s available"
msgid_plural "%s / %s available"
msgstr[0] "%s / %s ne disponebla"
msgstr[1] "%s / %s ne disponeblaj"
-#: gtk/gtkplacesviewrow.c:480
+#: gtk/gtkplacesviewrow.c:481
msgid "Disconnect"
msgstr "Malkonekti"
-#: gtk/gtkplacesviewrow.c:480 gtk/ui/gtkplacesviewrow.ui:62
-#: gtk/ui/gtksidebarrow.ui:51
+#: gtk/gtkplacesviewrow.c:481 gtk/ui/gtkplacesviewrow.ui:72
+#: gtk/ui/gtksidebarrow.ui:61
msgid "Unmount"
msgstr "Demeti"
-#: gtk/gtkprintbackend.c:656
+#: gtk/gtkprintbackend.c:780
msgid "Authentication"
msgstr "Aŭtentokontrolo"
-#: gtk/gtkprintbackend.c:730
+#: gtk/gtkprintbackend.c:851
msgid "_Remember password"
msgstr "_Memori pasvorton"
@@ -2979,12 +3293,7 @@ msgstr "_Memori pasvorton"
msgid "Select a filename"
msgstr "Elekti dosiernomon"
-#: gtk/gtkprinteroptionwidget.c:546 gtk/ui/gtkappchooserdialog.ui:54
-#: gtk/ui/gtkcolorchooserdialog.ui:37 gtk/ui/gtkfontchooserdialog.ui:31
-msgid "_Select"
-msgstr "_Elekti"
-
-#: gtk/gtkprinteroptionwidget.c:775
+#: gtk/gtkprinteroptionwidget.c:767
msgid "Not available"
msgstr "Neatingebla"
@@ -2992,157 +3301,157 @@ msgstr "Neatingebla"
#. * jobs. %s gets replaced by the application name, %d gets replaced
#. * by the job number.
#.
-#: gtk/gtkprintoperation.c:257
+#: gtk/gtkprintoperation.c:259
#, c-format
msgid "%s job #%d"
msgstr "%s tasko #%d"
-#: gtk/gtkprintoperation.c:1721
+#: gtk/gtkprintoperation.c:1802
msgctxt "print operation status"
msgid "Initial state"
msgstr "Komenca stato"
-#: gtk/gtkprintoperation.c:1722
+#: gtk/gtkprintoperation.c:1803
msgctxt "print operation status"
msgid "Preparing to print"
-msgstr "Pretiganta preson"
+msgstr "Pretigante preson"
-#: gtk/gtkprintoperation.c:1723
+#: gtk/gtkprintoperation.c:1804
msgctxt "print operation status"
msgid "Generating data"
-msgstr "Generanta datumojn"
+msgstr "Generante datumojn"
-#: gtk/gtkprintoperation.c:1724
+#: gtk/gtkprintoperation.c:1805
msgctxt "print operation status"
msgid "Sending data"
-msgstr "Sendanta datumojn"
+msgstr "Sendante datumojn"
-#: gtk/gtkprintoperation.c:1725
+#: gtk/gtkprintoperation.c:1806
msgctxt "print operation status"
msgid "Waiting"
-msgstr "Atendanta"
+msgstr "Atendante"
-#: gtk/gtkprintoperation.c:1726
+#: gtk/gtkprintoperation.c:1807
msgctxt "print operation status"
msgid "Blocking on issue"
-msgstr "Haltinta pro problemo"
+msgstr "Haltinte pro problemo"
-#: gtk/gtkprintoperation.c:1727
+#: gtk/gtkprintoperation.c:1808
msgctxt "print operation status"
msgid "Printing"
-msgstr "Presanta"
+msgstr "Presante"
-#: gtk/gtkprintoperation.c:1728
+#: gtk/gtkprintoperation.c:1809
msgctxt "print operation status"
msgid "Finished"
-msgstr "Fininta"
+msgstr "Finita"
-#: gtk/gtkprintoperation.c:1729
+#: gtk/gtkprintoperation.c:1810
msgctxt "print operation status"
msgid "Finished with error"
-msgstr "Fininta kun eraro"
+msgstr "Finita kun eraro"
-#: gtk/gtkprintoperation.c:2279
+#: gtk/gtkprintoperation.c:2374
#, c-format
msgid "Preparing %d"
-msgstr "Preparanta %d"
+msgstr "Preparante %d"
-#: gtk/gtkprintoperation.c:2281 gtk/gtkprintoperation.c:2902
+#: gtk/gtkprintoperation.c:2376 gtk/gtkprintoperation.c:3005
#, c-format
msgid "Preparing"
-msgstr "Preparanta"
+msgstr "Preparante"
-#: gtk/gtkprintoperation.c:2284
+#: gtk/gtkprintoperation.c:2379
#, c-format
msgid "Printing %d"
-msgstr "Presanta %d"
+msgstr "Presante %d"
-#: gtk/gtkprintoperation.c:2933
+#: gtk/gtkprintoperation.c:3036
#, c-format
msgid "Error creating print preview"
msgstr "Eraro kreante presan antaŭvidon"
-#: gtk/gtkprintoperation.c:2936
+#: gtk/gtkprintoperation.c:3039
#, c-format
msgid "The most probable reason is that a temporary file could not be created."
msgstr "La plej verŝajna kialo estas, ke provizora dosiero ne kreeblis."
#. window
-#: gtk/gtkprintoperation-portal.c:236 gtk/gtkprintoperation-portal.c:546
-#: gtk/gtkprintoperation-portal.c:615 gtk/gtkprintunixdialog.c:3386
+#: gtk/gtkprintoperation-portal.c:231 gtk/gtkprintoperation-portal.c:542
+#: gtk/gtkprintoperation-portal.c:611 gtk/gtkprintunixdialog.c:3412
msgid "Print"
msgstr "Presi"
-#: gtk/gtkprintoperation-win32.c:633
+#: gtk/gtkprintoperation-win32.c:617
msgid "Printer offline"
msgstr "Presilo estas senkonekta"
-#: gtk/gtkprintoperation-win32.c:635
+#: gtk/gtkprintoperation-win32.c:619
msgid "Out of paper"
msgstr "Mankas papero"
#. Translators: this is a printer status.
-#: gtk/gtkprintoperation-win32.c:637
-#: modules/printbackends/gtkprintbackendcups.c:2582
+#: gtk/gtkprintoperation-win32.c:621
+#: modules/printbackends/cups/gtkprintbackendcups.c:2603
msgid "Paused"
msgstr "Paŭzigita"
-#: gtk/gtkprintoperation-win32.c:639
+#: gtk/gtkprintoperation-win32.c:623
msgid "Need user intervention"
msgstr "Bezonas agojn de uzanto"
-#: gtk/gtkprintoperation-win32.c:739
+#: gtk/gtkprintoperation-win32.c:723
msgid "Custom size"
msgstr "Propra grando"
-#: gtk/gtkprintoperation-win32.c:1571
+#: gtk/gtkprintoperation-win32.c:1545
msgid "No printer found"
msgstr "Neniu presilo trovita"
-#: gtk/gtkprintoperation-win32.c:1598
+#: gtk/gtkprintoperation-win32.c:1572
msgid "Invalid argument to CreateDC"
msgstr "Nevalida argumento por CreateDC"
-#: gtk/gtkprintoperation-win32.c:1634 gtk/gtkprintoperation-win32.c:1880
+#: gtk/gtkprintoperation-win32.c:1608 gtk/gtkprintoperation-win32.c:1854
msgid "Error from StartDoc"
msgstr "Eraro el StartDoc"
-#: gtk/gtkprintoperation-win32.c:1735 gtk/gtkprintoperation-win32.c:1758
-#: gtk/gtkprintoperation-win32.c:1806
+#: gtk/gtkprintoperation-win32.c:1709 gtk/gtkprintoperation-win32.c:1732
+#: gtk/gtkprintoperation-win32.c:1780
msgid "Not enough free memory"
msgstr "Ne sufiĉas libera memoro"
-#: gtk/gtkprintoperation-win32.c:1811
+#: gtk/gtkprintoperation-win32.c:1785
msgid "Invalid argument to PrintDlgEx"
msgstr "Nevalida argumento por PrintDlgEx"
-#: gtk/gtkprintoperation-win32.c:1816
+#: gtk/gtkprintoperation-win32.c:1790
msgid "Invalid pointer to PrintDlgEx"
msgstr "Nevalida montrilo al PrinDlgEx"
-#: gtk/gtkprintoperation-win32.c:1821
+#: gtk/gtkprintoperation-win32.c:1795
msgid "Invalid handle to PrintDlgEx"
msgstr "Malvalida traktilo por PrintDlgEx"
-#: gtk/gtkprintoperation-win32.c:1826
+#: gtk/gtkprintoperation-win32.c:1800
msgid "Unspecified error"
msgstr "Nekonata eraro"
-#: gtk/gtkprintunixdialog.c:726
+#: gtk/gtkprintunixdialog.c:745
msgid "Pre_view"
msgstr "As_pekto"
-#: gtk/gtkprintunixdialog.c:728
+#: gtk/gtkprintunixdialog.c:747
msgid "_Print"
msgstr "_Presi"
-#: gtk/gtkprintunixdialog.c:851
+#: gtk/gtkprintunixdialog.c:860
msgid "Getting printer information failed"
msgstr "Akirado de presilaj informoj malsukcesis"
-#: gtk/gtkprintunixdialog.c:2060
+#: gtk/gtkprintunixdialog.c:2070
msgid "Getting printer information…"
-msgstr "Akiranta presilajn informojn…"
+msgstr "Akirante presilajn informojn…"
#. Translators: These strings name the possible arrangements of
#. * multiple pages on a sheet when printing (same as in gtkprintbackendcups.c)
@@ -3150,91 +3459,172 @@ msgstr "Akiranta presilajn informojn…"
#. Translators: These strings name the possible arrangements of
#. * multiple pages on a sheet when printing
#.
-#: gtk/gtkprintunixdialog.c:3095
-#: modules/printbackends/gtkprintbackendcups.c:5393
+#: gtk/gtkprintunixdialog.c:3119
+#: modules/printbackends/cups/gtkprintbackendcups.c:5441
msgid "Left to right, top to bottom"
msgstr "De maldekstre dekstren, de supre malsupren"
-#: gtk/gtkprintunixdialog.c:3095
-#: modules/printbackends/gtkprintbackendcups.c:5393
+#: gtk/gtkprintunixdialog.c:3119
+#: modules/printbackends/cups/gtkprintbackendcups.c:5441
msgid "Left to right, bottom to top"
msgstr "De maldekstre dekstren, de malsupre supren"
-#: gtk/gtkprintunixdialog.c:3096
-#: modules/printbackends/gtkprintbackendcups.c:5394
+#: gtk/gtkprintunixdialog.c:3120
+#: modules/printbackends/cups/gtkprintbackendcups.c:5442
msgid "Right to left, top to bottom"
msgstr "De dekstre maldekstren, de supre malsupren"
-#: gtk/gtkprintunixdialog.c:3096
-#: modules/printbackends/gtkprintbackendcups.c:5394
+#: gtk/gtkprintunixdialog.c:3120
+#: modules/printbackends/cups/gtkprintbackendcups.c:5442
msgid "Right to left, bottom to top"
msgstr "De dekstre maldekstren, de subo supren"
-#: gtk/gtkprintunixdialog.c:3097
-#: modules/printbackends/gtkprintbackendcups.c:5395
+#: gtk/gtkprintunixdialog.c:3121
+#: modules/printbackends/cups/gtkprintbackendcups.c:5443
msgid "Top to bottom, left to right"
msgstr "De supre malsupren, de maldekstre dekstren"
-#: gtk/gtkprintunixdialog.c:3097
-#: modules/printbackends/gtkprintbackendcups.c:5395
+#: gtk/gtkprintunixdialog.c:3121
+#: modules/printbackends/cups/gtkprintbackendcups.c:5443
msgid "Top to bottom, right to left"
msgstr "De supre malsupren, de dekstre maldekstren"
-#: gtk/gtkprintunixdialog.c:3098
-#: modules/printbackends/gtkprintbackendcups.c:5396
+#: gtk/gtkprintunixdialog.c:3122
+#: modules/printbackends/cups/gtkprintbackendcups.c:5444
msgid "Bottom to top, left to right"
msgstr "De malsupre supren, de maldekstre dekstren"
-#: gtk/gtkprintunixdialog.c:3098
-#: modules/printbackends/gtkprintbackendcups.c:5396
+#: gtk/gtkprintunixdialog.c:3122
+#: modules/printbackends/cups/gtkprintbackendcups.c:5444
msgid "Bottom to top, right to left"
msgstr "De malsupre supren, de dekstre maldekstren"
-#: gtk/gtkprintunixdialog.c:3102 gtk/gtkprintunixdialog.c:3115
+#: gtk/gtkprintunixdialog.c:3126 gtk/gtkprintunixdialog.c:3139
msgid "Page Ordering"
msgstr "Ordigo de paĝoj"
-#: gtk/gtkprintunixdialog.c:3131
+#: gtk/gtkprintunixdialog.c:3155
msgid "Left to right"
msgstr "De maldekstre dekstren"
-#: gtk/gtkprintunixdialog.c:3132
+#: gtk/gtkprintunixdialog.c:3156
msgid "Right to left"
msgstr "De dekstre maldekstren"
-#: gtk/gtkprintunixdialog.c:3144
+#: gtk/gtkprintunixdialog.c:3168
msgid "Top to bottom"
msgstr "De supre malsupren"
-#: gtk/gtkprintunixdialog.c:3145
+#: gtk/gtkprintunixdialog.c:3169
msgid "Bottom to top"
msgstr "De malsupre supren"
-#: gtk/gtkprogressbar.c:615
+#: gtk/gtkprogressbar.c:729
#, c-format
msgctxt "progress bar label"
msgid "%.0f %%"
msgstr "%.0f %%"
-#: gtk/gtkrecentmanager.c:1033 gtk/gtkrecentmanager.c:1046
-#: gtk/gtkrecentmanager.c:1179 gtk/gtkrecentmanager.c:1189
-#: gtk/gtkrecentmanager.c:1239 gtk/gtkrecentmanager.c:1248
+#: gtk/gtkrecentchooserdefault.c:1075 gtk/gtkrecentchooserdefault.c:1112
+#, c-format
+msgid "No item for URI '%s' found"
+msgstr "Neniu ero trovita por URI '%s'"
+
+#: gtk/gtkrecentchooserdefault.c:1239
+msgid "Untitled filter"
+msgstr "Sentitola filtrilo"
+
+#: gtk/gtkrecentchooserdefault.c:1561
+msgid "Could not remove item"
+msgstr "Ne povis forviŝi elementon"
+
+#: gtk/gtkrecentchooserdefault.c:1605
+msgid "Could not clear list"
+msgstr "Ne povis vakigi liston"
+
+#: gtk/gtkrecentchooserdefault.c:1689
+msgid "Copy _Location"
+msgstr "Kopii _lokon"
+
+#: gtk/gtkrecentchooserdefault.c:1700
+msgid "_Remove From List"
+msgstr "_Forigi de la listo"
+
+#: gtk/gtkrecentchooserdefault.c:1707
+msgid "_Clear List"
+msgstr "_Vakigi la liston"
+
+#: gtk/gtkrecentchooserdefault.c:1719
+msgid "Show _Private Resources"
+msgstr "Montri _privatajn risurcojn"
+
+#. we create a placeholder menuitem, to be used in case
+#. * the menu is empty. this placeholder will stay around
+#. * for the entire lifetime of the menu, and we just hide it
+#. * when it's not used. we have to do this, and do it here,
+#. * because we need a marker for the beginning of the recent
+#. * items list, so that we can insert the new items at the
+#. * right place when idly populating the menu in case the
+#. * user appended or prepended custom menu items to the
+#. * recent chooser menu widget.
+#.
+#: gtk/gtkrecentchoosermenu.c:343
+msgid "No items found"
+msgstr "Neniu ero troviĝis"
+
+#: gtk/gtkrecentchoosermenu.c:534 gtk/gtkrecentchoosermenu.c:590
+#, c-format
+msgid "No recently used resource found with URI '%s'"
+msgstr "Neniu freŝdate uzita risurcon troviĝis kun URI '%s'"
+
+#: gtk/gtkrecentchoosermenu.c:789
+#, c-format
+msgid "Open '%s'"
+msgstr "Malfermi '%s'"
+
+#: gtk/gtkrecentchoosermenu.c:819
+msgid "Unknown item"
+msgstr "Nekonata ero"
+
+#. This is the label format that is used for the first 10 items
+#. * in a recent files menu. The %d is the number of the item,
+#. * the %s is the name of the item. Please keep the _ in front
+#. * of the number to give these menu items a mnemonic.
+#.
+#: gtk/gtkrecentchoosermenu.c:830
+#, c-format
+msgctxt "recent menu label"
+msgid "_%d. %s"
+msgstr "_%d. %s"
+
+#. This is the format that is used for items in a recent files menu.
+#. * The %d is the number of the item, the %s is the name of the item.
+#.
+#: gtk/gtkrecentchoosermenu.c:835
#, c-format
-msgid "Unable to find an item with URI “%s”"
-msgstr "Ne povas trovi eron kun URI “%s”"
+msgctxt "recent menu label"
+msgid "%d. %s"
+msgstr "%d. %s"
-#: gtk/gtkrecentmanager.c:1263
+#: gtk/gtkrecentmanager.c:1053 gtk/gtkrecentmanager.c:1066
+#: gtk/gtkrecentmanager.c:1203 gtk/gtkrecentmanager.c:1213
+#: gtk/gtkrecentmanager.c:1265 gtk/gtkrecentmanager.c:1274
#, c-format
-msgid "Unable to move the item with URI “%s” to “%s”"
-msgstr "Ne povas movi la eron kun URI “%s” al “%s”"
+msgid "Unable to find an item with URI '%s'"
+msgstr "Ne povas trovi eron kun URI '%s'"
-#: gtk/gtkrecentmanager.c:2348
+#: gtk/gtkrecentmanager.c:1289
#, c-format
-msgid "No registered application with name “%s” for item with URI “%s” found"
+msgid "Unable to move the item with URI '%s' to '%s'"
+msgstr "Ne povas movi la eron kun URI '%s' al '%s'"
+
+#: gtk/gtkrecentmanager.c:2507
+#, c-format
+msgid "No registered application with name '%s' for item with URI '%s' found"
msgstr ""
-"Neniu registrita aplikaĵo kun la nomo “%s” por ero kun URI “%s” troviĝis"
+"Neniu registrita aplikaĵo kun la nomo '%s' por ero kun URI '%s' troviĝis"
-#: gtk/gtksearchentry.c:368
+#: gtk/gtksearchentry.c:371
msgid "Search"
msgstr "Serĉi"
@@ -3258,64 +3648,53 @@ msgctxt "keyboard side marker"
msgid "R"
msgstr "D"
-#: gtk/gtkshortcutssection.c:442
+#: gtk/gtkshortcutssection.c:451
msgid "_Show All"
msgstr "_Montri ĉion"
-#: gtk/gtkshortcutsshortcut.c:141
+#: gtk/gtkshortcutsshortcut.c:136
msgid "Two finger pinch"
msgstr "Dufingra pinĉo"
-#: gtk/gtkshortcutsshortcut.c:145
+#: gtk/gtkshortcutsshortcut.c:140
msgid "Two finger stretch"
msgstr "Dufingra malpinĉo"
-#: gtk/gtkshortcutsshortcut.c:149
+#: gtk/gtkshortcutsshortcut.c:144
msgid "Rotate clockwise"
msgstr "Turni laŭhorloĝe"
-#: gtk/gtkshortcutsshortcut.c:153
+#: gtk/gtkshortcutsshortcut.c:148
msgid "Rotate counterclockwise"
msgstr "Turni kontraŭhorloĝe"
-#: gtk/gtkshortcutsshortcut.c:157
+#: gtk/gtkshortcutsshortcut.c:152
msgid "Two finger swipe left"
msgstr "Dufingra ŝovo maldekstren"
-#: gtk/gtkshortcutsshortcut.c:161
+#: gtk/gtkshortcutsshortcut.c:156
msgid "Two finger swipe right"
msgstr "Dufingra ŝovo dekstren"
-#: gtk/gtkshortcutsshortcut.c:165
-msgid "Swipe left"
-msgstr "Ŝovo maldekstren"
-
-#: gtk/gtkshortcutsshortcut.c:169
-msgid "Swipe right"
-msgstr "Ŝovo dekstren"
-
-#. Translators: This is the window title for the shortcuts window in normal mode
-#: gtk/gtkshortcutswindow.c:933
+#: gtk/gtkshortcutswindow.c:929
msgid "Shortcuts"
msgstr "Fulmoklavoj"
-#. Translators: This is the window title for the shortcuts window in search mode
-#: gtk/gtkshortcutswindow.c:938
+#: gtk/gtkshortcutswindow.c:934
msgid "Search Results"
msgstr "Serĉrezultoj"
-#. Translators: This is placeholder text for the search entry in the shortcuts window
-#: gtk/gtkshortcutswindow.c:982
+#: gtk/gtkshortcutswindow.c:988
msgid "Search Shortcuts"
msgstr "Serĉaj fulmoklavoj"
-#: gtk/gtkshortcutswindow.c:1039 gtk/ui/gtkemojichooser.ui:320
-#: gtk/ui/gtkfilechooserwidget.ui:293
+#: gtk/gtkshortcutswindow.c:1053 gtk/ui/gtkemojichooser.ui:376
+#: gtk/ui/gtkfilechooserwidget.ui:310
msgid "No Results Found"
msgstr "Neniu elemento troviĝis"
-#: gtk/gtkshortcutswindow.c:1045 gtk/ui/gtkemojichooser.ui:333
-#: gtk/ui/gtkfilechooserwidget.ui:306 gtk/ui/gtkplacesview.ui:367
+#: gtk/gtkshortcutswindow.c:1060 gtk/ui/gtkemojichooser.ui:390
+#: gtk/ui/gtkfilechooserwidget.ui:324 gtk/ui/gtkplacesview.ui:406
msgid "Try a different search"
msgstr "Provu alian serĉon"
@@ -3323,7 +3702,7 @@ msgstr "Provu alian serĉon"
#. * glyphs then use MEDIUM VERTICAL BAR (U+2759) as the text for
#. * the state
#.
-#: gtk/gtkswitch.c:648
+#: gtk/gtkswitch.c:306
msgctxt "switch"
msgid "ON"
msgstr "❙"
@@ -3331,60 +3710,176 @@ msgstr "❙"
#. Translators: if the "off" state label requires more than three
#. * glyphs then use WHITE CIRCLE (U+25CB) as the text for the state
#.
-#: gtk/gtkswitch.c:654
+#: gtk/gtkswitch.c:313
msgctxt "switch"
msgid "OFF"
msgstr "○"
-#: gtk/gtktextutil.c:55
+#: gtk/gtktextbufferrichtext.c:648
+#, c-format
+msgid "Unknown error when trying to deserialize %s"
+msgstr "Nekonata eraro provante malseriigon de %s"
+
+#: gtk/gtktextbufferrichtext.c:707
+#, c-format
+msgid "No deserialize function found for format %s"
+msgstr "Neniu malseriiga funkcio trovita por formo %s"
+
+#: gtk/gtktextbufferserialize.c:784 gtk/gtktextbufferserialize.c:810
+#, c-format
+msgid "Both \"id\" and \"name\" were found on the <%s> element"
+msgstr "Ambaŭ \"id\" kaj \"name\" troviĝis ĉe la ero <%s>"
+
+#: gtk/gtktextbufferserialize.c:794 gtk/gtktextbufferserialize.c:820
+#, c-format
+msgid "The attribute \"%s\" was found twice on the <%s> element"
+msgstr "La atributo \"%s\" troviĝis dufoje ĉe la ero <%s>"
+
+#: gtk/gtktextbufferserialize.c:836
+#, c-format
+msgid "<%s> element has invalid ID \"%s\""
+msgstr "Ero <%s> havas nevalidan identigaĵon \"%s\""
+
+#: gtk/gtktextbufferserialize.c:846
+#, c-format
+msgid "<%s> element has neither a \"name\" nor an \"id\" attribute"
+msgstr "Ero <%s> havas atributojn nek \"name\" nek \"id\""
+
+#: gtk/gtktextbufferserialize.c:933
+#, c-format
+msgid "Attribute \"%s\" repeated twice on the same <%s> element"
+msgstr "Atributo \"%s\" ripetiĝas dufoje en la sama ero <%s>"
+
+#: gtk/gtktextbufferserialize.c:951 gtk/gtktextbufferserialize.c:976
+#, c-format
+msgid "Attribute \"%s\" is invalid on <%s> element in this context"
+msgstr "Atributo \"%s\" ne estas valida ĉe ero <%s> en tiu ĉi situacio"
+
+#: gtk/gtktextbufferserialize.c:1015
+#, c-format
+msgid "Tag \"%s\" has not been defined."
+msgstr "Etikedo \"%s\" ne estas difinita."
+
+#: gtk/gtktextbufferserialize.c:1027
+msgid "Anonymous tag found and tags can not be created."
+msgstr "Anonima etikedo trovita kaj etikedoj ne kreeblas."
+
+#: gtk/gtktextbufferserialize.c:1038
+#, c-format
+msgid "Tag \"%s\" does not exist in buffer and tags can not be created."
+msgstr "Etikedo \"%s\" ne ekzistas en bufro kaj etikedoj ne kreeblas."
+
+#: gtk/gtktextbufferserialize.c:1139 gtk/gtktextbufferserialize.c:1214
+#: gtk/gtktextbufferserialize.c:1319 gtk/gtktextbufferserialize.c:1393
+#, c-format
+msgid "Element <%s> is not allowed below <%s>"
+msgstr "Ero <%s> ne estas permesita sub <%s>"
+
+#: gtk/gtktextbufferserialize.c:1170
+#, c-format
+msgid "\"%s\" is not a valid attribute type"
+msgstr "\"%s\" ne estas valida tipo de atributo"
+
+#: gtk/gtktextbufferserialize.c:1178
+#, c-format
+msgid "\"%s\" is not a valid attribute name"
+msgstr "\"%s\" ne estas valida nomo de atributo"
+
+#: gtk/gtktextbufferserialize.c:1188
+#, c-format
+msgid ""
+"\"%s\" could not be converted to a value of type \"%s\" for attribute \"%s\""
+msgstr "Ne povis konverti valoron \"%s\" al tipo \"%s\" por atributo \"%s\""
+
+#: gtk/gtktextbufferserialize.c:1197
+#, c-format
+msgid "\"%s\" is not a valid value for attribute \"%s\""
+msgstr "\"%s\" ne estas valida valoro por atributo \"%s\""
+
+#: gtk/gtktextbufferserialize.c:1282
+#, c-format
+msgid "Tag \"%s\" already defined"
+msgstr "Etikedo \"%s\" estas jam difinita"
+
+#: gtk/gtktextbufferserialize.c:1295
+#, c-format
+msgid "Tag \"%s\" has invalid priority \"%s\""
+msgstr "Etikedo \"%s\" havas nevalidan prioritaton \"%s\""
+
+#: gtk/gtktextbufferserialize.c:1348
+#, c-format
+msgid "Outermost element in text must be <text_view_markup> not <%s>"
+msgstr "Plej ekstera elemento en teksto devas esti <text_view_markup>, ne <%s>"
+
+#: gtk/gtktextbufferserialize.c:1357 gtk/gtktextbufferserialize.c:1373
+#, c-format
+msgid "A <%s> element has already been specified"
+msgstr "Ero <%s> jam estas precizigita"
+
+#: gtk/gtktextbufferserialize.c:1379
+msgid "A <text> element can't occur before a <tags> element"
+msgstr "Ero <text> ne povas aperi antaŭ ero <tags>"
+
+#: gtk/gtktextbufferserialize.c:1785
+msgid "Serialized data is malformed"
+msgstr "Seriigitaj datumoj estas misformitaj"
+
+#: gtk/gtktextbufferserialize.c:1864
+msgid ""
+"Serialized data is malformed. First section isn't GTKTEXTBUFFERCONTENTS-0001"
+msgstr ""
+"Seriigitaj datumoj estas misformitaj. Unua sekcio ne estas "
+"GTKTEXTBUFFERCONTENTS-0001"
+
+#: gtk/gtktextutil.c:57
msgid "LRM _Left-to-right mark"
msgstr "LRM _Dekstrena marko"
-#: gtk/gtktextutil.c:56
+#: gtk/gtktextutil.c:58
msgid "RLM _Right-to-left mark"
msgstr "RLM _Maldekstrena marko"
-#: gtk/gtktextutil.c:57
+#: gtk/gtktextutil.c:59
msgid "LRE Left-to-right _embedding"
msgstr "LRE Dekstrena _enprofundigo"
-#: gtk/gtktextutil.c:58
+#: gtk/gtktextutil.c:60
msgid "RLE Right-to-left e_mbedding"
msgstr "RLE Maldekstrena e_nprofundigo"
-#: gtk/gtktextutil.c:59
+#: gtk/gtktextutil.c:61
msgid "LRO Left-to-right _override"
msgstr "LRO Dekstrena superreg_o"
-#: gtk/gtktextutil.c:60
+#: gtk/gtktextutil.c:62
msgid "RLO Right-to-left o_verride"
msgstr "RLO Maldekstrena superre_go"
-#: gtk/gtktextutil.c:61
+#: gtk/gtktextutil.c:63
msgid "PDF _Pop directional formatting"
msgstr "PDF _Puldirekta aranĝo"
-#: gtk/gtktextutil.c:62
+#: gtk/gtktextutil.c:64
msgid "ZWS _Zero width space"
msgstr "NLS Nullarĝa _spaco"
-#: gtk/gtktextutil.c:63
+#: gtk/gtktextutil.c:65
msgid "ZWJ Zero width _joiner"
msgstr "NLK Nullarĝa _kunigilo"
-#: gtk/gtktextutil.c:64
+#: gtk/gtktextutil.c:66
msgid "ZWNJ Zero width _non-joiner"
msgstr "NLNK Nullarĝa _nekunigilo"
-#: gtk/gtkvolumebutton.c:188
+#: gtk/gtkvolumebutton.c:189
msgid "Adjusts the volume"
msgstr "Ŝanĝas la laŭtecon"
-#: gtk/gtkvolumebutton.c:229
+#: gtk/gtkvolumebutton.c:232
msgid "Muted"
msgstr "Silentigita"
-#: gtk/gtkvolumebutton.c:233
+#: gtk/gtkvolumebutton.c:236
msgid "Full Volume"
msgstr "Plej laŭte"
@@ -3393,30 +3888,30 @@ msgstr "Plej laŭte"
#. * Translate the "%d" to "%Id" if you want to use localised digits,
#. * or otherwise translate the "%d" to "%d".
#.
-#: gtk/gtkvolumebutton.c:246
+#: gtk/gtkvolumebutton.c:249
#, c-format
msgctxt "volume percentage"
msgid "%d %%"
msgstr "%d %%"
-#: gtk/gtkwindow.c:8092
+#: gtk/gtkwindow.c:9237
msgid "Move"
msgstr "Movi"
-#: gtk/gtkwindow.c:8100
+#: gtk/gtkwindow.c:9245
msgid "Resize"
msgstr "Aligrandigi"
-#: gtk/gtkwindow.c:8131
+#: gtk/gtkwindow.c:9276
msgid "Always on Top"
msgstr "Ĉiam malfone"
-#: gtk/gtkwindow.c:10836
+#: gtk/gtkwindow.c:12710
#, c-format
msgid "Do you want to use GTK+ Inspector?"
msgstr "Ĉu vi volas uzi Inspektiston de GTK+?"
-#: gtk/gtkwindow.c:10838
+#: gtk/gtkwindow.c:12712
#, c-format
msgid ""
"GTK+ Inspector is an interactive debugger that lets you explore and modify "
@@ -3427,52 +3922,32 @@ msgstr ""
"la internaĵojn de iu ajn aplikaĵo de GTK+. Uzi ĝin povas malfunkciigi la "
"aplikaĵon."
-#: gtk/gtkwindow.c:10843
-msgid "Don’t show this message again"
+#: gtk/gtkwindow.c:12717
+msgid "Don't show this message again"
msgstr "Ne montri tiun ĉi mesaĝon denove"
-#: gtk/inspector/action-editor.c:279
+#: gtk/inspector/action-editor.c:281
msgid "Activate"
msgstr "Aktivigi"
-#: gtk/inspector/action-editor.c:300 gtk/inspector/actions.ui:79
-#: gtk/inspector/css-node-tree.ui:74 gtk/inspector/misc-info.ui:82
+#: gtk/inspector/action-editor.c:302 gtk/inspector/actions.ui:82
+#: gtk/inspector/css-node-tree.ui:78 gtk/inspector/misc-info.ui:102
msgid "State"
msgstr "Stato"
-#: gtk/inspector/actions.ui:27 gtk/inspector/general.ui:118
-#: gtk/ui/gtkplacesview.ui:145
+#: gtk/inspector/actions.ui:30 gtk/inspector/general.ui:115
+#: gtk/ui/gtkplacesview.ui:158
msgid "Prefix"
msgstr "Prefikso"
-#: gtk/inspector/actions.ui:53
+#: gtk/inspector/actions.ui:56
msgid "Enabled"
msgstr "Enŝaltita"
-#: gtk/inspector/actions.ui:66
+#: gtk/inspector/actions.ui:69
msgid "Parameter Type"
msgstr "Tipo de parametro"
-#: gtk/inspector/controllers.c:131
-msgctxt "event phase"
-msgid "None"
-msgstr "Neniu"
-
-#: gtk/inspector/controllers.c:132
-msgctxt "event phase"
-msgid "Capture"
-msgstr "Kapti"
-
-#: gtk/inspector/controllers.c:133
-msgctxt "event phase"
-msgid "Bubble"
-msgstr "Bobelo"
-
-#: gtk/inspector/controllers.c:134
-msgctxt "event phase"
-msgid "Target"
-msgstr "Celo"
-
#: gtk/inspector/css-editor.c:112
msgid "You can type here any CSS rule recognized by GTK+."
msgstr "Tien ĉi vi povas entajpi iun ajn regulon de CSS rekonatan de GTK+."
@@ -3494,206 +3969,208 @@ msgstr "Ŝanĝoj tuj efektiviĝas ĉie en la aplikaĵo."
msgid "Saving CSS failed"
msgstr "Konservado de CSS malsukcesis"
-#: gtk/inspector/css-editor.ui:31
+#: gtk/inspector/css-editor.ui:34
msgid "Disable this custom CSS"
msgstr "Malŝalti tiun ĉi propras CSS-kodon"
-#: gtk/inspector/css-editor.ui:39
+#: gtk/inspector/css-editor.ui:55
msgid "Save the current CSS"
msgstr "Konservi la nunan CSS-kodon"
-#: gtk/inspector/css-node-tree.ui:48
+#: gtk/inspector/css-node-tree.ui:52
msgid "ID"
msgstr "Identigaĵo"
-#: gtk/inspector/css-node-tree.ui:61
+#: gtk/inspector/css-node-tree.ui:65 gtk/inspector/object-tree.ui:142
msgid "Style Classes"
msgstr "Stilaj klasoj"
-#: gtk/inspector/css-node-tree.ui:103
+#: gtk/inspector/css-node-tree.ui:110
msgid "CSS Property"
msgstr "Eco de CSS"
-#: gtk/inspector/css-node-tree.ui:118 gtk/inspector/prop-list.ui:46
-#: gtk/inspector/recorder.ui:121 gtk/ui/gtkcoloreditor.ui:284
+#: gtk/inspector/css-node-tree.ui:125 gtk/inspector/prop-list.ui:50
+#: gtk/ui/gtkcoloreditor.ui:320
msgid "Value"
msgstr "Valoro"
-#: gtk/inspector/data-list.ui:12
+#: gtk/inspector/data-list.ui:15
msgid "Show data"
msgstr "Montri datumojn"
-#: gtk/inspector/general.c:340
+#: gtk/inspector/general.c:309
msgctxt "GL version"
msgid "None"
msgstr "Neniu"
-#: gtk/inspector/general.c:341
+#: gtk/inspector/general.c:310
msgctxt "GL vendor"
msgid "None"
msgstr "Neniu"
-#: gtk/inspector/general.c:443
-msgctxt "Vulkan device"
-msgid "None"
-msgstr "Neniu"
-
-#: gtk/inspector/general.c:444 gtk/inspector/general.c:445
-msgctxt "Vulkan version"
-msgid "None"
-msgstr "Neniu"
-
-#: gtk/inspector/general.ui:27
+#: gtk/inspector/general.ui:34
msgid "GTK+ Version"
msgstr "Versio de GTK+"
-#: gtk/inspector/general.ui:54
+#: gtk/inspector/general.ui:68
msgid "GDK Backend"
msgstr "Interno de GDK"
-#: gtk/inspector/general.ui:81
-msgid "GSK Renderer"
-msgstr "GSK-bildigilo"
-
-#: gtk/inspector/general.ui:324
+#: gtk/inspector/general.ui:373
msgid "Display"
msgstr "Ekrano"
-#: gtk/inspector/general.ui:352
-msgid "RGBA Visual"
-msgstr "Prezento RVBA"
+#: gtk/inspector/general.ui:408
+msgid "RGBA visual"
+msgstr "RVBA vida"
-#: gtk/inspector/general.ui:379
+#: gtk/inspector/general.ui:442
msgid "Composited"
msgstr "Kunmetita"
-#: gtk/inspector/general.ui:416
+#: gtk/inspector/general.ui:489
msgid "GL Version"
msgstr "Versio de GL"
-#: gtk/inspector/general.ui:444
+#: gtk/inspector/general.ui:524
msgid "GL Vendor"
msgstr "Distribuinto de GL"
-#: gtk/inspector/general.ui:482
-msgid "Vulkan Device"
-msgstr "Aparato de Vulkan"
+#: gtk/inspector/gestures.c:129
+msgctxt "event phase"
+msgid "None"
+msgstr "Neniu"
+
+#: gtk/inspector/gestures.c:130
+msgctxt "event phase"
+msgid "Capture"
+msgstr "Kapti"
-#: gtk/inspector/general.ui:510
-msgid "Vulkan API version"
-msgstr "Versio de API de Vulkan"
+#: gtk/inspector/gestures.c:131
+msgctxt "event phase"
+msgid "Bubble"
+msgstr "Bobelo"
-#: gtk/inspector/general.ui:538
-msgid "Vulkan driver version"
-msgstr "Versio de pelilo de Vulkan"
+#: gtk/inspector/gestures.c:132
+msgctxt "event phase"
+msgid "Target"
+msgstr "Celo"
#: gtk/inspector/menu.c:92
msgid "Unnamed section"
msgstr "Sennoma sekcio"
-#: gtk/inspector/menu.ui:28
+#: gtk/inspector/menu.ui:26 gtk/inspector/object-tree.ui:125
msgid "Label"
msgstr "Etikedo"
-#: gtk/inspector/menu.ui:41 gtk/inspector/prop-editor.c:1325
+#: gtk/inspector/menu.ui:39 gtk/inspector/prop-editor.c:1385
msgid "Action"
msgstr "Ago"
-#: gtk/inspector/menu.ui:54
+#: gtk/inspector/menu.ui:52
msgid "Target"
msgstr "Celo"
-#: gtk/inspector/menu.ui:67
+#: gtk/inspector/menu.ui:65
msgid "Icon"
msgstr "Bildsimbolo"
-#: gtk/inspector/misc-info.ui:28
+#: gtk/inspector/misc-info.ui:34
msgid "Address"
msgstr "Adreso"
-#: gtk/inspector/misc-info.ui:55
-msgid "Reference Count"
-msgstr "Nombro da referencoj"
+#: gtk/inspector/misc-info.ui:68
+msgid "Reference count"
+msgstr "Numbro de referencoj"
-#: gtk/inspector/misc-info.ui:109
+#: gtk/inspector/misc-info.ui:136
msgid "Buildable ID"
msgstr "Konstruebla identigaĵo"
-#: gtk/inspector/misc-info.ui:136
+#: gtk/inspector/misc-info.ui:170
msgid "Default Widget"
msgstr "Norma fenestraĵo"
-#: gtk/inspector/misc-info.ui:154 gtk/inspector/misc-info.ui:190
-#: gtk/inspector/misc-info.ui:330 gtk/inspector/prop-editor.c:1025
-#: gtk/inspector/prop-editor.c:1209 gtk/inspector/prop-editor.c:1333
-#: gtk/inspector/prop-editor.c:1443 gtk/inspector/window.ui:294
+#: gtk/inspector/misc-info.ui:192 gtk/inspector/misc-info.ui:237
+#: gtk/inspector/misc-info.ui:453 gtk/inspector/prop-editor.c:1071
+#: gtk/inspector/prop-editor.c:1268 gtk/inspector/prop-editor.c:1393
+#: gtk/inspector/prop-editor.c:1504 gtk/inspector/window.ui:382
msgid "Properties"
msgstr "Ecoj"
-#: gtk/inspector/misc-info.ui:171
+#: gtk/inspector/misc-info.ui:214
msgid "Focus Widget"
msgstr "Enfokusigi fenestraĵon"
-#: gtk/inspector/misc-info.ui:207
+#: gtk/inspector/misc-info.ui:259
msgid "Mnemonic Label"
msgstr "Memoriga etikedo"
-#: gtk/inspector/misc-info.ui:233
-msgid "Request Mode"
-msgstr "Peto-reĝimo"
+#: gtk/inspector/misc-info.ui:294
+msgid "Request mode"
+msgstr "Peta reĝimo"
-#: gtk/inspector/misc-info.ui:259
+#: gtk/inspector/misc-info.ui:328
msgid "Allocation"
msgstr "Asigno"
-#: gtk/inspector/misc-info.ui:285
+#: gtk/inspector/misc-info.ui:362
msgid "Baseline"
msgstr "Bazlinio"
-#: gtk/inspector/misc-info.ui:311
+#: gtk/inspector/misc-info.ui:396
+msgid "Clip area"
+msgstr "Agrafi areon"
+
+#: gtk/inspector/misc-info.ui:430
msgid "Frame Clock"
-msgstr "Filmera horloĝo"
+msgstr "Kadra horloĝo"
-#: gtk/inspector/misc-info.ui:347
-msgid "Tick Callback"
-msgstr "Tikla revoko"
+#: gtk/inspector/misc-info.ui:475
+msgid "Tick callback"
+msgstr "Tika revoko"
-#: gtk/inspector/misc-info.ui:374
-msgid "Frame Count"
-msgstr "Da filmeroj"
+#: gtk/inspector/misc-info.ui:511
+msgid "Frame count"
+msgstr "Nombro de filmeroj"
-#: gtk/inspector/misc-info.ui:400
-msgid "Frame Rate"
+#: gtk/inspector/misc-info.ui:545
+msgid "Frame rate"
msgstr "Filmer-rapido"
-#: gtk/inspector/misc-info.ui:426
-msgid "Accessible Role"
+#: gtk/inspector/misc-info.ui:579
+msgid "Accessible role"
msgstr "Atingebla rolo"
-#: gtk/inspector/misc-info.ui:452
-msgid "Accessible Name"
+#: gtk/inspector/misc-info.ui:613
+msgid "Accessible name"
msgstr "Atingebla nomo"
-#: gtk/inspector/misc-info.ui:480
-msgid "Accessible Description"
+#: gtk/inspector/misc-info.ui:649
+msgid "Accessible description"
msgstr "Atingebla priskribo"
-#: gtk/inspector/misc-info.ui:508
+#: gtk/inspector/misc-info.ui:685
msgid "Mapped"
msgstr "Mapigita"
-#: gtk/inspector/misc-info.ui:535
+#: gtk/inspector/misc-info.ui:721
msgid "Realized"
msgstr "Realigita"
-#: gtk/inspector/misc-info.ui:562
+#: gtk/inspector/misc-info.ui:757
msgid "Is Toplevel"
msgstr "Je plej alta nivelo"
-#: gtk/inspector/misc-info.ui:589
+#: gtk/inspector/misc-info.ui:793
msgid "Child Visible"
msgstr "Ido videblas"
+#: gtk/inspector/object-tree.ui:95
+msgid "Object"
+msgstr "Objekto"
+
#: gtk/inspector/prop-editor.c:679
#, c-format
msgid "Pointer: %p"
@@ -3709,137 +4186,116 @@ msgstr "Nekonata"
msgid "Object: %p (%s)"
msgstr "Objekto: %p (%s)"
-#: gtk/inspector/prop-editor.c:1082
+#: gtk/inspector/prop-editor.c:1141
#, c-format
msgid "Uneditable property type: %s"
msgstr "Neredaktebla eca tipo: %s"
-#: gtk/inspector/prop-editor.c:1200
+#: gtk/inspector/prop-editor.c:1259
msgid "Attribute mapping"
msgstr "Mapigo de atributoj"
-#: gtk/inspector/prop-editor.c:1205
+#: gtk/inspector/prop-editor.c:1264
msgid "Model:"
msgstr "Modelo:"
-#: gtk/inspector/prop-editor.c:1206
+#: gtk/inspector/prop-editor.c:1265
#, c-format
msgid "%p (%s)"
msgstr "%p (%s)"
-#: gtk/inspector/prop-editor.c:1216
+#: gtk/inspector/prop-editor.c:1275
msgid "Column:"
msgstr "Kolumno:"
-#: gtk/inspector/prop-editor.c:1226
+#: gtk/inspector/prop-editor.c:1285
msgctxt "property name"
msgid "None"
msgstr "Neniu"
-#: gtk/inspector/prop-editor.c:1329
+#: gtk/inspector/prop-editor.c:1389
#, c-format
msgid "Defined at: %p (%s)"
msgstr "Difinita je: %p (%s)"
-#: gtk/inspector/prop-editor.c:1392 gtk/inspector/prop-editor.c:1408
+#: gtk/inspector/prop-editor.c:1453 gtk/inspector/prop-editor.c:1469
msgid "inverted"
msgstr "renversita"
-#: gtk/inspector/prop-editor.c:1424
+#: gtk/inspector/prop-editor.c:1485
msgid "bidirectional, inverted"
msgstr "dudirekta, renversita"
-#: gtk/inspector/prop-editor.c:1429 gtk/inspector/prop-editor.c:1542
+#: gtk/inspector/prop-editor.c:1490 gtk/inspector/prop-editor.c:1604
msgid "bidirectional"
msgstr "dudirekta"
-#: gtk/inspector/prop-editor.c:1434
+#: gtk/inspector/prop-editor.c:1495
msgid "Binding:"
msgstr "Bindo:"
-#: gtk/inspector/prop-editor.c:1561
+#: gtk/inspector/prop-editor.c:1623
msgid "Setting:"
msgstr "Agordo:"
-#: gtk/inspector/prop-editor.c:1600
+#: gtk/inspector/prop-editor.c:1663
msgid "Source:"
msgstr "Fonto:"
-#: gtk/inspector/prop-editor.c:1602
+#: gtk/inspector/prop-editor.c:1665
msgid "Reset"
msgstr "Reagordi"
-#: gtk/inspector/prop-editor.c:1616
+#: gtk/inspector/prop-editor.c:1679
msgid "Theme"
msgstr "Haŭto"
-#: gtk/inspector/prop-editor.c:1619
+#: gtk/inspector/prop-editor.c:1682
msgid "XSettings"
msgstr "XAgordoj"
-#: gtk/inspector/prop-list.ui:30 gtk/inspector/recorder.ui:108
+#: gtk/inspector/prop-list.ui:34
msgid "Property"
msgstr "Eco"
-#: gtk/inspector/prop-list.ui:63 gtk/inspector/statistics.ui:44
+#: gtk/inspector/prop-list.ui:68 gtk/inspector/statistics.ui:53
msgid "Type"
msgstr "Tipo"
-#: gtk/inspector/prop-list.ui:80
+#: gtk/inspector/prop-list.ui:86
msgid "Attribute"
msgstr "Atributo"
-#: gtk/inspector/prop-list.ui:95 gtk/inspector/signals-list.ui:68
+#: gtk/inspector/prop-list.ui:102 gtk/inspector/signals-list.ui:73
msgid "Defined At"
msgstr "Difinita je"
-#: gtk/inspector/recorder.c:988
-#, c-format
-msgid "Saving RenderNode failed"
-msgstr "Konservado de RenderNode malsukcesis"
-
-#: gtk/inspector/recorder.ui:16
-msgid "Record frames"
-msgstr "Registri filmerojn"
-
-#: gtk/inspector/recorder.ui:24
-msgid "Clear recorded frames"
-msgstr "Vakigi gravuritajn filmerojn"
-
-#: gtk/inspector/recorder.ui:32
-msgid "Add debug nodes"
-msgstr "Aldoni sencimigajn nodojn"
-
-#: gtk/inspector/recorder.ui:41
-msgid "Save selected node"
-msgstr "Konservi elektitan nodon"
-
-#: gtk/inspector/resource-list.ui:68
+#: gtk/inspector/resource-list.ui:100
msgid "Path"
msgstr "Vojo"
-#: gtk/inspector/resource-list.ui:86 gtk/inspector/signals-list.ui:58
+#: gtk/inspector/resource-list.ui:118 gtk/inspector/signals-list.ui:63
msgid "Count"
msgstr "Nombro"
-#: gtk/inspector/resource-list.ui:98 gtk/ui/gtkfilechooserwidget.ui:213
-#: gtk/ui/gtkfontchooserwidget.ui:129 gtk/ui/gtkfontchooserwidget.ui:264
+#: gtk/inspector/resource-list.ui:130 gtk/ui/gtkfilechooserwidget.ui:223
+#: gtk/ui/gtkfontchooserwidget.ui:134 gtk/ui/gtkfontchooserwidget.ui:276
msgid "Size"
msgstr "Grando"
-#: gtk/inspector/resource-list.ui:128
+#: gtk/inspector/resource-list.ui:163
msgid "Name:"
msgstr "Nomo:"
-#: gtk/inspector/resource-list.ui:150
+#: gtk/inspector/resource-list.ui:187
msgid "Type:"
msgstr "Tipo:"
-#: gtk/inspector/resource-list.ui:171
+#: gtk/inspector/resource-list.ui:210
msgid "Size:"
msgstr "Grando:"
-#: gtk/inspector/selector.ui:28
+#: gtk/inspector/selector.ui:31
msgid "Selector"
msgstr "Elektilo"
@@ -3847,301 +4303,322 @@ msgstr "Elektilo"
msgid "Yes"
msgstr "Jes"
-#: gtk/inspector/signals-list.ui:31
+#: gtk/inspector/signals-list.ui:36
msgid "Signal"
msgstr "Signalo"
-#: gtk/inspector/signals-list.ui:45
+#: gtk/inspector/signals-list.ui:50
msgid "Connected"
msgstr "Konektita"
-#: gtk/inspector/size-groups.c:235
+#: gtk/inspector/size-groups.c:224
+msgid "Ignore hidden"
+msgstr "Malatenti kaŝitajn"
+
+#: gtk/inspector/size-groups.c:242
msgid "Mode"
msgstr "Reĝimo"
-#: gtk/inspector/size-groups.c:245
+#: gtk/inspector/size-groups.c:252
msgctxt "sizegroup mode"
msgid "None"
msgstr "Neniu"
-#: gtk/inspector/size-groups.c:246
+#: gtk/inspector/size-groups.c:253
msgctxt "sizegroup mode"
msgid "Horizontal"
msgstr "Horizontale"
-#: gtk/inspector/size-groups.c:247
+#: gtk/inspector/size-groups.c:254
msgctxt "sizegroup mode"
msgid "Vertical"
msgstr "Vertikale"
-#: gtk/inspector/size-groups.c:248
+#: gtk/inspector/size-groups.c:255
msgctxt "sizegroup mode"
msgid "Both"
msgstr "Ambaŭ"
-#: gtk/inspector/statistics.c:395
+#: gtk/inspector/statistics.c:377
msgid "GLib must be configured with --enable-debug"
msgstr "GLib devas agordiĝi kun --enable-debug"
-#: gtk/inspector/statistics.ui:58
+#: gtk/inspector/statistics.ui:68
msgid "Self 1"
msgstr "Mem 1"
-#: gtk/inspector/statistics.ui:69
+#: gtk/inspector/statistics.ui:80
msgid "Cumulative 1"
msgstr "Akumula 1"
-#: gtk/inspector/statistics.ui:80
+#: gtk/inspector/statistics.ui:92
msgid "Self 2"
msgstr "Mem 2"
-#: gtk/inspector/statistics.ui:91
+#: gtk/inspector/statistics.ui:104
msgid "Cumulative 2"
msgstr "Akmulua 2"
-#: gtk/inspector/statistics.ui:102
+#: gtk/inspector/statistics.ui:116
msgid "Self"
msgstr "Mem"
-#: gtk/inspector/statistics.ui:118
+#: gtk/inspector/statistics.ui:133
msgid "Cumulative"
msgstr "Akumula"
-#: gtk/inspector/statistics.ui:148
+#: gtk/inspector/statistics.ui:165
msgid "Enable statistics with GOBJECT_DEBUG=instance-count"
msgstr "Ŝalti statistikon kun GOBJECT_DEBUG=instance-count"
-#: gtk/inspector/visual.c:466 gtk/inspector/visual.c:481
+#: gtk/inspector/visual.c:406 gtk/inspector/visual.c:421
msgid "Theme is hardcoded by GTK_THEME"
msgstr "Haŭto enas la programkodon pro GTK_THEME"
-#: gtk/inspector/visual.c:689
+#: gtk/inspector/visual.c:631
msgid "Backend does not support window scaling"
msgstr "Interno ne subtenas skaladon de fenestroj"
-#: gtk/inspector/visual.c:784
+#: gtk/inspector/visual.c:726
msgid "Setting is hardcoded by GTK_TEST_TOUCHSCREEN"
msgstr "Agordo enas la programkodon pro GTK_TEST_TOUCHSCREEN"
-#: gtk/inspector/visual.c:845
+#: gtk/inspector/visual.c:791
msgid ""
"Not settable at runtime.\n"
-"Use GDK_DEBUG=gl-disable instead"
+"Use GDK_GL=always or GDK_GL=disable instead"
msgstr ""
"Neagordebla rultempe.\n"
-"Uzu GDK_DEBUG=gl-disable anstataŭe"
+"Uzu GDK_GL=always aŭ GDK_GL=disable anstataŭe"
-#: gtk/inspector/visual.c:854 gtk/inspector/visual.c:855
+#: gtk/inspector/visual.c:805 gtk/inspector/visual.c:806
+#: gtk/inspector/visual.c:807
msgid "GL rendering is disabled"
msgstr "GL-bildigo estas malŝaltita"
-#: gtk/inspector/visual.ui:54
+#: gtk/inspector/visual.ui:61
msgid "GTK+ Theme"
msgstr "Haŭto de GTK+"
-#: gtk/inspector/visual.ui:80
+#: gtk/inspector/visual.ui:94
msgid "Dark Variant"
msgstr "Malhela variaĵo"
-#: gtk/inspector/visual.ui:106
+#: gtk/inspector/visual.ui:127
msgid "Cursor Theme"
msgstr "Haŭto de kursoro"
-#: gtk/inspector/visual.ui:132
+#: gtk/inspector/visual.ui:160
msgid "Cursor Size"
msgstr "Grando de kursoro"
-#: gtk/inspector/visual.ui:162
+#: gtk/inspector/visual.ui:197
msgid "Icon Theme"
msgstr "Haŭto de bildsimboloj"
-#: gtk/inspector/visual.ui:214
+#: gtk/inspector/visual.ui:230 gtk/ui/gtkfontbutton.ui:13
+msgid "Font"
+msgstr "Tiparo"
+
+#: gtk/inspector/visual.ui:263
msgid "Font Scale"
msgstr "Tipara skalo"
-#: gtk/inspector/visual.ui:252
+#: gtk/inspector/visual.ui:309
msgid "Text Direction"
msgstr "Teksta direkto"
-#: gtk/inspector/visual.ui:265
+#: gtk/inspector/visual.ui:322
msgid "Left-to-Right"
msgstr "Dekstrena"
-#: gtk/inspector/visual.ui:266
+#: gtk/inspector/visual.ui:323
msgid "Right-to-Left"
msgstr "Maldekstrena"
-#: gtk/inspector/visual.ui:283
-msgid "Window Scaling"
+#: gtk/inspector/visual.ui:347
+msgid "Window scaling"
msgstr "Fenestra skalado"
-#: gtk/inspector/visual.ui:311
+#: gtk/inspector/visual.ui:382
msgid "Animations"
msgstr "Movbildoj"
-#: gtk/inspector/visual.ui:337
+#: gtk/inspector/visual.ui:415
msgid "Slowdown"
msgstr "Malrapidiĝo"
-#: gtk/inspector/visual.ui:386
-msgid "Show fps overlay"
-msgstr "Montri fps superskribsegmento"
+#: gtk/inspector/visual.ui:474
+msgid "Rendering Mode"
+msgstr "Bildiga reĝimo"
+
+#: gtk/inspector/visual.ui:487
+msgid "Similar"
+msgstr "Simila"
-#: gtk/inspector/visual.ui:413
+#: gtk/inspector/visual.ui:488
+msgid "Image"
+msgstr "Bildo"
+
+#: gtk/inspector/visual.ui:489
+msgid "Recording"
+msgstr "Registranta"
+
+#: gtk/inspector/visual.ui:513
msgid "Show Graphic Updates"
msgstr "Montri grafikajn ĝisdatigojn"
-#: gtk/inspector/visual.ui:440
+#: gtk/inspector/visual.ui:547
msgid "Show Baselines"
msgstr "Montri bazliniojn"
-#: gtk/inspector/visual.ui:467
+#: gtk/inspector/visual.ui:581
msgid "Show Layout Borders"
msgstr "Montri limojn de aranĝo"
-#: gtk/inspector/visual.ui:494
+#: gtk/inspector/visual.ui:615
+msgid "Show Pixel Cache"
+msgstr "Montri bilderan kaŝmemoron"
+
+#: gtk/inspector/visual.ui:649
msgid "Show Widget Resizes"
msgstr "Montri regrandigojn de fenestraĵoj"
-#: gtk/inspector/visual.ui:521
-msgid "Simulate Touchscreen"
+#: gtk/inspector/visual.ui:683
+msgid "Simulate touchscreen"
msgstr "Imiti tuŝekranon"
-#: gtk/inspector/visual.ui:557
+#: gtk/inspector/visual.ui:728
msgid "GL Rendering"
msgstr "GL-bildigo"
-#: gtk/inspector/visual.ui:569
-msgid "When Needed"
+#: gtk/inspector/visual.ui:740
+msgid "When needed"
msgstr "Laŭbezone"
-#: gtk/inspector/visual.ui:570
+#: gtk/inspector/visual.ui:741
+msgid "Always"
+msgstr "Ĉiam"
+
+#: gtk/inspector/visual.ui:742
msgid "Disabled"
msgstr "Malŝaltita"
-#: gtk/inspector/visual.ui:587
+#: gtk/inspector/visual.ui:766
msgid "Software GL"
-msgstr "GL-programaro"
+msgstr "GL Programara"
+
+#: gtk/inspector/visual.ui:800
+msgid "Software Surfaces"
+msgstr "Programar-surfacoj"
-#: gtk/inspector/visual.ui:614
+#: gtk/inspector/visual.ui:834
msgid "Texture Rectangle Extension"
-msgstr "Teksturo-Rektangulo-Etendo"
+msgstr "Tekstura ortangul-etendaĵo"
-#: gtk/inspector/window.ui:26
+#: gtk/inspector/window.ui:31
msgid "Select an Object"
msgstr "Elekti objekton"
-#: gtk/inspector/window.ui:38 gtk/inspector/window.ui:90
+#: gtk/inspector/window.ui:54 gtk/inspector/window.ui:134
msgid "Show Details"
msgstr "Montri detalojn"
-#: gtk/inspector/window.ui:51
+#: gtk/inspector/window.ui:77
msgid "Show all Objects"
msgstr "Montri ĉiujn objektojn"
-#: gtk/inspector/window.ui:102
-msgid "Show all Resources"
-msgstr "Montri ĉiujn risurcojn"
-
-#: gtk/inspector/window.ui:119
+#: gtk/inspector/window.ui:107
msgid "Collect Statistics"
msgstr "Kolekti statistikon"
-#: gtk/inspector/window.ui:204
+#: gtk/inspector/window.ui:156
+msgid "Show all Resources"
+msgstr "Montri ĉiujn risurcojn"
+
+#: gtk/inspector/window.ui:267
msgid "Trace signal emissions on this object"
-msgstr "Spuri signalojn el tiu ĉi objekto"
+msgstr "Spuri signal-eligojn de ĉi tiu objekto"
-#: gtk/inspector/window.ui:211
+#: gtk/inspector/window.ui:284
msgid "Clear log"
msgstr "Vakigi protokolon"
-#: gtk/inspector/window.ui:283
+#: gtk/inspector/window.ui:370
msgid "Miscellaneous"
msgstr "Aliaĵoj"
-#: gtk/inspector/window.ui:304
+#: gtk/inspector/window.ui:393
msgid "Signals"
msgstr "Signaloj"
-#: gtk/inspector/window.ui:315
+#: gtk/inspector/window.ui:404
msgid "Child Properties"
msgstr "Idaj ecoj"
-#: gtk/inspector/window.ui:322
+#: gtk/inspector/window.ui:413
msgid "Class Hierarchy"
msgstr "Klasa hierarĥio"
-#: gtk/inspector/window.ui:329
+#: gtk/inspector/window.ui:422
msgid "CSS Selector"
msgstr "CSS-elektilo"
-#: gtk/inspector/window.ui:336
-msgid "CSS Nodes"
+#: gtk/inspector/window.ui:431
+msgid "CSS nodes"
msgstr "CSS-nodoj"
-#: gtk/inspector/window.ui:343
+#: gtk/inspector/window.ui:438
msgid "Size Groups"
msgstr "Laŭgrandaj grupoj"
-#: gtk/inspector/window.ui:350
+#: gtk/inspector/window.ui:445
msgid "Data"
msgstr "Datumoj"
-#: gtk/inspector/window.ui:357
+#: gtk/inspector/window.ui:452
msgid "Actions"
msgstr "Agoj"
-#: gtk/inspector/window.ui:373
-msgid "Controllers"
-msgstr "Regiloj"
+#: gtk/inspector/window.ui:468
+msgid "Gestures"
+msgstr "Gestoj"
-#: gtk/inspector/window.ui:382
+#: gtk/inspector/window.ui:477
msgid "Magnifier"
msgstr "Pligrandigilo"
-#: gtk/inspector/window.ui:395
+#: gtk/inspector/window.ui:490
msgid "Objects"
msgstr "Objektoj"
-#: gtk/inspector/window.ui:411 gtk/ui/gtkprintunixdialog.ui:378
-msgid "General"
-msgstr "Ĝenerala"
-
-#: gtk/inspector/window.ui:418
-msgid "Visual"
-msgstr "Prezento"
-
-#: gtk/inspector/window.ui:427
-msgid "Resources"
-msgstr "Risurcoj"
-
-#: gtk/inspector/window.ui:436
+#: gtk/inspector/window.ui:500
msgid "Statistics"
msgstr "Statistikoj"
-#: gtk/inspector/window.ui:443
-msgid "Logging"
-msgstr "Protokolado"
-
-#: gtk/inspector/window.ui:451
-msgid "Global"
-msgstr "Malloka"
+#: gtk/inspector/window.ui:510
+msgid "Resources"
+msgstr "Risurcoj"
-#: gtk/inspector/window.ui:458
+#: gtk/inspector/window.ui:519
msgid "CSS"
msgstr "CSS"
-#: gtk/inspector/window.ui:465
-msgid "Recorder"
-msgstr "Registrilo"
+#: gtk/inspector/window.ui:528
+msgid "Visual"
+msgstr "Prezento"
+
+#: gtk/inspector/window.ui:537 gtk/ui/gtkprintunixdialog.ui:426
+msgid "General"
+msgstr "Ĝenerala"
#: gtk/open-type-layout.h:13
-#, fuzzy
msgctxt "OpenType layout"
msgid "Access All Alternates"
-msgstr "Atingebla nomo"
+msgstr ""
#: gtk/open-type-layout.h:14
+#, fuzzy
msgctxt "OpenType layout"
msgid "Above-base Forms"
msgstr "Superbazaj formoj"
@@ -4149,14 +4626,16 @@ msgstr "Superbazaj formoj"
#: gtk/open-type-layout.h:15
msgctxt "OpenType layout"
msgid "Above-base Mark Positioning"
-msgstr "Superbaza signometo"
+msgstr ""
#: gtk/open-type-layout.h:16
+#, fuzzy
msgctxt "OpenType layout"
msgid "Above-base Substitutions"
msgstr "Superbazaj anstataŭigoj"
#: gtk/open-type-layout.h:17
+#, fuzzy
msgctxt "OpenType layout"
msgid "Alternative Fractions"
msgstr "Alternativaj frakcioj"
@@ -4167,6 +4646,7 @@ msgid "Akhands"
msgstr ""
#: gtk/open-type-layout.h:19
+#, fuzzy
msgctxt "OpenType layout"
msgid "Below-base Forms"
msgstr "Subbazaj formoj"
@@ -4174,9 +4654,10 @@ msgstr "Subbazaj formoj"
#: gtk/open-type-layout.h:20
msgctxt "OpenType layout"
msgid "Below-base Mark Positioning"
-msgstr "Subbaza signometo"
+msgstr ""
#: gtk/open-type-layout.h:21
+#, fuzzy
msgctxt "OpenType layout"
msgid "Below-base Substitutions"
msgstr "Subbazaj anstataŭigoj"
@@ -4192,6 +4673,7 @@ msgid "Case-Sensitive Forms"
msgstr "Usklec-distingaj formoj"
#: gtk/open-type-layout.h:24
+#, fuzzy
msgctxt "OpenType layout"
msgid "Glyph Composition / Decomposition"
msgstr "Signobilda kunmeto / divido"
@@ -4207,6 +4689,7 @@ msgid "Conjunct Forms"
msgstr ""
#: gtk/open-type-layout.h:27
+#, fuzzy
msgctxt "OpenType layout"
msgid "Contextual Ligatures"
msgstr "Kuntekstaj ligaĵoj"
@@ -4217,6 +4700,7 @@ msgid "Centered CJK Punctuation"
msgstr ""
#: gtk/open-type-layout.h:29
+#, fuzzy
msgctxt "OpenType layout"
msgid "Capital Spacing"
msgstr "Interspaco de majuskloj"
@@ -4227,6 +4711,7 @@ msgid "Contextual Swash"
msgstr ""
#: gtk/open-type-layout.h:31
+#, fuzzy
msgctxt "OpenType layout"
msgid "Cursive Positioning"
msgstr "Meto de kurzivo"
@@ -4244,14 +4729,16 @@ msgstr ""
#: gtk/open-type-layout.h:34
msgctxt "OpenType layout"
msgid "Distances"
-msgstr ""
+msgstr "Distancoj"
#: gtk/open-type-layout.h:35
+#, fuzzy
msgctxt "OpenType layout"
msgid "Discretionary Ligatures"
msgstr "Laŭplaĉaj ligaĵoj"
#: gtk/open-type-layout.h:36
+#, fuzzy
msgctxt "OpenType layout"
msgid "Denominators"
msgstr "Nomantoj"
@@ -4272,22 +4759,19 @@ msgid "Final Glyph on Line Alternates"
msgstr ""
#: gtk/open-type-layout.h:40
-#, fuzzy
msgctxt "OpenType layout"
msgid "Terminal Forms #2"
-msgstr "Terminala tabulpaĝilo #2"
+msgstr ""
#: gtk/open-type-layout.h:41
-#, fuzzy
msgctxt "OpenType layout"
msgid "Terminal Forms #3"
-msgstr "Terminala tabulpaĝilo #3"
+msgstr ""
#: gtk/open-type-layout.h:42
-#, fuzzy
msgctxt "OpenType layout"
msgid "Terminal Forms"
-msgstr "Terminala tabulpaĝilo"
+msgstr ""
#: gtk/open-type-layout.h:43
msgctxt "OpenType layout"
@@ -4302,7 +4786,7 @@ msgstr "Frakcioj"
#: gtk/open-type-layout.h:45
msgctxt "OpenType layout"
msgid "Full Widths"
-msgstr ""
+msgstr "Plenaj larĝoj"
#: gtk/open-type-layout.h:46
msgctxt "OpenType layout"
@@ -4320,6 +4804,7 @@ msgid "Alternate Half Widths"
msgstr ""
#: gtk/open-type-layout.h:49
+#, fuzzy
msgctxt "OpenType layout"
msgid "Historical Forms"
msgstr "Historiaj formoj"
@@ -4330,6 +4815,7 @@ msgid "Horizontal Kana Alternates"
msgstr ""
#: gtk/open-type-layout.h:51
+#, fuzzy
msgctxt "OpenType layout"
msgid "Historical Ligatures"
msgstr "Historiaj ligaĵoj"
@@ -4337,23 +4823,24 @@ msgstr "Historiaj ligaĵoj"
#: gtk/open-type-layout.h:52
msgctxt "OpenType layout"
msgid "Hangul"
-msgstr "Korea alfabeto"
+msgstr "Hangulo"
#: gtk/open-type-layout.h:53
+#, fuzzy
msgctxt "OpenType layout"
msgid "Hojo Kanji Forms"
-msgstr ""
+msgstr "Hojo-kanji-formoj"
#: gtk/open-type-layout.h:54
+#, fuzzy
msgctxt "OpenType layout"
msgid "Half Widths"
-msgstr ""
+msgstr "Duonaj larĝoj"
#: gtk/open-type-layout.h:55
-#, fuzzy
msgctxt "OpenType layout"
msgid "Initial Forms"
-msgstr "Komenca stato"
+msgstr ""
#: gtk/open-type-layout.h:56
msgctxt "OpenType layout"
@@ -4363,7 +4850,7 @@ msgstr ""
#: gtk/open-type-layout.h:57
msgctxt "OpenType layout"
msgid "Italics"
-msgstr "Kursivo"
+msgstr "Kursiva"
#: gtk/open-type-layout.h:58
msgctxt "OpenType layout"
@@ -4373,22 +4860,22 @@ msgstr ""
#: gtk/open-type-layout.h:59
msgctxt "OpenType layout"
msgid "JIS78 Forms"
-msgstr ""
+msgstr "JIS78-formoj"
#: gtk/open-type-layout.h:60
msgctxt "OpenType layout"
msgid "JIS83 Forms"
-msgstr ""
+msgstr "JIS83-formoj"
#: gtk/open-type-layout.h:61
msgctxt "OpenType layout"
msgid "JIS90 Forms"
-msgstr ""
+msgstr "HIS90-formoj"
#: gtk/open-type-layout.h:62
msgctxt "OpenType layout"
msgid "JIS2004 Forms"
-msgstr ""
+msgstr "JIS2004-formoj"
#: gtk/open-type-layout.h:63
msgctxt "OpenType layout"
@@ -4396,16 +4883,14 @@ msgid "Kerning"
msgstr "Kunŝovo"
#: gtk/open-type-layout.h:64
-#, fuzzy
msgctxt "OpenType layout"
msgid "Left Bounds"
-msgstr "Maldekstra paperujo"
+msgstr ""
#: gtk/open-type-layout.h:65
-#, fuzzy
msgctxt "OpenType layout"
msgid "Standard Ligatures"
-msgstr "Normala"
+msgstr "Normaj ligaĵoj"
#: gtk/open-type-layout.h:66
msgctxt "OpenType layout"
@@ -4423,16 +4908,14 @@ msgid "Localized Forms"
msgstr ""
#: gtk/open-type-layout.h:69
-#, fuzzy
msgctxt "OpenType layout"
msgid "Left-to-right alternates"
-msgstr "LRM dekstrena marko"
+msgstr ""
#: gtk/open-type-layout.h:70
-#, fuzzy
msgctxt "OpenType layout"
msgid "Left-to-right mirrored forms"
-msgstr "LRM dekstrena marko"
+msgstr ""
#: gtk/open-type-layout.h:71
msgctxt "OpenType layout"
@@ -4452,7 +4935,7 @@ msgstr ""
#: gtk/open-type-layout.h:74
msgctxt "OpenType layout"
msgid "Mathematical Greek"
-msgstr ""
+msgstr "Matematika greka"
#: gtk/open-type-layout.h:75
msgctxt "OpenType layout"
@@ -4472,7 +4955,7 @@ msgstr ""
#: gtk/open-type-layout.h:78
msgctxt "OpenType layout"
msgid "NLC Kanji Forms"
-msgstr ""
+msgstr "NLC-kanji-formoj"
#: gtk/open-type-layout.h:79
msgctxt "OpenType layout"
@@ -4480,6 +4963,7 @@ msgid "Nukta Forms"
msgstr ""
#: gtk/open-type-layout.h:80
+#, fuzzy
msgctxt "OpenType layout"
msgid "Numerators"
msgstr "Numerantoj"
@@ -4495,10 +4979,9 @@ msgid "Optical Bounds"
msgstr ""
#: gtk/open-type-layout.h:83
-#, fuzzy
msgctxt "OpenType layout"
msgid "Ordinals"
-msgstr "Signaloj"
+msgstr ""
#: gtk/open-type-layout.h:84
msgctxt "OpenType layout"
@@ -4558,7 +5041,7 @@ msgstr ""
#: gtk/open-type-layout.h:95
msgctxt "OpenType layout"
msgid "Randomize"
-msgstr ""
+msgstr "Hazardigi"
#: gtk/open-type-layout.h:96
msgctxt "OpenType layout"
@@ -4573,7 +5056,7 @@ msgstr ""
#: gtk/open-type-layout.h:98
msgctxt "OpenType layout"
msgid "Required Ligatures"
-msgstr ""
+msgstr "Necesaj ligaĵoj"
#: gtk/open-type-layout.h:99
msgctxt "OpenType layout"
@@ -4586,16 +5069,14 @@ msgid "Right Bounds"
msgstr ""
#: gtk/open-type-layout.h:101
-#, fuzzy
msgctxt "OpenType layout"
msgid "Right-to-left alternates"
-msgstr "RLM maldekstrena marko"
+msgstr ""
#: gtk/open-type-layout.h:102
-#, fuzzy
msgctxt "OpenType layout"
msgid "Right-to-left mirrored forms"
-msgstr "RLM maldekstrena marko"
+msgstr ""
#: gtk/open-type-layout.h:103
msgctxt "OpenType layout"
@@ -4625,7 +5106,7 @@ msgstr "Optika grando"
#: gtk/open-type-layout.h:108
msgctxt "OpenType layout"
msgid "Small Capitals"
-msgstr "Malgrandaj majuskloj"
+msgstr "Majuskletoj"
#: gtk/open-type-layout.h:109
msgctxt "OpenType layout"
@@ -4635,103 +5116,102 @@ msgstr "Simpligitaj formoj"
#: gtk/open-type-layout.h:110
msgctxt "OpenType layout"
msgid "Stylistic Set 1"
-msgstr ""
+msgstr "Stila serio 1"
#: gtk/open-type-layout.h:111
msgctxt "OpenType layout"
msgid "Stylistic Set 2"
-msgstr ""
+msgstr "Stila serio 2"
#: gtk/open-type-layout.h:112
msgctxt "OpenType layout"
msgid "Stylistic Set 3"
-msgstr ""
+msgstr "Stila serio 3"
#: gtk/open-type-layout.h:113
msgctxt "OpenType layout"
msgid "Stylistic Set 4"
-msgstr ""
+msgstr "Stila serio 4"
#: gtk/open-type-layout.h:114
msgctxt "OpenType layout"
msgid "Stylistic Set 5"
-msgstr ""
+msgstr "Stila serio 5"
#: gtk/open-type-layout.h:115
msgctxt "OpenType layout"
msgid "Stylistic Set 6"
-msgstr ""
+msgstr "Stila serio 6"
#: gtk/open-type-layout.h:116
msgctxt "OpenType layout"
msgid "Stylistic Set 7"
-msgstr ""
+msgstr "Stila serio 7"
#: gtk/open-type-layout.h:117
msgctxt "OpenType layout"
msgid "Stylistic Set 8"
-msgstr ""
+msgstr "Stila serio 8"
#: gtk/open-type-layout.h:118
msgctxt "OpenType layout"
msgid "Stylistic Set 9"
-msgstr ""
+msgstr "Stila serio 9"
#: gtk/open-type-layout.h:119
msgctxt "OpenType layout"
msgid "Stylistic Set 10"
-msgstr ""
+msgstr "Stila serio 10"
#: gtk/open-type-layout.h:120
msgctxt "OpenType layout"
msgid "Stylistic Set 11"
-msgstr ""
+msgstr "Stila serio 11"
#: gtk/open-type-layout.h:121
msgctxt "OpenType layout"
msgid "Stylistic Set 12"
-msgstr ""
+msgstr "Stila serio 12"
#: gtk/open-type-layout.h:122
msgctxt "OpenType layout"
msgid "Stylistic Set 13"
-msgstr ""
+msgstr "Stila serio 13"
#: gtk/open-type-layout.h:123
msgctxt "OpenType layout"
msgid "Stylistic Set 14"
-msgstr ""
+msgstr "Stila serio 14"
#: gtk/open-type-layout.h:124
msgctxt "OpenType layout"
msgid "Stylistic Set 15"
-msgstr ""
+msgstr "Stila serio 15"
#: gtk/open-type-layout.h:125
msgctxt "OpenType layout"
msgid "Stylistic Set 16"
-msgstr ""
+msgstr "Stila serio 16"
#: gtk/open-type-layout.h:126
msgctxt "OpenType layout"
msgid "Stylistic Set 17"
-msgstr ""
+msgstr "Stila serio 17"
#: gtk/open-type-layout.h:127
msgctxt "OpenType layout"
msgid "Stylistic Set 18"
-msgstr ""
+msgstr "Stila serio 18"
#: gtk/open-type-layout.h:128
msgctxt "OpenType layout"
msgid "Stylistic Set 19"
-msgstr ""
+msgstr "Stila serio 19"
#: gtk/open-type-layout.h:129
-#, fuzzy
msgctxt "OpenType layout"
msgid "Stylistic Set 20"
-msgstr "Artistic License 20"
+msgstr "Stila serio 20"
#: gtk/open-type-layout.h:130
msgctxt "OpenType layout"
@@ -4746,12 +5226,12 @@ msgstr ""
#: gtk/open-type-layout.h:132
msgctxt "OpenType layout"
msgid "Subscript"
-msgstr "Suba indico"
+msgstr "Malalta skribo"
#: gtk/open-type-layout.h:133
msgctxt "OpenType layout"
msgid "Superscript"
-msgstr "Supra indico"
+msgstr "Alta skribo"
#: gtk/open-type-layout.h:134
msgctxt "OpenType layout"
@@ -4761,7 +5241,7 @@ msgstr ""
#: gtk/open-type-layout.h:135
msgctxt "OpenType layout"
msgid "Titling"
-msgstr ""
+msgstr "Titoligado"
#: gtk/open-type-layout.h:136
msgctxt "OpenType layout"
@@ -4846,7 +5326,7 @@ msgstr ""
#: gtk/open-type-layout.h:152
msgctxt "OpenType layout"
msgid "Slashed Zero"
-msgstr "Trastrekita nulo"
+msgstr "Strekita nulo"
#: gtk/paper_names_offsets.c:4
msgctxt "paper size"
@@ -5474,10 +5954,9 @@ msgid "European edp"
msgstr "Eŭropa edp"
#: gtk/paper_names_offsets.c:129
-#, fuzzy
msgctxt "paper size"
msgid "Executive"
-msgstr "Administra"
+msgstr "Plenuma"
#: gtk/paper_names_offsets.c:130
msgctxt "paper size"
@@ -5497,7 +5976,7 @@ msgstr "Usona Fan-Fold"
#: gtk/paper_names_offsets.c:133
msgctxt "paper size"
msgid "Fan-Fold German Legal"
-msgstr "Leĝa germana FanFold"
+msgstr "Leĝa germana Fan-Fold"
#: gtk/paper_names_offsets.c:134
msgctxt "paper size"
@@ -5622,7 +6101,7 @@ msgstr "Super B"
#: gtk/paper_names_offsets.c:158
msgctxt "paper size"
msgid "Wide Format"
-msgstr "Larĝa formato"
+msgstr "Larĝa formo"
#: gtk/paper_names_offsets.c:159
msgctxt "paper size"
@@ -5759,982 +6238,727 @@ msgctxt "paper size"
msgid "ROC 8k"
msgstr "ROC 8k"
-#: gtk/script-names.c:16
+#: gtk/script-names.c:18
msgctxt "Script"
msgid "Arabic"
msgstr "Araba"
-#: gtk/script-names.c:17
+#: gtk/script-names.c:19
msgctxt "Script"
msgid "Armenian"
msgstr "Armena"
-#: gtk/script-names.c:18
+#: gtk/script-names.c:20
msgctxt "Script"
msgid "Bengali"
msgstr "Bengala"
-#: gtk/script-names.c:19
+#: gtk/script-names.c:21
msgctxt "Script"
msgid "Bopomofo"
msgstr "Bopomofo"
-#: gtk/script-names.c:20
+#: gtk/script-names.c:22
msgctxt "Script"
msgid "Cherokee"
msgstr "Ĉeroka"
-#: gtk/script-names.c:21
+#: gtk/script-names.c:23
msgctxt "Script"
msgid "Coptic"
msgstr "Kopta"
-#: gtk/script-names.c:22
+#: gtk/script-names.c:24
msgctxt "Script"
msgid "Cyrillic"
msgstr "Cirila"
-#: gtk/script-names.c:23
+#: gtk/script-names.c:25
msgctxt "Script"
msgid "Deseret"
msgstr "Desereta"
-#: gtk/script-names.c:24
+#: gtk/script-names.c:26
msgctxt "Script"
msgid "Devanagari"
-msgstr "Nagario"
+msgstr "Nagaria"
-#: gtk/script-names.c:25
+#: gtk/script-names.c:27
msgctxt "Script"
msgid "Ethiopic"
msgstr "Etiopa"
-#: gtk/script-names.c:26
+#: gtk/script-names.c:28
msgctxt "Script"
msgid "Georgian"
-msgstr "Kartvela"
+msgstr "Karvela"
-#: gtk/script-names.c:27
+#: gtk/script-names.c:29
msgctxt "Script"
msgid "Gothic"
-msgstr "Gotika"
+msgstr "Gota"
-#: gtk/script-names.c:28
+#: gtk/script-names.c:30
msgctxt "Script"
msgid "Greek"
msgstr "Greka"
-#: gtk/script-names.c:29
+#: gtk/script-names.c:31
msgctxt "Script"
msgid "Gujarati"
msgstr "Guĝarata"
-#: gtk/script-names.c:30
+#: gtk/script-names.c:32
msgctxt "Script"
msgid "Gurmukhi"
-msgstr "Gurumuĥi"
+msgstr "Gurumuĥa"
-#: gtk/script-names.c:31
+#: gtk/script-names.c:33
msgctxt "Script"
msgid "Han"
msgstr "Hana"
-#: gtk/script-names.c:32
+#: gtk/script-names.c:34
msgctxt "Script"
msgid "Hangul"
-msgstr "Korea"
+msgstr "Hangula"
-#: gtk/script-names.c:33
+#: gtk/script-names.c:35
msgctxt "Script"
msgid "Hebrew"
msgstr "Hebrea"
-#: gtk/script-names.c:34
+#: gtk/script-names.c:36
msgctxt "Script"
msgid "Hiragana"
-msgstr "Rondaj kanaoj"
+msgstr "Hiragana"
-#: gtk/script-names.c:35
+#: gtk/script-names.c:37
msgctxt "Script"
msgid "Kannada"
-msgstr "Kannada"
+msgstr "Kanara"
-#: gtk/script-names.c:36
+#: gtk/script-names.c:38
msgctxt "Script"
msgid "Katakana"
-msgstr "Strekaj kanaoj"
+msgstr "Katakana"
-#: gtk/script-names.c:37
+#: gtk/script-names.c:39
msgctxt "Script"
msgid "Khmer"
-msgstr "Kmera"
+msgstr "Ĥmera"
-#: gtk/script-names.c:38
+#: gtk/script-names.c:40
msgctxt "Script"
msgid "Lao"
msgstr "Laosa"
-#: gtk/script-names.c:39
+#: gtk/script-names.c:41
msgctxt "Script"
msgid "Latin"
msgstr "Latina"
-#: gtk/script-names.c:40
+#: gtk/script-names.c:42
msgctxt "Script"
msgid "Malayalam"
msgstr "Malajala"
-#: gtk/script-names.c:41
+#: gtk/script-names.c:43
msgctxt "Script"
msgid "Mongolian"
msgstr "Mongola"
-#: gtk/script-names.c:42
+#: gtk/script-names.c:44
msgctxt "Script"
msgid "Myanmar"
-msgstr "Birmo"
+msgstr "Birma"
-#: gtk/script-names.c:43
+#: gtk/script-names.c:45
msgctxt "Script"
msgid "Ogham"
-msgstr "Ogama"
+msgstr "Ogamo"
-#: gtk/script-names.c:44
+#: gtk/script-names.c:46
msgctxt "Script"
msgid "Old Italic"
-msgstr "Antikva itala"
+msgstr "Malnova italika"
-#: gtk/script-names.c:45
+#: gtk/script-names.c:47
msgctxt "Script"
msgid "Oriya"
-msgstr "Orija"
+msgstr "Odia"
-#: gtk/script-names.c:46
+#: gtk/script-names.c:48
msgctxt "Script"
msgid "Runic"
msgstr "Runa"
-#: gtk/script-names.c:47
+#: gtk/script-names.c:49
msgctxt "Script"
msgid "Sinhala"
msgstr "Sinhala"
-#: gtk/script-names.c:48
+#: gtk/script-names.c:50
msgctxt "Script"
msgid "Syriac"
msgstr "Siria"
-#: gtk/script-names.c:49
+#: gtk/script-names.c:51
msgctxt "Script"
msgid "Tamil"
msgstr "Tamila"
-#: gtk/script-names.c:50
+#: gtk/script-names.c:52
msgctxt "Script"
msgid "Telugu"
-msgstr "Telugua"
+msgstr "Telegua"
-#: gtk/script-names.c:51
+#: gtk/script-names.c:53
msgctxt "Script"
msgid "Thaana"
-msgstr "Taana"
+msgstr "Maldiva"
-#: gtk/script-names.c:52
+#: gtk/script-names.c:54
msgctxt "Script"
msgid "Thai"
msgstr "Taja"
-#: gtk/script-names.c:53
+#: gtk/script-names.c:55
msgctxt "Script"
msgid "Tibetan"
msgstr "Tibeta"
-#: gtk/script-names.c:54
+#: gtk/script-names.c:56
msgctxt "Script"
msgid "Canadian Aboriginal"
-msgstr "Kanada aborigena"
+msgstr "Kanada Indiĝena"
-#: gtk/script-names.c:55
+#: gtk/script-names.c:57
msgctxt "Script"
msgid "Yi"
msgstr "Jia"
-#: gtk/script-names.c:56
+#: gtk/script-names.c:58
msgctxt "Script"
msgid "Tagalog"
msgstr "Tagaloga"
-#: gtk/script-names.c:57
+#: gtk/script-names.c:59
msgctxt "Script"
msgid "Hanunoo"
msgstr "Hanunoa"
-#: gtk/script-names.c:58
+#: gtk/script-names.c:60
msgctxt "Script"
msgid "Buhid"
msgstr "Buhida"
-#: gtk/script-names.c:59
+#: gtk/script-names.c:61
msgctxt "Script"
msgid "Tagbanwa"
msgstr "Tagbanva"
-#: gtk/script-names.c:60
+#: gtk/script-names.c:62
msgctxt "Script"
msgid "Braille"
-msgstr "Brajla"
+msgstr "Brajlo"
-#: gtk/script-names.c:61
+#: gtk/script-names.c:63
msgctxt "Script"
msgid "Cypriot"
-msgstr "Kipra"
+msgstr "Cipra"
-#: gtk/script-names.c:62
+#: gtk/script-names.c:64
msgctxt "Script"
msgid "Limbu"
msgstr "Limbua"
-#: gtk/script-names.c:63
+#: gtk/script-names.c:65
#, fuzzy
msgctxt "Script"
msgid "Osmanya"
msgstr "Somalia skribo"
-#: gtk/script-names.c:64
+#: gtk/script-names.c:66
msgctxt "Script"
msgid "Shavian"
msgstr "Ŝava"
-#: gtk/script-names.c:65
+#: gtk/script-names.c:67
msgctxt "Script"
msgid "Linear B"
-msgstr "Lineara B"
+msgstr "Linia skribo B"
-#: gtk/script-names.c:66
+#: gtk/script-names.c:68
msgctxt "Script"
msgid "Tai Le"
msgstr ""
-#: gtk/script-names.c:67
+#: gtk/script-names.c:69
msgctxt "Script"
msgid "Ugaritic"
msgstr "Ugarita"
-#: gtk/script-names.c:68
+#: gtk/script-names.c:70
+#, fuzzy
msgctxt "Script"
msgid "New Tai Lue"
-msgstr ""
+msgstr "Nova Tai Lue"
-#: gtk/script-names.c:69
+#: gtk/script-names.c:71
msgctxt "Script"
msgid "Buginese"
msgstr "Buĝia"
-#: gtk/script-names.c:70
+#: gtk/script-names.c:72
msgctxt "Script"
msgid "Glagolitic"
msgstr "Glagolica"
-#: gtk/script-names.c:71
+#: gtk/script-names.c:73
+#, fuzzy
msgctxt "Script"
msgid "Tifinagh"
-msgstr ""
+msgstr "Tifinagh (berbera skribsistemo)"
-#: gtk/script-names.c:72
+#: gtk/script-names.c:74
+#, fuzzy
msgctxt "Script"
msgid "Syloti Nagri"
-msgstr ""
+msgstr "Sileta"
-#: gtk/script-names.c:73
+#: gtk/script-names.c:75
msgctxt "Script"
msgid "Old Persian"
-msgstr "Antikva persa"
+msgstr "Malnovpersa"
-#: gtk/script-names.c:74
+#: gtk/script-names.c:76
msgctxt "Script"
msgid "Kharoshthi"
msgstr "Karoŝta"
-#: gtk/script-names.c:75
+#: gtk/script-names.c:77
msgctxt "Script"
msgid "Unknown"
msgstr "Nekonata"
-#: gtk/script-names.c:76
+#: gtk/script-names.c:78
msgctxt "Script"
msgid "Balinese"
msgstr "Balia"
-#: gtk/script-names.c:77
+#: gtk/script-names.c:79
msgctxt "Script"
msgid "Cuneiform"
-msgstr "Kojnoskribo"
+msgstr "Kojnoforma"
-#: gtk/script-names.c:78
+#: gtk/script-names.c:80
msgctxt "Script"
msgid "Phoenician"
msgstr "Fenica"
-#: gtk/script-names.c:79
+#: gtk/script-names.c:81
msgctxt "Script"
msgid "Phags-pa"
msgstr ""
-#: gtk/script-names.c:80
+#: gtk/script-names.c:82
msgctxt "Script"
msgid "N'Ko"
msgstr "Nokoa"
-#: gtk/script-names.c:81
+#: gtk/script-names.c:83
msgctxt "Script"
msgid "Kayah Li"
msgstr ""
-#: gtk/script-names.c:82
+#: gtk/script-names.c:84
msgctxt "Script"
msgid "Lepcha"
msgstr "Lepĉa"
-#: gtk/script-names.c:83
+#: gtk/script-names.c:85
msgctxt "Script"
msgid "Rejang"
msgstr ""
-#: gtk/script-names.c:84
+#: gtk/script-names.c:86
msgctxt "Script"
msgid "Sundanese"
msgstr "Sunda"
-#: gtk/script-names.c:85
+#: gtk/script-names.c:87
msgctxt "Script"
msgid "Saurashtra"
msgstr "Saŭraŝtra"
-#: gtk/script-names.c:86
+#: gtk/script-names.c:88
msgctxt "Script"
msgid "Cham"
msgstr "Ĉama"
-#: gtk/script-names.c:87
+#: gtk/script-names.c:89
msgctxt "Script"
msgid "Ol Chiki"
msgstr ""
-#: gtk/script-names.c:88
+#: gtk/script-names.c:90
msgctxt "Script"
msgid "Vai"
msgstr "Vaja"
-#: gtk/script-names.c:89
+#: gtk/script-names.c:91
msgctxt "Script"
msgid "Carian"
msgstr "Karia"
-#: gtk/script-names.c:90
+#: gtk/script-names.c:92
msgctxt "Script"
msgid "Lycian"
-msgstr "Likia"
+msgstr ""
-#: gtk/script-names.c:91
+#: gtk/script-names.c:93
msgctxt "Script"
msgid "Lydian"
msgstr "Lidia"
-#: gtk/script-names.c:92
+#: gtk/script-names.c:94
msgctxt "Script"
msgid "Avestan"
msgstr "Avesta"
-#: gtk/script-names.c:93
+#: gtk/script-names.c:95
msgctxt "Script"
msgid "Bamum"
msgstr "Bamuma"
-#: gtk/script-names.c:94
-#, fuzzy
+#: gtk/script-names.c:96
msgctxt "Script"
msgid "Egyptian Hieroglyphs"
msgstr "Egiptaj hieroglifoj"
-#: gtk/script-names.c:95
+#: gtk/script-names.c:97
msgctxt "Script"
msgid "Imperial Aramaic"
msgstr "Imperia aramea"
-#: gtk/script-names.c:96
+#: gtk/script-names.c:98
msgctxt "Script"
msgid "Inscriptional Pahlavi"
msgstr "Gravura palava"
-#: gtk/script-names.c:97
+#: gtk/script-names.c:99
msgctxt "Script"
msgid "Inscriptional Parthian"
msgstr "Gravura parta"
-#: gtk/script-names.c:98
+#: gtk/script-names.c:100
msgctxt "Script"
msgid "Javanese"
msgstr "Java"
-#: gtk/script-names.c:99
+#: gtk/script-names.c:101
msgctxt "Script"
msgid "Kaithi"
msgstr "Kajasta"
-#: gtk/script-names.c:100
+#: gtk/script-names.c:102
msgctxt "Script"
msgid "Lisu"
msgstr ""
-#: gtk/script-names.c:101
+#: gtk/script-names.c:103
msgctxt "Script"
msgid "Meetei Mayek"
-msgstr ""
+msgstr "Meitei Mayek"
-#: gtk/script-names.c:102
+#: gtk/script-names.c:104
msgctxt "Script"
msgid "Old South Arabian"
-msgstr "Malnova sud-araba"
+msgstr "Malnovsubaraba"
-#: gtk/script-names.c:103
+#: gtk/script-names.c:105
msgctxt "Script"
msgid "Old Turkic"
-msgstr "Antikva turka"
+msgstr "Malnovaturka"
-#: gtk/script-names.c:104
+#: gtk/script-names.c:106
msgctxt "Script"
msgid "Samaritan"
msgstr "Samaria"
-#: gtk/script-names.c:105
+#: gtk/script-names.c:107
msgctxt "Script"
msgid "Tai Tham"
msgstr ""
-#: gtk/script-names.c:106
+#: gtk/script-names.c:108
msgctxt "Script"
msgid "Tai Viet"
msgstr ""
-#: gtk/script-names.c:107
+#: gtk/script-names.c:109
msgctxt "Script"
msgid "Batak"
msgstr "Bataka"
-#: gtk/script-names.c:108
+#: gtk/script-names.c:110
msgctxt "Script"
msgid "Brahmi"
msgstr "Brahma"
-#: gtk/script-names.c:109
+#: gtk/script-names.c:111
msgctxt "Script"
msgid "Mandaic"
msgstr "Mandeia"
-#: gtk/script-names.c:110
+#: gtk/script-names.c:112
msgctxt "Script"
msgid "Chakma"
-msgstr ""
+msgstr "Ĉakma"
-#: gtk/script-names.c:111
+#: gtk/script-names.c:113
msgctxt "Script"
msgid "Meroitic Cursive"
msgstr ""
-#: gtk/script-names.c:112
+#: gtk/script-names.c:114
msgctxt "Script"
msgid "Meroitic Hieroglyphs"
msgstr ""
-#: gtk/script-names.c:113
+#: gtk/script-names.c:115
msgctxt "Script"
msgid "Miao"
msgstr ""
-#: gtk/script-names.c:114
+#: gtk/script-names.c:116
msgctxt "Script"
msgid "Sharada"
msgstr ""
-#: gtk/script-names.c:115
+#: gtk/script-names.c:117
msgctxt "Script"
msgid "Sora Sompeng"
msgstr ""
-#: gtk/script-names.c:116
+#: gtk/script-names.c:118
msgctxt "Script"
msgid "Takri"
msgstr ""
-#: gtk/script-names.c:117
+#: gtk/script-names.c:119
msgctxt "Script"
msgid "Bassa"
msgstr ""
-#: gtk/script-names.c:118
+#: gtk/script-names.c:120
msgctxt "Script"
msgid "Caucasian Albanian"
-msgstr ""
+msgstr "Kaŭkaza albana"
-#: gtk/script-names.c:119
+#: gtk/script-names.c:121
msgctxt "Script"
msgid "Duployan"
msgstr ""
-#: gtk/script-names.c:120
+#: gtk/script-names.c:122
msgctxt "Script"
msgid "Elbasan"
msgstr ""
-#: gtk/script-names.c:121
+#: gtk/script-names.c:123
msgctxt "Script"
msgid "Grantha"
msgstr ""
-#: gtk/script-names.c:122
+#: gtk/script-names.c:124
msgctxt "Script"
msgid "Khojki"
msgstr ""
-#: gtk/script-names.c:123
+#: gtk/script-names.c:125
msgctxt "Script"
msgid "Khudawadi, Sindhi"
msgstr ""
-#: gtk/script-names.c:124
+#: gtk/script-names.c:126
msgctxt "Script"
msgid "Linear A"
-msgstr ""
+msgstr "Linia skribo A"
-#: gtk/script-names.c:125
+#: gtk/script-names.c:127
msgctxt "Script"
msgid "Mahajani"
msgstr ""
-#: gtk/script-names.c:126
+#: gtk/script-names.c:128
msgctxt "Script"
msgid "Manichaean"
-msgstr ""
+msgstr "Maniĥea"
-#: gtk/script-names.c:127
+#: gtk/script-names.c:129
msgctxt "Script"
msgid "Mende Kikakui"
msgstr ""
-#: gtk/script-names.c:128
+#: gtk/script-names.c:130
msgctxt "Script"
msgid "Modi"
msgstr ""
-#: gtk/script-names.c:129
+#: gtk/script-names.c:131
msgctxt "Script"
msgid "Mro"
msgstr ""
-#: gtk/script-names.c:130
+#: gtk/script-names.c:132
msgctxt "Script"
msgid "Nabataean"
msgstr ""
-#: gtk/script-names.c:131
+#: gtk/script-names.c:133
msgctxt "Script"
msgid "Old North Arabian"
-msgstr "Malnova nord-araba"
+msgstr "Malnovnordaraba"
-#: gtk/script-names.c:132
+#: gtk/script-names.c:134
msgctxt "Script"
msgid "Old Permic"
-msgstr ""
+msgstr "Malnovperma"
-#: gtk/script-names.c:133
+#: gtk/script-names.c:135
msgctxt "Script"
msgid "Pahawh Hmong"
msgstr ""
-#: gtk/script-names.c:134
+#: gtk/script-names.c:136
msgctxt "Script"
msgid "Palmyrene"
msgstr ""
-#: gtk/script-names.c:135
+#: gtk/script-names.c:137
msgctxt "Script"
msgid "Pau Cin Hau"
msgstr ""
-#: gtk/script-names.c:136
+#: gtk/script-names.c:138
msgctxt "Script"
msgid "Psalter Pahlavi"
msgstr ""
-#: gtk/script-names.c:137
+#: gtk/script-names.c:139
msgctxt "Script"
msgid "Siddham"
msgstr ""
-#: gtk/script-names.c:138
+#: gtk/script-names.c:140
msgctxt "Script"
msgid "Tirhuta"
msgstr ""
-#: gtk/script-names.c:139
+#: gtk/script-names.c:141
msgctxt "Script"
msgid "Warang Citi"
msgstr ""
-#: gtk/script-names.c:140
+#: gtk/script-names.c:142
msgctxt "Script"
msgid "Ahom"
msgstr ""
-#: gtk/script-names.c:141
+#: gtk/script-names.c:143
msgctxt "Script"
msgid "Anatolian Hieroglyphs"
-msgstr ""
+msgstr "Anatoliaj hieroglifoj"
-#: gtk/script-names.c:142
+#: gtk/script-names.c:144
msgctxt "Script"
msgid "Hatran"
msgstr ""
-#: gtk/script-names.c:143
+#: gtk/script-names.c:145
msgctxt "Script"
msgid "Multani"
msgstr ""
-#: gtk/script-names.c:144
+#: gtk/script-names.c:146
msgctxt "Script"
msgid "Old Hungarian"
-msgstr ""
+msgstr "Hungara runoskribo"
-#: gtk/script-names.c:145
+#: gtk/script-names.c:147
msgctxt "Script"
msgid "Signwriting"
msgstr ""
-#: gtk/script-names.c:146
+#: gtk/script-names.c:148
msgctxt "Script"
msgid "Adlam"
msgstr ""
-#: gtk/script-names.c:147
+#: gtk/script-names.c:149
msgctxt "Script"
msgid "Bhaiksuki"
msgstr ""
-#: gtk/script-names.c:148
+#: gtk/script-names.c:150
msgctxt "Script"
msgid "Marchen"
msgstr ""
-#: gtk/script-names.c:149
+#: gtk/script-names.c:151
msgctxt "Script"
msgid "Newa"
msgstr ""
-#: gtk/script-names.c:150
+#: gtk/script-names.c:152
msgctxt "Script"
msgid "Osage"
msgstr ""
-#: gtk/script-names.c:151
+#: gtk/script-names.c:153
msgctxt "Script"
msgid "Tangut"
msgstr ""
-#: gtk/script-names.c:152
+#: gtk/script-names.c:154
msgctxt "Script"
msgid "Masaram Gondi"
msgstr ""
-#: gtk/script-names.c:153
+#: gtk/script-names.c:155
msgctxt "Script"
msgid "Nushu"
msgstr ""
-#: gtk/script-names.c:154
+#: gtk/script-names.c:156
msgctxt "Script"
msgid "Soyombo"
msgstr "Sojomba"
-#: gtk/script-names.c:155
+#: gtk/script-names.c:157
msgctxt "Script"
msgid "Zanabazar Square"
msgstr ""
-#: gtk/tools/encodesymbolic.c:39
-msgid "Output to this directory instead of cwd"
-msgstr "Eligi al tiu ĉi dosierujo anstataŭ la nuna (cwd)"
-
-#: gtk/tools/encodesymbolic.c:91
-#, c-format
-msgid "Invalid size %s\n"
-msgstr "Nevalida grando: %s\n"
-
-#: gtk/tools/encodesymbolic.c:103 gtk/tools/encodesymbolic.c:110
-#: gtk/tools/gtk-builder-tool.c:673
-#, c-format
-msgid "Can’t load file: %s\n"
-msgstr "Ne povas enlegi dosieron: %s\n"
-
-#: gtk/tools/encodesymbolic.c:140 gtk/tools/encodesymbolic.c:146
-#, c-format
-msgid "Can’t save file %s: %s\n"
-msgstr "Ne povas konservi dosieron %s : %s\n"
-
-#: gtk/tools/encodesymbolic.c:152
-#, c-format
-msgid "Can’t close stream"
-msgstr "Ne povas fermi fluon"
-
-#: gtk/tools/gtk-builder-tool.c:130
-#, c-format
-msgid "Packing property %s::%s not found\n"
-msgstr "Paka eco %s::%s ne troviĝis\n"
-
-#: gtk/tools/gtk-builder-tool.c:132
-#, c-format
-msgid "Cell property %s::%s not found\n"
-msgstr "Ĉela eco %s::%s ne troviĝis\n"
-
-#: gtk/tools/gtk-builder-tool.c:134
-#, c-format
-msgid "Property %s::%s not found\n"
-msgstr "Eco %s::%s ne troviĝis\n"
-
-#: gtk/tools/gtk-builder-tool.c:142
-#, c-format
-msgid "Couldn’t parse value for %s::%s: %s\n"
-msgstr "Ne povis analizi valoron por %s::%s: %s\n"
-
-#: gtk/tools/gtk-builder-tool.c:694
-#, c-format
-msgid "Can’t parse file: %s\n"
-msgstr "Ne povas analizi dosieron: %s\n"
-
-#: gtk/tools/gtk-builder-tool.c:1054
-#, c-format
-msgid ""
-"Usage:\n"
-" gtk-builder-tool [COMMAND] FILE\n"
-"\n"
-"Commands:\n"
-" validate Validate the file\n"
-" simplify [OPTIONS] Simplify the file\n"
-" enumerate List all named objects\n"
-" preview [OPTIONS] Preview the file\n"
-"\n"
-"Simplify Options:\n"
-" --replace Replace the file\n"
-"\n"
-"Preview Options:\n"
-" --id=ID Preview only the named object\n"
-" --css=FILE Use style from CSS file\n"
-"\n"
-"Perform various tasks on GtkBuilder .ui files.\n"
-msgstr ""
-"Uzo:\n"
-" gtk-builder-tool [KOMANDO] DOSIERO\n"
-"\n"
-"Komandoj:\n"
-" validate Validigi la dosieron\n"
-" simplify [ELEKTEBLOJ] Simpligi la dosieron\n"
-" enumerate Listigi ĉiujn nomitajn objektojn\n"
-" preview [ELEKTEBLOJ] Antaŭrigardigi la dosieron\n"
-"\n"
-"Elektebloj de simplify:\n"
-" --replace Anstataŭigi la dosieron\n"
-"\n"
-"Elektebloj de preview:\n"
-" --id=ID Antaŭrigardigi nur la nomitan objekton\n"
-" --css=FILE Uzi stilon de CSS-dosiero\n"
-"\n"
-"Diverse prifari .ui-dosierojn de GtkBuilder.\n"
-
-#: gtk/tools/gtk-launch.c:40
-msgid "Show program version"
-msgstr "Montri version de programo"
-
-#. Translators: this message will appear immediately after the
-#. usage string - Usage: COMMAND [OPTION…] <THIS_MESSAGE>
-#: gtk/tools/gtk-launch.c:74
-msgid "APPLICATION [URI…] — launch an APPLICATION"
-msgstr "APLIKAĴO [URI…] – lanĉi APLIKAĴON"
-
-#. Translators: this message will appear after the usage string
-#. and before the list of options.
-#: gtk/tools/gtk-launch.c:78
-msgid ""
-"Launch an application (specified by its desktop file name),\n"
-"optionally passing one or more URIs as arguments."
-msgstr ""
-"Lanĉi aplikaĵon (precizigitan per nomo de ĝia labortabla dosiernomo),\n"
-"elekteble donante unu aŭ pli da URI-oj kiel argumentojn."
-
-#: gtk/tools/gtk-launch.c:88
-#, c-format
-msgid "Error parsing commandline options: %s\n"
-msgstr "Eraro dum analizo de komandliniaj elektebloj: %s\n"
-
-#: gtk/tools/gtk-launch.c:90 gtk/tools/gtk-launch.c:111
-#, c-format
-msgid "Try “%s --help” for more information."
-msgstr "Provu “%s --help” por pliaj informoj."
-
-#. Translators: the %s is the program name. This error message
-#. means the user is calling gtk-launch without any argument.
-#: gtk/tools/gtk-launch.c:109
-#, c-format
-msgid "%s: missing application name"
-msgstr "%s: mankas nomo de aplikaĵo"
-
-#: gtk/tools/gtk-launch.c:138
-#, c-format
-msgid "Creating AppInfo from id not supported on non unix operating systems"
-msgstr "Kreado de AppInfo el identigaĵo ne subtenata de neuniksaj operaciumoj"
-
-#. Translators: the first %s is the program name, the second one
-#. is the application name.
-#: gtk/tools/gtk-launch.c:146
-#, c-format
-msgid "%s: no such application %s"
-msgstr "%s: neniu tia aplikaĵo %s"
-
-#. Translators: the first %s is the program name, the second one
-#. is the error message.
-#: gtk/tools/gtk-launch.c:164
-#, c-format
-msgid "%s: error launching application: %s\n"
-msgstr "%s: eraro rulante aplikaĵo: %s\n"
-
-#: gtk/tools/updateiconcache.c:1392
-#, c-format
-msgid "Failed to write header\n"
-msgstr "Malsukcesis skribi ĉapon\n"
-
-#: gtk/tools/updateiconcache.c:1398
-#, c-format
-msgid "Failed to write hash table\n"
-msgstr "Malsukcesis skribi hakettabelon\n"
-
-#: gtk/tools/updateiconcache.c:1404
-#, c-format
-msgid "Failed to write folder index\n"
-msgstr "Malsukcesis skribi la indekson de dosierujoj\n"
-
-#: gtk/tools/updateiconcache.c:1412
-#, c-format
-msgid "Failed to rewrite header\n"
-msgstr "Malsukcesis reskribi ĉapon\n"
-
-#: gtk/tools/updateiconcache.c:1506
-#, c-format
-msgid "Failed to open file %s : %s\n"
-msgstr "Malsukcesis malfermi dosieron %s : %s\n"
-
-#: gtk/tools/updateiconcache.c:1514 gtk/tools/updateiconcache.c:1544
-#, c-format
-msgid "Failed to write cache file: %s\n"
-msgstr "Malsukcesis skribi la kaŝdosieron: %s\n"
-
-#: gtk/tools/updateiconcache.c:1554
-#, c-format
-msgid "The generated cache was invalid.\n"
-msgstr "La generita kaŝmemoro estis nevalida.\n"
-
-#: gtk/tools/updateiconcache.c:1568
-#, c-format
-msgid "Could not rename %s to %s: %s, removing %s then.\n"
-msgstr "Ne povis alinomi %s al %s: %s, tiuokaze forigante %s-n.\n"
-
-#: gtk/tools/updateiconcache.c:1582
-#, c-format
-msgid "Could not rename %s to %s: %s\n"
-msgstr "Ne povis alinomi %s al %s: %s\n"
-
-#: gtk/tools/updateiconcache.c:1592
-#, c-format
-msgid "Could not rename %s back to %s: %s.\n"
-msgstr "Ne povis alinomi %s ree al %s: %s.\n"
-
-#: gtk/tools/updateiconcache.c:1619
-#, c-format
-msgid "Cache file created successfully.\n"
-msgstr "Kaŝmemora dosiero sukcese kreita.\n"
-
-#: gtk/tools/updateiconcache.c:1658
-msgid "Overwrite an existing cache, even if up to date"
-msgstr "Anstataŭigi jaman kaŝmemoron, eĉ se ĝi estas ĝisdata"
-
-#: gtk/tools/updateiconcache.c:1659
-msgid "Don’t check for the existence of index.theme"
-msgstr "Ne kontroli ekziston de index.theme"
-
-#: gtk/tools/updateiconcache.c:1660
-msgid "Don’t include image data in the cache"
-msgstr "Ne inkluzivi bildodatumojn en la kaŝmemoro"
-
-#: gtk/tools/updateiconcache.c:1661
-msgid "Include image data in the cache"
-msgstr "Inkluzivi bildodatumojn en la kaŝmemoro"
-
-#: gtk/tools/updateiconcache.c:1662
-msgid "Output a C header file"
-msgstr "Eligi C-kapdosieron"
-
-#: gtk/tools/updateiconcache.c:1663
-msgid "Turn off verbose output"
-msgstr "Malŝalti detalan eligon"
-
-#: gtk/tools/updateiconcache.c:1664
-msgid "Validate existing icon cache"
-msgstr "Certigi validecon de bildsimbola kaŝmemoro"
-
-#: gtk/tools/updateiconcache.c:1731
-#, c-format
-msgid "File not found: %s\n"
-msgstr "Dosiero ne troviĝis: %s\n"
-
-#: gtk/tools/updateiconcache.c:1737
-#, c-format
-msgid "Not a valid icon cache: %s\n"
-msgstr "Ne estas valida bildsimbola kaŝmemoro: %s\n"
-
-#: gtk/tools/updateiconcache.c:1750
-#, c-format
-msgid "No theme index file.\n"
-msgstr "Neniu haŭtan indeks-dosiero.\n"
-
-#: gtk/tools/updateiconcache.c:1754
-#, c-format
-msgid ""
-"No theme index file in “%s”.\n"
-"If you really want to create an icon cache here, use --ignore-theme-index.\n"
-msgstr ""
-"Neniu haŭta indeks-dosiero en “%s”.\n"
-"Se vi vere volas krei bildsimbolan kaŝmemoron ĉi tie, uzu --ignore-theme-"
-"index.\n"
-
-#: gtk/ui/gtkaboutdialog.ui:106
+#: gtk/ui/gtkaboutdialog.ui:133
msgid "About"
msgstr "Pri"
-#: gtk/ui/gtkaboutdialog.ui:141
+#: gtk/ui/gtkaboutdialog.ui:173
msgid "Credits"
msgstr "Dankoj"
-#: gtk/ui/gtkaboutdialog.ui:223
-msgid "System"
-msgstr "Sistemo"
-
-#: gtk/ui/gtkappchooserdialog.ui:65
+#: gtk/ui/gtkappchooserdialog.ui:78
msgid "_View All Applications"
msgstr "_Montri ĉiujn aplikaĵojn"
-#: gtk/ui/gtkappchooserdialog.ui:72
+#: gtk/ui/gtkappchooserdialog.ui:86
msgid "_Find New Applications"
msgstr "_Serĉi novajn aplikaĵojn"
-#: gtk/ui/gtkappchooserwidget.ui:110
+#: gtk/ui/gtkappchooserwidget.ui:117
msgid "No applications found."
msgstr "Neniuj aplikaĵoj trovitaj."
@@ -6770,301 +6994,284 @@ msgstr "Montri ĉiujn"
msgid "Quit %s"
msgstr "Fini %s"
-#: gtk/ui/gtkassistant.ui:56
+#: gtk/ui/gtkassistant.ui:68
msgid "_Next"
msgstr "_Sekva"
-#: gtk/ui/gtkassistant.ui:73
+#: gtk/ui/gtkassistant.ui:88
msgid "_Back"
msgstr "_Reen"
-#: gtk/ui/gtkassistant.ui:90
+#: gtk/ui/gtkassistant.ui:107
msgid "_Finish"
msgstr "_Fini"
-#: gtk/ui/gtkcolorchooserdialog.ui:5
+#: gtk/ui/gtkcolorchooserdialog.ui:6
msgid "Select a Color"
msgstr "Elekti koloron"
-#: gtk/ui/gtkcoloreditor.ui:46
+#: gtk/ui/gtkcoloreditor.ui:57
msgid "Pick a color from the screen"
-msgstr "Elekti koloron el la ekrano"
+msgstr "Elektu koloron el la ekrano"
-#: gtk/ui/gtkcoloreditor.ui:75
+#: gtk/ui/gtkcoloreditor.ui:89
msgid "Color Name"
msgstr "Nomo de la koloro"
-#: gtk/ui/gtkcoloreditor.ui:158
+#: gtk/ui/gtkcoloreditor.ui:180
msgctxt "Color channel"
msgid "A"
msgstr "A"
-#: gtk/ui/gtkcoloreditor.ui:173
+#: gtk/ui/gtkcoloreditor.ui:196
msgid "Alpha"
msgstr "Alfo"
-#: gtk/ui/gtkcoloreditor.ui:200
+#: gtk/ui/gtkcoloreditor.ui:227
msgctxt "Color channel"
msgid "H"
msgstr "N"
-#: gtk/ui/gtkcoloreditor.ui:215
+#: gtk/ui/gtkcoloreditor.ui:243
msgid "Hue"
msgstr "Nuanco"
-#: gtk/ui/gtkcoloreditor.ui:243
+#: gtk/ui/gtkcoloreditor.ui:275
msgctxt "Color Channel"
msgid "S"
msgstr "S"
-#: gtk/ui/gtkcoloreditor.ui:252
+#: gtk/ui/gtkcoloreditor.ui:285
msgctxt "Color Channel"
msgid "V"
msgstr "V"
-#: gtk/ui/gtkcoloreditor.ui:267
+#: gtk/ui/gtkcoloreditor.ui:301
msgid "Saturation"
msgstr "Satureco"
-#: gtk/ui/gtkemojichooser.ui:56 gtk/ui/gtkemojichooser.ui:212
-msgctxt "emoji category"
+#: gtk/ui/gtkemojichooser.ui:53 gtk/ui/gtkemojichooser.ui:212
msgid "Smileys & People"
msgstr "Mienoj & Homoj"
-#: gtk/ui/gtkemojichooser.ui:80 gtk/ui/gtkemojichooser.ui:221
-msgctxt "emoji category"
+#: gtk/ui/gtkemojichooser.ui:68 gtk/ui/gtkemojichooser.ui:227
msgid "Body & Clothing"
-msgstr "Korpo & Vestaĵoj"
+msgstr "Korpo & Vestoj"
-#: gtk/ui/gtkemojichooser.ui:104 gtk/ui/gtkemojichooser.ui:230
-msgctxt "emoji category"
+#: gtk/ui/gtkemojichooser.ui:83 gtk/ui/gtkemojichooser.ui:242
msgid "Animals & Nature"
msgstr "Bestoj & Naturo"
-#: gtk/ui/gtkemojichooser.ui:117 gtk/ui/gtkemojichooser.ui:239
-msgctxt "emoji category"
+#: gtk/ui/gtkemojichooser.ui:98 gtk/ui/gtkemojichooser.ui:257
msgid "Food & Drink"
-msgstr "Manĝaĵo & Trinkaĵo"
+msgstr "Manĝo & Trinko"
-#: gtk/ui/gtkemojichooser.ui:130 gtk/ui/gtkemojichooser.ui:248
-msgctxt "emoji category"
+#: gtk/ui/gtkemojichooser.ui:113 gtk/ui/gtkemojichooser.ui:272
msgid "Travel & Places"
msgstr "Vojaĝado & Lokoj"
-#: gtk/ui/gtkemojichooser.ui:143 gtk/ui/gtkemojichooser.ui:257
-msgctxt "emoji category"
+#: gtk/ui/gtkemojichooser.ui:128 gtk/ui/gtkemojichooser.ui:287
msgid "Activities"
-msgstr "Agadoj"
+msgstr "Agoj"
-#: gtk/ui/gtkemojichooser.ui:156 gtk/ui/gtkemojichooser.ui:266
+#: gtk/ui/gtkemojichooser.ui:143 gtk/ui/gtkemojichooser.ui:302
msgctxt "emoji category"
msgid "Objects"
msgstr "Objektoj"
-#: gtk/ui/gtkemojichooser.ui:169 gtk/ui/gtkemojichooser.ui:275
-msgctxt "emoji category"
+#: gtk/ui/gtkemojichooser.ui:158 gtk/ui/gtkemojichooser.ui:317
msgid "Symbols"
msgstr "Simboloj"
-#: gtk/ui/gtkemojichooser.ui:182 gtk/ui/gtkemojichooser.ui:284
-msgctxt "emoji category"
+#: gtk/ui/gtkemojichooser.ui:173 gtk/ui/gtkemojichooser.ui:332
msgid "Flags"
msgstr "Flagoj"
-#: gtk/ui/gtkemojichooser.ui:203
-msgctxt "emoji category"
-msgid "Recent"
-msgstr "Lastatempaj"
-
-#: gtk/ui/gtkfilechooserwidget.ui:62
+#: gtk/ui/gtkfilechooserwidget.ui:69
msgid "Create Folder"
msgstr "Krei dosierujon"
-#: gtk/ui/gtkfilechooserwidget.ui:143
+#: gtk/ui/gtkfilechooserwidget.ui:168
msgid "Files"
msgstr "Dosieroj"
-#: gtk/ui/gtkfilechooserwidget.ui:248
+#: gtk/ui/gtkfilechooserwidget.ui:261
msgid "Remote location — only searching the current folder"
msgstr "Fora loko – serĉado nur en la nuna dosierujo"
-#: gtk/ui/gtkfilechooserwidget.ui:408
+#: gtk/ui/gtkfilechooserwidget.ui:433
msgid "Folder Name"
msgstr "Dosieruja nomo"
-#: gtk/ui/gtkfilechooserwidget.ui:434
+#: gtk/ui/gtkfilechooserwidget.ui:461
msgid "_Create"
msgstr "_Krei"
-#: gtk/ui/gtkfontchooserdialog.ui:5
+#: gtk/ui/gtkfontchooserdialog.ui:6
msgid "Select Font"
msgstr "Elekti tiparon"
-#: gtk/ui/gtkfontchooserwidget.ui:50
+#: gtk/ui/gtkfontchooserwidget.ui:53
msgid "Search font name"
msgstr "Serĉi tiparan nomon"
-#: gtk/ui/gtkfontchooserwidget.ui:93
+#: gtk/ui/gtkfontchooserwidget.ui:100
msgid "Font Family"
msgstr "Tipara familio"
-#: gtk/ui/gtkfontchooserwidget.ui:113 gtk/ui/gtkfontchooserwidget.ui:240
+#: gtk/ui/gtkfontchooserwidget.ui:121 gtk/ui/gtkfontchooserwidget.ui:248
msgid "Preview text"
msgstr "Antaŭrigardi tekston"
-#: gtk/ui/gtkfontchooserwidget.ui:116 gtk/ui/gtkfontchooserwidget.ui:147
-msgid "horizontal"
-msgstr "horizontale"
-
-#: gtk/ui/gtkfontchooserwidget.ui:196
+#: gtk/ui/gtkfontchooserwidget.ui:201
msgid "No Fonts Found"
msgstr "Neniu tiparo troviĝis"
-#: gtk/ui/gtkpagesetupunixdialog.ui:45
+#: gtk/ui/gtkpagesetupunixdialog.ui:47
msgid "_Format for:"
msgstr "_Aranĝo por:"
-#: gtk/ui/gtkpagesetupunixdialog.ui:76 gtk/ui/gtkprintunixdialog.ui:654
+#: gtk/ui/gtkpagesetupunixdialog.ui:80 gtk/ui/gtkprintunixdialog.ui:747
msgid "_Paper size:"
msgstr "_Paper-grando:"
-#: gtk/ui/gtkpagesetupunixdialog.ui:115
+#: gtk/ui/gtkpagesetupunixdialog.ui:122
msgid "_Orientation:"
msgstr "_Orientiĝo:"
-#: gtk/ui/gtkpagesetupunixdialog.ui:140 gtk/ui/gtkprintunixdialog.ui:698
+#: gtk/ui/gtkpagesetupunixdialog.ui:152 gtk/ui/gtkprintunixdialog.ui:794
msgid "Portrait"
msgstr "Vertikala orientiĝo"
-#: gtk/ui/gtkpagesetupunixdialog.ui:171 gtk/ui/gtkprintunixdialog.ui:700
+#: gtk/ui/gtkpagesetupunixdialog.ui:188 gtk/ui/gtkprintunixdialog.ui:796
msgid "Reverse portrait"
msgstr "Renversita vertikala orientiĝo"
-#: gtk/ui/gtkpagesetupunixdialog.ui:202 gtk/ui/gtkprintunixdialog.ui:699
+#: gtk/ui/gtkpagesetupunixdialog.ui:224 gtk/ui/gtkprintunixdialog.ui:795
msgid "Landscape"
msgstr "Horizontala orientiĝo"
-#: gtk/ui/gtkpagesetupunixdialog.ui:232 gtk/ui/gtkprintunixdialog.ui:701
+#: gtk/ui/gtkpagesetupunixdialog.ui:259 gtk/ui/gtkprintunixdialog.ui:797
msgid "Reverse landscape"
msgstr "Renversita horizontala orientiĝo"
-#: gtk/ui/gtkpathbar.ui:10
+#: gtk/ui/gtkpathbar.ui:11
msgid "Down Path"
msgstr "Malsuprena vojo"
-#: gtk/ui/gtkpathbar.ui:28
+#: gtk/ui/gtkpathbar.ui:36
msgid "Up Path"
msgstr "Suprena vojo"
-#: gtk/ui/gtkplacesview.ui:28
+#: gtk/ui/gtkplacesview.ui:30
msgid "Server Addresses"
msgstr "Servila adreso"
-#: gtk/ui/gtkplacesview.ui:40
+#: gtk/ui/gtkplacesview.ui:43
msgid ""
"Server addresses are made up of a protocol prefix and an address. Examples:"
msgstr ""
"Servilaj adresoj konsistas el protokola komencaĵo kaj adreso. Ekzemploj:"
-#: gtk/ui/gtkplacesview.ui:72
+#: gtk/ui/gtkplacesview.ui:78
msgid "Available Protocols"
msgstr "Disponeblaj protokoloj"
-#: gtk/ui/gtkplacesview.ui:85
+#: gtk/ui/gtkplacesview.ui:92
msgid "AppleTalk"
msgstr "AppleTalk"
-#: gtk/ui/gtkplacesview.ui:95
+#: gtk/ui/gtkplacesview.ui:103
msgid "File Transfer Protocol"
-msgstr "Dosiero-Transiga Protokolo"
+msgstr "FTP (dosiertransiga protokolo)"
-#: gtk/ui/gtkplacesview.ui:105
+#: gtk/ui/gtkplacesview.ui:114
msgid "Network File System"
msgstr "Reta dosiersistemo"
-#: gtk/ui/gtkplacesview.ui:115
+#: gtk/ui/gtkplacesview.ui:125
msgid "Samba"
msgstr "Samba"
-#: gtk/ui/gtkplacesview.ui:125
+#: gtk/ui/gtkplacesview.ui:136
msgid "SSH File Transfer Protocol"
-msgstr "SSH Dosiero-Transiga Protokolo"
+msgstr "SSH (dosiertransiga protokolo)"
-#: gtk/ui/gtkplacesview.ui:135
+#: gtk/ui/gtkplacesview.ui:147
msgid "WebDAV"
msgstr "WebDAV"
#. Translators: do not translate ftp:// and ftps://
-#: gtk/ui/gtkplacesview.ui:168
+#: gtk/ui/gtkplacesview.ui:183
msgid "ftp:// or ftps://"
msgstr "ftp:// aŭ ftps://"
-#: gtk/ui/gtkplacesview.ui:188
+#: gtk/ui/gtkplacesview.ui:205
msgid "smb://"
msgstr "smb://"
#. Translators: do not translate sftp:// and ssh://
-#: gtk/ui/gtkplacesview.ui:198
+#: gtk/ui/gtkplacesview.ui:216
msgid "sftp:// or ssh://"
msgstr "sftp:// aŭ ssh://"
#. Translators: do not translate dav:// and davs://
-#: gtk/ui/gtkplacesview.ui:208
+#: gtk/ui/gtkplacesview.ui:227
msgid "dav:// or davs://"
msgstr "dav:// aŭ davs://"
#. Translators: Server as any successfully connected network address
-#: gtk/ui/gtkplacesview.ui:244
+#: gtk/ui/gtkplacesview.ui:267
msgid "No recent servers found"
msgstr "Neniuj lastatempaj serviloj troviĝis"
-#: gtk/ui/gtkplacesview.ui:265
+#: gtk/ui/gtkplacesview.ui:290
msgid "Recent Servers"
msgstr "Lastatempaj serviloj"
-#: gtk/ui/gtkplacesview.ui:355
+#: gtk/ui/gtkplacesview.ui:393
msgid "No results found"
msgstr "Neniuj rezultoj troviĝis"
-#: gtk/ui/gtkplacesview.ui:396
+#: gtk/ui/gtkplacesview.ui:439
msgid "Connect to _Server"
msgstr "Konektiĝi al _servilo"
-#: gtk/ui/gtkplacesview.ui:426
+#: gtk/ui/gtkplacesview.ui:472
msgid "Enter server address…"
msgstr "Engi serviladreson…"
-#: gtk/ui/gtkprintunixdialog.ui:106
+#: gtk/ui/gtkprintunixdialog.ui:112
msgid "Printer"
msgstr "Presilo"
#. this is the header for the printer status column in the print dialog
-#: gtk/ui/gtkprintunixdialog.ui:128
+#: gtk/ui/gtkprintunixdialog.ui:134
msgid "Status"
msgstr "Stato"
-#: gtk/ui/gtkprintunixdialog.ui:165
+#: gtk/ui/gtkprintunixdialog.ui:181
msgid "Range"
msgstr "Amplekso"
-#: gtk/ui/gtkprintunixdialog.ui:181
+#: gtk/ui/gtkprintunixdialog.ui:201
msgid "_All Pages"
msgstr "Ĉiuj p_aĝoj"
-#: gtk/ui/gtkprintunixdialog.ui:195
+#: gtk/ui/gtkprintunixdialog.ui:216
msgid "C_urrent Page"
msgstr "_Nuna paĝo"
-#: gtk/ui/gtkprintunixdialog.ui:211
+#: gtk/ui/gtkprintunixdialog.ui:233
msgid "Se_lection"
msgstr "_Elekto"
-#: gtk/ui/gtkprintunixdialog.ui:227
+#: gtk/ui/gtkprintunixdialog.ui:249
msgid "Pag_es:"
msgstr "_Paĝoj:"
-#: gtk/ui/gtkprintunixdialog.ui:229 gtk/ui/gtkprintunixdialog.ui:246
-#: gtk/ui/gtkprintunixdialog.ui:252
+#: gtk/ui/gtkprintunixdialog.ui:252 gtk/ui/gtkprintunixdialog.ui:270
+#: gtk/ui/gtkprintunixdialog.ui:277
msgid ""
"Specify one or more page ranges,\n"
" e.g. 1–3, 7, 11"
@@ -7072,112 +7279,112 @@ msgstr ""
"Specifu unu aŭ pli da paĝaj ampleksoj,\n"
" ekz. 1-3, 7, 11"
-#: gtk/ui/gtkprintunixdialog.ui:251
+#: gtk/ui/gtkprintunixdialog.ui:276
msgid "Pages"
msgstr "Paĝoj"
-#: gtk/ui/gtkprintunixdialog.ui:281
+#: gtk/ui/gtkprintunixdialog.ui:311
msgid "Copies"
msgstr "Kopioj"
-#: gtk/ui/gtkprintunixdialog.ui:299
+#: gtk/ui/gtkprintunixdialog.ui:334
msgid "Copie_s:"
msgstr "Kopio_j:"
-#: gtk/ui/gtkprintunixdialog.ui:323
+#: gtk/ui/gtkprintunixdialog.ui:361
msgid "C_ollate"
msgstr "K_unigi"
-#: gtk/ui/gtkprintunixdialog.ui:335
+#: gtk/ui/gtkprintunixdialog.ui:375
msgid "_Reverse"
msgstr "_Retroigi"
-#: gtk/ui/gtkprintunixdialog.ui:398
+#: gtk/ui/gtkprintunixdialog.ui:452
msgid "Layout"
msgstr "Aranĝo"
-#: gtk/ui/gtkprintunixdialog.ui:416
+#: gtk/ui/gtkprintunixdialog.ui:475
msgid "T_wo-sided:"
msgstr "Ambaŭ-_flanke:"
-#: gtk/ui/gtkprintunixdialog.ui:438
+#: gtk/ui/gtkprintunixdialog.ui:500
msgid "Pages per _side:"
msgstr "Paĝoj flank_e:"
-#: gtk/ui/gtkprintunixdialog.ui:462
+#: gtk/ui/gtkprintunixdialog.ui:527
msgid "Page or_dering:"
msgstr "Or_digo de paĝoj:"
-#: gtk/ui/gtkprintunixdialog.ui:485
+#: gtk/ui/gtkprintunixdialog.ui:553
msgid "_Only print:"
msgstr "_Nur presi:"
-#: gtk/ui/gtkprintunixdialog.ui:501
+#: gtk/ui/gtkprintunixdialog.ui:570
msgid "All sheets"
msgstr "Ĉiuj folioj"
-#: gtk/ui/gtkprintunixdialog.ui:502
+#: gtk/ui/gtkprintunixdialog.ui:571
msgid "Even sheets"
msgstr "Paraj folioj"
-#: gtk/ui/gtkprintunixdialog.ui:503
+#: gtk/ui/gtkprintunixdialog.ui:572
msgid "Odd sheets"
msgstr "Neparaj folioj"
-#: gtk/ui/gtkprintunixdialog.ui:515
+#: gtk/ui/gtkprintunixdialog.ui:585
msgid "Sc_ale:"
msgstr "Sk_alo:"
-#: gtk/ui/gtkprintunixdialog.ui:570
+#: gtk/ui/gtkprintunixdialog.ui:649
msgid "Paper"
msgstr "Papero"
-#: gtk/ui/gtkprintunixdialog.ui:588
+#: gtk/ui/gtkprintunixdialog.ui:672
msgid "Paper _type:"
msgstr "_Tipo de papero:"
-#: gtk/ui/gtkprintunixdialog.ui:610
+#: gtk/ui/gtkprintunixdialog.ui:697
msgid "Paper _source:"
msgstr "_Fonto de papero:"
-#: gtk/ui/gtkprintunixdialog.ui:632
+#: gtk/ui/gtkprintunixdialog.ui:722
msgid "Output t_ray:"
msgstr "_Eliga pleto:"
-#: gtk/ui/gtkprintunixdialog.ui:681
+#: gtk/ui/gtkprintunixdialog.ui:776
msgid "Or_ientation:"
msgstr "Or_ientiĝo:"
-#: gtk/ui/gtkprintunixdialog.ui:765
+#: gtk/ui/gtkprintunixdialog.ui:876
msgid "Job Details"
msgstr "Detaloj de tasko"
-#: gtk/ui/gtkprintunixdialog.ui:783
+#: gtk/ui/gtkprintunixdialog.ui:899
msgid "Pri_ority:"
msgstr "Pri_oritato:"
-#: gtk/ui/gtkprintunixdialog.ui:803
+#: gtk/ui/gtkprintunixdialog.ui:923
msgid "_Billing info:"
msgstr "_Paga informo:"
-#: gtk/ui/gtkprintunixdialog.ui:841
+#: gtk/ui/gtkprintunixdialog.ui:967
msgid "Print Document"
msgstr "Presi dokumenton"
#. this is one of the choices for the print at option in the print dialog
-#: gtk/ui/gtkprintunixdialog.ui:857
+#: gtk/ui/gtkprintunixdialog.ui:987
msgid "_Now"
msgstr "_Nun"
#. this is one of the choices for the print at option in the print dialog. It also serves as the label for an entry that allows the user to enter a time.
-#: gtk/ui/gtkprintunixdialog.ui:872
+#: gtk/ui/gtkprintunixdialog.ui:1003
msgid "A_t:"
msgstr "Ĉ_e:"
#. Ability to parse the am/pm format depends on actual locale. You can remove the am/pm values below for your locale if they are not supported.
-#: gtk/ui/gtkprintunixdialog.ui:875 gtk/ui/gtkprintunixdialog.ui:877
-#: gtk/ui/gtkprintunixdialog.ui:895 gtk/ui/gtkprintunixdialog.ui:897
-#: gtk/ui/gtkprintunixdialog.ui:902
+#: gtk/ui/gtkprintunixdialog.ui:1007 gtk/ui/gtkprintunixdialog.ui:1009
+#: gtk/ui/gtkprintunixdialog.ui:1028 gtk/ui/gtkprintunixdialog.ui:1030
+#: gtk/ui/gtkprintunixdialog.ui:1037
msgid ""
"Specify the time of print,\n"
" e.g. 15∶30, 2∶35 pm, 14∶15∶20, 11∶46∶30 am, 4 pm"
@@ -7185,560 +7392,747 @@ msgstr ""
"Specifu la tempon de preso,\n"
" ekz. 15:30, 2:35 ptm, 14:15:20, 11:46:30 atm, 4 ptm"
-#: gtk/ui/gtkprintunixdialog.ui:901
+#: gtk/ui/gtkprintunixdialog.ui:1036
msgid "Time of print"
msgstr "Tempo de preso"
#. this is one of the choices for the print at option in the print dialog. It means that the print job will not be printed until it explicitly gets 'released'.
-#: gtk/ui/gtkprintunixdialog.ui:915
+#: gtk/ui/gtkprintunixdialog.ui:1050
msgid "On _hold"
msgstr "Pro_krastita"
-#: gtk/ui/gtkprintunixdialog.ui:918 gtk/ui/gtkprintunixdialog.ui:919
+#: gtk/ui/gtkprintunixdialog.ui:1054 gtk/ui/gtkprintunixdialog.ui:1055
msgid "Hold the job until it is explicitly released"
msgstr "Haltigi la taskon ĝis malimplicita malhaltigo"
-#: gtk/ui/gtkprintunixdialog.ui:953
+#: gtk/ui/gtkprintunixdialog.ui:1092
msgid "Add Cover Page"
msgstr "Aldoni komencan paĝon"
#. this is the label used for the option in the print dialog that controls the front cover page.
-#: gtk/ui/gtkprintunixdialog.ui:971
+#: gtk/ui/gtkprintunixdialog.ui:1115
msgid "Be_fore:"
msgstr "An_taŭ:"
#. this is the label used for the option in the print dialog that controls the back cover page.
-#: gtk/ui/gtkprintunixdialog.ui:991
+#: gtk/ui/gtkprintunixdialog.ui:1139
msgid "_After:"
msgstr "_Post:"
-#: gtk/ui/gtkprintunixdialog.ui:1028
+#: gtk/ui/gtkprintunixdialog.ui:1181
msgid "Job"
msgstr "Tasko"
#. This will appear as a tab label in the print dialog.
-#: gtk/ui/gtkprintunixdialog.ui:1059
+#: gtk/ui/gtkprintunixdialog.ui:1214
msgid "Image Quality"
msgstr "Kvalito de bildo"
#. This will appear as a tab label in the print dialog.
-#: gtk/ui/gtkprintunixdialog.ui:1089
+#: gtk/ui/gtkprintunixdialog.ui:1247
msgid "Color"
msgstr "Koloro"
#. This will appear as a tab label in the print dialog. It's a typographical term, as in "Binding and finishing"
-#: gtk/ui/gtkprintunixdialog.ui:1119
+#: gtk/ui/gtkprintunixdialog.ui:1280
msgid "Finishing"
-msgstr "Finanta"
+msgstr "Finante"
-#: gtk/ui/gtkprintunixdialog.ui:1149
+#: gtk/ui/gtkprintunixdialog.ui:1313
msgid "Advanced"
msgstr "Progresinte"
-#: gtk/ui/gtkprintunixdialog.ui:1167
+#: gtk/ui/gtkprintunixdialog.ui:1337
msgid "Some of the settings in the dialog conflict"
msgstr "Kelkaj agordoj en la dialogo malakordas"
-#: gtk/ui/gtkvolumebutton.ui:23
+#: gtk/ui/gtkrecentchooserdefault.ui:78
+msgid "Select which type of documents are shown"
+msgstr "Elektu kiuj dosier-tipoj montriĝos"
+
+#: gtk/ui/gtkvolumebutton.ui:24
msgid "Volume"
msgstr "Laŭteco"
-#: gtk/ui/gtkvolumebutton.ui:24
+#: gtk/ui/gtkvolumebutton.ui:25
msgid "Turns volume up or down"
msgstr "Plilaŭtigas aŭ malplilaŭtigas"
-#: gtk/ui/gtkvolumebutton.ui:33
+#: gtk/ui/gtkvolumebutton.ui:34
msgid "Volume Up"
msgstr "Laŭtigi"
-#: gtk/ui/gtkvolumebutton.ui:34
+#: gtk/ui/gtkvolumebutton.ui:35
msgid "Increases the volume"
msgstr "Plilaŭtigas"
-#: gtk/ui/gtkvolumebutton.ui:43
+#: gtk/ui/gtkvolumebutton.ui:44
msgid "Volume Down"
msgstr "Mallaŭtigi"
-#: gtk/ui/gtkvolumebutton.ui:44
+#: gtk/ui/gtkvolumebutton.ui:45
msgid "Decreases the volume"
msgstr "Malplilaŭtigas"
-#: modules/media/gtkffmediafile.c:216
+#: gtk/updateiconcache.c:1388
+#, c-format
+msgid "Failed to write header\n"
+msgstr "Malsukcesis skribi ĉapon\n"
+
+#: gtk/updateiconcache.c:1394
+#, c-format
+msgid "Failed to write hash table\n"
+msgstr "Malsukcesis skribi hakettabelon\n"
+
+#: gtk/updateiconcache.c:1400
+#, c-format
+msgid "Failed to write folder index\n"
+msgstr "Malsukcesis skribi la indekson de dosierujoj\n"
+
+#: gtk/updateiconcache.c:1408
+#, c-format
+msgid "Failed to rewrite header\n"
+msgstr "Malsukcesis reskribi ĉapon\n"
+
+#: gtk/updateiconcache.c:1502
+#, c-format
+msgid "Failed to open file %s : %s\n"
+msgstr "Malsukcesis malfermi dosieron %s : %s\n"
+
+#: gtk/updateiconcache.c:1510 gtk/updateiconcache.c:1540
+#, c-format
+msgid "Failed to write cache file: %s\n"
+msgstr "Malsukcesis skribi la kaŝdosieron: %s\n"
+
+#: gtk/updateiconcache.c:1550
+#, c-format
+msgid "The generated cache was invalid.\n"
+msgstr "La generita kaŝmemoro estis nevalida.\n"
+
+#: gtk/updateiconcache.c:1564
+#, c-format
+msgid "Could not rename %s to %s: %s, removing %s then.\n"
+msgstr "Ne povis alinomi %s al %s: %s, tiuokaze forigante %s-n.\n"
+
+#: gtk/updateiconcache.c:1578
#, c-format
-msgid "Unspecified error decoding video"
-msgstr "Nekonata eraro okazis dum malkodado de video"
+msgid "Could not rename %s to %s: %s\n"
+msgstr "Ne povis alinomi %s al %s: %s\n"
+
+#: gtk/updateiconcache.c:1588
+#, c-format
+msgid "Could not rename %s back to %s: %s.\n"
+msgstr "Ne povis alinomi %s ree al %s: %s.\n"
+
+#: gtk/updateiconcache.c:1615
+#, c-format
+msgid "Cache file created successfully.\n"
+msgstr "Kaŝmemora dosiero sukcese kreita.\n"
+
+#: gtk/updateiconcache.c:1654
+msgid "Overwrite an existing cache, even if up to date"
+msgstr "Anstataŭigi jaman kaŝmemoron, eĉ se ĝi estas ĝisdata"
+
+#: gtk/updateiconcache.c:1655
+msgid "Don't check for the existence of index.theme"
+msgstr "Ne kontroli ekziston de index.theme"
+
+#: gtk/updateiconcache.c:1656
+msgid "Don't include image data in the cache"
+msgstr "Ne inkluzivi bildodatumojn en la kaŝmemoro"
+
+#: gtk/updateiconcache.c:1657
+msgid "Include image data in the cache"
+msgstr "Inkluzivi bildodatumojn en la kaŝmemoro"
+
+#: gtk/updateiconcache.c:1658
+msgid "Output a C header file"
+msgstr "Eligi C-kapdosieron"
+
+#: gtk/updateiconcache.c:1659
+msgid "Turn off verbose output"
+msgstr "Malŝalti detalan eligon"
-#: modules/media/gtkffmediafile.c:318 modules/media/gtkffmediafile.c:492
-msgid "Not enough memory"
-msgstr "Ne sufiĉas memoro"
+#: gtk/updateiconcache.c:1660
+msgid "Validate existing icon cache"
+msgstr "Certigi validecon de bildsimbola kaŝmemoro"
-#: modules/media/gtkffmediafile.c:515
-msgid "Not a video file"
-msgstr "Ne estas video-dosiero"
+#: gtk/updateiconcache.c:1727
+#, c-format
+msgid "File not found: %s\n"
+msgstr "Dosiero ne troviĝis: %s\n"
-#: modules/media/gtkffmediafile.c:534
-msgid "Unsupported video codec"
-msgstr "Nesubtenata video-kodeko"
+#: gtk/updateiconcache.c:1733
+#, c-format
+msgid "Not a valid icon cache: %s\n"
+msgstr "Ne estas valida bildsimbola kaŝmemoro: %s\n"
+
+#: gtk/updateiconcache.c:1746
+#, c-format
+msgid "No theme index file.\n"
+msgstr "Neniu haŭtan indeks-dosiero.\n"
+
+#: gtk/updateiconcache.c:1750
+#, c-format
+msgid ""
+"No theme index file in '%s'.\n"
+"If you really want to create an icon cache here, use --ignore-theme-index.\n"
+msgstr ""
+"Neniu haŭta indeks-dosiero en '%s'.\n"
+"Se vi vere volas krei bildsimbolan kaŝmemoron ĉi tie, uzu --ignore-theme-"
+"index.\n"
+
+#. ID
+#: modules/input/imam-et.c:452
+msgctxt "input method menu"
+msgid "Amharic (EZ+)"
+msgstr "Amhara (EZ+)"
+
+#. ID
+#: modules/input/imbroadway.c:51
+msgctxt "input method menu"
+msgid "Broadway"
+msgstr "Broadway"
+
+#. ID
+#: modules/input/imcedilla.c:90
+msgctxt "input method menu"
+msgid "Cedilla"
+msgstr "Cedilo"
+
+#. ID
+#: modules/input/imcyrillic-translit.c:215
+msgctxt "input menthod menu"
+msgid "Cyrillic (Transliterated)"
+msgstr "Cirila (transliterita)"
+
+#: modules/input/imime.c:30
+msgctxt "input method menu"
+msgid "Windows IME"
+msgstr "Windows IME"
+
+#. ID
+#: modules/input/iminuktitut.c:125
+msgctxt "input method menu"
+msgid "Inuktitut (Transliterated)"
+msgstr "Inuita (transliterita)"
+
+#. ID
+#: modules/input/imipa.c:143
+msgctxt "input method menu"
+msgid "IPA"
+msgstr "IPA"
+
+#. ID
+#: modules/input/immultipress.c:30
+msgctxt "input method menu"
+msgid "Multipress"
+msgstr "Multobla preso"
+
+#: modules/input/imquartz.c:58
+msgctxt "input method menu"
+msgid "Mac OS X Quartz"
+msgstr "Mac OS X Quartz"
+
+#. ID
+#: modules/input/imthai.c:33
+msgctxt "input method menu"
+msgid "Thai-Lao"
+msgstr "Taj-Laosa"
+
+#. ID
+#: modules/input/imti-er.c:451
+msgctxt "input method menu"
+msgid "Tigrigna-Eritrean (EZ+)"
+msgstr "Tigraja-Eritrea (EZ+)"
+
+#. ID
+#: modules/input/imti-et.c:451
+msgctxt "input method menu"
+msgid "Tigrigna-Ethiopian (EZ+)"
+msgstr "Tigraja-Etiopa (EZ+)"
+
+#. ID
+#: modules/input/imviqr.c:242
+msgctxt "input method menu"
+msgid "Vietnamese (VIQR)"
+msgstr "Vjetnama (VIQR)"
+
+#. ID
+#: modules/input/imwayland.c:100
+msgctxt "input method menu"
+msgid "Wayland"
+msgstr "Wayland"
+
+#. ID
+#: modules/input/imwaylandgtk.c:82
+msgctxt "input method menu"
+msgid "Waylandgtk"
+msgstr "Waylandgtk"
+
+#. ID
+#: modules/input/imxim.c:26
+msgctxt "input method menu"
+msgid "X Input Method"
+msgstr "Eniga metodo de X"
#. Translators: The printer status is online, i.e. it is
#. * ready to print.
-#: modules/printbackends/gtkprintbackendcloudprint.c:727
+#: modules/printbackends/cloudprint/gtkprintbackendcloudprint.c:744
msgid "Online"
msgstr "Konektita"
#. Translators: The printer is offline.
-#: modules/printbackends/gtkprintbackendcloudprint.c:734
+#: modules/printbackends/cloudprint/gtkprintbackendcloudprint.c:751
msgid "Offline"
msgstr "Nekonektita"
#. We shouldn't get here because the query omits dormant
#. * printers by default.
#. Translators: Printer has been offline for a long time.
-#: modules/printbackends/gtkprintbackendcloudprint.c:740
+#: modules/printbackends/cloudprint/gtkprintbackendcloudprint.c:757
msgid "Dormant"
msgstr "Malaktiva"
#. How many document pages to go onto one side of paper.
-#: modules/printbackends/gtkprintbackendcloudprint.c:922
-#: modules/printbackends/gtkprintbackendfile.c:650
+#: modules/printbackends/cloudprint/gtkprintbackendcloudprint.c:939
+#: modules/printbackends/file/gtkprintbackendfile.c:676
+#: modules/printbackends/test/gtkprintbackendtest.c:501
msgid "Pages per _sheet:"
-msgstr "Paĝoj _folie:"
+msgstr "Po paĝoj _sur folio:"
-#: modules/printbackends/gtkprintbackendcups.c:1097
-#: modules/printbackends/gtkprintbackendcups.c:1406
+#: modules/printbackends/cups/gtkprintbackendcups.c:1113
+#: modules/printbackends/cups/gtkprintbackendcups.c:1422
msgid "Username:"
msgstr "Uzantonomo:"
-#: modules/printbackends/gtkprintbackendcups.c:1098
-#: modules/printbackends/gtkprintbackendcups.c:1415
+#: modules/printbackends/cups/gtkprintbackendcups.c:1114
+#: modules/printbackends/cups/gtkprintbackendcups.c:1431
msgid "Password:"
msgstr "Pasvorto:"
-#: modules/printbackends/gtkprintbackendcups.c:1137
-#: modules/printbackends/gtkprintbackendcups.c:1428
+#: modules/printbackends/cups/gtkprintbackendcups.c:1153
+#: modules/printbackends/cups/gtkprintbackendcups.c:1444
#, c-format
msgid "Authentication is required to print document “%s” on printer %s"
msgstr "Aŭtentokontrolo necesas por presi dokumenton “%s” per presilo %s"
-#: modules/printbackends/gtkprintbackendcups.c:1139
+#: modules/printbackends/cups/gtkprintbackendcups.c:1155
#, c-format
msgid "Authentication is required to print a document on %s"
msgstr "Aŭtentokontrolo necesas por presi dokumenton per %s"
-#: modules/printbackends/gtkprintbackendcups.c:1143
+#: modules/printbackends/cups/gtkprintbackendcups.c:1159
#, c-format
msgid "Authentication is required to get attributes of job “%s”"
msgstr "Aŭtentokontrolo necesas por akiri atributojn de tasko “%s”"
-#: modules/printbackends/gtkprintbackendcups.c:1145
+#: modules/printbackends/cups/gtkprintbackendcups.c:1161
msgid "Authentication is required to get attributes of a job"
msgstr "Aŭtentokontrolo necesas por akiri atributojn de pres-tasko"
-#: modules/printbackends/gtkprintbackendcups.c:1149
+#: modules/printbackends/cups/gtkprintbackendcups.c:1165
#, c-format
msgid "Authentication is required to get attributes of printer %s"
msgstr "Aŭtentokontrolo necesas por akiri atributojn de presilo %s"
-#: modules/printbackends/gtkprintbackendcups.c:1151
+#: modules/printbackends/cups/gtkprintbackendcups.c:1167
msgid "Authentication is required to get attributes of a printer"
msgstr "Aŭtentokontrolo necesas por akiri atributojn de presilo"
-#: modules/printbackends/gtkprintbackendcups.c:1154
+#: modules/printbackends/cups/gtkprintbackendcups.c:1170
#, c-format
msgid "Authentication is required to get default printer of %s"
msgstr "Aŭtentokontrolo necesas por akiri la implicitan presilon de %s"
-#: modules/printbackends/gtkprintbackendcups.c:1157
+#: modules/printbackends/cups/gtkprintbackendcups.c:1173
#, c-format
msgid "Authentication is required to get printers from %s"
msgstr "Aŭtentokontrolo necesas por akiri presilojn de %s"
-#: modules/printbackends/gtkprintbackendcups.c:1162
+#: modules/printbackends/cups/gtkprintbackendcups.c:1178
#, c-format
msgid "Authentication is required to get a file from %s"
msgstr "Aŭtentokontrolo necesas por akiri dosieron de %s"
-#: modules/printbackends/gtkprintbackendcups.c:1164
+#: modules/printbackends/cups/gtkprintbackendcups.c:1180
#, c-format
msgid "Authentication is required on %s"
msgstr "Aŭtentokontrolo necesas por %s"
-#: modules/printbackends/gtkprintbackendcups.c:1400
+#: modules/printbackends/cups/gtkprintbackendcups.c:1416
msgid "Domain:"
msgstr "Retregiono:"
-#: modules/printbackends/gtkprintbackendcups.c:1430
+#: modules/printbackends/cups/gtkprintbackendcups.c:1446
#, c-format
msgid "Authentication is required to print document “%s”"
msgstr "Aŭtentokontrolo necesas por presi la dokumenton “%s”"
-#: modules/printbackends/gtkprintbackendcups.c:1435
+#: modules/printbackends/cups/gtkprintbackendcups.c:1451
#, c-format
msgid "Authentication is required to print this document on printer %s"
msgstr "Aŭtentokontrolo necesas por presi tiun ĉi dokumenton per presilo %s"
-#: modules/printbackends/gtkprintbackendcups.c:1437
+#: modules/printbackends/cups/gtkprintbackendcups.c:1453
msgid "Authentication is required to print this document"
msgstr "Aŭtentokontrolo necesas por presi tiun ĉi dokumenton"
-#: modules/printbackends/gtkprintbackendcups.c:2511
+#: modules/printbackends/cups/gtkprintbackendcups.c:2532
#, c-format
msgid "Printer “%s” is low on toner."
msgstr "Presilo “%s” havas malmultan inkon."
-#: modules/printbackends/gtkprintbackendcups.c:2515
+#: modules/printbackends/cups/gtkprintbackendcups.c:2536
#, c-format
msgid "Printer “%s” has no toner left."
msgstr "Presilo “%s” malhavas inkon."
#. Translators: "Developer" like on photo development context
-#: modules/printbackends/gtkprintbackendcups.c:2520
+#: modules/printbackends/cups/gtkprintbackendcups.c:2541
#, c-format
msgid "Printer “%s” is low on developer."
msgstr "Presilo “%s” havas malmultan aperigilon."
#. Translators: "Developer" like on photo development context
-#: modules/printbackends/gtkprintbackendcups.c:2525
+#: modules/printbackends/cups/gtkprintbackendcups.c:2546
#, c-format
msgid "Printer “%s” is out of developer."
msgstr "Presilo “%s” malhavas aperigilon."
#. Translators: "marker" is one color bin of the printer
-#: modules/printbackends/gtkprintbackendcups.c:2530
+#: modules/printbackends/cups/gtkprintbackendcups.c:2551
#, c-format
msgid "Printer “%s” is low on at least one marker supply."
msgstr "Presilo “%s” havas malmulton da almenaŭ unu markilo."
#. Translators: "marker" is one color bin of the printer
-#: modules/printbackends/gtkprintbackendcups.c:2535
+#: modules/printbackends/cups/gtkprintbackendcups.c:2556
#, c-format
msgid "Printer “%s” is out of at least one marker supply."
msgstr "Presilo “%s” malhavas almenaŭ unu markilon."
-#: modules/printbackends/gtkprintbackendcups.c:2539
+#: modules/printbackends/cups/gtkprintbackendcups.c:2560
#, c-format
msgid "The cover is open on printer “%s”."
msgstr "La kovrilo de presilo “%s” estas malfermita."
-#: modules/printbackends/gtkprintbackendcups.c:2543
+#: modules/printbackends/cups/gtkprintbackendcups.c:2564
#, c-format
msgid "The door is open on printer “%s”."
msgstr "La pordo de presilo “%s” estas malfermita."
-#: modules/printbackends/gtkprintbackendcups.c:2547
+#: modules/printbackends/cups/gtkprintbackendcups.c:2568
#, c-format
msgid "Printer “%s” is low on paper."
msgstr "Presilo “%s” havas malmulte da papero."
-#: modules/printbackends/gtkprintbackendcups.c:2551
+#: modules/printbackends/cups/gtkprintbackendcups.c:2572
#, c-format
msgid "Printer “%s” is out of paper."
msgstr "Presilo “%s” malhavas paperon."
-#: modules/printbackends/gtkprintbackendcups.c:2555
+#: modules/printbackends/cups/gtkprintbackendcups.c:2576
#, c-format
msgid "Printer “%s” is currently offline."
msgstr "Presilo “%s” nun estas nekonektita."
-#: modules/printbackends/gtkprintbackendcups.c:2559
+#: modules/printbackends/cups/gtkprintbackendcups.c:2580
#, c-format
msgid "There is a problem on printer “%s”."
msgstr "Estas problemo kun presilo “%s”."
#. Translators: this is a printer status.
-#: modules/printbackends/gtkprintbackendcups.c:2579
+#: modules/printbackends/cups/gtkprintbackendcups.c:2600
msgid "Paused; Rejecting Jobs"
-msgstr "Paŭzo; Rifuzanta taskojn"
+msgstr "Paŭzo; Rifuzante taskojn"
#. Translators: this is a printer status.
-#: modules/printbackends/gtkprintbackendcups.c:2585
+#: modules/printbackends/cups/gtkprintbackendcups.c:2606
msgid "Rejecting Jobs"
-msgstr "Rifuzanta taskojn"
+msgstr "Rifuzante taskojn"
#. Translators: this string connects multiple printer states together.
-#: modules/printbackends/gtkprintbackendcups.c:2626
+#: modules/printbackends/cups/gtkprintbackendcups.c:2647
msgid "; "
msgstr "; "
-#: modules/printbackends/gtkprintbackendcups.c:4339
-#: modules/printbackends/gtkprintbackendcups.c:4406
+#: modules/printbackends/cups/gtkprintbackendcups.c:4387
+#: modules/printbackends/cups/gtkprintbackendcups.c:4454
msgctxt "printing option"
msgid "Two Sided"
msgstr "Ambaŭ-flanke"
-#: modules/printbackends/gtkprintbackendcups.c:4340
+#: modules/printbackends/cups/gtkprintbackendcups.c:4388
msgctxt "printing option"
msgid "Paper Type"
msgstr "Tipo de papero"
-#: modules/printbackends/gtkprintbackendcups.c:4341
+#: modules/printbackends/cups/gtkprintbackendcups.c:4389
msgctxt "printing option"
msgid "Paper Source"
msgstr "Fonto de papero"
-#: modules/printbackends/gtkprintbackendcups.c:4342
-#: modules/printbackends/gtkprintbackendcups.c:4407
+#: modules/printbackends/cups/gtkprintbackendcups.c:4390
+#: modules/printbackends/cups/gtkprintbackendcups.c:4455
msgctxt "printing option"
msgid "Output Tray"
msgstr "Eliga pleto"
-#: modules/printbackends/gtkprintbackendcups.c:4343
+#: modules/printbackends/cups/gtkprintbackendcups.c:4391
msgctxt "printing option"
msgid "Resolution"
msgstr "Distingivo"
-#: modules/printbackends/gtkprintbackendcups.c:4344
+#: modules/printbackends/cups/gtkprintbackendcups.c:4392
msgctxt "printing option"
msgid "GhostScript pre-filtering"
msgstr "Antaŭ-filtrado de GhostScript"
-#: modules/printbackends/gtkprintbackendcups.c:4353
+#: modules/printbackends/cups/gtkprintbackendcups.c:4401
msgctxt "printing option value"
msgid "One Sided"
msgstr "Unu-flanke"
#. Translators: this is an option of "Two Sided"
-#: modules/printbackends/gtkprintbackendcups.c:4355
+#: modules/printbackends/cups/gtkprintbackendcups.c:4403
msgctxt "printing option value"
msgid "Long Edge (Standard)"
msgstr "Longa rando (laŭnorma)"
#. Translators: this is an option of "Two Sided"
-#: modules/printbackends/gtkprintbackendcups.c:4357
+#: modules/printbackends/cups/gtkprintbackendcups.c:4405
msgctxt "printing option value"
msgid "Short Edge (Flip)"
msgstr "Mallonga rando (turni)"
#. Translators: this is an option of "Paper Source"
-#: modules/printbackends/gtkprintbackendcups.c:4359
-#: modules/printbackends/gtkprintbackendcups.c:4361
-#: modules/printbackends/gtkprintbackendcups.c:4369
+#: modules/printbackends/cups/gtkprintbackendcups.c:4407
+#: modules/printbackends/cups/gtkprintbackendcups.c:4409
+#: modules/printbackends/cups/gtkprintbackendcups.c:4417
msgctxt "printing option value"
msgid "Auto Select"
msgstr "Elekti aŭtomate"
#. Translators: this is an option of "Paper Source"
#. Translators: this is an option of "Resolution"
-#: modules/printbackends/gtkprintbackendcups.c:4363
-#: modules/printbackends/gtkprintbackendcups.c:4365
-#: modules/printbackends/gtkprintbackendcups.c:4367
-#: modules/printbackends/gtkprintbackendcups.c:4371
+#: modules/printbackends/cups/gtkprintbackendcups.c:4411
+#: modules/printbackends/cups/gtkprintbackendcups.c:4413
+#: modules/printbackends/cups/gtkprintbackendcups.c:4415
+#: modules/printbackends/cups/gtkprintbackendcups.c:4419
msgctxt "printing option value"
msgid "Printer Default"
msgstr "Norma laŭ presilo"
#. Translators: this is an option of "GhostScript"
-#: modules/printbackends/gtkprintbackendcups.c:4373
+#: modules/printbackends/cups/gtkprintbackendcups.c:4421
msgctxt "printing option value"
msgid "Embed GhostScript fonts only"
msgstr "Enkorpigi nur tiparojn de GhostScript"
#. Translators: this is an option of "GhostScript"
-#: modules/printbackends/gtkprintbackendcups.c:4375
+#: modules/printbackends/cups/gtkprintbackendcups.c:4423
msgctxt "printing option value"
msgid "Convert to PS level 1"
msgstr "Konverti al PS-nivelo 1"
#. Translators: this is an option of "GhostScript"
-#: modules/printbackends/gtkprintbackendcups.c:4377
+#: modules/printbackends/cups/gtkprintbackendcups.c:4425
msgctxt "printing option value"
msgid "Convert to PS level 2"
msgstr "Konverti al PS-nivelo 2"
#. Translators: this is an option of "GhostScript"
-#: modules/printbackends/gtkprintbackendcups.c:4379
+#: modules/printbackends/cups/gtkprintbackendcups.c:4427
msgctxt "printing option value"
msgid "No pre-filtering"
msgstr "Neniu antaŭ-filtrado"
#. Translators: "Miscellaneous" is the label for a button, that opens
#. up an extra panel of settings in a print dialog.
-#: modules/printbackends/gtkprintbackendcups.c:4388
+#: modules/printbackends/cups/gtkprintbackendcups.c:4436
msgctxt "printing option group"
msgid "Miscellaneous"
msgstr "Aliaĵoj"
-#: modules/printbackends/gtkprintbackendcups.c:4415
+#: modules/printbackends/cups/gtkprintbackendcups.c:4463
msgctxt "sides"
msgid "One Sided"
msgstr "Unu-flanke"
#. Translators: this is an option of "Two Sided"
-#: modules/printbackends/gtkprintbackendcups.c:4417
+#: modules/printbackends/cups/gtkprintbackendcups.c:4465
msgctxt "sides"
msgid "Long Edge (Standard)"
msgstr "Longa rando (laŭnorma)"
#. Translators: this is an option of "Two Sided"
-#: modules/printbackends/gtkprintbackendcups.c:4419
+#: modules/printbackends/cups/gtkprintbackendcups.c:4467
msgctxt "sides"
msgid "Short Edge (Flip)"
msgstr "Mallonga rando (turni)"
#. Translators: Top output bin
-#: modules/printbackends/gtkprintbackendcups.c:4422
+#: modules/printbackends/cups/gtkprintbackendcups.c:4470
msgctxt "output-bin"
msgid "Top Bin"
msgstr "Supra paperujo"
#. Translators: Middle output bin
-#: modules/printbackends/gtkprintbackendcups.c:4424
+#: modules/printbackends/cups/gtkprintbackendcups.c:4472
msgctxt "output-bin"
msgid "Middle Bin"
msgstr "Meza paperujo"
#. Translators: Bottom output bin
-#: modules/printbackends/gtkprintbackendcups.c:4426
+#: modules/printbackends/cups/gtkprintbackendcups.c:4474
msgctxt "output-bin"
msgid "Bottom Bin"
msgstr "Malsupra paperujo"
#. Translators: Side output bin
-#: modules/printbackends/gtkprintbackendcups.c:4428
+#: modules/printbackends/cups/gtkprintbackendcups.c:4476
msgctxt "output-bin"
msgid "Side Bin"
msgstr "Flanka paperujo"
#. Translators: Left output bin
-#: modules/printbackends/gtkprintbackendcups.c:4430
+#: modules/printbackends/cups/gtkprintbackendcups.c:4478
msgctxt "output-bin"
msgid "Left Bin"
msgstr "Maldekstra paperujo"
#. Translators: Right output bin
-#: modules/printbackends/gtkprintbackendcups.c:4432
+#: modules/printbackends/cups/gtkprintbackendcups.c:4480
msgctxt "output-bin"
msgid "Right Bin"
msgstr "Dekstra paperujo"
#. Translators: Center output bin
-#: modules/printbackends/gtkprintbackendcups.c:4434
+#: modules/printbackends/cups/gtkprintbackendcups.c:4482
msgctxt "output-bin"
msgid "Center Bin"
msgstr "Centra paperujo"
#. Translators: Rear output bin
-#: modules/printbackends/gtkprintbackendcups.c:4436
+#: modules/printbackends/cups/gtkprintbackendcups.c:4484
msgctxt "output-bin"
msgid "Rear Bin"
msgstr "Posta paperujo"
#. Translators: Output bin where one sided output is oriented in the face-up position
-#: modules/printbackends/gtkprintbackendcups.c:4438
+#: modules/printbackends/cups/gtkprintbackendcups.c:4486
msgctxt "output-bin"
msgid "Face Up Bin"
msgstr "Presaĵon-supra paperujo"
#. Translators: Output bin where one sided output is oriented in the face-down position
-#: modules/printbackends/gtkprintbackendcups.c:4440
+#: modules/printbackends/cups/gtkprintbackendcups.c:4488
msgctxt "output-bin"
msgid "Face Down Bin"
msgstr "Presaĵon-suba paperujo"
#. Translators: Large capacity output bin
-#: modules/printbackends/gtkprintbackendcups.c:4442
+#: modules/printbackends/cups/gtkprintbackendcups.c:4490
msgctxt "output-bin"
msgid "Large Capacity Bin"
msgstr "Grand-kapacita paperujo"
#. Translators: Output stacker number %d
-#: modules/printbackends/gtkprintbackendcups.c:4464
+#: modules/printbackends/cups/gtkprintbackendcups.c:4512
#, c-format
msgctxt "output-bin"
msgid "Stacker %d"
msgstr "Amasigilo %d"
#. Translators: Output mailbox number %d
-#: modules/printbackends/gtkprintbackendcups.c:4468
+#: modules/printbackends/cups/gtkprintbackendcups.c:4516
#, c-format
msgctxt "output-bin"
msgid "Mailbox %d"
msgstr "Mesaĝujo %d"
#. Translators: Private mailbox
-#: modules/printbackends/gtkprintbackendcups.c:4472
+#: modules/printbackends/cups/gtkprintbackendcups.c:4520
msgctxt "output-bin"
msgid "My Mailbox"
msgstr "Mia mesaĝujo"
#. Translators: Output tray number %d
-#: modules/printbackends/gtkprintbackendcups.c:4476
+#: modules/printbackends/cups/gtkprintbackendcups.c:4524
#, c-format
msgctxt "output-bin"
msgid "Tray %d"
msgstr "Pleto %d"
-#: modules/printbackends/gtkprintbackendcups.c:4947
+#: modules/printbackends/cups/gtkprintbackendcups.c:4995
msgid "Printer Default"
msgstr "Norma laŭ presilo"
#. Translators: These strings name the possible values of the
#. * job priority option in the print dialog
#.
-#: modules/printbackends/gtkprintbackendcups.c:5388
+#: modules/printbackends/cups/gtkprintbackendcups.c:5436
msgid "Urgent"
msgstr "Urĝa"
-#: modules/printbackends/gtkprintbackendcups.c:5388
+#: modules/printbackends/cups/gtkprintbackendcups.c:5436
msgid "High"
msgstr "Alta"
-#: modules/printbackends/gtkprintbackendcups.c:5388
+#: modules/printbackends/cups/gtkprintbackendcups.c:5436
msgid "Medium"
msgstr "Meza"
-#: modules/printbackends/gtkprintbackendcups.c:5388
+#: modules/printbackends/cups/gtkprintbackendcups.c:5436
msgid "Low"
msgstr "Malalta"
#. Translators, this string is used to label the job priority option
#. * in the print dialog
#.
-#: modules/printbackends/gtkprintbackendcups.c:5418
+#: modules/printbackends/cups/gtkprintbackendcups.c:5466
msgid "Job Priority"
msgstr "Taskprioritato"
#. Translators, this string is used to label the billing info entry
#. * in the print dialog
#.
-#: modules/printbackends/gtkprintbackendcups.c:5429
+#: modules/printbackends/cups/gtkprintbackendcups.c:5477
msgid "Billing Info"
msgstr "Paginformoj"
-#. Translators, these strings are names for various 'standard' cover
-#. * pages that the printing system may support.
-#.
-#: modules/printbackends/gtkprintbackendcups.c:5453
+#: modules/printbackends/cups/gtkprintbackendcups.c:5501
msgctxt "cover page"
msgid "None"
msgstr "Neniu"
-#: modules/printbackends/gtkprintbackendcups.c:5454
+#: modules/printbackends/cups/gtkprintbackendcups.c:5502
msgctxt "cover page"
msgid "Classified"
msgstr "Intima"
-#: modules/printbackends/gtkprintbackendcups.c:5455
+#: modules/printbackends/cups/gtkprintbackendcups.c:5503
msgctxt "cover page"
msgid "Confidential"
msgstr "Konfida"
-#: modules/printbackends/gtkprintbackendcups.c:5456
+#: modules/printbackends/cups/gtkprintbackendcups.c:5504
msgctxt "cover page"
msgid "Secret"
msgstr "Sekreta"
-#: modules/printbackends/gtkprintbackendcups.c:5457
+#: modules/printbackends/cups/gtkprintbackendcups.c:5505
msgctxt "cover page"
msgid "Standard"
msgstr "Normala"
-#: modules/printbackends/gtkprintbackendcups.c:5458
+#: modules/printbackends/cups/gtkprintbackendcups.c:5506
msgctxt "cover page"
msgid "Top Secret"
msgstr "Sekretega"
-#: modules/printbackends/gtkprintbackendcups.c:5459
+#: modules/printbackends/cups/gtkprintbackendcups.c:5507
msgctxt "cover page"
msgid "Unclassified"
msgstr "Nekategoriigita"
@@ -7746,7 +8140,7 @@ msgstr "Nekategoriigita"
#. Translators, this string is used to label the pages-per-sheet option
#. * in the print dialog
#.
-#: modules/printbackends/gtkprintbackendcups.c:5471
+#: modules/printbackends/cups/gtkprintbackendcups.c:5519
msgctxt "printer option"
msgid "Pages per Sheet"
msgstr "Paĝoj folie"
@@ -7754,7 +8148,7 @@ msgstr "Paĝoj folie"
#. Translators, this string is used to label the option in the print
#. * dialog that controls in what order multiple pages are arranged
#.
-#: modules/printbackends/gtkprintbackendcups.c:5488
+#: modules/printbackends/cups/gtkprintbackendcups.c:5536
msgctxt "printer option"
msgid "Page Ordering"
msgstr "Ordigo de paĝoj"
@@ -7762,7 +8156,7 @@ msgstr "Ordigo de paĝoj"
#. Translators, this is the label used for the option in the print
#. * dialog that controls the front cover page.
#.
-#: modules/printbackends/gtkprintbackendcups.c:5530
+#: modules/printbackends/cups/gtkprintbackendcups.c:5578
msgctxt "printer option"
msgid "Before"
msgstr "Antaŭ"
@@ -7770,7 +8164,7 @@ msgstr "Antaŭ"
#. Translators, this is the label used for the option in the print
#. * dialog that controls the back cover page.
#.
-#: modules/printbackends/gtkprintbackendcups.c:5545
+#: modules/printbackends/cups/gtkprintbackendcups.c:5593
msgctxt "printer option"
msgid "After"
msgstr "Post"
@@ -7779,7 +8173,7 @@ msgstr "Post"
#. * a print job is printed. Possible values are 'now', a specified time,
#. * or 'on hold'
#.
-#: modules/printbackends/gtkprintbackendcups.c:5565
+#: modules/printbackends/cups/gtkprintbackendcups.c:5613
msgctxt "printer option"
msgid "Print at"
msgstr "Presi je"
@@ -7787,7 +8181,7 @@ msgstr "Presi je"
#. Translators: this is the name of the option that allows the user
#. * to specify a time when a print job will be printed.
#.
-#: modules/printbackends/gtkprintbackendcups.c:5576
+#: modules/printbackends/cups/gtkprintbackendcups.c:5624
msgctxt "printer option"
msgid "Print at time"
msgstr "Presi je tempo"
@@ -7797,638 +8191,112 @@ msgstr "Presi je tempo"
#. * the width and height in points. E.g: "Custom
#. * 230.4x142.9"
#.
-#: modules/printbackends/gtkprintbackendcups.c:5621
+#: modules/printbackends/cups/gtkprintbackendcups.c:5666
#, c-format
msgid "Custom %s×%s"
msgstr "Propra %sx%s"
-#. TRANSLATORS: this this the ICC color profile to use for this job
-#: modules/printbackends/gtkprintbackendcups.c:5731
+#: modules/printbackends/cups/gtkprintbackendcups.c:5775
msgctxt "printer option"
msgid "Printer Profile"
msgstr "Profilo de presilo"
#. TRANSLATORS: this is when color profile information is unavailable
-#: modules/printbackends/gtkprintbackendcups.c:5738
+#: modules/printbackends/cups/gtkprintbackendcups.c:5782
msgctxt "printer option value"
msgid "Unavailable"
msgstr "Nedisponebla"
-#: modules/printbackends/gtkprintbackendfile.c:235
+#. TRANSLATORS: when we're running an old CUPS, and
+#. * it hasn't registered the device with colord
+#: modules/printbackends/cups/gtkprintercups.c:269
+msgid "Color management unavailable"
+msgstr "Kolormastrumado estas nedisponebla"
+
+#. TRANSLATORS: when there is no color profile available
+#: modules/printbackends/cups/gtkprintercups.c:281
+msgid "No profile available"
+msgstr "Neniu profilo disponeblas"
+
+#. TRANSLATORS: when the color profile has no title
+#: modules/printbackends/cups/gtkprintercups.c:292
+msgid "Unspecified profile"
+msgstr "Nespecifita profilo"
+
+#: modules/printbackends/file/gtkprintbackendfile.c:250
msgid "output"
msgstr "eligo"
-#: modules/printbackends/gtkprintbackendfile.c:511
+#: modules/printbackends/file/gtkprintbackendfile.c:537
msgid "Print to File"
msgstr "Presi en dosieron"
-#: modules/printbackends/gtkprintbackendfile.c:637
+#: modules/printbackends/file/gtkprintbackendfile.c:663
msgid "PDF"
msgstr "PDF"
-#: modules/printbackends/gtkprintbackendfile.c:637
-msgid "PostScript"
+#: modules/printbackends/file/gtkprintbackendfile.c:663
+msgid "Postscript"
msgstr "Poskripto"
-#: modules/printbackends/gtkprintbackendfile.c:637
+#: modules/printbackends/file/gtkprintbackendfile.c:663
msgid "SVG"
msgstr "SVG"
-#: modules/printbackends/gtkprintbackendfile.c:709
+#: modules/printbackends/file/gtkprintbackendfile.c:735
msgid "File"
msgstr "Dosiero"
-#: modules/printbackends/gtkprintbackendfile.c:719
+#: modules/printbackends/file/gtkprintbackendfile.c:745
msgid "_Output format"
msgstr "_Formo de eligo"
-#: modules/printbackends/gtkprintbackendlpr.c:378
+#: modules/printbackends/lpr/gtkprintbackendlpr.c:393
msgid "Print to LPR"
msgstr "Presi al LPR"
-#: modules/printbackends/gtkprintbackendlpr.c:404
+#: modules/printbackends/lpr/gtkprintbackendlpr.c:419
msgid "Pages Per Sheet"
msgstr "Paĝoj folie"
-#: modules/printbackends/gtkprintbackendlpr.c:411
+#: modules/printbackends/lpr/gtkprintbackendlpr.c:426
msgid "Command Line"
msgstr "Komandlinio"
-#. TRANSLATORS: when we're running an old CUPS, and
-#. * it hasn't registered the device with colord
-#: modules/printbackends/gtkprintercups.c:269
-msgid "Color management unavailable"
-msgstr "Kolormastrumado estas nedisponebla"
-
-#. TRANSLATORS: when there is no color profile available
-#: modules/printbackends/gtkprintercups.c:281
-msgid "No profile available"
-msgstr "Neniu profilo disponeblas"
-
-#. TRANSLATORS: when the color profile has no title
-#: modules/printbackends/gtkprintercups.c:292
-msgid "Unspecified profile"
-msgstr "Nespecifita profilo"
-
-#~ msgid "Reading not implemented."
-#~ msgstr "Legado ne estas realigita."
-
-#~ msgid "Artwork by"
-#~ msgstr "Artaĵoj de"
-
-#~ msgid "Object"
-#~ msgstr "Objekto"
-
-#~ msgid "Gestures"
-#~ msgstr "Gestoj"
-
-#~ msgid "Rendering Mode"
-#~ msgstr "Bildiga reĝimo"
-
-#~ msgid "Similar"
-#~ msgstr "Simila"
-
-#~ msgid "Image"
-#~ msgstr "Bildo"
-
-#~ msgid "Error parsing option --gdk-debug"
-#~ msgstr "Eraro dum analizo de elekteblo --gdk-debug"
-
-#~ msgid "Error parsing option --gdk-no-debug"
-#~ msgstr "Eraro dum analizo de elekteblo --gdk-no-debug"
-
-#~ msgid "Program class as used by the window manager"
-#~ msgstr "Programa klaso kiel uzata de la fenestra administrilo"
-
-#~ msgid "CLASS"
-#~ msgstr "KLASO"
-
-#~ msgid "Program name as used by the window manager"
-#~ msgstr "Programa nomo kiel uzata de la fenestra administrilo"
-
-#~ msgid "NAME"
-#~ msgstr "NOMO"
-
-#~ msgid "X display to use"
-#~ msgstr "X-ekrano uzota"
-
-#~ msgid "DISPLAY"
-#~ msgstr "EKRANO"
-
-#~ msgid "GDK debugging flags to set"
-#~ msgstr "Ŝaltendaj GDK-sencimigmarkoj"
-
-#~ msgid "FLAGS"
-#~ msgstr "FLAGOJ"
-
-#~ msgid "GDK debugging flags to unset"
-#~ msgstr "Malŝaltendaj GDK-sencimigmarkoj"
-
-#, fuzzy
-#~ msgid "3.2 core GL profile is not available on EGL implementation"
-#~ msgstr "3.2 kerna GL-profilo ne disponeblas por realigo de EGL"
-
-#~ msgid ""
-#~ "Select the color you want from the outer ring. Select the darkness or "
-#~ "lightness of that color using the inner triangle."
-#~ msgstr ""
-#~ "Elektu la koloron kiun vi volas el la ekstera ringo. Elektu la malhelecon "
-#~ "aŭ helecon de tiu koloro uzante la internan triangulon."
-
-#~ msgid ""
-#~ "Click the eyedropper, then click a color anywhere on your screen to "
-#~ "select that color."
-#~ msgstr ""
-#~ "Alklaku la gutigilon, poste alklaku koloron ie ajn en la ekrano por "
-#~ "elekti tiun koloron."
-
-#~ msgid "_Hue:"
-#~ msgstr "_Nuanco:"
-
-#~ msgid "Position on the color wheel."
-#~ msgstr "Pozicio en la kolora rado."
-
-#~ msgid "S_aturation:"
-#~ msgstr "Satur_eco:"
-
-#~ msgid "Intensity of the color."
-#~ msgstr "Intenso de la koloro."
-
-#~ msgid "_Value:"
-#~ msgstr "_Valoro:"
-
-#~ msgid "Brightness of the color."
-#~ msgstr "Brileco de la koloro."
-
-#~ msgid "_Red:"
-#~ msgstr "_Ruĝo:"
-
-#~ msgid "Amount of red light in the color."
-#~ msgstr "Kvanto de ruĝa lumo en la koloro."
-
-#~ msgid "Amount of green light in the color."
-#~ msgstr "Kvanto de verda lumo en la koloro."
-
-#~ msgid "_Blue:"
-#~ msgstr "_Bluo:"
-
-#~ msgid "Amount of blue light in the color."
-#~ msgstr "Kvanto de blua lumo en la koloro."
-
-#~ msgid "Op_acity:"
-#~ msgstr "Netr_avidebleco:"
-
-#~ msgid "Transparency of the color."
-#~ msgstr "Travidebleco de la koloro."
-
-#~ msgid "Color _name:"
-#~ msgstr "_Nomo de la koloro:"
-
-#~ msgid ""
-#~ "You can enter an HTML-style hexadecimal color value, or simply a color "
-#~ "name such as “orange” in this entry."
-#~ msgstr ""
-#~ "Vi povas enigi HTML-stilan deksesuman kolorvaloron, aŭ simple kolornomon "
-#~ "kiel “oranĝkolora” en tiun ĉi eron."
-
-#~ msgid "_Palette:"
-#~ msgstr "_Paletro:"
-
-#~ msgid "Color Wheel"
-#~ msgstr "Rado por koloroj"
-
-#~| msgid ""
-#~| "The previously-selected color, for comparison to the color you're "
-#~| "selecting now. You can drag this color to a palette entry, or select "
-#~| "this color as current by dragging it to the other color swatch alongside."
-#~ msgid ""
-#~ "The previously-selected color, for comparison to the color you’re "
-#~ "selecting now. You can drag this color to a palette entry, or select this "
-#~ "color as current by dragging it to the other color swatch alongside."
-#~ msgstr ""
-#~ "La antaŭe elektita koloro, por komparo kun la nuna. Vi povas ŝovi ĝin al "
-#~ "paletrero, aŭ elekti tiun ĉi koloron kiel nunan, ŝovinte ĝin al la aliaj "
-#~ "kolora modelo apudflanke."
-
-#~| msgid ""
-#~| "The color you've chosen. You can drag this color to a palette entry to "
-#~| "save it for use in the future."
-#~ msgid ""
-#~ "The color you’ve chosen. You can drag this color to a palette entry to "
-#~ "save it for use in the future."
-#~ msgstr ""
-#~ "La elektita koloro. Vi povas ŝovi ĝin al paletrero kaj konservi ĝin por "
-#~ "estonta uzo."
-
-#~| msgid ""
-#~| "The previously-selected color, for comparison to the color you're "
-#~| "selecting now."
-#~ msgid ""
-#~ "The previously-selected color, for comparison to the color you’re "
-#~ "selecting now."
-#~ msgstr "La antaŭe elektita koloro, por komparo kun la nuna."
-
-#~| msgid "The color you've chosen."
-#~ msgid "The color you’ve chosen."
-#~ msgstr "La koloro, kiun vi elektis."
-
-#~ msgid "_Save color here"
-#~ msgstr "Kon_servi koloron ĉi tien"
-
-#~| msgid ""
-#~| "Click this palette entry to make it the current color. To change this "
-#~| "entry, drag a color swatch here or right-click it and select \"Save "
-#~| "color here.\""
-#~ msgid ""
-#~ "Click this palette entry to make it the current color. To change this "
-#~ "entry, drag a color swatch here or right-click it and select “Save color "
-#~ "here.”"
-#~ msgstr ""
-#~ "Alklaku ĉi tiun paletreron por fari ĝin la aktuala koloro. Por ŝanĝi ĉi "
-#~ "tiun elementon, ŝovu koloran ekzemplon ĉi tien aŭ dekstre-klaku ĝin kaj "
-#~ "elektu “Konservi koloron ĉi tie.”"
-
-#~ msgid "_Help"
-#~ msgstr "_Helpo"
-
-#~ msgid "Color Selection"
-#~ msgstr "Kolorelekto"
-
-#~ msgid "abcdefghijk ABCDEFGHIJK"
-#~ msgstr "abcĉdefgĝhĥ ABCĈDEFGĜHĤ"
-
-#~ msgid "_Style:"
-#~ msgstr "_Stilo:"
-
-#~ msgid "Si_ze:"
-#~ msgstr "_Grando:"
-
-#~ msgid "_Preview:"
-#~ msgstr "As_pekto:"
-
-#~ msgid "Font Selection"
-#~ msgstr "Tipara elekto"
-
-#~ msgctxt "Number format"
-#~ msgid "%d"
-#~ msgstr "%d"
-
-#~ msgctxt "Stock label"
-#~ msgid "_Apply"
-#~ msgstr "_Apliki"
-
-#~ msgctxt "Stock label"
-#~ msgid "_Cancel"
-#~ msgstr "_Nuligi"
-
-#~ msgctxt "Stock label"
-#~ msgid "C_onnect"
-#~ msgstr "_Konekti"
-
-#~ msgctxt "Stock label"
-#~ msgid "_Convert"
-#~ msgstr "_Konverti"
-
-#~ msgctxt "Stock label"
-#~ msgid "_Discard"
-#~ msgstr "_Ne konservi"
-
-#~ msgctxt "Stock label"
-#~ msgid "_Disconnect"
-#~ msgstr "_Malkonekti"
+#. SUN_BRANDING
+#: modules/printbackends/papi/gtkprintbackendpapi.c:786
+msgid "printer offline"
+msgstr "presilo nekonektita"
-#~ msgctxt "Stock label"
-#~ msgid "_Edit"
-#~ msgstr "_Redakti"
+#. SUN_BRANDING
+#: modules/printbackends/papi/gtkprintbackendpapi.c:804
+msgid "ready to print"
+msgstr "presilo pretas"
-#~ msgctxt "Stock label"
-#~ msgid "_Index"
-#~ msgstr "_Indekso"
+#. SUN_BRANDING
+#: modules/printbackends/papi/gtkprintbackendpapi.c:807
+msgid "processing job"
+msgstr "traktante taskon"
-#~ msgctxt "Stock label"
-#~ msgid "_Information"
-#~ msgstr "_Informoj"
+#. SUN_BRANDING
+#: modules/printbackends/papi/gtkprintbackendpapi.c:811
+msgid "paused"
+msgstr "paŭzo"
-#~ msgctxt "Stock label"
-#~ msgid "_No"
-#~ msgstr "_Ne"
+#. SUN_BRANDING
+#: modules/printbackends/papi/gtkprintbackendpapi.c:814
+msgid "unknown"
+msgstr "nekonata"
-#~ msgctxt "Stock label"
-#~ msgid "_OK"
-#~ msgstr "_Bone"
-
-#~ msgctxt "Stock label"
-#~ msgid "Landscape"
-#~ msgstr "Horizontala orientiĝo"
-
-#~ msgctxt "Stock label"
-#~ msgid "Portrait"
-#~ msgstr "Vertikala orientiĝo"
-
-#~ msgctxt "Stock label"
-#~ msgid "Reverse landscape"
-#~ msgstr "Renversita horizontala orientiĝo"
-
-#~ msgctxt "Stock label"
-#~ msgid "Reverse portrait"
-#~ msgstr "Renversita vertikala orientiĝo"
-
-#~ msgctxt "Stock label"
-#~ msgid "Page Set_up"
-#~ msgstr "A_gordoj de paĝo"
-
-#~ msgctxt "Stock label"
-#~ msgid "_Preferences"
-#~ msgstr "A_gordoj"
-
-#~ msgctxt "Stock label"
-#~ msgid "_Color"
-#~ msgstr "_Koloro"
-
-#~ msgctxt "Stock label"
-#~ msgid "_Font"
-#~ msgstr "_Tiparo"
-
-#~ msgctxt "Stock label"
-#~ msgid "_Undelete"
-#~ msgstr "_Malforigi"
-
-#~ msgctxt "Stock label"
-#~ msgid "_Yes"
-#~ msgstr "_Jes"
-
-#~ msgid "Unexpected start tag '%s' on line %d char %d"
-#~ msgstr "Neatendita komenca marko '%s' sur linio %d signo %d"
-
-#~ msgid "Unexpected character data on line %d char %d"
-#~ msgstr "Neatenditaj signaj datumoj sur linio %d signo %d"
-
-#~ msgid "Empty"
-#~ msgstr "Malplene"
-
-#~ msgctxt "input method menu"
-#~ msgid "Simple"
-#~ msgstr "Simpla"
-
-#~ msgctxt "input method menu"
-#~ msgid "None"
-#~ msgstr "Neniu"
-
-#~ msgctxt "input method menu"
-#~ msgid "System (%s)"
-#~ msgstr "Sistema (%s)"
-
-#~ msgid "Load additional GTK+ modules"
-#~ msgstr "Enlegi aldonajn modulojn de GTK+"
-
-#~ msgid "MODULES"
-#~ msgstr "MODULOJ"
-
-#~ msgid "Make all warnings fatal"
-#~ msgstr "Fari ĉiujn avertojn fatalaj"
-
-#~ msgid "GTK+ debugging flags to set"
-#~ msgstr "Agordotaj cimo-flagoj de GTK+"
-
-#~ msgid "GTK+ debugging flags to unset"
-#~ msgstr "Malagordotaj cimo-flagoj de GTK+"
-
-#~ msgid "Cannot open display: %s"
-#~ msgstr "Ne povas malfermi ekranon: %s"
-
-#~ msgid "GTK+ Options"
-#~ msgstr "Agordoj de GTK+"
-
-#~ msgid "Show GTK+ Options"
-#~ msgstr "Montri agordojn de GTK+"
-
-#~| msgctxt "printer option"
-#~| msgid "Printer Profile"
-#~ msgid "Favorite files"
-#~ msgstr "Ŝatataj dosieroj"
-
-#~| msgid "Convert to PS level 1"
-#~ msgid "Connect to Server"
-#~ msgstr "Konektiĝi al servilo"
-
-#~ msgid "Connect to a network server address"
-#~ msgstr "Konektiĝi al reta servila adreso"
-
-#~ msgid "No item for URI '%s' found"
-#~ msgstr "Neniu ero trovita por URI '%s'"
-
-#~ msgid "Untitled filter"
-#~ msgstr "Sentitola filtrilo"
-
-#~ msgid "Could not remove item"
-#~ msgstr "Ne povis forviŝi elementon"
-
-#~ msgid "Could not clear list"
-#~ msgstr "Ne povis vakigi liston"
-
-#~ msgid "Copy _Location"
-#~ msgstr "Kopii _lokon"
-
-#~ msgid "_Remove From List"
-#~ msgstr "_Forigi de la listo"
-
-#~ msgid "_Clear List"
-#~ msgstr "_Vakigi la liston"
-
-#~ msgid "Show _Private Resources"
-#~ msgstr "Montri _privatajn risurcojn"
-
-#~ msgid "No items found"
-#~ msgstr "Neniu ero troviĝis"
-
-#~ msgid "No recently used resource found with URI '%s'"
-#~ msgstr "Neniu freŝdate uzita risurcon troviĝis kun URI '%s'"
-
-#~ msgid "Open '%s'"
-#~ msgstr "Malfermi '%s'"
-
-#~ msgid "Unknown item"
-#~ msgstr "Nekonata ero"
-
-#~ msgctxt "recent menu label"
-#~ msgid "_%d. %s"
-#~ msgstr "_%d. %s"
-
-#~ msgctxt "recent menu label"
-#~ msgid "%d. %s"
-#~ msgstr "%d. %s"
-
-#~ msgid "Unknown error when trying to deserialize %s"
-#~ msgstr "Nekonata eraro provante malseriigon de %s"
-
-#~ msgid "No deserialize function found for format %s"
-#~ msgstr "Neniu malseriiga funkcio trovita por formo %s"
-
-#~ msgid "Both \"id\" and \"name\" were found on the <%s> element"
-#~ msgstr "Ambaŭ \"id\" kaj \"name\" troviĝis ĉe la ero <%s>"
-
-#~ msgid "The attribute \"%s\" was found twice on the <%s> element"
-#~ msgstr "La atributo \"%s\" troviĝis dufoje ĉe la ero <%s>"
-
-#~ msgid "<%s> element has invalid ID \"%s\""
-#~ msgstr "Ero <%s> havas nevalidan identigaĵon \"%s\""
-
-#~ msgid "<%s> element has neither a \"name\" nor an \"id\" attribute"
-#~ msgstr "Ero <%s> havas atributojn nek \"name\" nek \"id\""
-
-#~ msgid "Attribute \"%s\" repeated twice on the same <%s> element"
-#~ msgstr "Atributo \"%s\" ripetiĝas dufoje en la sama ero <%s>"
-
-#~ msgid "Attribute \"%s\" is invalid on <%s> element in this context"
-#~ msgstr "Atributo \"%s\" ne estas valida ĉe ero <%s> en tiu ĉi situacio"
-
-#~ msgid "Tag \"%s\" has not been defined."
-#~ msgstr "Etikedo \"%s\" ne estas difinita."
-
-#~ msgid "Anonymous tag found and tags can not be created."
-#~ msgstr "Anonima etikedo trovita kaj etikedoj ne kreeblas."
-
-#~ msgid "Tag \"%s\" does not exist in buffer and tags can not be created."
-#~ msgstr "Etikedo \"%s\" ne ekzistas en bufro kaj etikedoj ne kreeblas."
-
-#~ msgid "Element <%s> is not allowed below <%s>"
-#~ msgstr "Ero <%s> ne estas permesita sub <%s>"
-
-#~ msgid "\"%s\" is not a valid attribute type"
-#~ msgstr "\"%s\" ne estas valida tipo de atributo"
-
-#~ msgid "\"%s\" is not a valid attribute name"
-#~ msgstr "\"%s\" ne estas valida nomo de atributo"
-
-#~ msgid ""
-#~ "\"%s\" could not be converted to a value of type \"%s\" for attribute \"%s"
-#~ "\""
-#~ msgstr "Ne povis konverti valoron \"%s\" al tipo \"%s\" por atributo \"%s\""
-
-#~ msgid "\"%s\" is not a valid value for attribute \"%s\""
-#~ msgstr "\"%s\" ne estas valida valoro por atributo \"%s\""
-
-#~ msgid "Tag \"%s\" already defined"
-#~ msgstr "Etikedo \"%s\" estas jam difinita"
-
-#~ msgid "Tag \"%s\" has invalid priority \"%s\""
-#~ msgstr "Etikedo \"%s\" havas nevalidan prioritaton \"%s\""
-
-#~ msgid "Outermost element in text must be <text_view_markup> not <%s>"
-#~ msgstr ""
-#~ "Plej ekstera elemento en teksto devas esti <text_view_markup>, ne <%s>"
-
-#~ msgid "A <%s> element has already been specified"
-#~ msgstr "Ero <%s> jam estas precizigita"
-
-#~ msgid "A <text> element can't occur before a <tags> element"
-#~ msgstr "Ero <text> ne povas aperi antaŭ ero <tags>"
-
-#~ msgid "Serialized data is malformed"
-#~ msgstr "Seriigitaj datumoj estas misformitaj"
-
-#~ msgid ""
-#~ "Serialized data is malformed. First section isn't "
-#~ "GTKTEXTBUFFERCONTENTS-0001"
-#~ msgstr ""
-#~ "Seriigitaj datumoj estas misformitaj. Unua sekcio ne estas "
-#~ "GTKTEXTBUFFERCONTENTS-0001"
-
-#, fuzzy
-#~ msgid "Clip area"
-#~ msgstr "Tranĉi areon"
-
-#~ msgid "Ignore hidden"
-#~ msgstr "Malatenti kaŝitajn"
-
-#~ msgid "Recording"
-#~ msgstr "Registranta"
-
-#~ msgid "Show Pixel Cache"
-#~ msgstr "Montri rastrumeran kaŝmemoron"
-
-#~ msgid "Always"
-#~ msgstr "Ĉiam"
-
-#~ msgid "Software Surfaces"
-#~ msgstr "Programar-sufacoj"
-
-#~ msgid "Select which type of documents are shown"
-#~ msgstr "Elektu kiuj dosier-tipoj montriĝos"
-
-#~ msgctxt "input method menu"
-#~ msgid "Amharic (EZ+)"
-#~ msgstr "Amhara (EZ+)"
-
-#~ msgctxt "input method menu"
-#~ msgid "Broadway"
-#~ msgstr "Broadway"
-
-#~ msgctxt "input method menu"
-#~ msgid "Cedilla"
-#~ msgstr "Cedilo"
-
-#~ msgctxt "input menthod menu"
-#~ msgid "Cyrillic (Transliterated)"
-#~ msgstr "Cirila (transliterita)"
-
-#~ msgctxt "input method menu"
-#~ msgid "Windows IME"
-#~ msgstr "Windows IME"
-
-#~ msgctxt "input method menu"
-#~ msgid "Inuktitut (Transliterated)"
-#~ msgstr "Inuita (transliterita)"
-
-#~ msgctxt "input method menu"
-#~ msgid "IPA"
-#~ msgstr "IPA"
-
-#~ msgctxt "input method menu"
-#~ msgid "Multipress"
-#~ msgstr "Multobla preso"
-
-#~ msgctxt "input method menu"
-#~ msgid "Mac OS X Quartz"
-#~ msgstr "Mac OS X Quartz"
-
-#~ msgctxt "input method menu"
-#~ msgid "Tigrigna-Eritrean (EZ+)"
-#~ msgstr "Tigraja-Eritrea (EZ+)"
-
-#~ msgctxt "input method menu"
-#~ msgid "Tigrigna-Ethiopian (EZ+)"
-#~ msgstr "Tigraja-Etiopa (EZ+)"
-
-#~ msgctxt "input method menu"
-#~ msgid "Vietnamese (VIQR)"
-#~ msgstr "Vjetnama (VIQR)"
-
-#~| msgid "X Input Method"
-#~ msgctxt "input method menu"
-#~ msgid "X Input Method"
-#~ msgstr "Eniga metodo de X"
-
-#~ msgid "printer offline"
-#~ msgstr "presilo nekonektita"
-
-#~ msgid "ready to print"
-#~ msgstr "presilo pretas"
-
-#~ msgid "processing job"
-#~ msgstr "traktanta taskon"
-
-#~ msgid "paused"
-#~ msgstr "paŭzo"
-
-#~ msgid "unknown"
-#~ msgstr "nekonata"
-
-#~ msgid "test-output.%s"
-#~ msgstr "prov-eligo.%s"
+#. default filename used for print-to-test
+#: modules/printbackends/test/gtkprintbackendtest.c:232
+#, c-format
+msgid "test-output.%s"
+msgstr "prov-eligo.%s"
-#~ msgid "Print to Test Printer"
-#~ msgstr "Presi en prova presilo"
+#: modules/printbackends/test/gtkprintbackendtest.c:465
+msgid "Print to Test Printer"
+msgstr "Presi en prova presilo"
#~ msgid "Could not start the search process"
#~ msgstr "Ne eblis lanĉi la serĉo-procedon"
@@ -8610,6 +8478,9 @@ msgstr "Nespecifita profilo"
#~ msgid "Manage Custom Sizes..."
#~ msgstr "Agordi kutimajn dimensiojn..."
+#~ msgid "Select a folder"
+#~ msgstr "Elekti dosierujon"
+
#~ msgid "_Save in folder:"
#~ msgstr "Kon_servi en dosierujo:"
@@ -8843,6 +8714,9 @@ msgstr "Nespecifita profilo"
#~ "Bildoŝarga modulo %s ne elsportas la taŭgan interfacon; eble ĝi apartenas "
#~ "al alia versio de GTK?"
+#~ msgid "Image type '%s' is not supported"
+#~ msgstr "Bildotipo \"%s\" ne estas subtenata"
+
#~ msgid "Couldn't recognize the image file format for file '%s'"
#~ msgstr "Ne eblis rekoni la bildan dosierformaton por dosiero \"%s\""
@@ -8919,6 +8793,9 @@ msgstr "Nespecifita profilo"
#~ msgid "Invalid header in animation"
#~ msgstr "Nevalida kapo en animacio"
+#~ msgid "Not enough memory to load animation"
+#~ msgstr "Ne sufiĉa memoro por ŝargi animacion"
+
#~ msgid "Malformed chunk in animation"
#~ msgstr "Misformita bloko en animacio"
@@ -9013,6 +8890,9 @@ msgstr "Nespecifita profilo"
#~ msgid "Compressed icons are not supported"
#~ msgstr "Densigitaj piktogramoj ne estas subtenataj"
+#~ msgid "Unsupported icon type"
+#~ msgstr "Nesubtenata piktograma tipo"
+
#~ msgid "Not enough memory to load ICO file"
#~ msgstr "Sen sufiĉa memoro por ŝargi ICO-dosieron"
diff --git a/po/sl.po b/po/sl.po
index 0c20f9ca9c..bc9b2c0052 100644
--- a/po/sl.po
+++ b/po/sl.po
@@ -5,14 +5,14 @@
# Matic Žgur <mr.zgur@gmail.com>, 2006.
# Martin Srebotnjak <miles@filmsi.net>, 2007.
# Klemen Košir <klemen.kosir@gmx.com>, 2010–2011.
-# Matej Urbančič <mateju@svn.gnome.org>, 2007–2017.
+# Matej Urbančič <mateju@svn.gnome.org>, 2007–2018.
#
msgid ""
msgstr ""
"Project-Id-Version: gtk+ master\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-08-27 22:34+0200\n"
-"PO-Revision-Date: 2017-10-08 20:47+0200\n"
+"POT-Creation-Date: 2018-10-24 08:13+0000\n"
+"PO-Revision-Date: 2018-10-25 20:49+0200\n"
"Last-Translator: Matej Urbančič <mateju@svn.gnome.org>\n"
"Language-Team: Slovenian GNOME Translation Team <gnome-si@googlegroups.com>\n"
"Language: sl_SI\n"
@@ -22,29 +22,83 @@ msgstr ""
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || n"
"%100==4 ? 3 : 0);\n"
"X-Poedit-SourceCharset: utf-8\n"
-"X-Generator: Poedit 2.0.4\n"
+"X-Generator: Poedit 2.1.1\n"
#: gdk/broadway/gdkbroadway-server.c:144
#, c-format
msgid "Broadway display type not supported: %s"
msgstr "Zaslon vrste Broadway ni podprt: %s"
-#: gdk/gdkwindow.c:2060
+#: gdk/gdk.c:182
+#, c-format
+msgid "Error parsing option --gdk-debug"
+msgstr "Napaka med razčlenjevanjem možnosti --gdk-debug"
+
+#: gdk/gdk.c:202
+#, c-format
+msgid "Error parsing option --gdk-no-debug"
+msgstr "Napaka med razčlenjevanjem možnosti --gdk-no-debug"
+
+#. Description of --class=CLASS in --help output
+#: gdk/gdk.c:231
+msgid "Program class as used by the window manager"
+msgstr "Razred programa, kot ga uporablja upravljalnik oken"
+
+#. Placeholder in --class=CLASS in --help output
+#: gdk/gdk.c:232
+msgid "CLASS"
+msgstr "RAZRED"
+
+#. Description of --name=NAME in --help output
+#: gdk/gdk.c:234
+msgid "Program name as used by the window manager"
+msgstr "Ime programa, kot ga uporablja upravljalnik oken"
+
+#. Placeholder in --name=NAME in --help output
+#: gdk/gdk.c:235
+msgid "NAME"
+msgstr "IME"
+
+#. Description of --display=DISPLAY in --help output
+#: gdk/gdk.c:238
+msgid "X display to use"
+msgstr "Prikaz X, ki je uporabljen"
+
+#. Placeholder in --display=DISPLAY in --help output
+#: gdk/gdk.c:239
+msgid "DISPLAY"
+msgstr "PRIKAZ"
+
+#. Description of --gdk-debug=FLAGS in --help output
+#: gdk/gdk.c:243
+msgid "GDK debugging flags to set"
+msgstr "Zastavice razhroščevanja GDK, ki naj bodo nastavljene"
+
+#. Placeholder in --gdk-debug=FLAGS in --help output
+#. Placeholder in --gdk-no-debug=FLAGS in --help output
+#. Placeholder in --gtk-debug=FLAGS in --help output
+#. Placeholder in --gtk-no-debug=FLAGS in --help output
+#: gdk/gdk.c:244 gdk/gdk.c:247 gtk/gtkmain.c:471 gtk/gtkmain.c:474
+msgid "FLAGS"
+msgstr "ZASTAVICE"
+
+#. Description of --gdk-no-debug=FLAGS in --help output
+#: gdk/gdk.c:246
+msgid "GDK debugging flags to unset"
+msgstr "Zastavice rahroščevanja GDK, ki naj ne bodo nastavljene"
+
+#: gdk/gdkwindow.c:2829
msgid "GL support disabled via GDK_DEBUG"
msgstr "Podpora GL je onemogočena prek GDK_DEBUG"
-#: gdk/gdkwindow.c:2071
+#: gdk/gdkwindow.c:2840
msgid "The current backend does not support OpenGL"
msgstr "Trenutno zagnan ozadnji program ne podpira OpenGL"
-#: gdk/gdkwindow.c:2164
-msgid "Vulkan support disabled via GDK_DEBUG"
-msgstr "Podpora Vulkan je onemogočena prek GDK_DEBUG"
-
#.
#. * Translators, the strings in the “keyboard label” context are
#. * display names for keyboard keys. Some of them have prefixes like
-#. * XF86 or ISO_ - these should be removed in the translation. Similarly,
+#. * XF86 or ISO_ — these should be removed in the translation. Similarly,
#. * underscores should be replaced by spaces. The prefix “KP_” stands
#. * for “key pad” and you may want to include that in your translation.
#. * Here are some examples of English translations:
@@ -152,7 +206,7 @@ msgctxt "keyboard label"
msgid "Num_Lock"
msgstr "Num Lock"
-#. Translators: KP_ means 'key pad' here
+#. Translators: KP_ means “key pad” here
#: gdk/keyname-table.h:6864
msgctxt "keyboard label"
msgid "KP_Space"
@@ -320,89 +374,125 @@ msgstr "Predstavnost"
#: gdk/keyname-table.h:6897
msgctxt "keyboard label"
+msgid "Eject"
+msgstr "Izvrzi"
+
+#: gdk/keyname-table.h:6898
+msgctxt "keyboard label"
+msgid "Explorer"
+msgstr "Raziskovalnik"
+
+#: gdk/keyname-table.h:6899
+msgctxt "keyboard label"
+msgid "Calculator"
+msgstr "Računalo"
+
+#: gdk/keyname-table.h:6900
+msgctxt "keyboard label"
+msgid "Mail"
+msgstr "Elektronska pošta"
+
+#: gdk/keyname-table.h:6901
+msgctxt "keyboard label"
+msgid "WWW"
+msgstr "WWW"
+
+#: gdk/keyname-table.h:6902
+msgctxt "keyboard label"
+msgid "Search"
+msgstr "Poišči"
+
+#: gdk/keyname-table.h:6903
+msgctxt "keyboard label"
+msgid "Tools"
+msgstr "Orodja"
+
+#: gdk/keyname-table.h:6904
+msgctxt "keyboard label"
msgid "ScreenSaver"
msgstr "Ohranjevalnik zaslona"
-#: gdk/keyname-table.h:6898
+#: gdk/keyname-table.h:6905
msgctxt "keyboard label"
msgid "Battery"
msgstr "Baterija"
-#: gdk/keyname-table.h:6899
+#: gdk/keyname-table.h:6906
msgctxt "keyboard label"
msgid "Launch1"
msgstr "Zaženi"
-#: gdk/keyname-table.h:6900
+#: gdk/keyname-table.h:6907
msgctxt "keyboard label"
msgid "Forward"
msgstr "Naprej"
-#: gdk/keyname-table.h:6901
+#: gdk/keyname-table.h:6908
msgctxt "keyboard label"
msgid "Back"
msgstr "Nazaj"
-#: gdk/keyname-table.h:6902
+#: gdk/keyname-table.h:6909
msgctxt "keyboard label"
msgid "Sleep"
msgstr "V pripravljenost"
-#: gdk/keyname-table.h:6903
+#: gdk/keyname-table.h:6910
msgctxt "keyboard label"
msgid "Hibernate"
msgstr "V mirovanje"
-#: gdk/keyname-table.h:6904
+#: gdk/keyname-table.h:6911
msgctxt "keyboard label"
msgid "WLAN"
msgstr "WLAN"
-#: gdk/keyname-table.h:6905
+#: gdk/keyname-table.h:6912
msgctxt "keyboard label"
msgid "WebCam"
msgstr "Spletna kamera"
-#: gdk/keyname-table.h:6906
+#: gdk/keyname-table.h:6913
msgctxt "keyboard label"
msgid "Display"
msgstr "Prikaz"
-#: gdk/keyname-table.h:6907
+#: gdk/keyname-table.h:6914
msgctxt "keyboard label"
msgid "TouchpadToggle"
msgstr "Vključi sledilno ploščico"
-#: gdk/keyname-table.h:6908
+#: gdk/keyname-table.h:6915
msgctxt "keyboard label"
msgid "WakeUp"
msgstr "Povrni iz pripravljenosti"
-#: gdk/keyname-table.h:6909
+#: gdk/keyname-table.h:6916
msgctxt "keyboard label"
msgid "Suspend"
msgstr "V pripravljenost"
-#: gdk/mir/gdkmirglcontext.c:48 gdk/mir/gdkmirwindowimpl.c:2109
-#: gdk/wayland/gdkglcontext-wayland.c:433 gdk/win32/gdkglcontext-win32.c:754
-#: gdk/x11/gdkglcontext-x11.c:1213
+#: gdk/mir/gdkmirglcontext.c:48 gdk/mir/gdkmirwindowimpl.c:2226
+#: gdk/wayland/gdkglcontext-wayland.c:468 gdk/win32/gdkglcontext-win32.c:1177
+#: gdk/x11/gdkglcontext-x11.c:1277
msgid "No GL implementation is available"
msgstr "Okolje GL ni na voljo"
-#: gdk/mir/gdkmirglcontext.c:89 gdk/wayland/gdkglcontext-wayland.c:144
-#: gdk/win32/gdkglcontext-win32.c:688 gdk/x11/gdkglcontext-x11.c:663
-#: gdk/x11/gdkglcontext-x11.c:713
+#: gdk/mir/gdkmirglcontext.c:89 gdk/wayland/gdkglcontext-wayland.c:208
+#: gdk/win32/gdkglcontext-win32.c:1070 gdk/win32/gdkglcontext-win32.c:1110
+#: gdk/x11/gdkglcontext-x11.c:720 gdk/x11/gdkglcontext-x11.c:770
msgid "Unable to create a GL context"
msgstr "Ni mogoče ustvariti vsebine GL"
-#: gdk/mir/gdkmirwindowimpl.c:2071 gdk/mir/gdkmirwindowimpl.c:2081
-#: gdk/wayland/gdkglcontext-wayland.c:394
-#: gdk/wayland/gdkglcontext-wayland.c:404 gdk/win32/gdkglcontext-win32.c:643
-#: gdk/x11/gdkglcontext-x11.c:908
+#: gdk/mir/gdkmirwindowimpl.c:2188 gdk/mir/gdkmirwindowimpl.c:2198
+#: gdk/wayland/gdkglcontext-wayland.c:418
+#: gdk/wayland/gdkglcontext-wayland.c:428 gdk/win32/gdkglcontext-win32.c:908
+#: gdk/win32/gdkglcontext-win32.c:918 gdk/win32/gdkglcontext-win32.c:1035
+#: gdk/x11/gdkglcontext-x11.c:971
msgid "No available configurations for the given pixel format"
msgstr "Ni navedenih nastavitev za podan točkovni zapis"
-#: gdk/mir/gdkmirwindowimpl.c:2117
+#: gdk/mir/gdkmirwindowimpl.c:2234
msgid "3.2 core GL profile is not available on EGL implementation"
msgstr "Profil jedra GL 3.2 ni na voljo v okolju EGL"
@@ -410,37 +500,41 @@ msgstr "Profil jedra GL 3.2 ni na voljo v okolju EGL"
msgid "Not implemented on OS X"
msgstr "Ni vprogramirano v OS X"
-#: gdk/wayland/gdkglcontext-wayland.c:441
+#: gdk/wayland/gdkglcontext-wayland.c:476
msgid "Core GL is not available on EGL implementation"
msgstr "Jedrni GL ni na voljo v okolju EGL"
#. Description of --sync in --help output
-#: gdk/win32/gdkmain-win32.c:53
-msgid "Don’t batch GDI requests"
+#: gdk/win32/gdkmain-win32.c:56
+#, fuzzy
+#| msgid "Don’t batch GDI requests"
+msgid "Don't batch GDI requests"
msgstr "Ne združuj zahtev GDI"
#. Description of --no-wintab in --help output
-#: gdk/win32/gdkmain-win32.c:55
-msgid "Don’t use the Wintab API for tablet support"
+#: gdk/win32/gdkmain-win32.c:58
+#, fuzzy
+#| msgid "Don’t use the Wintab API for tablet support"
+msgid "Don't use the Wintab API for tablet support"
msgstr "Ne uporabi vmesnika Wintab API kot podporo za tablične računalnike"
#. Description of --ignore-wintab in --help output
-#: gdk/win32/gdkmain-win32.c:57
+#: gdk/win32/gdkmain-win32.c:60
msgid "Same as --no-wintab"
msgstr "Enako kot --no-wintab"
#. Description of --use-wintab in --help output
-#: gdk/win32/gdkmain-win32.c:59
+#: gdk/win32/gdkmain-win32.c:62
msgid "Do use the Wintab API [default]"
msgstr "Uporabi Wintab API [privzeto]"
#. Description of --max-colors=COLORS in --help output
-#: gdk/win32/gdkmain-win32.c:61
+#: gdk/win32/gdkmain-win32.c:64
msgid "Size of the palette in 8 bit mode"
msgstr "Velikost barvne palete v 8-bitnem načinu"
#. Placeholder in --max-colors=COLORS in --help output
-#: gdk/win32/gdkmain-win32.c:62
+#: gdk/win32/gdkmain-win32.c:65
msgid "COLORS"
msgstr "BARVE"
@@ -463,7 +557,7 @@ msgstr[1] "Odpiranje %d predmeta"
msgstr[2] "Odpiranje %d predmetov"
msgstr[3] "Odpiranje %d predmetov"
-#: gdk/x11/gdkglcontext-x11.c:936
+#: gdk/x11/gdkglcontext-x11.c:999
#, c-format
msgid "No available configurations for the given RGBA pixel format"
msgstr "Ni navedenih nastavitev za podan točkovni RGBA zapis"
@@ -478,12 +572,12 @@ msgctxt "Action name"
msgid "Toggle"
msgstr "Preklopi"
-#: gtk/a11y/gtkbuttonaccessible.c:317 gtk/a11y/gtkmenuitemaccessible.c:436
+#: gtk/a11y/gtkbuttonaccessible.c:321 gtk/a11y/gtkmenuitemaccessible.c:436
msgctxt "Action name"
msgid "Click"
msgstr "Klikni"
-#: gtk/a11y/gtkbuttonaccessible.c:326
+#: gtk/a11y/gtkbuttonaccessible.c:330
msgctxt "Action description"
msgid "Clicks the button"
msgstr "Klikne gumb"
@@ -499,7 +593,7 @@ msgid "Edit"
msgstr "Uredi"
#: gtk/a11y/gtkcellaccessible.c:259 gtk/a11y/gtkcolorswatchaccessible.c:149
-#: gtk/a11y/gtkentryaccessible.c:1548 gtk/a11y/gtkexpanderaccessible.c:281
+#: gtk/a11y/gtkentryaccessible.c:1557 gtk/a11y/gtkexpanderaccessible.c:281
msgctxt "Action name"
msgid "Activate"
msgstr "Omogoči"
@@ -554,7 +648,7 @@ msgctxt "Action description"
msgid "Presses the combobox"
msgstr "Pritisne spustno polje"
-#: gtk/a11y/gtkentryaccessible.c:1557
+#: gtk/a11y/gtkentryaccessible.c:1566
msgctxt "Action description"
msgid "Activates the entry"
msgstr "Omogoči vnos"
@@ -564,384 +658,414 @@ msgctxt "Action description"
msgid "Activates the expander"
msgstr "Omogoči razširitveno polje"
-#: gtk/a11y/gtkimageaccessible.c:53
+#. FIXME these need accelerators when appropriate, and
+#. * need the mnemonics to be rationalized
+#.
+#: gtk/a11y/gtkimageaccessible.c:53 gtk/deprecated/gtkstock.c:345
msgctxt "Stock label"
msgid "_About"
msgstr "_O programu"
-#: gtk/a11y/gtkimageaccessible.c:54
+#: gtk/a11y/gtkimageaccessible.c:54 gtk/deprecated/gtkstock.c:346
msgctxt "Stock label"
msgid "_Add"
msgstr "_Dodaj"
-#: gtk/a11y/gtkimageaccessible.c:55
+#: gtk/a11y/gtkimageaccessible.c:55 gtk/deprecated/gtkstock.c:348
msgctxt "Stock label"
msgid "_Bold"
msgstr "_Krepko"
-#: gtk/a11y/gtkimageaccessible.c:56
+#: gtk/a11y/gtkimageaccessible.c:56 gtk/deprecated/gtkstock.c:350
msgctxt "Stock label"
msgid "_CD-ROM"
msgstr "_CD-ROM"
-#: gtk/a11y/gtkimageaccessible.c:57
+#: gtk/a11y/gtkimageaccessible.c:57 gtk/deprecated/gtkstock.c:351
msgctxt "Stock label"
msgid "_Clear"
msgstr "_Počisti"
-#: gtk/a11y/gtkimageaccessible.c:58
+#: gtk/a11y/gtkimageaccessible.c:58 gtk/deprecated/gtkstock.c:352
msgctxt "Stock label"
msgid "_Close"
msgstr "_Zapri"
-#: gtk/a11y/gtkimageaccessible.c:59 gtk/gtkheaderbar.c:404 gtk/gtkwindow.c:8055
+#: gtk/a11y/gtkimageaccessible.c:59 gtk/gtkheaderbar.c:415 gtk/gtkwindow.c:9253
msgid "Minimize"
msgstr "Skrči"
-#: gtk/a11y/gtkimageaccessible.c:60 gtk/gtkheaderbar.c:427 gtk/gtkwindow.c:8064
+#: gtk/a11y/gtkimageaccessible.c:60 gtk/gtkheaderbar.c:439 gtk/gtkwindow.c:9262
msgid "Maximize"
msgstr "Razpni"
-#: gtk/a11y/gtkimageaccessible.c:61 gtk/gtkheaderbar.c:427 gtk/gtkwindow.c:8021
+#: gtk/a11y/gtkimageaccessible.c:61 gtk/gtkheaderbar.c:439 gtk/gtkwindow.c:9219
msgid "Restore"
msgstr "Obnovi"
-#: gtk/a11y/gtkimageaccessible.c:62
+#: gtk/a11y/gtkimageaccessible.c:62 gtk/deprecated/gtkstock.c:355
msgctxt "Stock label"
msgid "_Copy"
msgstr "_Kopiraj"
-#: gtk/a11y/gtkimageaccessible.c:63
+#: gtk/a11y/gtkimageaccessible.c:63 gtk/deprecated/gtkstock.c:356
msgctxt "Stock label"
msgid "Cu_t"
msgstr "Iz_reži"
-#: gtk/a11y/gtkimageaccessible.c:64
+#: gtk/a11y/gtkimageaccessible.c:64 gtk/deprecated/gtkstock.c:357
msgctxt "Stock label"
msgid "_Delete"
msgstr "_Izbriši"
-#: gtk/a11y/gtkimageaccessible.c:65
+#: gtk/a11y/gtkimageaccessible.c:65 gtk/deprecated/gtkstock.c:339
msgctxt "Stock label"
msgid "Error"
msgstr "Napaka"
-#: gtk/a11y/gtkimageaccessible.c:66
+#. KEEP IN SYNC with gtkiconfactory.c stock icons, when appropriate
+#: gtk/a11y/gtkimageaccessible.c:66 gtk/deprecated/gtkstock.c:337
msgctxt "Stock label"
msgid "Information"
msgstr "Podrobnosti"
-#: gtk/a11y/gtkimageaccessible.c:67
+#: gtk/a11y/gtkimageaccessible.c:67 gtk/deprecated/gtkstock.c:340
msgctxt "Stock label"
msgid "Question"
msgstr "Vprašanje"
-#: gtk/a11y/gtkimageaccessible.c:68
+#: gtk/a11y/gtkimageaccessible.c:68 gtk/deprecated/gtkstock.c:338
msgctxt "Stock label"
msgid "Warning"
msgstr "Opozorilo"
-#: gtk/a11y/gtkimageaccessible.c:69
+#: gtk/a11y/gtkimageaccessible.c:69 gtk/deprecated/gtkstock.c:360
msgctxt "Stock label"
msgid "_Execute"
msgstr "_Izvedi"
-#: gtk/a11y/gtkimageaccessible.c:70
+#: gtk/a11y/gtkimageaccessible.c:70 gtk/deprecated/gtkstock.c:362
msgctxt "Stock label"
msgid "_File"
msgstr "_Datoteka"
-#: gtk/a11y/gtkimageaccessible.c:71
+#: gtk/a11y/gtkimageaccessible.c:71 gtk/deprecated/gtkstock.c:363
msgctxt "Stock label"
msgid "_Find"
msgstr "_Najdi"
-#: gtk/a11y/gtkimageaccessible.c:72
+#: gtk/a11y/gtkimageaccessible.c:72 gtk/deprecated/gtkstock.c:364
msgctxt "Stock label"
msgid "Find and _Replace"
msgstr "Najdi in _zamenjaj"
-#: gtk/a11y/gtkimageaccessible.c:73
+#: gtk/a11y/gtkimageaccessible.c:73 gtk/deprecated/gtkstock.c:365
msgctxt "Stock label"
msgid "_Floppy"
msgstr "_Disketa"
-#: gtk/a11y/gtkimageaccessible.c:74
+#: gtk/a11y/gtkimageaccessible.c:74 gtk/deprecated/gtkstock.c:366
msgctxt "Stock label"
msgid "_Fullscreen"
msgstr "_Celozaslonski način"
-#: gtk/a11y/gtkimageaccessible.c:75
+#. This is a navigation label as in "go to the bottom of the page"
+#: gtk/a11y/gtkimageaccessible.c:75 gtk/deprecated/gtkstock.c:369
msgctxt "Stock label, navigation"
msgid "_Bottom"
msgstr "_Dno"
-#: gtk/a11y/gtkimageaccessible.c:76
+#. This is a navigation label as in "go to the first page"
+#: gtk/a11y/gtkimageaccessible.c:76 gtk/deprecated/gtkstock.c:371
msgctxt "Stock label, navigation"
msgid "_First"
msgstr "_Prva"
-#: gtk/a11y/gtkimageaccessible.c:77
+#. This is a navigation label as in "go to the last page"
+#: gtk/a11y/gtkimageaccessible.c:77 gtk/deprecated/gtkstock.c:373
msgctxt "Stock label, navigation"
msgid "_Last"
msgstr "_Zadnja"
-#: gtk/a11y/gtkimageaccessible.c:78
+#. This is a navigation label as in "go to the top of the page"
+#: gtk/a11y/gtkimageaccessible.c:78 gtk/deprecated/gtkstock.c:375
msgctxt "Stock label, navigation"
msgid "_Top"
msgstr "_Zgoraj"
-#: gtk/a11y/gtkimageaccessible.c:79
+#. This is a navigation label as in "go back"
+#: gtk/a11y/gtkimageaccessible.c:79 gtk/deprecated/gtkstock.c:377
msgctxt "Stock label, navigation"
msgid "_Back"
msgstr "_Nazaj"
-#: gtk/a11y/gtkimageaccessible.c:80
+#. This is a navigation label as in "go down"
+#: gtk/a11y/gtkimageaccessible.c:80 gtk/deprecated/gtkstock.c:379
msgctxt "Stock label, navigation"
msgid "_Down"
msgstr "_Dol"
-#: gtk/a11y/gtkimageaccessible.c:81
+#. This is a navigation label as in "go forward"
+#: gtk/a11y/gtkimageaccessible.c:81 gtk/deprecated/gtkstock.c:381
msgctxt "Stock label, navigation"
msgid "_Forward"
msgstr "_Naprej"
-#: gtk/a11y/gtkimageaccessible.c:82
+#. This is a navigation label as in "go up"
+#: gtk/a11y/gtkimageaccessible.c:82 gtk/deprecated/gtkstock.c:383
msgctxt "Stock label, navigation"
msgid "_Up"
msgstr "_Gor"
-#: gtk/a11y/gtkimageaccessible.c:83
+#: gtk/a11y/gtkimageaccessible.c:83 gtk/deprecated/gtkstock.c:384
msgctxt "Stock label"
msgid "_Hard Disk"
msgstr "_Trdi disk"
-#: gtk/a11y/gtkimageaccessible.c:84
+#: gtk/a11y/gtkimageaccessible.c:84 gtk/deprecated/gtkstock.c:385
msgctxt "Stock label"
msgid "_Help"
msgstr "Pomo_č"
-#: gtk/a11y/gtkimageaccessible.c:85
+#: gtk/a11y/gtkimageaccessible.c:85 gtk/deprecated/gtkstock.c:386
msgctxt "Stock label"
msgid "_Home"
msgstr "_Domov"
-#: gtk/a11y/gtkimageaccessible.c:86
+#: gtk/a11y/gtkimageaccessible.c:86 gtk/deprecated/gtkstock.c:387
msgctxt "Stock label"
msgid "Increase Indent"
msgstr "Povečaj zamik"
-#: gtk/a11y/gtkimageaccessible.c:87
+#: gtk/a11y/gtkimageaccessible.c:87 gtk/deprecated/gtkstock.c:391
msgctxt "Stock label"
msgid "_Italic"
msgstr "_Ležeče"
-#: gtk/a11y/gtkimageaccessible.c:88
+#: gtk/a11y/gtkimageaccessible.c:88 gtk/deprecated/gtkstock.c:392
msgctxt "Stock label"
msgid "_Jump to"
msgstr "_Skoči na"
-#: gtk/a11y/gtkimageaccessible.c:89
+#. This is about text justification, "centered text"
+#: gtk/a11y/gtkimageaccessible.c:89 gtk/deprecated/gtkstock.c:394
msgctxt "Stock label"
msgid "_Center"
msgstr "_Sredina"
-#: gtk/a11y/gtkimageaccessible.c:90
+#. This is about text justification
+#: gtk/a11y/gtkimageaccessible.c:90 gtk/deprecated/gtkstock.c:396
msgctxt "Stock label"
msgid "_Fill"
msgstr "_Zapolni"
-#: gtk/a11y/gtkimageaccessible.c:91
+#. This is about text justification, "left-justified text"
+#: gtk/a11y/gtkimageaccessible.c:91 gtk/deprecated/gtkstock.c:398
msgctxt "Stock label"
msgid "_Left"
msgstr "_Levo"
-#: gtk/a11y/gtkimageaccessible.c:92
+#. This is about text justification, "right-justified text"
+#: gtk/a11y/gtkimageaccessible.c:92 gtk/deprecated/gtkstock.c:400
msgctxt "Stock label"
msgid "_Right"
msgstr "_Desno"
-#: gtk/a11y/gtkimageaccessible.c:93
+#: gtk/a11y/gtkimageaccessible.c:93 gtk/deprecated/gtkstock.c:367
msgctxt "Stock label"
msgid "_Leave Fullscreen"
msgstr "_Zapusti celozaslonski način"
-#: gtk/a11y/gtkimageaccessible.c:94
+#. Media label, as in "fast forward"
+#: gtk/a11y/gtkimageaccessible.c:94 gtk/deprecated/gtkstock.c:403
msgctxt "Stock label, media"
msgid "_Forward"
msgstr "_Naprej"
-#: gtk/a11y/gtkimageaccessible.c:95
+#. Media label, as in "next song"
+#: gtk/a11y/gtkimageaccessible.c:95 gtk/deprecated/gtkstock.c:405
msgctxt "Stock label, media"
msgid "_Next"
msgstr "_Naslednji"
-#: gtk/a11y/gtkimageaccessible.c:96
+#. Media label, as in "pause music"
+#: gtk/a11y/gtkimageaccessible.c:96 gtk/deprecated/gtkstock.c:407
msgctxt "Stock label, media"
msgid "P_ause"
msgstr "P_remor"
-#: gtk/a11y/gtkimageaccessible.c:97
+#. Media label, as in "play music"
+#: gtk/a11y/gtkimageaccessible.c:97 gtk/deprecated/gtkstock.c:409
msgctxt "Stock label, media"
msgid "_Play"
msgstr "_Predvajaj"
-#: gtk/a11y/gtkimageaccessible.c:98
+#. Media label, as in "previous song"
+#: gtk/a11y/gtkimageaccessible.c:98 gtk/deprecated/gtkstock.c:411
msgctxt "Stock label, media"
msgid "Pre_vious"
msgstr "Pre_dhodni"
-#: gtk/a11y/gtkimageaccessible.c:99
+#. Media label
+#: gtk/a11y/gtkimageaccessible.c:99 gtk/deprecated/gtkstock.c:413
msgctxt "Stock label, media"
msgid "_Record"
msgstr "_Snemaj"
-#: gtk/a11y/gtkimageaccessible.c:100
+#. Media label
+#: gtk/a11y/gtkimageaccessible.c:100 gtk/deprecated/gtkstock.c:415
msgctxt "Stock label, media"
msgid "R_ewind"
msgstr "Pre_vij"
-#: gtk/a11y/gtkimageaccessible.c:101
+#. Media label
+#: gtk/a11y/gtkimageaccessible.c:101 gtk/deprecated/gtkstock.c:417
msgctxt "Stock label, media"
msgid "_Stop"
msgstr "_Zaustavi"
-#: gtk/a11y/gtkimageaccessible.c:102
+#: gtk/a11y/gtkimageaccessible.c:102 gtk/deprecated/gtkstock.c:418
msgctxt "Stock label"
msgid "_Network"
msgstr "_Omrežje"
-#: gtk/a11y/gtkimageaccessible.c:103
+#: gtk/a11y/gtkimageaccessible.c:103 gtk/deprecated/gtkstock.c:419
msgctxt "Stock label"
msgid "_New"
msgstr "_Novo"
-#: gtk/a11y/gtkimageaccessible.c:104
+#: gtk/a11y/gtkimageaccessible.c:104 gtk/deprecated/gtkstock.c:422
msgctxt "Stock label"
msgid "_Open"
msgstr "_Odpri"
-#: gtk/a11y/gtkimageaccessible.c:105
+#: gtk/a11y/gtkimageaccessible.c:105 gtk/deprecated/gtkstock.c:432
msgctxt "Stock label"
msgid "_Paste"
msgstr "Pr_ilepi"
-#: gtk/a11y/gtkimageaccessible.c:106
+#: gtk/a11y/gtkimageaccessible.c:106 gtk/deprecated/gtkstock.c:434
msgctxt "Stock label"
msgid "_Print"
msgstr "_Natisni"
-#: gtk/a11y/gtkimageaccessible.c:107
+#: gtk/a11y/gtkimageaccessible.c:107 gtk/deprecated/gtkstock.c:435
msgctxt "Stock label"
msgid "Print Pre_view"
msgstr "_Predogled tiskanja"
-#: gtk/a11y/gtkimageaccessible.c:108
+#: gtk/a11y/gtkimageaccessible.c:108 gtk/deprecated/gtkstock.c:436
msgctxt "Stock label"
msgid "_Properties"
msgstr "_Lastnosti"
-#: gtk/a11y/gtkimageaccessible.c:109
+#: gtk/a11y/gtkimageaccessible.c:109 gtk/deprecated/gtkstock.c:437
msgctxt "Stock label"
msgid "_Quit"
msgstr "_Končaj"
-#: gtk/a11y/gtkimageaccessible.c:110
+#: gtk/a11y/gtkimageaccessible.c:110 gtk/deprecated/gtkstock.c:438
msgctxt "Stock label"
msgid "_Redo"
msgstr "_Ponovi"
-#: gtk/a11y/gtkimageaccessible.c:111
+#: gtk/a11y/gtkimageaccessible.c:111 gtk/deprecated/gtkstock.c:439
msgctxt "Stock label"
msgid "_Refresh"
msgstr "_Osveži"
-#: gtk/a11y/gtkimageaccessible.c:112
+#: gtk/a11y/gtkimageaccessible.c:112 gtk/deprecated/gtkstock.c:440
msgctxt "Stock label"
msgid "_Remove"
msgstr "_Odstrani"
-#: gtk/a11y/gtkimageaccessible.c:113
+#: gtk/a11y/gtkimageaccessible.c:113 gtk/deprecated/gtkstock.c:441
msgctxt "Stock label"
msgid "_Revert"
msgstr "_Povrni"
-#: gtk/a11y/gtkimageaccessible.c:114
+#: gtk/a11y/gtkimageaccessible.c:114 gtk/deprecated/gtkstock.c:442
msgctxt "Stock label"
msgid "_Save"
msgstr "_Shrani"
-#: gtk/a11y/gtkimageaccessible.c:115
+#: gtk/a11y/gtkimageaccessible.c:115 gtk/deprecated/gtkstock.c:443
msgctxt "Stock label"
msgid "Save _As"
msgstr "Shrani _kot"
-#: gtk/a11y/gtkimageaccessible.c:116
+#: gtk/a11y/gtkimageaccessible.c:116 gtk/deprecated/gtkstock.c:444
msgctxt "Stock label"
msgid "Select _All"
msgstr "Izberi _vse"
-#: gtk/a11y/gtkimageaccessible.c:117
+#. Sorting direction
+#: gtk/a11y/gtkimageaccessible.c:117 gtk/deprecated/gtkstock.c:448
msgctxt "Stock label"
msgid "_Ascending"
msgstr "_Naraščajoče"
-#: gtk/a11y/gtkimageaccessible.c:118
+#. Sorting direction
+#: gtk/a11y/gtkimageaccessible.c:118 gtk/deprecated/gtkstock.c:450
msgctxt "Stock label"
msgid "_Descending"
msgstr "_Padajoče"
-#: gtk/a11y/gtkimageaccessible.c:119
+#: gtk/a11y/gtkimageaccessible.c:119 gtk/deprecated/gtkstock.c:451
msgctxt "Stock label"
msgid "_Spell Check"
msgstr "_Črkovanje"
-#: gtk/a11y/gtkimageaccessible.c:120
+#: gtk/a11y/gtkimageaccessible.c:120 gtk/deprecated/gtkstock.c:452
msgctxt "Stock label"
msgid "_Stop"
msgstr "_Zaustavi"
-#: gtk/a11y/gtkimageaccessible.c:121
+#. Font variant
+#: gtk/a11y/gtkimageaccessible.c:121 gtk/deprecated/gtkstock.c:454
msgctxt "Stock label"
msgid "_Strikethrough"
msgstr "Pre_črtano"
-#: gtk/a11y/gtkimageaccessible.c:122
+#. Font variant
+#: gtk/a11y/gtkimageaccessible.c:122 gtk/deprecated/gtkstock.c:457
msgctxt "Stock label"
msgid "_Underline"
msgstr "_Podčrtano"
-#: gtk/a11y/gtkimageaccessible.c:123
+#: gtk/a11y/gtkimageaccessible.c:123 gtk/deprecated/gtkstock.c:458
msgctxt "Stock label"
msgid "_Undo"
msgstr "_Razveljavi"
-#: gtk/a11y/gtkimageaccessible.c:124
+#: gtk/a11y/gtkimageaccessible.c:124 gtk/deprecated/gtkstock.c:388
msgctxt "Stock label"
msgid "Decrease Indent"
msgstr "Zmanjšaj zamik"
-#: gtk/a11y/gtkimageaccessible.c:125
+#. Zoom
+#: gtk/a11y/gtkimageaccessible.c:125 gtk/deprecated/gtkstock.c:461
msgctxt "Stock label"
msgid "_Normal Size"
msgstr "_Običajna velikost"
-#: gtk/a11y/gtkimageaccessible.c:126
+#. Zoom
+#: gtk/a11y/gtkimageaccessible.c:126 gtk/deprecated/gtkstock.c:463
msgctxt "Stock label"
msgid "Best _Fit"
msgstr "_Najboljše ujemanje"
-#: gtk/a11y/gtkimageaccessible.c:127
+#: gtk/a11y/gtkimageaccessible.c:127 gtk/deprecated/gtkstock.c:464
msgctxt "Stock label"
msgid "Zoom _In"
msgstr "_Približaj"
-#: gtk/a11y/gtkimageaccessible.c:128
+#: gtk/a11y/gtkimageaccessible.c:128 gtk/deprecated/gtkstock.c:465
msgctxt "Stock label"
msgid "Zoom _Out"
msgstr "_Oddalji"
-#: gtk/a11y/gtkmenubuttonaccessible.c:102 gtk/inspector/window.ui:402
+#: gtk/a11y/gtkmenubuttonaccessible.c:102 gtk/inspector/window.ui:459
msgid "Menu"
msgstr "Meni"
@@ -984,6 +1108,333 @@ msgctxt "Action description"
msgid "Toggles the switch"
msgstr "Preklopi nastavitev"
+#: gtk/deprecated/gtkcolorsel.c:425
+msgid ""
+"Select the color you want from the outer ring. Select the darkness or "
+"lightness of that color using the inner triangle."
+msgstr ""
+"Iz zunanjega obroča izberite željeno barvo. Izberite temnost ali svetlost te "
+"barve z uporabno notranjega trikotnika."
+
+#: gtk/deprecated/gtkcolorsel.c:451
+msgid ""
+"Click the eyedropper, then click a color anywhere on your screen to select "
+"that color."
+msgstr "Kliknite na kapalko, nato kjerkoli na zaslon za izbiro tiste barve."
+
+#: gtk/deprecated/gtkcolorsel.c:461
+msgid "_Hue:"
+msgstr "_Odtenek:"
+
+#: gtk/deprecated/gtkcolorsel.c:462
+msgid "Position on the color wheel."
+msgstr "Položaj na barvnem krogu."
+
+#: gtk/deprecated/gtkcolorsel.c:464
+msgid "S_aturation:"
+msgstr "_Nasičenost:"
+
+#: gtk/deprecated/gtkcolorsel.c:465
+msgid "Intensity of the color."
+msgstr "Jakost barve."
+
+#: gtk/deprecated/gtkcolorsel.c:466
+msgid "_Value:"
+msgstr "_Vrednost:"
+
+#: gtk/deprecated/gtkcolorsel.c:467
+msgid "Brightness of the color."
+msgstr "Svetlost barve."
+
+#: gtk/deprecated/gtkcolorsel.c:468
+msgid "_Red:"
+msgstr "_Rdeča:"
+
+#: gtk/deprecated/gtkcolorsel.c:469
+msgid "Amount of red light in the color."
+msgstr "Količina rdeče luči v barvi."
+
+#: gtk/deprecated/gtkcolorsel.c:470
+msgid "_Green:"
+msgstr "_Zelena:"
+
+#: gtk/deprecated/gtkcolorsel.c:471
+msgid "Amount of green light in the color."
+msgstr "Količina zelene luči v barvi."
+
+#: gtk/deprecated/gtkcolorsel.c:472
+msgid "_Blue:"
+msgstr "_Modra:"
+
+#: gtk/deprecated/gtkcolorsel.c:473
+msgid "Amount of blue light in the color."
+msgstr "Količina modre luči v barvi."
+
+#: gtk/deprecated/gtkcolorsel.c:476
+msgid "Op_acity:"
+msgstr "_Prosojnost:"
+
+#: gtk/deprecated/gtkcolorsel.c:484 gtk/deprecated/gtkcolorsel.c:494
+msgid "Transparency of the color."
+msgstr "Prosojnost barve."
+
+#: gtk/deprecated/gtkcolorsel.c:501
+msgid "Color _name:"
+msgstr "_Ime barve:"
+
+#: gtk/deprecated/gtkcolorsel.c:516
+msgid ""
+"You can enter an HTML-style hexadecimal color value, or simply a color name "
+"such as “orange” in this entry."
+msgstr ""
+"V tem vnosu lahko vpišete šestnajstiško vrednost barve (kot v HTML) ali "
+"enostavno ime barve (na primer »orange«)."
+
+#: gtk/deprecated/gtkcolorsel.c:548
+msgid "_Palette:"
+msgstr "_Paleta:"
+
+#: gtk/deprecated/gtkcolorsel.c:578
+msgid "Color Wheel"
+msgstr "Barvni krog"
+
+#: gtk/deprecated/gtkcolorsel.c:1072
+msgid ""
+"The previously-selected color, for comparison to the color you’re selecting "
+"now. You can drag this color to a palette entry, or select this color as "
+"current by dragging it to the other color swatch alongside."
+msgstr ""
+"Predhodno izbrana barva za primerjavo s trenutno izbrano barvo. To barvo "
+"lahko povlečete do vnosa v paleti ali jo izberete barvo kot trenutno z "
+"vlečenjem na drug, vzporeden barvni vzorec."
+
+#: gtk/deprecated/gtkcolorsel.c:1078
+msgid ""
+"The color you’ve chosen. You can drag this color to a palette entry to save "
+"it for use in the future."
+msgstr ""
+"Trenutno izbrana barva. To barvo lahko povlečete do vnosa v paleti za "
+"kasnejšo uporabo."
+
+#: gtk/deprecated/gtkcolorsel.c:1084
+msgid ""
+"The previously-selected color, for comparison to the color you’re selecting "
+"now."
+msgstr "Predhodno izbrana barva za primerjavo s trenutno izbrano barvo."
+
+#: gtk/deprecated/gtkcolorsel.c:1088
+msgid "The color you’ve chosen."
+msgstr "Izbrana barva."
+
+#: gtk/deprecated/gtkcolorsel.c:1458
+msgid "_Save color here"
+msgstr "_Shrani barvo sem"
+
+#: gtk/deprecated/gtkcolorsel.c:1664
+msgid ""
+"Click this palette entry to make it the current color. To change this entry, "
+"drag a color swatch here or right-click it and select “Save color here.”"
+msgstr ""
+"Kliknite na ta vnos palete za izbor trenutne barva. Za spreminjanje tega "
+"vnosa potegnite na to mesto drugo barvo ali kliknite z desnim gumbom miške "
+"in izberite »Shrani barvo«."
+
+#: gtk/deprecated/gtkcolorseldialog.c:191 gtk/deprecated/gtkfontsel.c:1689
+#: gtk/gtkfilechoosernative.c:540 gtk/gtkfilechoosernative.c:632
+#: gtk/gtkfilechooserwidget.c:1475 gtk/gtkfilechooserwidget.c:6330
+#: gtk/gtkmessagedialog.c:952 gtk/gtkmessagedialog.c:965
+#: gtk/gtkmountoperation.c:545 gtk/gtkpagesetupunixdialog.c:196
+#: gtk/gtkprintbackend.c:781 gtk/gtkprinteroptionwidget.c:545
+#: gtk/gtkprintunixdialog.c:673 gtk/gtkprintunixdialog.c:746
+#: gtk/gtkwindow.c:12722 gtk/inspector/css-editor.c:201
+#: gtk/ui/gtkappchooserdialog.ui:61 gtk/ui/gtkassistant.ui:125
+#: gtk/ui/gtkcolorchooserdialog.ui:34 gtk/ui/gtkfontchooserdialog.ui:31
+msgid "_Cancel"
+msgstr "_Prekliči"
+
+#: gtk/deprecated/gtkcolorseldialog.c:195 gtk/gtkprinteroptionwidget.c:546
+#: gtk/ui/gtkappchooserdialog.ui:67 gtk/ui/gtkcolorchooserdialog.ui:40
+#: gtk/ui/gtkfontchooserdialog.ui:37
+msgid "_Select"
+msgstr "_Izberi"
+
+#: gtk/deprecated/gtkcolorseldialog.c:201
+msgid "_Help"
+msgstr "Pomo_č"
+
+#: gtk/deprecated/gtkcolorseldialog.c:213
+msgid "Color Selection"
+msgstr "Izbira barve"
+
+#. This is the default text shown in the preview entry, though the user
+#. can set it. Remember that some fonts only have capital letters.
+#: gtk/deprecated/gtkfontsel.c:121
+msgid "abcdefghijk ABCDEFGHIJK"
+msgstr "AaBbCcČčDdEeFfGgHhIiJjKkLlMmNnOoPpQqRrSsŠšTtUuVvZzŽž"
+
+#: gtk/deprecated/gtkfontsel.c:386
+msgid "_Family:"
+msgstr "_Družina:"
+
+#: gtk/deprecated/gtkfontsel.c:393
+msgid "_Style:"
+msgstr "_Slog:"
+
+#: gtk/deprecated/gtkfontsel.c:400
+msgid "Si_ze:"
+msgstr "_Velikost:"
+
+#. create the text entry widget
+#: gtk/deprecated/gtkfontsel.c:577
+msgid "_Preview:"
+msgstr "_Predogled: "
+
+#: gtk/deprecated/gtkfontsel.c:1693 gtk/gtkpagesetupunixdialog.c:197
+#: gtk/ui/gtkassistant.ui:50
+msgid "_Apply"
+msgstr "_Uveljavi"
+
+#: gtk/deprecated/gtkfontsel.c:1698 gtk/gtkmessagedialog.c:944
+#: gtk/gtkmessagedialog.c:966 gtk/gtkprintbackend.c:782 gtk/gtkwindow.c:12723
+msgid "_OK"
+msgstr "_V redu"
+
+#: gtk/deprecated/gtkfontsel.c:1709
+msgid "Font Selection"
+msgstr "Izbira pisave"
+
+#. Translators: the format here is used to build the string that will be rendered
+#. * in the number emblem.
+#.
+#: gtk/deprecated/gtknumerableicon.c:473
+#, c-format
+msgctxt "Number format"
+msgid "%d"
+msgstr "%d"
+
+#: gtk/deprecated/gtkstock.c:347
+msgctxt "Stock label"
+msgid "_Apply"
+msgstr "_Uveljavi"
+
+#: gtk/deprecated/gtkstock.c:349
+msgctxt "Stock label"
+msgid "_Cancel"
+msgstr "_Prekliči"
+
+#: gtk/deprecated/gtkstock.c:353
+msgctxt "Stock label"
+msgid "C_onnect"
+msgstr "_Poveži"
+
+#: gtk/deprecated/gtkstock.c:354
+msgctxt "Stock label"
+msgid "_Convert"
+msgstr "P_retvori"
+
+#: gtk/deprecated/gtkstock.c:358
+msgctxt "Stock label"
+msgid "_Discard"
+msgstr "_Zavrzi"
+
+#: gtk/deprecated/gtkstock.c:359
+msgctxt "Stock label"
+msgid "_Disconnect"
+msgstr "_Prekini povezavo"
+
+#: gtk/deprecated/gtkstock.c:361
+msgctxt "Stock label"
+msgid "_Edit"
+msgstr "_Uredi"
+
+#: gtk/deprecated/gtkstock.c:389
+msgctxt "Stock label"
+msgid "_Index"
+msgstr "_Kazalo"
+
+#: gtk/deprecated/gtkstock.c:390
+msgctxt "Stock label"
+msgid "_Information"
+msgstr "_Podrobnosti"
+
+#: gtk/deprecated/gtkstock.c:420
+msgctxt "Stock label"
+msgid "_No"
+msgstr "_Ne"
+
+#: gtk/deprecated/gtkstock.c:421
+msgctxt "Stock label"
+msgid "_OK"
+msgstr "_V redu"
+
+#. Page orientation
+#: gtk/deprecated/gtkstock.c:424
+msgctxt "Stock label"
+msgid "Landscape"
+msgstr "Ležeče"
+
+#. Page orientation
+#: gtk/deprecated/gtkstock.c:426
+msgctxt "Stock label"
+msgid "Portrait"
+msgstr "Pokončno"
+
+#. Page orientation
+#: gtk/deprecated/gtkstock.c:428
+msgctxt "Stock label"
+msgid "Reverse landscape"
+msgstr "Obrnjeno ležeče"
+
+#. Page orientation
+#: gtk/deprecated/gtkstock.c:430
+msgctxt "Stock label"
+msgid "Reverse portrait"
+msgstr "Obrnjeno pokončno"
+
+#: gtk/deprecated/gtkstock.c:431
+msgctxt "Stock label"
+msgid "Page Set_up"
+msgstr "Nastavitev _strani"
+
+#: gtk/deprecated/gtkstock.c:433
+msgctxt "Stock label"
+msgid "_Preferences"
+msgstr "_Možnosti"
+
+#: gtk/deprecated/gtkstock.c:445
+msgctxt "Stock label"
+msgid "_Color"
+msgstr "_Barva"
+
+#: gtk/deprecated/gtkstock.c:446
+msgctxt "Stock label"
+msgid "_Font"
+msgstr "_Pisava"
+
+#: gtk/deprecated/gtkstock.c:455
+msgctxt "Stock label"
+msgid "_Undelete"
+msgstr "Pov_rni izbrisano"
+
+#: gtk/deprecated/gtkstock.c:459
+msgctxt "Stock label"
+msgid "_Yes"
+msgstr "_Da"
+
+#: gtk/deprecated/gtkuimanager.c:1782
+#, c-format
+msgid "Unexpected start tag '%s' on line %d char %d"
+msgstr "Nepričakovana začetna oznaka »%s« v vrstici %d, znak %d"
+
+#: gtk/deprecated/gtkuimanager.c:1872
+#, c-format
+msgid "Unexpected character data on line %d char %d"
+msgstr "Nepričakovani znakovni podatki v vrstici %d, znak %d"
+
+#: gtk/deprecated/gtkuimanager.c:2709
+msgid "Empty"
+msgstr "Prazno"
+
#: gtk/encodesymbolic.c:38
msgid "Output to this directory instead of cwd"
msgstr "Odvod v mapo namesto v ukazno vrstico"
@@ -993,124 +1444,130 @@ msgstr "Odvod v mapo namesto v ukazno vrstico"
msgid "Invalid size %s\n"
msgstr "Neveljavna velikost %s\n"
-#: gtk/encodesymbolic.c:279 gtk/gtk-builder-tool.c:668
+#: gtk/encodesymbolic.c:279 gtk/gtk-builder-tool.c:671
#, c-format
-msgid "Can’t load file: %s\n"
+msgid "Can't load file: %s\n"
msgstr "Ni mogoče naložiti datoteke %s\n"
#: gtk/encodesymbolic.c:307 gtk/encodesymbolic.c:313
#, c-format
-msgid "Can’t save file %s: %s\n"
+msgid "Can't save file %s: %s\n"
msgstr "Ni mogoče shraniti datoteke %s: %s\n"
#: gtk/encodesymbolic.c:319
#, c-format
-msgid "Can’t close stream"
+msgid "Can't close stream"
msgstr "Ni mogoče zapreti pretoka."
-#: gtk/gtkaboutdialog.c:113 gtk/ui/gtkaboutdialog.ui:181
+#: gtk/gtkaboutdialog.c:114 gtk/ui/gtkaboutdialog.ui:206
msgid "License"
msgstr "Dovoljenje"
-#: gtk/gtkaboutdialog.c:114
+#: gtk/gtkaboutdialog.c:115
msgid "Custom License"
msgstr "Dovoljenje po meri"
-#: gtk/gtkaboutdialog.c:115
+#: gtk/gtkaboutdialog.c:116
msgid "GNU General Public License, version 2 or later"
msgstr "Splošno Javno dovoljenje GNU, različice 2 ali kasnejše"
-#: gtk/gtkaboutdialog.c:116
+#: gtk/gtkaboutdialog.c:117
msgid "GNU General Public License, version 3 or later"
msgstr "Splošno Javno dovoljenje GNU, različice 3 ali kasnejše"
-#: gtk/gtkaboutdialog.c:117
+#: gtk/gtkaboutdialog.c:118
msgid "GNU Lesser General Public License, version 2.1 or later"
msgstr "Manj Splošno Javno dovoljenje GNU, različice 2.1 ali kasnejše"
-#: gtk/gtkaboutdialog.c:118
+#: gtk/gtkaboutdialog.c:119
msgid "GNU Lesser General Public License, version 3 or later"
msgstr "Manj Splošno Javno dovoljenje GNU, različice 3 ali kasnejše"
-#: gtk/gtkaboutdialog.c:119
+#: gtk/gtkaboutdialog.c:120
msgid "BSD 2-Clause License"
msgstr "Dovoljenje BSD"
-#: gtk/gtkaboutdialog.c:120
+#: gtk/gtkaboutdialog.c:121
msgid "The MIT License (MIT)"
msgstr "Dovoljenje MIT"
-#: gtk/gtkaboutdialog.c:121
+#: gtk/gtkaboutdialog.c:122
msgid "Artistic License 2.0"
msgstr "Umetniško dovoljenje 2.0"
-#: gtk/gtkaboutdialog.c:122
+#: gtk/gtkaboutdialog.c:123
msgid "GNU General Public License, version 2 only"
msgstr "Splošno Javno dovoljenje GNU, le različice 2"
-#: gtk/gtkaboutdialog.c:123
+#: gtk/gtkaboutdialog.c:124
msgid "GNU General Public License, version 3 only"
msgstr "Splošno Javno dovoljenje GNU, le različice 3"
-#: gtk/gtkaboutdialog.c:124
+#: gtk/gtkaboutdialog.c:125
msgid "GNU Lesser General Public License, version 2.1 only"
msgstr "Manj Splošno Javno dovoljenje GNU, le različice 2.1"
-#: gtk/gtkaboutdialog.c:125
+#: gtk/gtkaboutdialog.c:126
msgid "GNU Lesser General Public License, version 3 only"
msgstr "Manj Splošno Javno dovoljenje GNU, le različice 3"
-#: gtk/gtkaboutdialog.c:126
+#: gtk/gtkaboutdialog.c:127
msgid "GNU Affero General Public License, version 3 or later"
msgstr "Splošno javno dovoljenje Affero GNU, različice 3 ali kasnejše"
-#: gtk/gtkaboutdialog.c:745
+#: gtk/gtkaboutdialog.c:128
+#, fuzzy
+#| msgid "GNU General Public License, version 3 only"
+msgid "GNU Affero General Public License, version 3 only"
+msgstr "Splošno Javno dovoljenje GNU, le različice 3"
+
+#: gtk/gtkaboutdialog.c:697
msgid "C_redits"
msgstr "_Zasluge"
-#: gtk/gtkaboutdialog.c:756
+#: gtk/gtkaboutdialog.c:705
msgid "_License"
msgstr "_Dovoljenje"
-#: gtk/gtkaboutdialog.c:767 gtk/gtkcustompaperunixdialog.c:329
-#: gtk/gtkmessagedialog.c:848 gtk/ui/gtkassistant.ui:134
+#: gtk/gtkaboutdialog.c:714 gtk/gtkcustompaperunixdialog.c:329
+#: gtk/gtkmessagedialog.c:948 gtk/ui/gtkassistant.ui:144
msgid "_Close"
msgstr "_Zapri"
-#: gtk/gtkaboutdialog.c:1057
+#: gtk/gtkaboutdialog.c:998
msgid "Could not show link"
msgstr "Povezave ni mogoče pokazati"
-#: gtk/gtkaboutdialog.c:1094
+#: gtk/gtkaboutdialog.c:1035
msgid "Website"
msgstr "Spletišče"
#. used for the application menu on MacOS. %s is replaced with the application name.
-#: gtk/gtkaboutdialog.c:1144 gtk/ui/gtkapplication-quartz.ui:7
+#: gtk/gtkaboutdialog.c:1085 gtk/ui/gtkapplication-quartz.ui:7
#, c-format
msgid "About %s"
msgstr "O programu %s"
-#: gtk/gtkaboutdialog.c:2396
+#: gtk/gtkaboutdialog.c:2312
msgid "Created by"
msgstr "Ustvarili:"
-#: gtk/gtkaboutdialog.c:2399
+#: gtk/gtkaboutdialog.c:2315
msgid "Documented by"
msgstr "Dokumentacija:"
-#: gtk/gtkaboutdialog.c:2409
+#: gtk/gtkaboutdialog.c:2325
msgid "Translated by"
msgstr "Prevod:"
-#: gtk/gtkaboutdialog.c:2414
+#: gtk/gtkaboutdialog.c:2330
msgid "Artwork by"
msgstr "Grafična podoba:"
#. Translators: this is the license preamble; the string at the end
#. * contains the name of the license as link text.
#.
-#: gtk/gtkaboutdialog.c:2588
+#: gtk/gtkaboutdialog.c:2490
#, c-format
msgid ""
"This program comes with absolutely no warranty.\n"
@@ -1124,7 +1581,7 @@ msgstr ""
#. * translated on keyboards used for your language, don't translate
#. * this.
#.
-#: gtk/gtkaccellabel.c:199 gtk/gtkshortcutlabel.c:102
+#: gtk/gtkaccellabel.c:181 gtk/gtkshortcutlabel.c:102
#: gtk/gtkshortcutlabel.c:138
msgctxt "keyboard label"
msgid "Shift"
@@ -1135,7 +1592,7 @@ msgstr "Shift"
#. * translated on keyboards used for your language, don't translate
#. * this.
#.
-#: gtk/gtkaccellabel.c:205 gtk/gtkshortcutlabel.c:105
+#: gtk/gtkaccellabel.c:187 gtk/gtkshortcutlabel.c:105
#: gtk/gtkshortcutlabel.c:140
msgctxt "keyboard label"
msgid "Ctrl"
@@ -1146,7 +1603,7 @@ msgstr "Ctrl"
#. * translated on keyboards used for your language, don't translate
#. * this.
#.
-#: gtk/gtkaccellabel.c:211 gtk/gtkshortcutlabel.c:108
+#: gtk/gtkaccellabel.c:193 gtk/gtkshortcutlabel.c:108
#: gtk/gtkshortcutlabel.c:142
msgctxt "keyboard label"
msgid "Alt"
@@ -1157,7 +1614,7 @@ msgstr "Alt"
#. * translated on keyboards used for your language, don't translate
#. * this.
#.
-#: gtk/gtkaccellabel.c:795 gtk/gtkshortcutlabel.c:114
+#: gtk/gtkaccellabel.c:845 gtk/gtkshortcutlabel.c:114
#: gtk/gtkshortcutlabel.c:152
msgctxt "keyboard label"
msgid "Super"
@@ -1168,7 +1625,7 @@ msgstr "Super"
#. * translated on keyboards used for your language, don't translate
#. * this.
#.
-#: gtk/gtkaccellabel.c:808 gtk/gtkshortcutlabel.c:117
+#: gtk/gtkaccellabel.c:858 gtk/gtkshortcutlabel.c:117
#: gtk/gtkshortcutlabel.c:154
msgctxt "keyboard label"
msgid "Hyper"
@@ -1179,18 +1636,18 @@ msgstr "Hiper"
#. * translated on keyboards used for your language, don't translate
#. * this.
#.
-#: gtk/gtkaccellabel.c:822 gtk/gtkshortcutlabel.c:111
+#: gtk/gtkaccellabel.c:872 gtk/gtkshortcutlabel.c:111
#: gtk/gtkshortcutlabel.c:156
msgctxt "keyboard label"
msgid "Meta"
msgstr "Meta"
-#: gtk/gtkaccellabel.c:839
+#: gtk/gtkaccellabel.c:889
msgctxt "keyboard label"
msgid "Space"
msgstr "Preslednica"
-#: gtk/gtkaccellabel.c:842 gtk/gtkshortcutlabel.c:181
+#: gtk/gtkaccellabel.c:892 gtk/gtkshortcutlabel.c:181
msgctxt "keyboard label"
msgid "Backslash"
msgstr "Leva poševnica"
@@ -1199,64 +1656,64 @@ msgstr "Leva poševnica"
msgid "Other application…"
msgstr "Drug program ..."
-#: gtk/gtkappchooserdialog.c:206 gtk/gtkappchooserdialog.c:213
-#: gtk/gtkappchooserdialog.c:230 gtk/ui/gtkappchooserdialog.ui:5
+#: gtk/gtkappchooserdialog.c:204 gtk/gtkappchooserdialog.c:211
+#: gtk/gtkappchooserdialog.c:228 gtk/ui/gtkappchooserdialog.ui:5
msgid "Select Application"
msgstr "Izbor programa"
#. Translators: %s is a filename
-#: gtk/gtkappchooserdialog.c:208
+#: gtk/gtkappchooserdialog.c:206
#, c-format
msgid "Opening “%s”."
msgstr "Odpiranje datoteke »%s«."
-#: gtk/gtkappchooserdialog.c:209
+#: gtk/gtkappchooserdialog.c:207
#, c-format
msgid "No applications found for “%s”"
msgstr "Ni mogoče najti programa za »%s«"
#. Translators: %s is a file type description
-#: gtk/gtkappchooserdialog.c:215
+#: gtk/gtkappchooserdialog.c:213
#, c-format
msgid "Opening “%s” files."
msgstr "Odpiranje datotek »%s«."
-#: gtk/gtkappchooserdialog.c:217
+#: gtk/gtkappchooserdialog.c:215
#, c-format
msgid "No applications found for “%s” files"
msgstr "Ni mogoče najti programa za datoteke »%s«"
-#: gtk/gtkappchooserdialog.c:310
+#: gtk/gtkappchooserdialog.c:308
msgid "Forget association"
msgstr "Pozabi povezavo"
-#: gtk/gtkappchooserdialog.c:454
+#: gtk/gtkappchooserdialog.c:451
msgid "Failed to start GNOME Software"
msgstr "Zagon programske opreme GNOME spodletelo"
-#: gtk/gtkappchooserwidget.c:627
+#: gtk/gtkappchooserwidget.c:593
msgid "Default Application"
msgstr "Privzeti program"
-#: gtk/gtkappchooserwidget.c:677
+#: gtk/gtkappchooserwidget.c:643
#, c-format
msgid "No applications found for “%s”."
msgstr "Ni mogoče najti programa za »%s«"
-#: gtk/gtkappchooserwidget.c:760
+#: gtk/gtkappchooserwidget.c:726
msgid "Recommended Applications"
msgstr "Priporočeni programi"
-#: gtk/gtkappchooserwidget.c:775
+#: gtk/gtkappchooserwidget.c:741
msgid "Related Applications"
msgstr "Sorodni programi"
-#: gtk/gtkappchooserwidget.c:789
+#: gtk/gtkappchooserwidget.c:755
msgid "Other Applications"
msgstr "Drugi programi"
-#: gtk/gtkapplicationwindow.c:340 gtk/gtkprintoperation-unix.c:484
-#: gtk/gtkprintoperation-win32.c:1465 gtk/inspector/prop-editor.c:1623
+#: gtk/gtkapplicationwindow.c:345 gtk/gtkprintoperation-unix.c:485
+#: gtk/gtkprintoperation-win32.c:1453 gtk/inspector/prop-editor.c:1686
msgid "Application"
msgstr "Program"
@@ -1301,16 +1758,17 @@ msgid "Property %s::%s not found\n"
msgstr "Lastnost %s::%s ne obstaja\n"
#: gtk/gtk-builder-tool.c:136
-#, c-format
-msgid "Couldn’t parse value for %s::%s: %s\n"
+#, fuzzy, c-format
+#| msgid "Couldn’t parse value for %s::%s: %s\n"
+msgid "Couldn't parse value for %s::%s: %s\n"
msgstr "Ni mogoče razčleniti vrednosti za %s::%s: %s\n"
-#: gtk/gtk-builder-tool.c:689
+#: gtk/gtk-builder-tool.c:692
#, c-format
-msgid "Can’t parse file: %s\n"
+msgid "Can't parse file: %s\n"
msgstr "Ni mogoče razčleniti datoteke: %s\n"
-#: gtk/gtk-builder-tool.c:1049
+#: gtk/gtk-builder-tool.c:1056
#, c-format
msgid ""
"Usage:\n"
@@ -1359,7 +1817,7 @@ msgstr ""
#. * text direction of RTL and specify "calendar:YM", then the year
#. * will appear to the right of the month.
#.
-#: gtk/gtkcalendar.c:753
+#: gtk/gtkcalendar.c:815
msgid "calendar:MY"
msgstr "calendar:MY"
@@ -1367,7 +1825,7 @@ msgstr "calendar:MY"
#. * first day of the week to calendar:week_start:1 if you want Monday
#. * to be the first day of the week, and so on.
#.
-#: gtk/gtkcalendar.c:791
+#: gtk/gtkcalendar.c:853
msgid "calendar:week_start:0"
msgstr "calendar:week_start:0"
@@ -1376,7 +1834,7 @@ msgstr "calendar:week_start:0"
#. *
#. * If you don't understand this, leave it as "2000"
#.
-#: gtk/gtkcalendar.c:1617
+#: gtk/gtkcalendar.c:1881
msgctxt "year measurement template"
msgid "2000"
msgstr "2000"
@@ -1391,7 +1849,7 @@ msgstr "2000"
#. * digits. That needs support from your system and locale definition
#. * too.
#.
-#: gtk/gtkcalendar.c:1648 gtk/gtkcalendar.c:2273
+#: gtk/gtkcalendar.c:1912 gtk/gtkcalendar.c:2608
#, c-format
msgctxt "calendar:day:digits"
msgid "%d"
@@ -1407,7 +1865,7 @@ msgstr "%d"
#. * digits. That needs support from your system and locale definition
#. * too.
#.
-#: gtk/gtkcalendar.c:1680 gtk/gtkcalendar.c:2165
+#: gtk/gtkcalendar.c:1944 gtk/gtkcalendar.c:2474
#, c-format
msgctxt "calendar:week:digits"
msgid "%d"
@@ -1423,7 +1881,7 @@ msgstr "%d"
#. *
#. * "%Y" is appropriate for most locales.
#.
-#: gtk/gtkcalendar.c:1934
+#: gtk/gtkcalendar.c:2241
msgctxt "calendar year format"
msgid "%Y"
msgstr "%Y"
@@ -1431,7 +1889,7 @@ msgstr "%Y"
#. This label is displayed in a treeview cell displaying
#. * a disabled accelerator key combination.
#.
-#: gtk/gtkcellrendereraccel.c:272
+#: gtk/gtkcellrendereraccel.c:273
msgctxt "Accelerator"
msgid "Disabled"
msgstr "Onemogočeno"
@@ -1440,7 +1898,7 @@ msgstr "Onemogočeno"
#. * an accelerator key combination that is not valid according
#. * to gtk_accelerator_valid().
#.
-#: gtk/gtkcellrendereraccel.c:282
+#: gtk/gtkcellrendereraccel.c:283
msgctxt "Accelerator"
msgid "Invalid"
msgstr "Neveljavno"
@@ -1448,7 +1906,7 @@ msgstr "Neveljavno"
#. This label is displayed in a treeview cell displaying an accelerator
#. * when the cell is clicked to change the acelerator.
#.
-#: gtk/gtkcellrendereraccel.c:413 gtk/gtkcellrendereraccel.c:487
+#: gtk/gtkcellrendereraccel.c:414 gtk/gtkcellrendereraccel.c:488
msgid "New accelerator…"
msgstr "Nov pospeševalnik ..."
@@ -1458,7 +1916,7 @@ msgctxt "progress bar label"
msgid "%d %%"
msgstr "%d %%"
-#: gtk/gtkcolorbutton.c:228 gtk/gtkcolorbutton.c:410
+#: gtk/gtkcolorbutton.c:185 gtk/gtkcolorbutton.c:398
msgid "Pick a Color"
msgstr "Izberite barvo"
@@ -1477,219 +1935,219 @@ msgstr "Rdeča %d%%, zelena %d%%, modra %d%%"
msgid "Color: %s"
msgstr "Barva: %s"
-#: gtk/gtkcolorchooserwidget.c:444
+#: gtk/gtkcolorchooserwidget.c:446
msgctxt "Color name"
msgid "Light Scarlet Red"
msgstr "svetlo škrlatno rdeča"
-#: gtk/gtkcolorchooserwidget.c:445
+#: gtk/gtkcolorchooserwidget.c:447
msgctxt "Color name"
msgid "Scarlet Red"
msgstr "škrlatno rdeča"
-#: gtk/gtkcolorchooserwidget.c:446
+#: gtk/gtkcolorchooserwidget.c:448
msgctxt "Color name"
msgid "Dark Scarlet Red"
msgstr "temno škrlatno rdeča"
-#: gtk/gtkcolorchooserwidget.c:447
+#: gtk/gtkcolorchooserwidget.c:449
msgctxt "Color name"
msgid "Light Orange"
msgstr "svetlo oranžna"
-#: gtk/gtkcolorchooserwidget.c:448
+#: gtk/gtkcolorchooserwidget.c:450
msgctxt "Color name"
msgid "Orange"
msgstr "oranžna"
-#: gtk/gtkcolorchooserwidget.c:449
+#: gtk/gtkcolorchooserwidget.c:451
msgctxt "Color name"
msgid "Dark Orange"
msgstr "temno oranžna"
-#: gtk/gtkcolorchooserwidget.c:450
+#: gtk/gtkcolorchooserwidget.c:452
msgctxt "Color name"
msgid "Light Butter"
msgstr "svetlo maslena"
-#: gtk/gtkcolorchooserwidget.c:451
+#: gtk/gtkcolorchooserwidget.c:453
msgctxt "Color name"
msgid "Butter"
msgstr "maslena"
-#: gtk/gtkcolorchooserwidget.c:452
+#: gtk/gtkcolorchooserwidget.c:454
msgctxt "Color name"
msgid "Dark Butter"
msgstr "temno maslena"
-#: gtk/gtkcolorchooserwidget.c:453
+#: gtk/gtkcolorchooserwidget.c:455
msgctxt "Color name"
msgid "Light Chameleon"
msgstr "svetla kameleonska"
-#: gtk/gtkcolorchooserwidget.c:454
+#: gtk/gtkcolorchooserwidget.c:456
msgctxt "Color name"
msgid "Chameleon"
msgstr "kameleonska"
-#: gtk/gtkcolorchooserwidget.c:455
+#: gtk/gtkcolorchooserwidget.c:457
msgctxt "Color name"
msgid "Dark Chameleon"
msgstr "temna kameleonska"
-#: gtk/gtkcolorchooserwidget.c:456
+#: gtk/gtkcolorchooserwidget.c:458
msgctxt "Color name"
msgid "Light Sky Blue"
msgstr "svetlo nebesno modra"
-#: gtk/gtkcolorchooserwidget.c:457
+#: gtk/gtkcolorchooserwidget.c:459
msgctxt "Color name"
msgid "Sky Blue"
msgstr "nebesno modra"
-#: gtk/gtkcolorchooserwidget.c:458
+#: gtk/gtkcolorchooserwidget.c:460
msgctxt "Color name"
msgid "Dark Sky Blue"
msgstr "temno nebesno modra"
-#: gtk/gtkcolorchooserwidget.c:459
+#: gtk/gtkcolorchooserwidget.c:461
msgctxt "Color name"
msgid "Light Plum"
msgstr "svetla slivno vijolična"
-#: gtk/gtkcolorchooserwidget.c:460
+#: gtk/gtkcolorchooserwidget.c:462
msgctxt "Color name"
msgid "Plum"
msgstr "slivno vijolična"
-#: gtk/gtkcolorchooserwidget.c:461
+#: gtk/gtkcolorchooserwidget.c:463
msgctxt "Color name"
msgid "Dark Plum"
msgstr "temo slivno vijolična"
-#: gtk/gtkcolorchooserwidget.c:462
+#: gtk/gtkcolorchooserwidget.c:464
msgctxt "Color name"
msgid "Light Chocolate"
msgstr "svetla čokoladno rjava"
-#: gtk/gtkcolorchooserwidget.c:463
+#: gtk/gtkcolorchooserwidget.c:465
msgctxt "Color name"
msgid "Chocolate"
msgstr "čokoladno rjava"
-#: gtk/gtkcolorchooserwidget.c:464
+#: gtk/gtkcolorchooserwidget.c:466
msgctxt "Color name"
msgid "Dark Chocolate"
msgstr "temno čokoladno rjava"
-#: gtk/gtkcolorchooserwidget.c:465
+#: gtk/gtkcolorchooserwidget.c:467
msgctxt "Color name"
msgid "Light Aluminum 1"
msgstr "svetlobna leta"
-#: gtk/gtkcolorchooserwidget.c:466
+#: gtk/gtkcolorchooserwidget.c:468
msgctxt "Color name"
msgid "Aluminum 1"
msgstr "kovinska 1"
-#: gtk/gtkcolorchooserwidget.c:467
+#: gtk/gtkcolorchooserwidget.c:469
msgctxt "Color name"
msgid "Dark Aluminum 1"
msgstr "temna kovinska 1"
-#: gtk/gtkcolorchooserwidget.c:468
+#: gtk/gtkcolorchooserwidget.c:470
msgctxt "Color name"
msgid "Light Aluminum 2"
msgstr "svetla kovinska 2"
-#: gtk/gtkcolorchooserwidget.c:469
+#: gtk/gtkcolorchooserwidget.c:471
msgctxt "Color name"
msgid "Aluminum 2"
msgstr "kovinska 2"
-#: gtk/gtkcolorchooserwidget.c:470
+#: gtk/gtkcolorchooserwidget.c:472
msgctxt "Color name"
msgid "Dark Aluminum 2"
msgstr "svetla kovinska 2"
-#: gtk/gtkcolorchooserwidget.c:484
+#: gtk/gtkcolorchooserwidget.c:486
msgctxt "Color name"
msgid "Black"
msgstr "črna"
-#: gtk/gtkcolorchooserwidget.c:485
+#: gtk/gtkcolorchooserwidget.c:487
msgctxt "Color name"
msgid "Very Dark Gray"
msgstr "zelo temno siva"
-#: gtk/gtkcolorchooserwidget.c:486
+#: gtk/gtkcolorchooserwidget.c:488
msgctxt "Color name"
msgid "Darker Gray"
msgstr "temnejša siva"
-#: gtk/gtkcolorchooserwidget.c:487
+#: gtk/gtkcolorchooserwidget.c:489
msgctxt "Color name"
msgid "Dark Gray"
msgstr "temnosiva"
-#: gtk/gtkcolorchooserwidget.c:488
+#: gtk/gtkcolorchooserwidget.c:490
msgctxt "Color name"
msgid "Medium Gray"
msgstr "srednje siva"
-#: gtk/gtkcolorchooserwidget.c:489
+#: gtk/gtkcolorchooserwidget.c:491
msgctxt "Color name"
msgid "Light Gray"
msgstr "svetlosiva"
-#: gtk/gtkcolorchooserwidget.c:490
+#: gtk/gtkcolorchooserwidget.c:492
msgctxt "Color name"
msgid "Lighter Gray"
msgstr "svetlejša siva"
-#: gtk/gtkcolorchooserwidget.c:491
+#: gtk/gtkcolorchooserwidget.c:493
msgctxt "Color name"
msgid "Very Light Gray"
msgstr "zelo svetla siva"
-#: gtk/gtkcolorchooserwidget.c:492
+#: gtk/gtkcolorchooserwidget.c:494
msgctxt "Color name"
msgid "White"
msgstr "bela"
#. translators: label for the custom section in the color chooser
-#: gtk/gtkcolorchooserwidget.c:541
+#: gtk/gtkcolorchooserwidget.c:543
msgid "Custom"
msgstr "Po meri"
-#: gtk/gtkcolorchooserwidget.c:548
+#: gtk/gtkcolorchooserwidget.c:550
msgid "Custom color"
msgstr "Barva po meri"
-#: gtk/gtkcolorchooserwidget.c:549
+#: gtk/gtkcolorchooserwidget.c:551
msgid "Create a custom color"
msgstr "Ustvari barvo po meri"
-#: gtk/gtkcolorchooserwidget.c:568
+#: gtk/gtkcolorchooserwidget.c:570
#, c-format
msgid "Custom color %d: %s"
msgstr "Barva po meri %d: %s"
-#: gtk/gtkcolorplane.c:424
+#: gtk/gtkcolorplane.c:409
msgid "Color Plane"
msgstr "Barvna ravnina"
-#: gtk/gtkcolorscale.c:208
+#: gtk/gtkcolorscale.c:211
msgctxt "Color channel"
msgid "Hue"
msgstr "Odtenek"
-#: gtk/gtkcolorscale.c:210
+#: gtk/gtkcolorscale.c:213
msgctxt "Color channel"
msgid "Alpha"
msgstr "Alfa"
-#: gtk/gtkcolorswatch.c:314
+#: gtk/gtkcolorswatch.c:360
msgid "C_ustomize"
msgstr "Prila_godi"
@@ -1704,15 +2162,15 @@ msgid "default:mm"
msgstr "default:mm"
#. And show the custom paper dialog
-#: gtk/gtkcustompaperunixdialog.c:405 gtk/gtkprintunixdialog.c:3339
+#: gtk/gtkcustompaperunixdialog.c:405 gtk/gtkprintunixdialog.c:3336
msgid "Manage Custom Sizes"
msgstr "Upravljanje poljubnih velikosti"
-#: gtk/gtkcustompaperunixdialog.c:567 gtk/gtkpagesetupunixdialog.c:804
+#: gtk/gtkcustompaperunixdialog.c:567 gtk/gtkpagesetupunixdialog.c:811
msgid "inch"
msgstr "palec"
-#: gtk/gtkcustompaperunixdialog.c:569 gtk/gtkpagesetupunixdialog.c:802
+#: gtk/gtkcustompaperunixdialog.c:569 gtk/gtkpagesetupunixdialog.c:809
msgid "mm"
msgstr "mm"
@@ -1725,184 +2183,119 @@ msgstr "Robovi pri tiskalniku ..."
msgid "Custom Size %d"
msgstr "Poljubna velikost %d"
-#: gtk/gtkcustompaperunixdialog.c:1109
+#: gtk/gtkcustompaperunixdialog.c:1120
msgid "_Width:"
msgstr "_Širina:"
-#: gtk/gtkcustompaperunixdialog.c:1120
+#: gtk/gtkcustompaperunixdialog.c:1131
msgid "_Height:"
msgstr "_Višina:"
-#: gtk/gtkcustompaperunixdialog.c:1131
+#: gtk/gtkcustompaperunixdialog.c:1142
msgid "Paper Size"
msgstr "Velikost papirja"
-#: gtk/gtkcustompaperunixdialog.c:1140
+#: gtk/gtkcustompaperunixdialog.c:1151
msgid "_Top:"
msgstr "_Zgoraj:"
-#: gtk/gtkcustompaperunixdialog.c:1151
+#: gtk/gtkcustompaperunixdialog.c:1162
msgid "_Bottom:"
msgstr "_Spodaj:"
-#: gtk/gtkcustompaperunixdialog.c:1162
+#: gtk/gtkcustompaperunixdialog.c:1173
msgid "_Left:"
msgstr "_Levo:"
-#: gtk/gtkcustompaperunixdialog.c:1173
+#: gtk/gtkcustompaperunixdialog.c:1184
msgid "_Right:"
msgstr "_Desno:"
-#: gtk/gtkcustompaperunixdialog.c:1212
+#: gtk/gtkcustompaperunixdialog.c:1223
msgid "Paper Margins"
msgstr "Robovi papirja"
-#: gtk/gtkentry.c:8462 gtk/gtklabel.c:6108 gtk/gtktextview.c:9280
+#: gtk/gtkentry.c:9582 gtk/gtklabel.c:6680 gtk/gtktextview.c:9492
msgid "Cu_t"
msgstr "Iz_reži"
-#: gtk/gtkentry.c:8466 gtk/gtklabel.c:6109 gtk/gtktextview.c:9284
+#: gtk/gtkentry.c:9586 gtk/gtklabel.c:6681 gtk/gtktextview.c:9496
msgid "_Copy"
msgstr "_Kopiraj"
-#: gtk/gtkentry.c:8470 gtk/gtklabel.c:6110 gtk/gtktextview.c:9286
+#: gtk/gtkentry.c:9590 gtk/gtklabel.c:6682 gtk/gtktextview.c:9498
msgid "_Paste"
msgstr "Pr_ilepi"
-#: gtk/gtkentry.c:8473 gtk/gtkfilechooserwidget.c:1467
-#: gtk/gtkfilechooserwidget.c:2261 gtk/gtklabel.c:6112 gtk/gtktextview.c:9289
+#: gtk/gtkentry.c:9593 gtk/gtkfilechooserwidget.c:1476
+#: gtk/gtkfilechooserwidget.c:2276 gtk/gtklabel.c:6684 gtk/gtktextview.c:9501
msgid "_Delete"
msgstr "_Izbriši"
-#: gtk/gtkentry.c:8484 gtk/gtklabel.c:6121 gtk/gtktextview.c:9303
+#: gtk/gtkentry.c:9604 gtk/gtklabel.c:6693 gtk/gtktextview.c:9515
msgid "Select _All"
msgstr "Izberi _vse"
-#: gtk/gtkentry.c:8491
+#: gtk/gtkentry.c:9614 gtk/gtktextview.c:9525
msgid "Insert _Emoji"
msgstr "Vstavi izrazno _ikono"
-#: gtk/gtkentry.c:8664 gtk/gtktextview.c:9528
+#: gtk/gtkentry.c:9790 gtk/gtktextview.c:9745
msgid "Select all"
msgstr "Izberi vse"
-#: gtk/gtkentry.c:8667 gtk/gtktextview.c:9531
+#: gtk/gtkentry.c:9793 gtk/gtktextview.c:9748
msgid "Cut"
msgstr "Izreži"
-#: gtk/gtkentry.c:8670 gtk/gtktextview.c:9534
+#: gtk/gtkentry.c:9796 gtk/gtktextview.c:9751
msgid "Copy"
msgstr "Kopiraj"
-#: gtk/gtkentry.c:8673 gtk/gtktextview.c:9537
+#: gtk/gtkentry.c:9799 gtk/gtktextview.c:9754
msgid "Paste"
msgstr "Prilepi"
-#: gtk/gtkentry.c:9620
+#: gtk/gtkentry.c:10869
msgid "Caps Lock is on"
msgstr "Tipka Caps Lock je vključena"
-#: gtk/gtkfilechooserbutton.c:106
+#: gtk/gtkentry.c:11144
+msgid "Insert Emoji"
+msgstr "Vstavi izrazno ikono"
+
+#: gtk/gtkfilechooserbutton.c:107
msgid "Select a File"
msgstr "Izberite datoteko"
-#: gtk/gtkfilechooserbutton.c:107 gtk/gtkplacessidebar.c:953
+#: gtk/gtkfilechooserbutton.c:108 gtk/gtkplacessidebar.c:1109
msgid "Desktop"
msgstr "Namizje"
-#: gtk/gtkfilechooserbutton.c:108
+#: gtk/gtkfilechooserbutton.c:109 gtk/ui/gtkfilechooserbutton.ui:33
msgid "(None)"
msgstr "(Brez)"
-#: gtk/gtkfilechooserbutton.c:2198
+#: gtk/gtkfilechooserbutton.c:2158
msgid "Other…"
msgstr "Drugo ..."
-#: gtk/gtkfilechooserdialog.c:539
+#: gtk/gtkfilechooserdialog.c:542
msgid "_Name"
msgstr "_Ime"
-#: gtk/gtkfilechoosererrorstack.c:45
-msgid "A folder cannot be called “.”"
-msgstr "Mapa ne sme biti poimenovana » .. «."
-
-#: gtk/gtkfilechoosererrorstack.c:49
-msgid "A file cannot be called “.”"
-msgstr "Datoteka ne sme biti poimenovana » . «."
-
-#: gtk/gtkfilechoosererrorstack.c:53
-msgid "A folder cannot be called “..”"
-msgstr "Mapa ne sme biti poimenovana » .. «."
-
-#: gtk/gtkfilechoosererrorstack.c:57
-msgid "A file cannot be called “..”"
-msgstr "Datoteka ne sme biti poimenovana » .. «."
-
-#: gtk/gtkfilechoosererrorstack.c:61
-msgid "Folder names cannot contain “/”"
-msgstr "Ime mape ne sme vsebovati poševnice » / «."
-
-#: gtk/gtkfilechoosererrorstack.c:65
-msgid "File names cannot contain “/”"
-msgstr "Imena datotek ne smejo vsebovati poševnice » / «."
-
-#: gtk/gtkfilechoosererrorstack.c:69
-msgid "Folder names should not begin with a space"
-msgstr "Ime mape se ne sme začeti s presledkom"
-
-#: gtk/gtkfilechoosererrorstack.c:73
-msgid "File names should not begin with a space"
-msgstr "Ime datoteke se ne sme začeti s presledkom"
-
-#: gtk/gtkfilechoosererrorstack.c:77
-msgid "Folder names should not end with a space"
-msgstr "Ime mape se ne sme končati s presledkom"
-
-#: gtk/gtkfilechoosererrorstack.c:81
-msgid "File names should not end with a space"
-msgstr "Ime datoteke se ne sme končati s presledkom"
-
-#: gtk/gtkfilechoosererrorstack.c:85
-msgid "Folder names starting with a “.” are hidden"
-msgstr "Ime mape, ki se začne z » . « je skrita mapa"
-
-#: gtk/gtkfilechoosererrorstack.c:89
-msgid "File names starting with a “.” are hidden"
-msgstr "Ime datoteke, ki se začne z » . « je skrita datoteka"
-
-#: gtk/gtkfilechoosererrorstack.c:93
-msgid "A folder with that name already exists"
-msgstr "Mapa z enakim imenom že obstaja."
-
-#: gtk/gtkfilechoosererrorstack.c:97
-msgid "A file with that name already exists"
-msgstr "Datoteka s tem imenom že obstaja."
-
-#: gtk/gtkfilechoosernative.c:540 gtk/gtkfilechoosernative.c:625
-#: gtk/gtkfilechooserwidget.c:1466 gtk/gtkfilechooserwidget.c:6340
-#: gtk/gtkmessagedialog.c:852 gtk/gtkmessagedialog.c:861
-#: gtk/gtkmountoperation.c:542 gtk/gtkpagesetupunixdialog.c:196
-#: gtk/gtkprintbackend.c:763 gtk/gtkprinteroptionwidget.c:545
-#: gtk/gtkprintunixdialog.c:674 gtk/gtkprintunixdialog.c:741
-#: gtk/gtkwindow.c:10835 gtk/inspector/css-editor.c:201
-#: gtk/inspector/recorder.c:301 gtk/ui/gtkappchooserdialog.ui:58
-#: gtk/ui/gtkassistant.ui:116 gtk/ui/gtkcolorchooserdialog.ui:34
-#: gtk/ui/gtkfontchooserdialog.ui:28
-msgid "_Cancel"
-msgstr "_Prekliči"
-
#. Open item is always present
-#: gtk/gtkfilechoosernative.c:541 gtk/gtkfilechoosernative.c:619
-#: gtk/gtkplacessidebar.c:3378 gtk/gtkplacesview.c:1627
+#: gtk/gtkfilechoosernative.c:541 gtk/gtkfilechoosernative.c:626
+#: gtk/gtkplacessidebar.c:3615 gtk/gtkplacessidebar.c:3683
+#: gtk/gtkplacesview.c:1633
msgid "_Open"
msgstr "_Odpri"
-#: gtk/gtkfilechoosernative.c:619 gtk/inspector/css-editor.c:202
-#: gtk/inspector/recorder.c:302
+#: gtk/gtkfilechoosernative.c:626 gtk/inspector/css-editor.c:202
msgid "_Save"
msgstr "_Shrani"
-#: gtk/gtkfilechoosernativequartz.c:331 gtk/ui/gtkfilechooserwidget.ui:350
+#: gtk/gtkfilechoosernativequartz.c:331 gtk/ui/gtkfilechooserwidget.ui:392
msgid "Select which types of files are shown"
msgstr "Izberite, katere vrste datotek naj bodo prikazane"
@@ -1915,15 +2308,15 @@ msgstr "Izberite, katere vrste datotek naj bodo prikazane"
msgid "%1$s on %2$s"
msgstr "%1$s na %2$s"
-#: gtk/gtkfilechooserwidget.c:376
+#: gtk/gtkfilechooserwidget.c:369
msgid "Type name of new folder"
msgstr "Vnesite ime nove mape"
-#: gtk/gtkfilechooserwidget.c:794
+#: gtk/gtkfilechooserwidget.c:788
msgid "The folder could not be created"
msgstr "Mape ni mogoče ustvariti"
-#: gtk/gtkfilechooserwidget.c:807
+#: gtk/gtkfilechooserwidget.c:801
msgid ""
"The folder could not be created, as a file with the same name already "
"exists. Try using a different name for the folder, or rename the file first."
@@ -1931,208 +2324,263 @@ msgstr ""
"Mape ni mogoče ustvariti, saj že obstaja datoteka z enakim imenom. Uporabite "
"drugo ime ali pa najprej preimenujte datoteko."
-#: gtk/gtkfilechooserwidget.c:822
+#: gtk/gtkfilechooserwidget.c:816
msgid "You need to choose a valid filename."
msgstr "Izbrati morate veljavno ime datoteke."
-#: gtk/gtkfilechooserwidget.c:825
+#: gtk/gtkfilechooserwidget.c:819
#, c-format
msgid "Cannot create a file under %s as it is not a folder"
msgstr "Datoteke pod %s ni mogoče ustvariti, ker ni mapa"
-#: gtk/gtkfilechooserwidget.c:835
+#: gtk/gtkfilechooserwidget.c:829
msgid "Cannot create file as the filename is too long"
msgstr "Ni mogoče ustvariti datoteke s tako dolgim imenom"
-#: gtk/gtkfilechooserwidget.c:836
+#: gtk/gtkfilechooserwidget.c:830
msgid "Try using a shorter name."
msgstr "Poskusite znova s krajšim imenom datoteke."
-#: gtk/gtkfilechooserwidget.c:846
+#: gtk/gtkfilechooserwidget.c:840
msgid "You may only select folders"
msgstr "Izbrati je dovoljeno le mape."
-#: gtk/gtkfilechooserwidget.c:847
+#: gtk/gtkfilechooserwidget.c:841
msgid "The item that you selected is not a folder try using a different item."
msgstr "Izbran predmet ni mapa. Izberite drug predmet."
-#: gtk/gtkfilechooserwidget.c:855
+#: gtk/gtkfilechooserwidget.c:849
msgid "Invalid file name"
msgstr "Neveljavno ime datoteke"
-#: gtk/gtkfilechooserwidget.c:864
+#: gtk/gtkfilechooserwidget.c:858
msgid "The folder contents could not be displayed"
msgstr "Vsebine mape ni mogoče prikazati"
-#: gtk/gtkfilechooserwidget.c:872
+#: gtk/gtkfilechooserwidget.c:866
msgid "The file could not be deleted"
msgstr "Datoteke ni mogoče izbrisati"
-#: gtk/gtkfilechooserwidget.c:880
+#: gtk/gtkfilechooserwidget.c:874
msgid "The file could not be moved to the Trash"
msgstr "Datoteke ni mogoče premakniti v smeti."
-#: gtk/gtkfilechooserwidget.c:1462
+#: gtk/gtkfilechooserwidget.c:1019
+msgid "A folder with that name already exists"
+msgstr "Mapa z enakim imenom že obstaja."
+
+#: gtk/gtkfilechooserwidget.c:1021
+msgid "A file with that name already exists"
+msgstr "Datoteka s tem imenom že obstaja."
+
+#: gtk/gtkfilechooserwidget.c:1056
+msgid "A folder cannot be called “.”"
+msgstr "Mapa ne sme biti poimenovana » .. «."
+
+#: gtk/gtkfilechooserwidget.c:1057
+msgid "A file cannot be called “.”"
+msgstr "Datoteka ne sme biti poimenovana » . «."
+
+#: gtk/gtkfilechooserwidget.c:1060
+msgid "A folder cannot be called “..”"
+msgstr "Mapa ne sme biti poimenovana » .. «."
+
+#: gtk/gtkfilechooserwidget.c:1061
+msgid "A file cannot be called “..”"
+msgstr "Datoteka ne sme biti poimenovana » .. «."
+
+#: gtk/gtkfilechooserwidget.c:1064
+msgid "Folder names cannot contain “/”"
+msgstr "Ime mape ne sme vsebovati poševnice » / «."
+
+#: gtk/gtkfilechooserwidget.c:1065
+msgid "File names cannot contain “/”"
+msgstr "Imena datotek ne smejo vsebovati poševnice » / «."
+
+#: gtk/gtkfilechooserwidget.c:1091
+msgid "Folder names should not begin with a space"
+msgstr "Ime mape se ne sme začeti s presledkom"
+
+#: gtk/gtkfilechooserwidget.c:1092
+msgid "File names should not begin with a space"
+msgstr "Ime datoteke se ne sme začeti s presledkom"
+
+#: gtk/gtkfilechooserwidget.c:1096
+msgid "Folder names should not end with a space"
+msgstr "Ime mape se ne sme končati s presledkom"
+
+#: gtk/gtkfilechooserwidget.c:1097
+msgid "File names should not end with a space"
+msgstr "Ime datoteke se ne sme končati s presledkom"
+
+#: gtk/gtkfilechooserwidget.c:1100
+msgid "Folder names starting with a “.” are hidden"
+msgstr "Ime mape, ki se začne z » . « je skrita mapa"
+
+#: gtk/gtkfilechooserwidget.c:1101
+msgid "File names starting with a “.” are hidden"
+msgstr "Ime datoteke, ki se začne z » . « je skrita datoteka"
+
+#: gtk/gtkfilechooserwidget.c:1471
#, c-format
msgid "Are you sure you want to permanently delete “%s”?"
msgstr "Ali ste prepričani, da želite trajno izbrisati »%s«?"
-#: gtk/gtkfilechooserwidget.c:1465
+#: gtk/gtkfilechooserwidget.c:1474
#, c-format
msgid "If you delete an item, it will be permanently lost."
msgstr "V primeru, da predmet izbrišete, bo trajno izgubljen."
-#: gtk/gtkfilechooserwidget.c:1593
+#: gtk/gtkfilechooserwidget.c:1608
msgid "The file could not be renamed"
msgstr "Datoteke ni mogoče preimenovati."
-#: gtk/gtkfilechooserwidget.c:1907
+#: gtk/gtkfilechooserwidget.c:1922
msgid "Could not select file"
msgstr "Datoteke ni mogoče izbrati"
-#: gtk/gtkfilechooserwidget.c:2256
+#: gtk/gtkfilechooserwidget.c:2271
msgid "_Visit File"
msgstr "O_bišči datoteko"
-#: gtk/gtkfilechooserwidget.c:2257
+#: gtk/gtkfilechooserwidget.c:2272
msgid "_Open With File Manager"
msgstr "Odpri z _upravljalnikom datotek"
-#: gtk/gtkfilechooserwidget.c:2258
+#: gtk/gtkfilechooserwidget.c:2273
msgid "_Copy Location"
msgstr "Kopiraj _mesto"
-#: gtk/gtkfilechooserwidget.c:2259
+#: gtk/gtkfilechooserwidget.c:2274
msgid "_Add to Bookmarks"
msgstr "_Dodaj med zaznamke"
-#: gtk/gtkfilechooserwidget.c:2260 gtk/gtkplacessidebar.c:2496
-#: gtk/ui/gtkfilechooserwidget.ui:475
+#: gtk/gtkfilechooserwidget.c:2275 gtk/gtkplacessidebar.c:2731
+#: gtk/ui/gtkfilechooserwidget.ui:526
msgid "_Rename"
msgstr "P_reimenuj"
-#: gtk/gtkfilechooserwidget.c:2262
+#: gtk/gtkfilechooserwidget.c:2277
msgid "_Move to Trash"
msgstr "Premakni v _smeti"
-#: gtk/gtkfilechooserwidget.c:2266
+#: gtk/gtkfilechooserwidget.c:2281
msgid "Show _Hidden Files"
msgstr "Pokaži _skrite datoteke"
-#: gtk/gtkfilechooserwidget.c:2267
+#: gtk/gtkfilechooserwidget.c:2282
msgid "Show _Size Column"
msgstr "Pokaži stolpec _velikosti"
-#: gtk/gtkfilechooserwidget.c:2268
+#: gtk/gtkfilechooserwidget.c:2283
msgid "Show _Time"
msgstr "Pokaži _čas"
-#: gtk/gtkfilechooserwidget.c:2269
+#: gtk/gtkfilechooserwidget.c:2284
msgid "Sort _Folders before Files"
msgstr "Razvrsti _mape pred datotekami"
#. this is the header for the location column in the print dialog
-#: gtk/gtkfilechooserwidget.c:2593 gtk/inspector/css-node-tree.ui:141
-#: gtk/ui/gtkfilechooserwidget.ui:183 gtk/ui/gtkprintunixdialog.ui:124
+#: gtk/gtkfilechooserwidget.c:2559 gtk/inspector/css-node-tree.ui:141
+#: gtk/ui/gtkfilechooserwidget.ui:207 gtk/ui/gtkprintunixdialog.ui:123
msgid "Location"
msgstr "Mesto"
#. Label
-#: gtk/gtkfilechooserwidget.c:2682
+#: gtk/gtkfilechooserwidget.c:2652
msgid "_Name:"
msgstr "_Ime:"
-#: gtk/gtkfilechooserwidget.c:3300
-msgid "Searching"
-msgstr "Poteka iskanje"
-
-#: gtk/gtkfilechooserwidget.c:3305 gtk/gtkfilechooserwidget.c:3319
+#: gtk/gtkfilechooserwidget.c:3277 gtk/gtkfilechooserwidget.c:3291
#, c-format
msgid "Searching in %s"
msgstr "Iskanje v %s"
-#: gtk/gtkfilechooserwidget.c:3329
+#: gtk/gtkfilechooserwidget.c:3297
+msgid "Searching"
+msgstr "Poteka iskanje"
+
+#: gtk/gtkfilechooserwidget.c:3304
msgid "Enter location"
msgstr "Vpis mesta"
-#: gtk/gtkfilechooserwidget.c:3331
+#: gtk/gtkfilechooserwidget.c:3306
msgid "Enter location or URL"
msgstr "Vpišite mesto ali naslov URL"
-#: gtk/gtkfilechooserwidget.c:4359 gtk/gtkfilechooserwidget.c:7248
-#: gtk/ui/gtkfilechooserwidget.ui:211
+#: gtk/gtkfilechooserwidget.c:4340 gtk/gtkfilechooserwidget.c:7244
+#: gtk/ui/gtkfilechooserwidget.ui:235
msgid "Modified"
msgstr "Spremenjeno"
-#: gtk/gtkfilechooserwidget.c:4637
+#: gtk/gtkfilechooserwidget.c:4618
#, c-format
msgid "Could not read the contents of %s"
msgstr "Vsebine %s ni mogoče prebrati"
-#: gtk/gtkfilechooserwidget.c:4641
+#: gtk/gtkfilechooserwidget.c:4622
msgid "Could not read the contents of the folder"
msgstr "Vsebine mape ni mogoče prebrati"
-#. Translators: see g_date_time_format() for details on the format
-#: gtk/gtkfilechooserwidget.c:4771 gtk/gtkfilechooserwidget.c:4819
+#: gtk/gtkfilechooserwidget.c:4752 gtk/gtkfilechooserwidget.c:4800
msgid "%H:%M"
msgstr "%H:%M"
-#: gtk/gtkfilechooserwidget.c:4773 gtk/gtkfilechooserwidget.c:4821
+#: gtk/gtkfilechooserwidget.c:4754 gtk/gtkfilechooserwidget.c:4802
msgid "%l:%M %p"
msgstr "%l:%M %p"
-#: gtk/gtkfilechooserwidget.c:4777
+#: gtk/gtkfilechooserwidget.c:4758
msgid "Yesterday"
msgstr "Včeraj"
-#: gtk/gtkfilechooserwidget.c:4785
+#: gtk/gtkfilechooserwidget.c:4766
msgid "%-e %b"
msgstr "%-e %b"
-#: gtk/gtkfilechooserwidget.c:4789
+#: gtk/gtkfilechooserwidget.c:4770
msgid "%-e %b %Y"
msgstr "%-e %b %Y"
#. Translators: We don't know whether this printer is
#. * available to print to.
-#: gtk/gtkfilechooserwidget.c:5024 gtk/inspector/prop-editor.c:1626
+#: gtk/gtkfilechooserwidget.c:5005 gtk/inspector/prop-editor.c:1689
#: modules/printbackends/cloudprint/gtkprintbackendcloudprint.c:748
msgid "Unknown"
msgstr "Neznano"
-#: gtk/gtkfilechooserwidget.c:5063 gtk/gtkplacessidebar.c:938
+#: gtk/gtkfilechooserwidget.c:5044 gtk/gtkplacessidebar.c:1094
msgid "Home"
msgstr "Osebna mapa"
-#: gtk/gtkfilechooserwidget.c:5556
+#: gtk/gtkfilechooserwidget.c:5537
msgid "Cannot change to folder because it is not local"
msgstr "Mape ni mogoče spremeniti, ker ni krajevna"
-#: gtk/gtkfilechooserwidget.c:6333 gtk/gtkprintunixdialog.c:665
+#: gtk/gtkfilechooserwidget.c:6323 gtk/gtkprintunixdialog.c:664
#, c-format
msgid "A file named “%s” already exists. Do you want to replace it?"
msgstr "Datoteka z imenom »%s« že obstaja. Ali jo želite zamenjati?"
-#: gtk/gtkfilechooserwidget.c:6336 gtk/gtkprintunixdialog.c:669
+#: gtk/gtkfilechooserwidget.c:6326 gtk/gtkprintunixdialog.c:668
#, c-format
msgid ""
"The file already exists in “%s”. Replacing it will overwrite its contents."
msgstr "Datoteka že obstaja v »%s«. Z zamenjavo bo njena vsebina izgubljena."
-#: gtk/gtkfilechooserwidget.c:6341 gtk/gtkprintunixdialog.c:677
+#: gtk/gtkfilechooserwidget.c:6331 gtk/gtkprintunixdialog.c:676
msgid "_Replace"
msgstr "_Zamenjaj"
-#: gtk/gtkfilechooserwidget.c:6549
+#: gtk/gtkfilechooserwidget.c:6545
msgid "You do not have access to the specified folder."
msgstr "Ni ustreznih dovoljenj za dostop do navedene mape."
-#: gtk/gtkfilechooserwidget.c:7172
+#: gtk/gtkfilechooserwidget.c:7168
msgid "Could not send the search request"
msgstr "Zahteve po iskanju ni mogoče poslati"
-#: gtk/gtkfilechooserwidget.c:7458
+#: gtk/gtkfilechooserwidget.c:7454
msgid "Accessed"
msgstr "Dostopano"
@@ -2145,77 +2593,138 @@ msgstr "Dostopano"
msgid "File System"
msgstr "Datotečni sistem"
-#: gtk/gtkfontbutton.c:367 gtk/gtkfontbutton.c:524
+#: gtk/gtkfontbutton.c:379 gtk/gtkfontbutton.c:509
msgid "Sans 12"
msgstr "Sans 12"
-#: gtk/gtkfontbutton.c:509 gtk/gtkfontbutton.c:656
+#: gtk/gtkfontbutton.c:492 gtk/gtkfontbutton.c:626
msgid "Pick a Font"
msgstr "Izberite pisavo"
-#: gtk/gtkfontbutton.c:631 gtk/inspector/visual.ui:221
-msgid "Font"
-msgstr "Pisava"
-
-#: gtk/gtkfontbutton.c:1388
+#: gtk/gtkfontbutton.c:1393
msgctxt "font"
msgid "None"
msgstr "Brez"
-#: gtk/gtkglarea.c:293
+#: gtk/gtkfontchooserwidget.c:1523
+msgid "Width"
+msgstr "Širina"
+
+#: gtk/gtkfontchooserwidget.c:1524
+msgid "Weight"
+msgstr "Teža"
+
+#: gtk/gtkfontchooserwidget.c:1525
+msgid "Italic"
+msgstr "Ležeče"
+
+#: gtk/gtkfontchooserwidget.c:1526
+msgid "Slant"
+msgstr ""
+
+#: gtk/gtkfontchooserwidget.c:1527
+msgid "Optical Size"
+msgstr ""
+
+#: gtk/gtkfontchooserwidget.c:2064 gtk/inspector/prop-editor.c:1676
+msgid "Default"
+msgstr "Privzeto"
+
+#: gtk/gtkfontchooserwidget.c:2111
+#, fuzzy
+#| msgctxt "event phase"
+#| msgid "Capture"
+msgid "Ligatures"
+msgstr "Zajem"
+
+#: gtk/gtkfontchooserwidget.c:2112
+#, fuzzy
+#| msgctxt "paper size"
+#| msgid "US Letter Plus"
+msgid "Letter Case"
+msgstr "US Letter Plus"
+
+#: gtk/gtkfontchooserwidget.c:2113
+msgid "Number Case"
+msgstr ""
+
+#: gtk/gtkfontchooserwidget.c:2114
+msgid "Number Spacing"
+msgstr ""
+
+#: gtk/gtkfontchooserwidget.c:2115
+msgid "Number Formatting"
+msgstr ""
+
+#: gtk/gtkfontchooserwidget.c:2116
+msgid "Character Variants"
+msgstr "Različica znakov"
+
+#: gtk/gtkglarea.c:313
msgid "OpenGL context creation failed"
msgstr "Ustvarjanje vsebine OpenGL je spodletelo"
-#: gtk/gtkheaderbar.c:379
+#: gtk/gtkheaderbar.c:391
msgid "Application menu"
msgstr "Programski meni"
-#: gtk/gtkheaderbar.c:445 gtk/gtkwindow.c:8091
+#: gtk/gtkheaderbar.c:458 gtk/gtkwindow.c:9289
msgid "Close"
msgstr "Zapri"
-#: gtk/gtkicontheme.c:2304 gtk/gtkicontheme.c:2369
+#: gtk/gtkicontheme.c:2341 gtk/gtkicontheme.c:2406
#, c-format
-msgid "Icon “%s” not present in theme %s"
+msgid "Icon '%s' not present in theme %s"
msgstr "Ikone »%s« v temi %s ni."
-#: gtk/gtkicontheme.c:3975 gtk/gtkicontheme.c:4342
+#: gtk/gtkicontheme.c:4080 gtk/gtkicontheme.c:4447
msgid "Failed to load icon"
msgstr "Ikone ni mogoče naložiti"
-#: gtk/gtkimmodule.c:601
+#: gtk/gtkimmodule.c:547
msgctxt "input method menu"
msgid "Simple"
msgstr "Enostavno"
-#: gtk/gtkimmodule.c:617
+#: gtk/gtkimmodule.c:563
msgctxt "input method menu"
msgid "None"
msgstr "Brez"
-#: gtk/gtkinfobar.c:1058 gtk/gtkmessagedialog.c:353
+#: gtk/gtkimmulticontext.c:609
+msgctxt "input method menu"
+msgid "System"
+msgstr "Sistem"
+
+#: gtk/gtkimmulticontext.c:688
+#, c-format
+msgctxt "input method menu"
+msgid "System (%s)"
+msgstr "Sistem (%s)"
+
+#: gtk/gtkinfobar.c:1152 gtk/gtkmessagedialog.c:385
msgid "Information"
msgstr "Podrobnosti"
-#: gtk/gtkinfobar.c:1062 gtk/gtkmessagedialog.c:357
+#: gtk/gtkinfobar.c:1156 gtk/gtkmessagedialog.c:389
msgid "Question"
msgstr "Vprašanje"
-#: gtk/gtkinfobar.c:1066 gtk/gtkmessagedialog.c:361
+#: gtk/gtkinfobar.c:1160 gtk/gtkmessagedialog.c:393
msgid "Warning"
msgstr "Opozorilo"
-#: gtk/gtkinfobar.c:1070 gtk/gtkmessagedialog.c:365
+#: gtk/gtkinfobar.c:1164 gtk/gtkmessagedialog.c:397
msgid "Error"
msgstr "Napaka"
#. Open Link
-#: gtk/gtklabel.c:6089
+#: gtk/gtklabel.c:6661
msgid "_Open Link"
msgstr "_Odpri povezavo"
#. Copy Link Address
-#: gtk/gtklabel.c:6098
+#: gtk/gtklabel.c:6670
msgid "Copy _Link Address"
msgstr "Kopiraj _naslov povezave"
@@ -2223,11 +2732,9 @@ msgstr "Kopiraj _naslov povezave"
msgid "Show program version"
msgstr "Pokaži različico programa"
-#. Translators: this message will appear immediately after the
-#. usage string - Usage: COMMAND [OPTION…] <THIS_MESSAGE>
#: gtk/gtk-launch.c:74
-msgid "APPLICATION [URI…] — launch an APPLICATION"
-msgstr "PROGRAM [URI ...] – zagon PROGRAMA z naslovom URI"
+msgid "APPLICATION [URI...] — launch an APPLICATION"
+msgstr "PROGRAM [NASLOV_URI ...] – zagon PROGRAMA"
#. Translators: this message will appear after the usage string
#. and before the list of options.
@@ -2239,24 +2746,24 @@ msgstr ""
"Zagon določenega programa z namizno datoteko podrobnosti\n"
"z možnostjo podajanja naslovov URI kot argumentov."
-#: gtk/gtk-launch.c:88
+#: gtk/gtk-launch.c:90
#, c-format
msgid "Error parsing commandline options: %s\n"
msgstr "Napaka med razčlenjevanjem možnosti ukazne vrstice: %s\n"
-#: gtk/gtk-launch.c:90 gtk/gtk-launch.c:111
+#: gtk/gtk-launch.c:92 gtk/gtk-launch.c:113
#, c-format
-msgid "Try “%s --help” for more information."
+msgid "Try \"%s --help\" for more information."
msgstr "Poskusite »%s --help« za več podrobnosti."
#. Translators: the %s is the program name. This error message
#. means the user is calling gtk-launch without any argument.
-#: gtk/gtk-launch.c:109
+#: gtk/gtk-launch.c:111
#, c-format
msgid "%s: missing application name"
msgstr "%s: ime programa ni določeno"
-#: gtk/gtk-launch.c:138
+#: gtk/gtk-launch.c:140
#, c-format
msgid "Creating AppInfo from id not supported on non unix operating systems"
msgstr ""
@@ -2265,31 +2772,31 @@ msgstr ""
#. Translators: the first %s is the program name, the second one
#. is the application name.
-#: gtk/gtk-launch.c:146
+#: gtk/gtk-launch.c:148
#, c-format
msgid "%s: no such application %s"
msgstr "%s: programa %s ni"
#. Translators: the first %s is the program name, the second one
#. is the error message.
-#: gtk/gtk-launch.c:164
+#: gtk/gtk-launch.c:166
#, c-format
msgid "%s: error launching application: %s\n"
msgstr "%s: napaka med zaganjanjem programa: %s\n"
-#: gtk/gtklinkbutton.c:368
+#: gtk/gtklinkbutton.c:374
msgid "Copy URL"
msgstr "Kopiraj URL"
-#: gtk/gtklinkbutton.c:513
+#: gtk/gtklinkbutton.c:522
msgid "Invalid URI"
msgstr "Neveljaven URI"
-#: gtk/gtklockbutton.c:275 gtk/ui/gtklockbutton.ui:23
+#: gtk/gtklockbutton.c:275 gtk/ui/gtklockbutton.ui:30
msgid "Lock"
msgstr "Zakleni"
-#: gtk/gtklockbutton.c:284 gtk/ui/gtklockbutton.ui:29
+#: gtk/gtklockbutton.c:284 gtk/ui/gtklockbutton.ui:37
msgid "Unlock"
msgstr "Odkleni"
@@ -2317,79 +2824,112 @@ msgstr ""
"Sistemska pravila prepovedujejo spremembe.\n"
"Stopite v stik s skrbnikom sistema."
+#. Description of --gtk-module=MODULES in --help output
+#: gtk/gtkmain.c:464
+msgid "Load additional GTK+ modules"
+msgstr "Naloži dodatne module GTK+"
+
+#. Placeholder in --gtk-module=MODULES in --help output
+#: gtk/gtkmain.c:465
+msgid "MODULES"
+msgstr "MODULI"
+
+#. Description of --g-fatal-warnings in --help output
+#: gtk/gtkmain.c:467
+msgid "Make all warnings fatal"
+msgstr "Izpiši vsa opozorila kot usodna"
+
+#. Description of --gtk-debug=FLAGS in --help output
+#: gtk/gtkmain.c:470
+msgid "GTK+ debugging flags to set"
+msgstr "Zastavice razhroščevanja GTK+, ki naj bodo nastavljene"
+
+#. Description of --gtk-no-debug=FLAGS in --help output
+#: gtk/gtkmain.c:473
+msgid "GTK+ debugging flags to unset"
+msgstr "Zastavice razhroščevanja GTK+, ki naj ne bodo nastavljene"
+
+#: gtk/gtkmain.c:808 gtk/gtkmain.c:1002
+#, c-format
+msgid "Cannot open display: %s"
+msgstr "Prikaza ni mogoče odpreti: %s"
+
+#: gtk/gtkmain.c:920
+msgid "GTK+ Options"
+msgstr "Možnosti GTK+"
+
+#: gtk/gtkmain.c:920
+msgid "Show GTK+ Options"
+msgstr "Pokaži možnosti GTK+"
+
#. Translate to default:RTL if you want your widgets
#. * to be RTL, otherwise translate to default:LTR.
#. * Do *not* translate it to "predefinito:LTR", if it
#. * it isn't default:LTR or default:RTL it will not work
#.
-#: gtk/gtkmain.c:934
+#: gtk/gtkmain.c:1270
msgid "default:LTR"
msgstr "default:LTR"
-#: gtk/gtkmessagedialog.c:844 gtk/gtkmessagedialog.c:862
-#: gtk/gtkprintbackend.c:764 gtk/gtkwindow.c:10836
-msgid "_OK"
-msgstr "_V redu"
-
-#: gtk/gtkmessagedialog.c:856
+#: gtk/gtkmessagedialog.c:956
msgid "_No"
msgstr "_Ne"
-#: gtk/gtkmessagedialog.c:857
+#: gtk/gtkmessagedialog.c:957
msgid "_Yes"
msgstr "_Da"
-#: gtk/gtkmountoperation.c:543
+#: gtk/gtkmountoperation.c:546
msgid "Co_nnect"
msgstr "_Poveži"
-#: gtk/gtkmountoperation.c:610
+#: gtk/gtkmountoperation.c:622
msgid "Connect As"
msgstr "Poveži kot"
-#: gtk/gtkmountoperation.c:619
+#: gtk/gtkmountoperation.c:631
msgid "_Anonymous"
msgstr "_Brezimno"
-#: gtk/gtkmountoperation.c:627
+#: gtk/gtkmountoperation.c:640
msgid "Registered U_ser"
msgstr "Vpisan _uporabnik"
-#: gtk/gtkmountoperation.c:637
+#: gtk/gtkmountoperation.c:651
msgid "_Username"
msgstr "_Uporabniško ime"
-#: gtk/gtkmountoperation.c:642
+#: gtk/gtkmountoperation.c:656
msgid "_Domain"
msgstr "_Domena"
-#: gtk/gtkmountoperation.c:648
+#: gtk/gtkmountoperation.c:662
msgid "_Password"
msgstr "_Geslo"
-#: gtk/gtkmountoperation.c:670
+#: gtk/gtkmountoperation.c:684
msgid "Forget password _immediately"
msgstr "_Takoj pozabi geslo"
-#: gtk/gtkmountoperation.c:680
+#: gtk/gtkmountoperation.c:694
msgid "Remember password until you _logout"
msgstr "Zapomni si geslo do _odjave"
-#: gtk/gtkmountoperation.c:690
+#: gtk/gtkmountoperation.c:704
msgid "Remember _forever"
msgstr "_Zapomni si za vedno"
-#: gtk/gtkmountoperation.c:1079
+#: gtk/gtkmountoperation.c:1093
#, c-format
msgid "Unknown Application (PID %d)"
msgstr "Neznan program (PID %d)"
-#: gtk/gtkmountoperation.c:1264
+#: gtk/gtkmountoperation.c:1278
#, c-format
msgid "Unable to end process"
msgstr "Opravila ni mogoče končati"
-#: gtk/gtkmountoperation.c:1298
+#: gtk/gtkmountoperation.c:1312
msgid "_End Process"
msgstr "_Končaj opravilo"
@@ -2399,32 +2939,32 @@ msgid "Cannot kill process with PID %d. Operation is not implemented."
msgstr "Opravila s PID %d ni mogoče uničiti. Dejanje ni podprto."
#. translators: this string is a name for the 'less' command
-#: gtk/gtkmountoperation-x11.c:955
+#: gtk/gtkmountoperation-x11.c:954
msgid "Terminal Pager"
msgstr "Pozivnik terminala"
-#: gtk/gtkmountoperation-x11.c:956
+#: gtk/gtkmountoperation-x11.c:955
msgid "Top Command"
msgstr "Vrhnji ukaz"
-#: gtk/gtkmountoperation-x11.c:957
+#: gtk/gtkmountoperation-x11.c:956
msgid "Bourne Again Shell"
msgstr "Lupina Bourne Again"
-#: gtk/gtkmountoperation-x11.c:958
+#: gtk/gtkmountoperation-x11.c:957
msgid "Bourne Shell"
msgstr "Lupina Bourne"
-#: gtk/gtkmountoperation-x11.c:959
+#: gtk/gtkmountoperation-x11.c:958
msgid "Z Shell"
msgstr "Lupina Z"
-#: gtk/gtkmountoperation-x11.c:1056
+#: gtk/gtkmountoperation-x11.c:1055
#, c-format
msgid "Cannot end process with PID %d: %s"
msgstr "Opravila s PID %d ni mogoče končati: %s"
-#: gtk/gtknotebook.c:4291 gtk/gtknotebook.c:6513
+#: gtk/gtknotebook.c:5123 gtk/gtknotebook.c:7401
#, c-format
msgid "Page %u"
msgstr "Stran %u"
@@ -2433,19 +2973,15 @@ msgstr "Stran %u"
msgid "Not a valid page setup file"
msgstr "Ni veljavna datoteka nastavitev strani"
-#: gtk/gtkpagesetupunixdialog.c:197 gtk/ui/gtkassistant.ui:47
-msgid "_Apply"
-msgstr "_Uveljavi"
-
-#: gtk/gtkpagesetupunixdialog.c:203
+#: gtk/gtkpagesetupunixdialog.c:210
msgid "Any Printer"
msgstr "Katerikoli tiskalnik"
-#: gtk/gtkpagesetupunixdialog.c:203
+#: gtk/gtkpagesetupunixdialog.c:210
msgid "For portable documents"
msgstr "Za prenosljive dokumente"
-#: gtk/gtkpagesetupunixdialog.c:822
+#: gtk/gtkpagesetupunixdialog.c:829
#, c-format
msgid ""
"Margins:\n"
@@ -2460,250 +2996,280 @@ msgstr ""
" Zgoraj: %s %s\n"
" Spodaj: %s %s"
-#: gtk/gtkpagesetupunixdialog.c:871 gtk/gtkprintunixdialog.c:3393
+#: gtk/gtkpagesetupunixdialog.c:878 gtk/gtkprintunixdialog.c:3390
msgid "Manage Custom Sizes…"
msgstr "Upravljanje poljubnih velikosti ..."
-#: gtk/gtkpagesetupunixdialog.c:893 gtk/ui/gtkpagesetupunixdialog.ui:30
-#: gtk/ui/gtkprintunixdialog.ui:812
+#: gtk/gtkpagesetupunixdialog.c:900 gtk/ui/gtkpagesetupunixdialog.ui:31
+#: gtk/ui/gtkprintunixdialog.ui:854
msgid "Page Setup"
msgstr "Nastavitev strani"
-#: gtk/gtkpathbar.c:1429
+#: gtk/gtkpathbar.c:1572
msgid "File System Root"
msgstr "Koren datotečnega sistema"
-#: gtk/gtkplacessidebar.c:927
+#. translators: %s is the name of a cloud provider for files
+#: gtk/gtkplacessidebar.c:981
+#, c-format
+msgid "Open %s"
+msgstr "Odpri %s"
+
+#: gtk/gtkplacessidebar.c:1070 gtk/ui/gtkemojichooser.ui:197
msgid "Recent"
msgstr "Nedavno"
-#: gtk/gtkplacessidebar.c:929
+#: gtk/gtkplacessidebar.c:1072
msgid "Recent files"
msgstr "Nedavno uporabljeno"
-#: gtk/gtkplacessidebar.c:940
+#: gtk/gtkplacessidebar.c:1082
+msgid "Starred"
+msgstr "Z zvezdico"
+
+#. TODO: Rename to 'Starred files'
+#: gtk/gtkplacessidebar.c:1085
+msgid "Favorite files"
+msgstr "Priljubljene datoteke"
+
+#: gtk/gtkplacessidebar.c:1096
msgid "Open your personal folder"
msgstr "Odpri osebno mapo"
-#: gtk/gtkplacessidebar.c:955
+#: gtk/gtkplacessidebar.c:1111
msgid "Open the contents of your desktop in a folder"
msgstr "Odpri vsebino namizja v mapi"
-#: gtk/gtkplacessidebar.c:969
+#: gtk/gtkplacessidebar.c:1125
msgid "Enter Location"
msgstr "Vpis mesta"
-#: gtk/gtkplacessidebar.c:971
+#: gtk/gtkplacessidebar.c:1127
msgid "Manually enter a location"
msgstr "Ročni vnos mesta"
-#: gtk/gtkplacessidebar.c:981
+#: gtk/gtkplacessidebar.c:1137
msgid "Trash"
msgstr "Smeti"
-#: gtk/gtkplacessidebar.c:983
+#: gtk/gtkplacessidebar.c:1139
msgid "Open the trash"
msgstr "Odpri smeti"
-#: gtk/gtkplacessidebar.c:1056 gtk/gtkplacessidebar.c:1084
-#: gtk/gtkplacessidebar.c:1283
+#: gtk/gtkplacessidebar.c:1248 gtk/gtkplacessidebar.c:1276
+#: gtk/gtkplacessidebar.c:1484
#, c-format
msgid "Mount and open “%s”"
msgstr "Priklopi in odpri »%s«"
-#: gtk/gtkplacessidebar.c:1172
+#: gtk/gtkplacessidebar.c:1364
msgid "Open the contents of the file system"
msgstr "Odpri vsebino datotečnega sistema"
-#: gtk/gtkplacessidebar.c:1258
+#: gtk/gtkplacessidebar.c:1448
msgid "New bookmark"
msgstr "Nov zaznamek"
-#: gtk/gtkplacessidebar.c:1260
+#: gtk/gtkplacessidebar.c:1450
msgid "Add a new bookmark"
msgstr "Dodaj nov zaznamek"
-#: gtk/gtkplacessidebar.c:1328
+#: gtk/gtkplacessidebar.c:1463
+msgid "Connect to Server"
+msgstr "Poveži s strežnikom"
+
+#: gtk/gtkplacessidebar.c:1465
+msgid "Connect to a network server address"
+msgstr "Poveži z naslovom omrežnega strežnika"
+
+#: gtk/gtkplacessidebar.c:1527
msgid "Other Locations"
msgstr "Druga mesta"
-#: gtk/gtkplacessidebar.c:1329
+#: gtk/gtkplacessidebar.c:1528
msgid "Show other locations"
msgstr "Pokaži druga mesta"
#. Adjust start/stop items to reflect the type of the drive
-#: gtk/gtkplacessidebar.c:2119 gtk/gtkplacessidebar.c:3398
+#: gtk/gtkplacessidebar.c:2324 gtk/gtkplacessidebar.c:3703
msgid "_Start"
msgstr "_Začni"
-#: gtk/gtkplacessidebar.c:2120 gtk/gtkplacessidebar.c:3399
+#: gtk/gtkplacessidebar.c:2325 gtk/gtkplacessidebar.c:3704
msgid "_Stop"
msgstr "_Zaustavi"
#. start() for type G_DRIVE_START_STOP_TYPE_SHUTDOWN is normally not used
-#: gtk/gtkplacessidebar.c:2127
+#: gtk/gtkplacessidebar.c:2332
msgid "_Power On"
msgstr "_Vklopi"
-#: gtk/gtkplacessidebar.c:2128
+#: gtk/gtkplacessidebar.c:2333
msgid "_Safely Remove Drive"
msgstr "_Varno odstrani pogon"
-#: gtk/gtkplacessidebar.c:2132
+#: gtk/gtkplacessidebar.c:2337
msgid "_Connect Drive"
msgstr "_Poveži pogon"
-#: gtk/gtkplacessidebar.c:2133
+#: gtk/gtkplacessidebar.c:2338
msgid "_Disconnect Drive"
msgstr "_Prekini povezavo s pogonom"
-#: gtk/gtkplacessidebar.c:2137
+#: gtk/gtkplacessidebar.c:2342
msgid "_Start Multi-disk Device"
msgstr "_Zaženi več-diskovno napravo"
-#: gtk/gtkplacessidebar.c:2138
+#: gtk/gtkplacessidebar.c:2343
msgid "_Stop Multi-disk Device"
msgstr "_Zaustavi več-diskovno napravo"
#. stop() for type G_DRIVE_START_STOP_TYPE_PASSWORD is normally not used
-#: gtk/gtkplacessidebar.c:2143
+#: gtk/gtkplacessidebar.c:2348
msgid "_Unlock Device"
msgstr "_Odkleni napravo"
-#: gtk/gtkplacessidebar.c:2144
+#: gtk/gtkplacessidebar.c:2349
msgid "_Lock Device"
msgstr "_Zakleni napravo"
-#: gtk/gtkplacessidebar.c:2182 gtk/gtkplacessidebar.c:3148
+#: gtk/gtkplacessidebar.c:2387 gtk/gtkplacessidebar.c:3384
#, c-format
msgid "Unable to start “%s”"
msgstr "Ni mogoče začeti »%s«"
-#: gtk/gtkplacessidebar.c:2212
+#: gtk/gtkplacessidebar.c:2420
+#, c-format
+msgid "Error unlocking “%s”"
+msgstr "Napaka odpiranja »%s«."
+
+#: gtk/gtkplacessidebar.c:2422
#, c-format
msgid "Unable to access “%s”"
msgstr "Ni mogoč dostop do »%s«"
-#: gtk/gtkplacessidebar.c:2421
+#: gtk/gtkplacessidebar.c:2656
msgid "This name is already taken"
msgstr "To ime je že uporabljeno"
-#: gtk/gtkplacessidebar.c:2490 gtk/inspector/actions.ui:43
-#: gtk/inspector/css-node-tree.ui:39 gtk/inspector/object-tree.ui:92
-#: gtk/ui/gtkfilechooserwidget.ui:165 gtk/ui/gtkfilechooserwidget.ui:451
+#: gtk/gtkplacessidebar.c:2725 gtk/inspector/actions.ui:43
+#: gtk/inspector/css-node-tree.ui:39 gtk/inspector/object-tree.ui:110
+#: gtk/ui/gtkfilechooserwidget.ui:189 gtk/ui/gtkfilechooserwidget.ui:500
msgid "Name"
msgstr "Ime"
-#: gtk/gtkplacessidebar.c:2689
+#: gtk/gtkplacessidebar.c:2925
#, c-format
msgid "Unable to unmount “%s”"
msgstr "Ni mogoče odstraniti »%s«"
-#: gtk/gtkplacessidebar.c:2865
+#: gtk/gtkplacessidebar.c:3101
#, c-format
msgid "Unable to stop “%s”"
msgstr "Ni mogoče zaustaviti »%s«"
-#: gtk/gtkplacessidebar.c:2894
+#: gtk/gtkplacessidebar.c:3130
#, c-format
msgid "Unable to eject “%s”"
msgstr "Ni mogoče izvreči »%s«"
-#: gtk/gtkplacessidebar.c:2923 gtk/gtkplacessidebar.c:2952
+#: gtk/gtkplacessidebar.c:3159 gtk/gtkplacessidebar.c:3188
#, c-format
msgid "Unable to eject %s"
msgstr "Ni mogoče izvreči %s"
-#: gtk/gtkplacessidebar.c:3100
+#: gtk/gtkplacessidebar.c:3336
#, c-format
msgid "Unable to poll “%s” for media changes"
msgstr "Ni mogoče preveriti »%s« za spremembe nosilca"
-#: gtk/gtkplacessidebar.c:3381 gtk/gtkplacesview.c:1636
+#: gtk/gtkplacessidebar.c:3620 gtk/gtkplacessidebar.c:3686
+#: gtk/gtkplacesview.c:1643
msgid "Open in New _Tab"
msgstr "Odpri v novem _zavihku"
-#: gtk/gtkplacessidebar.c:3384 gtk/gtkplacesview.c:1646
+#: gtk/gtkplacessidebar.c:3626 gtk/gtkplacessidebar.c:3689
+#: gtk/gtkplacesview.c:1654
msgid "Open in New _Window"
msgstr "Odpri v novem _oknu"
-#: gtk/gtkplacessidebar.c:3388
+#: gtk/gtkplacessidebar.c:3693
msgid "_Add Bookmark"
msgstr "_Dodaj zaznamek"
-#: gtk/gtkplacessidebar.c:3389
+#: gtk/gtkplacessidebar.c:3694
msgid "_Remove"
msgstr "_Odstrani"
-#: gtk/gtkplacessidebar.c:3390
+#: gtk/gtkplacessidebar.c:3695
msgid "Rename…"
msgstr "Preimenuj ..."
-#: gtk/gtkplacessidebar.c:3394 gtk/gtkplacesview.c:1677
+#: gtk/gtkplacessidebar.c:3699 gtk/gtkplacesview.c:1688
msgid "_Mount"
msgstr "_Priklopi"
-#: gtk/gtkplacessidebar.c:3395 gtk/gtkplacesview.c:1668
+#: gtk/gtkplacessidebar.c:3700 gtk/gtkplacesview.c:1678
msgid "_Unmount"
msgstr "_Odklopi"
-#: gtk/gtkplacessidebar.c:3396
+#: gtk/gtkplacessidebar.c:3701
msgid "_Eject"
msgstr "_Izvrzi"
-#: gtk/gtkplacessidebar.c:3397
+#: gtk/gtkplacessidebar.c:3702
msgid "_Detect Media"
msgstr "_Zaznaj medij"
-#: gtk/gtkplacessidebar.c:3842 gtk/gtkplacesview.c:1115
+#: gtk/gtkplacessidebar.c:4148 gtk/gtkplacesview.c:1121
msgid "Computer"
msgstr "Računalnik"
-#: gtk/gtkplacesview.c:891
+#: gtk/gtkplacesview.c:897
msgid "Searching for network locations"
msgstr "Iskanje omrežnih mest"
-#: gtk/gtkplacesview.c:898
+#: gtk/gtkplacesview.c:904
msgid "No network locations found"
msgstr "Ni omrežnih mest"
#. if it wasn't cancelled show a dialog
-#: gtk/gtkplacesview.c:1226 gtk/gtkplacesview.c:1301
+#: gtk/gtkplacesview.c:1231 gtk/gtkplacesview.c:1306
msgid "Unable to access location"
msgstr "Dostop do mesta ni mogoč"
#. Restore from Cancel to Connect
-#: gtk/gtkplacesview.c:1244 gtk/ui/gtkplacesview.ui:407
+#: gtk/gtkplacesview.c:1249 gtk/ui/gtkplacesview.ui:449
msgid "Con_nect"
msgstr "_Poveži"
#. if it wasn't cancelled show a dialog
-#: gtk/gtkplacesview.c:1364
+#: gtk/gtkplacesview.c:1369
msgid "Unable to unmount volume"
msgstr "Ni mogoče priklopiti nosilca"
#. Allow to cancel the operation
-#: gtk/gtkplacesview.c:1464
+#: gtk/gtkplacesview.c:1470
msgid "Cance_l"
msgstr "_Prekliči"
-#: gtk/gtkplacesview.c:1668
+#: gtk/gtkplacesview.c:1678
msgid "_Disconnect"
msgstr "_Prekini povezavo"
-#: gtk/gtkplacesview.c:1677
+#: gtk/gtkplacesview.c:1688
msgid "_Connect"
msgstr "_Poveži"
-#: gtk/gtkplacesview.c:1817
+#: gtk/gtkplacesview.c:1829
msgid "Unable to get remote server location"
msgstr "Oddaljenega mesta strežnika ni mogoče najti"
-#: gtk/gtkplacesview.c:1956 gtk/gtkplacesview.c:1965
+#: gtk/gtkplacesview.c:2017 gtk/gtkplacesview.c:2026
msgid "Networks"
msgstr "Omrežja"
-#: gtk/gtkplacesview.c:1956 gtk/gtkplacesview.c:1965
+#: gtk/gtkplacesview.c:2017 gtk/gtkplacesview.c:2026
msgid "On This Computer"
msgstr "Na tem računalniku"
@@ -2711,7 +3277,7 @@ msgstr "Na tem računalniku"
#. * should be based on the free space available.
#. * i.e. 1 GB / 24 GB available.
#.
-#: gtk/gtkplacesviewrow.c:132
+#: gtk/gtkplacesviewrow.c:134
#, c-format
msgid "%s / %s available"
msgid_plural "%s / %s available"
@@ -2720,20 +3286,20 @@ msgstr[1] "%s / %s na voljo"
msgstr[2] "%s / %s na voljo"
msgstr[3] "%s / %s na voljo"
-#: gtk/gtkplacesviewrow.c:470
+#: gtk/gtkplacesviewrow.c:481
msgid "Disconnect"
msgstr "Prekini povezavo"
-#: gtk/gtkplacesviewrow.c:470 gtk/ui/gtkplacesviewrow.ui:69
-#: gtk/ui/gtksidebarrow.ui:40
+#: gtk/gtkplacesviewrow.c:481 gtk/ui/gtkplacesviewrow.ui:72
+#: gtk/ui/gtksidebarrow.ui:61
msgid "Unmount"
msgstr "Odklopi"
-#: gtk/gtkprintbackend.c:762
+#: gtk/gtkprintbackend.c:780
msgid "Authentication"
msgstr "Overitev"
-#: gtk/gtkprintbackend.c:835
+#: gtk/gtkprintbackend.c:851
msgid "_Remember password"
msgstr "Zapomni si _geslo"
@@ -2741,11 +3307,6 @@ msgstr "Zapomni si _geslo"
msgid "Select a filename"
msgstr "Izbor imena datoteke"
-#: gtk/gtkprinteroptionwidget.c:546 gtk/ui/gtkappchooserdialog.ui:64
-#: gtk/ui/gtkcolorchooserdialog.ui:40 gtk/ui/gtkfontchooserdialog.ui:34
-msgid "_Select"
-msgstr "_Izberi"
-
#: gtk/gtkprinteroptionwidget.c:767
msgid "Not available"
msgstr "Ni na voljo"
@@ -2830,79 +3391,79 @@ msgid "The most probable reason is that a temporary file could not be created."
msgstr "Najverjetnejši razlog je, da začasne datoteke ni mogoče ustvariti"
#. window
-#: gtk/gtkprintoperation-portal.c:230 gtk/gtkprintoperation-portal.c:541
-#: gtk/gtkprintoperation-portal.c:618 gtk/gtkprintunixdialog.c:3415
+#: gtk/gtkprintoperation-portal.c:231 gtk/gtkprintoperation-portal.c:542
+#: gtk/gtkprintoperation-portal.c:611 gtk/gtkprintunixdialog.c:3412
msgid "Print"
msgstr "Natisni"
-#: gtk/gtkprintoperation-win32.c:615
+#: gtk/gtkprintoperation-win32.c:617
msgid "Printer offline"
msgstr "Tiskalnik je izključen"
-#: gtk/gtkprintoperation-win32.c:617
+#: gtk/gtkprintoperation-win32.c:619
msgid "Out of paper"
msgstr "Brez papirja"
#. Translators: this is a printer status.
-#: gtk/gtkprintoperation-win32.c:619
-#: modules/printbackends/cups/gtkprintbackendcups.c:2588
+#: gtk/gtkprintoperation-win32.c:621
+#: modules/printbackends/cups/gtkprintbackendcups.c:2603
msgid "Paused"
msgstr "Premor"
-#: gtk/gtkprintoperation-win32.c:621
+#: gtk/gtkprintoperation-win32.c:623
msgid "Need user intervention"
msgstr "Zahtevano je posredovanje uporabnika"
-#: gtk/gtkprintoperation-win32.c:721
+#: gtk/gtkprintoperation-win32.c:723
msgid "Custom size"
msgstr "Velikost po meri"
-#: gtk/gtkprintoperation-win32.c:1557
+#: gtk/gtkprintoperation-win32.c:1545
msgid "No printer found"
msgstr "Ni najdenega tiskalnika"
-#: gtk/gtkprintoperation-win32.c:1584
+#: gtk/gtkprintoperation-win32.c:1572
msgid "Invalid argument to CreateDC"
msgstr "Neveljaven argument za CreateDC"
-#: gtk/gtkprintoperation-win32.c:1620 gtk/gtkprintoperation-win32.c:1866
+#: gtk/gtkprintoperation-win32.c:1608 gtk/gtkprintoperation-win32.c:1854
msgid "Error from StartDoc"
msgstr "Napaka iz StartDoc"
-#: gtk/gtkprintoperation-win32.c:1721 gtk/gtkprintoperation-win32.c:1744
-#: gtk/gtkprintoperation-win32.c:1792
+#: gtk/gtkprintoperation-win32.c:1709 gtk/gtkprintoperation-win32.c:1732
+#: gtk/gtkprintoperation-win32.c:1780
msgid "Not enough free memory"
msgstr "Ni dovolj prostega pomnilnika"
-#: gtk/gtkprintoperation-win32.c:1797
+#: gtk/gtkprintoperation-win32.c:1785
msgid "Invalid argument to PrintDlgEx"
msgstr "Neveljaven argument za PrintDlgEx"
-#: gtk/gtkprintoperation-win32.c:1802
+#: gtk/gtkprintoperation-win32.c:1790
msgid "Invalid pointer to PrintDlgEx"
msgstr "Neveljaven kazalec na PrintDlgEx"
-#: gtk/gtkprintoperation-win32.c:1807
+#: gtk/gtkprintoperation-win32.c:1795
msgid "Invalid handle to PrintDlgEx"
msgstr "Neveljavna ročica za PrintDlgEx"
-#: gtk/gtkprintoperation-win32.c:1812
+#: gtk/gtkprintoperation-win32.c:1800
msgid "Unspecified error"
msgstr "Nedoločena napaka"
-#: gtk/gtkprintunixdialog.c:740
+#: gtk/gtkprintunixdialog.c:745
msgid "Pre_view"
msgstr "_Predogled"
-#: gtk/gtkprintunixdialog.c:742
+#: gtk/gtkprintunixdialog.c:747
msgid "_Print"
msgstr "_Natisni"
-#: gtk/gtkprintunixdialog.c:862
+#: gtk/gtkprintunixdialog.c:860
msgid "Getting printer information failed"
msgstr "Pridobivanje podatkov tiskalnika ni uspelo"
-#: gtk/gtkprintunixdialog.c:2072
+#: gtk/gtkprintunixdialog.c:2070
msgid "Getting printer information…"
msgstr "Pridobivanje podatkov tiskalnika ..."
@@ -2912,102 +3473,102 @@ msgstr "Pridobivanje podatkov tiskalnika ..."
#. Translators: These strings name the possible arrangements of
#. * multiple pages on a sheet when printing
#.
-#: gtk/gtkprintunixdialog.c:3122
-#: modules/printbackends/cups/gtkprintbackendcups.c:5372
+#: gtk/gtkprintunixdialog.c:3119
+#: modules/printbackends/cups/gtkprintbackendcups.c:5441
msgid "Left to right, top to bottom"
msgstr "Z leve proti desni, od zgoraj navzdol"
-#: gtk/gtkprintunixdialog.c:3122
-#: modules/printbackends/cups/gtkprintbackendcups.c:5372
+#: gtk/gtkprintunixdialog.c:3119
+#: modules/printbackends/cups/gtkprintbackendcups.c:5441
msgid "Left to right, bottom to top"
msgstr "Z leve proti desni, od spodaj navzgor"
-#: gtk/gtkprintunixdialog.c:3123
-#: modules/printbackends/cups/gtkprintbackendcups.c:5373
+#: gtk/gtkprintunixdialog.c:3120
+#: modules/printbackends/cups/gtkprintbackendcups.c:5442
msgid "Right to left, top to bottom"
msgstr "Z desne proti levi, od zgoraj navzdol"
-#: gtk/gtkprintunixdialog.c:3123
-#: modules/printbackends/cups/gtkprintbackendcups.c:5373
+#: gtk/gtkprintunixdialog.c:3120
+#: modules/printbackends/cups/gtkprintbackendcups.c:5442
msgid "Right to left, bottom to top"
msgstr "Z desne proti levi, od spodaj navzgor"
-#: gtk/gtkprintunixdialog.c:3124
-#: modules/printbackends/cups/gtkprintbackendcups.c:5374
+#: gtk/gtkprintunixdialog.c:3121
+#: modules/printbackends/cups/gtkprintbackendcups.c:5443
msgid "Top to bottom, left to right"
msgstr "Od zgoraj navzdol, z leve proti desni"
-#: gtk/gtkprintunixdialog.c:3124
-#: modules/printbackends/cups/gtkprintbackendcups.c:5374
+#: gtk/gtkprintunixdialog.c:3121
+#: modules/printbackends/cups/gtkprintbackendcups.c:5443
msgid "Top to bottom, right to left"
msgstr "Od zgoraj navzdol, z desne proti levi"
-#: gtk/gtkprintunixdialog.c:3125
-#: modules/printbackends/cups/gtkprintbackendcups.c:5375
+#: gtk/gtkprintunixdialog.c:3122
+#: modules/printbackends/cups/gtkprintbackendcups.c:5444
msgid "Bottom to top, left to right"
msgstr "Od spodaj navzgor, z leve proti desni"
-#: gtk/gtkprintunixdialog.c:3125
-#: modules/printbackends/cups/gtkprintbackendcups.c:5375
+#: gtk/gtkprintunixdialog.c:3122
+#: modules/printbackends/cups/gtkprintbackendcups.c:5444
msgid "Bottom to top, right to left"
msgstr "Od spodaj navzgor, z desne proti levi"
-#: gtk/gtkprintunixdialog.c:3129 gtk/gtkprintunixdialog.c:3142
+#: gtk/gtkprintunixdialog.c:3126 gtk/gtkprintunixdialog.c:3139
msgid "Page Ordering"
msgstr "Vrstni red strani"
-#: gtk/gtkprintunixdialog.c:3158
+#: gtk/gtkprintunixdialog.c:3155
msgid "Left to right"
msgstr "Z leve proti desni"
-#: gtk/gtkprintunixdialog.c:3159
+#: gtk/gtkprintunixdialog.c:3156
msgid "Right to left"
msgstr "Z desne proti levi"
-#: gtk/gtkprintunixdialog.c:3171
+#: gtk/gtkprintunixdialog.c:3168
msgid "Top to bottom"
msgstr "Od zgoraj navzdol"
-#: gtk/gtkprintunixdialog.c:3172
+#: gtk/gtkprintunixdialog.c:3169
msgid "Bottom to top"
msgstr "Od spodaj navzgor"
-#: gtk/gtkprogressbar.c:624
+#: gtk/gtkprogressbar.c:729
#, c-format
msgctxt "progress bar label"
msgid "%.0f %%"
msgstr "%.0f %%"
-#: gtk/gtkrecentchooserdefault.c:1012 gtk/gtkrecentchooserdefault.c:1049
+#: gtk/gtkrecentchooserdefault.c:1075 gtk/gtkrecentchooserdefault.c:1112
#, c-format
-msgid "No item for URI “%s” found"
+msgid "No item for URI '%s' found"
msgstr "Ni najdenih predmetov za naslov URI »%s«."
-#: gtk/gtkrecentchooserdefault.c:1176
+#: gtk/gtkrecentchooserdefault.c:1239
msgid "Untitled filter"
msgstr "Neimenovan filter"
-#: gtk/gtkrecentchooserdefault.c:1498
+#: gtk/gtkrecentchooserdefault.c:1561
msgid "Could not remove item"
msgstr "Predmeta ni mogoče odstraniti"
-#: gtk/gtkrecentchooserdefault.c:1542
+#: gtk/gtkrecentchooserdefault.c:1605
msgid "Could not clear list"
msgstr "Seznama ni mogoče počistitit"
-#: gtk/gtkrecentchooserdefault.c:1626
+#: gtk/gtkrecentchooserdefault.c:1689
msgid "Copy _Location"
msgstr "Kopiraj _mesto"
-#: gtk/gtkrecentchooserdefault.c:1637
+#: gtk/gtkrecentchooserdefault.c:1700
msgid "_Remove From List"
msgstr "_Odstrani s seznama"
-#: gtk/gtkrecentchooserdefault.c:1644
+#: gtk/gtkrecentchooserdefault.c:1707
msgid "_Clear List"
msgstr "_Počisti seznam"
-#: gtk/gtkrecentchooserdefault.c:1656
+#: gtk/gtkrecentchooserdefault.c:1719
msgid "Show _Private Resources"
msgstr "Pokaži _zasebne vire"
@@ -3021,21 +3582,21 @@ msgstr "Pokaži _zasebne vire"
#. * user appended or prepended custom menu items to the
#. * recent chooser menu widget.
#.
-#: gtk/gtkrecentchoosermenu.c:316
+#: gtk/gtkrecentchoosermenu.c:343
msgid "No items found"
msgstr "Ni najdenih predmetov"
-#: gtk/gtkrecentchoosermenu.c:494 gtk/gtkrecentchoosermenu.c:550
+#: gtk/gtkrecentchoosermenu.c:534 gtk/gtkrecentchoosermenu.c:590
#, c-format
-msgid "No recently used resource found with URI “%s”"
+msgid "No recently used resource found with URI '%s'"
msgstr "Ni nedavno uporabljenih virov z naslovom URI »%s«."
-#: gtk/gtkrecentchoosermenu.c:749
+#: gtk/gtkrecentchoosermenu.c:789
#, c-format
-msgid "Open “%s”"
+msgid "Open '%s'"
msgstr "Odpri »%s«"
-#: gtk/gtkrecentchoosermenu.c:780
+#: gtk/gtkrecentchoosermenu.c:819
msgid "Unknown item"
msgstr "Neznan predmet"
@@ -3044,7 +3605,7 @@ msgstr "Neznan predmet"
#. * the %s is the name of the item. Please keep the _ in front
#. * of the number to give these menu items a mnemonic.
#.
-#: gtk/gtkrecentchoosermenu.c:791
+#: gtk/gtkrecentchoosermenu.c:830
#, c-format
msgctxt "recent menu label"
msgid "_%d. %s"
@@ -3053,7 +3614,7 @@ msgstr "_%d. %s"
#. This is the format that is used for items in a recent files menu.
#. * The %d is the number of the item, the %s is the name of the item.
#.
-#: gtk/gtkrecentchoosermenu.c:796
+#: gtk/gtkrecentchoosermenu.c:835
#, c-format
msgctxt "recent menu label"
msgid "%d. %s"
@@ -3062,18 +3623,22 @@ msgstr "%d. %s"
#: gtk/gtkrecentmanager.c:1053 gtk/gtkrecentmanager.c:1066
#: gtk/gtkrecentmanager.c:1203 gtk/gtkrecentmanager.c:1213
#: gtk/gtkrecentmanager.c:1265 gtk/gtkrecentmanager.c:1274
-#, c-format
-msgid "Unable to find an item with URI “%s”"
+#, fuzzy, c-format
+#| msgid "Unable to find an item with URI “%s”"
+msgid "Unable to find an item with URI '%s'"
msgstr "Predmeta z naslovom URI »%s« ni mogoče najti."
#: gtk/gtkrecentmanager.c:1289
-#, c-format
-msgid "Unable to move the item with URI “%s” to “%s”"
+#, fuzzy, c-format
+#| msgid "Unable to move the item with URI “%s” to “%s”"
+msgid "Unable to move the item with URI '%s' to '%s'"
msgstr "Predmeta z naslovom URI »%s« ni mogoče premakniti v »%s«."
#: gtk/gtkrecentmanager.c:2507
-#, c-format
-msgid "No registered application with name “%s” for item with URI “%s” found"
+#, fuzzy, c-format
+#| msgid ""
+#| "No registered application with name “%s” for item with URI “%s” found"
+msgid "No registered application with name '%s' for item with URI '%s' found"
msgstr ""
"Ni mogoče najti programa z imenom »%s« za odpiranje predmetov z naslovom URI "
"»%s«."
@@ -3102,64 +3667,53 @@ msgctxt "keyboard side marker"
msgid "R"
msgstr "D"
-#: gtk/gtkshortcutssection.c:442
+#: gtk/gtkshortcutssection.c:451
msgid "_Show All"
msgstr "Pokaži _vse"
-#: gtk/gtkshortcutsshortcut.c:137
+#: gtk/gtkshortcutsshortcut.c:136
msgid "Two finger pinch"
msgstr "Dvoprstni uščip"
-#: gtk/gtkshortcutsshortcut.c:141
+#: gtk/gtkshortcutsshortcut.c:140
msgid "Two finger stretch"
msgstr "Dvoprstno raztegovanje"
-#: gtk/gtkshortcutsshortcut.c:145
+#: gtk/gtkshortcutsshortcut.c:144
msgid "Rotate clockwise"
msgstr "Zavrti v smeri urinega kazalca"
-#: gtk/gtkshortcutsshortcut.c:149
+#: gtk/gtkshortcutsshortcut.c:148
msgid "Rotate counterclockwise"
msgstr "Zavrti v nasprotni smeri urinega kazalca"
-#: gtk/gtkshortcutsshortcut.c:153
+#: gtk/gtkshortcutsshortcut.c:152
msgid "Two finger swipe left"
msgstr "Dvoprstni poteg v levo"
-#: gtk/gtkshortcutsshortcut.c:157
+#: gtk/gtkshortcutsshortcut.c:156
msgid "Two finger swipe right"
msgstr "Dvoprstni poteg v desno"
-#: gtk/gtkshortcutsshortcut.c:161
-msgid "Swipe left"
-msgstr "Poteg v levo"
-
-#: gtk/gtkshortcutsshortcut.c:165
-msgid "Swipe right"
-msgstr "Poteg v desno"
-
-#. Translators: This is the window title for the shortcuts window in normal mode
-#: gtk/gtkshortcutswindow.c:911
+#: gtk/gtkshortcutswindow.c:929
msgid "Shortcuts"
msgstr "Tipkovne bližnjice"
-#. Translators: This is the window title for the shortcuts window in search mode
-#: gtk/gtkshortcutswindow.c:916
+#: gtk/gtkshortcutswindow.c:934
msgid "Search Results"
msgstr "Poišči"
-#. Translators: This is placeholder text for the search entry in the shortcuts window
-#: gtk/gtkshortcutswindow.c:961
+#: gtk/gtkshortcutswindow.c:988
msgid "Search Shortcuts"
msgstr "Iskalne bližnjice"
-#: gtk/gtkshortcutswindow.c:1018 gtk/ui/gtkemojichooser.ui:274
-#: gtk/ui/gtkfilechooserwidget.ui:280
+#: gtk/gtkshortcutswindow.c:1053 gtk/ui/gtkemojichooser.ui:376
+#: gtk/ui/gtkfilechooserwidget.ui:310
msgid "No Results Found"
msgstr "Ni zadetkov"
-#: gtk/gtkshortcutswindow.c:1024 gtk/ui/gtkemojichooser.ui:287
-#: gtk/ui/gtkfilechooserwidget.ui:293 gtk/ui/gtkplacesview.ui:368
+#: gtk/gtkshortcutswindow.c:1060 gtk/ui/gtkemojichooser.ui:390
+#: gtk/ui/gtkfilechooserwidget.ui:324 gtk/ui/gtkplacesview.ui:406
msgid "Try a different search"
msgstr "Poskusite drugačno iskanje"
@@ -3167,7 +3721,7 @@ msgstr "Poskusite drugačno iskanje"
#. * glyphs then use MEDIUM VERTICAL BAR (U+2759) as the text for
#. * the state
#.
-#: gtk/gtkswitch.c:663
+#: gtk/gtkswitch.c:306
msgctxt "switch"
msgid "ON"
msgstr "❙"
@@ -3175,124 +3729,146 @@ msgstr "❙"
#. Translators: if the "off" state label requires more than three
#. * glyphs then use WHITE CIRCLE (U+25CB) as the text for the state
#.
-#: gtk/gtkswitch.c:669
+#: gtk/gtkswitch.c:313
msgctxt "switch"
msgid "OFF"
msgstr "○"
-#: gtk/gtktextbufferrichtext.c:658
+#: gtk/gtktextbufferrichtext.c:648
#, c-format
msgid "Unknown error when trying to deserialize %s"
msgstr "Neznana napaka med poskusom ločevanja iz zaporedja %s"
-#: gtk/gtktextbufferrichtext.c:717
+#: gtk/gtktextbufferrichtext.c:707
#, c-format
msgid "No deserialize function found for format %s"
msgstr "Funkcije za ločevanje iz zaporedja za obliko %s ni mogoče najti"
-#: gtk/gtktextbufferserialize.c:709 gtk/gtktextbufferserialize.c:735
-#, c-format
-msgid "Both “id” and “name” were found on the <%s> element"
+#: gtk/gtktextbufferserialize.c:784 gtk/gtktextbufferserialize.c:810
+#, fuzzy, c-format
+#| msgid "Both “id” and “name” were found on the <%s> element"
+msgid "Both \"id\" and \"name\" were found on the <%s> element"
msgstr "Na predmetu <%s> sta določena tako »ID« kot »ime«."
-#: gtk/gtktextbufferserialize.c:719 gtk/gtktextbufferserialize.c:745
-#, c-format
-msgid "The attribute “%s” was found twice on the <%s> element"
+#: gtk/gtktextbufferserialize.c:794 gtk/gtktextbufferserialize.c:820
+#, fuzzy, c-format
+#| msgid "The attribute “%s” was found twice on the <%s> element"
+msgid "The attribute \"%s\" was found twice on the <%s> element"
msgstr "Atribut »%s« je bil v predmetu <%s> najden dvakrat."
-#: gtk/gtktextbufferserialize.c:761
-#, c-format
-msgid "<%s> element has invalid ID “%s”"
+#: gtk/gtktextbufferserialize.c:836
+#, fuzzy, c-format
+#| msgid "<%s> element has invalid ID “%s”"
+msgid "<%s> element has invalid ID \"%s\""
msgstr "Element <%s> ima neveljaven ID »%s«."
-#: gtk/gtktextbufferserialize.c:771
-#, c-format
-msgid "<%s> element has neither a “name” nor an “id” attribute"
+#: gtk/gtktextbufferserialize.c:846
+#, fuzzy, c-format
+#| msgid "<%s> element has neither a “name” nor an “id” attribute"
+msgid "<%s> element has neither a \"name\" nor an \"id\" attribute"
msgstr "Predmet <%s> nima niti atributa »ime« niti »ID«."
-#: gtk/gtktextbufferserialize.c:858
-#, c-format
-msgid "Attribute “%s” repeated twice on the same <%s> element"
+#: gtk/gtktextbufferserialize.c:933
+#, fuzzy, c-format
+#| msgid "Attribute “%s” repeated twice on the same <%s> element"
+msgid "Attribute \"%s\" repeated twice on the same <%s> element"
msgstr "Atribut »%s« je v predmetu <%s> ponovljen dvakrat."
-#: gtk/gtktextbufferserialize.c:876 gtk/gtktextbufferserialize.c:901
-#, c-format
-msgid "Attribute “%s” is invalid on <%s> element in this context"
+#: gtk/gtktextbufferserialize.c:951 gtk/gtktextbufferserialize.c:976
+#, fuzzy, c-format
+#| msgid "Attribute “%s” is invalid on <%s> element in this context"
+msgid "Attribute \"%s\" is invalid on <%s> element in this context"
msgstr "Način uporabe atributa »%s« na predmetu <%s> je neveljaven."
-#: gtk/gtktextbufferserialize.c:940
-#, c-format
-msgid "Tag “%s” has not been defined."
+#: gtk/gtktextbufferserialize.c:1015
+#, fuzzy, c-format
+#| msgid "Tag “%s” has not been defined."
+msgid "Tag \"%s\" has not been defined."
msgstr "Oznaka »%s« ni bila določena."
-#: gtk/gtktextbufferserialize.c:952
+#: gtk/gtktextbufferserialize.c:1027
msgid "Anonymous tag found and tags can not be created."
msgstr "Najdena je bila brezimna oznaka in oznak ni mogoče ustvariti."
-#: gtk/gtktextbufferserialize.c:963
-#, c-format
-msgid "Tag “%s” does not exist in buffer and tags can not be created."
+#: gtk/gtktextbufferserialize.c:1038
+#, fuzzy, c-format
+#| msgid "Tag “%s” does not exist in buffer and tags can not be created."
+msgid "Tag \"%s\" does not exist in buffer and tags can not be created."
msgstr "Oznaka »%s« v medpomnilniku ne obstaja in oznak ni mogoče ustvariti."
-#: gtk/gtktextbufferserialize.c:1064 gtk/gtktextbufferserialize.c:1139
-#: gtk/gtktextbufferserialize.c:1244 gtk/gtktextbufferserialize.c:1318
+#: gtk/gtktextbufferserialize.c:1139 gtk/gtktextbufferserialize.c:1214
+#: gtk/gtktextbufferserialize.c:1319 gtk/gtktextbufferserialize.c:1393
#, c-format
msgid "Element <%s> is not allowed below <%s>"
msgstr "Predmet <%s> ni dovoljen pod <%s>"
-#: gtk/gtktextbufferserialize.c:1095
-#, c-format
-msgid "“%s” is not a valid attribute type"
+#: gtk/gtktextbufferserialize.c:1170
+#, fuzzy, c-format
+#| msgid "“%s” is not a valid attribute type"
+msgid "\"%s\" is not a valid attribute type"
msgstr "Vrednost »%s« ni veljavna vrsta atributa."
-#: gtk/gtktextbufferserialize.c:1103
-#, c-format
-msgid "“%s” is not a valid attribute name"
+#: gtk/gtktextbufferserialize.c:1178
+#, fuzzy, c-format
+#| msgid "“%s” is not a valid attribute name"
+msgid "\"%s\" is not a valid attribute name"
msgstr "Vrednost »%s« ni veljavno ime atributa."
-#: gtk/gtktextbufferserialize.c:1113
-#, c-format
-msgid "“%s” could not be converted to a value of type “%s” for attribute “%s”"
+#: gtk/gtktextbufferserialize.c:1188
+#, fuzzy, c-format
+#| msgid ""
+#| "“%s” could not be converted to a value of type “%s” for attribute “%s”"
+msgid ""
+"\"%s\" could not be converted to a value of type \"%s\" for attribute \"%s\""
msgstr ""
"Vrednosti »%s« ni mogoče pretvoriti v vrednost vrste »%s« za atribut »%s«."
-#: gtk/gtktextbufferserialize.c:1122
-#, c-format
-msgid "“%s” is not a valid value for attribute “%s”"
+#: gtk/gtktextbufferserialize.c:1197
+#, fuzzy, c-format
+#| msgid "“%s” is not a valid value for attribute “%s”"
+msgid "\"%s\" is not a valid value for attribute \"%s\""
msgstr "Vrednost »%s« ni veljavna za atribut »%s«."
-#: gtk/gtktextbufferserialize.c:1207
-#, c-format
-msgid "Tag “%s” already defined"
+#: gtk/gtktextbufferserialize.c:1282
+#, fuzzy, c-format
+#| msgid "Tag “%s” already defined"
+msgid "Tag \"%s\" already defined"
msgstr "Oznaka »%s« je že določena."
-#: gtk/gtktextbufferserialize.c:1220
-#, c-format
-msgid "Tag “%s” has invalid priority “%s”"
+#: gtk/gtktextbufferserialize.c:1295
+#, fuzzy, c-format
+#| msgid "Tag “%s” has invalid priority “%s”"
+msgid "Tag \"%s\" has invalid priority \"%s\""
msgstr "Oznaka »%s« ima neveljavno prednost »%s«."
-#: gtk/gtktextbufferserialize.c:1273
+#: gtk/gtktextbufferserialize.c:1348
#, c-format
msgid "Outermost element in text must be <text_view_markup> not <%s>"
msgstr ""
"Najbolj zunanji predmet v besedilu mora biti <text_view_markup> in ne <%s>"
-#: gtk/gtktextbufferserialize.c:1282 gtk/gtktextbufferserialize.c:1298
+#: gtk/gtktextbufferserialize.c:1357 gtk/gtktextbufferserialize.c:1373
#, c-format
msgid "A <%s> element has already been specified"
msgstr "Predmet <%s> je že naveden"
-#: gtk/gtktextbufferserialize.c:1304
-msgid "A <text> element can’t occur before a <tags> element"
+#: gtk/gtktextbufferserialize.c:1379
+#, fuzzy
+#| msgid "A <text> element can’t occur before a <tags> element"
+msgid "A <text> element can't occur before a <tags> element"
msgstr "Predmet <text> se ne sme pojaviti pred predmetom <tags>"
-#: gtk/gtktextbufferserialize.c:1710
+#: gtk/gtktextbufferserialize.c:1785
msgid "Serialized data is malformed"
msgstr "Podatki, združeni v zaporedje so izmaličeni"
-#: gtk/gtktextbufferserialize.c:1789
+#: gtk/gtktextbufferserialize.c:1864
+#, fuzzy
+#| msgid ""
+#| "Serialized data is malformed. First section isn’t "
+#| "GTKTEXTBUFFERCONTENTS-0001"
msgid ""
-"Serialized data is malformed. First section isn’t GTKTEXTBUFFERCONTENTS-0001"
+"Serialized data is malformed. First section isn't GTKTEXTBUFFERCONTENTS-0001"
msgstr ""
"Podatki, združeni v zaporedje so izmaličeni. Prvi odsek ni "
"GTKTEXTBUFFERCONTENTS-0001."
@@ -3360,24 +3936,24 @@ msgctxt "volume percentage"
msgid "%d %%"
msgstr "%d %%"
-#: gtk/gtkwindow.c:8039
+#: gtk/gtkwindow.c:9237
msgid "Move"
msgstr "Premakni"
-#: gtk/gtkwindow.c:8047
+#: gtk/gtkwindow.c:9245
msgid "Resize"
msgstr "Spremeni velikost"
-#: gtk/gtkwindow.c:8078
+#: gtk/gtkwindow.c:9276
msgid "Always on Top"
msgstr "Vedno na vrhu"
-#: gtk/gtkwindow.c:10823
+#: gtk/gtkwindow.c:12710
#, c-format
msgid "Do you want to use GTK+ Inspector?"
msgstr "Ali želite uporabljati nadzorni program GTK+?"
-#: gtk/gtkwindow.c:10825
+#: gtk/gtkwindow.c:12712
#, c-format
msgid ""
"GTK+ Inspector is an interactive debugger that lets you explore and modify "
@@ -3387,21 +3963,23 @@ msgstr ""
"Nadzornik GTK+ je razhroščevalnik, ki omogoča raziskovanje in spreminjanje "
"nastavitev GTK+. Neustrezna raba lahko povzroči nedelovanje okolja."
-#: gtk/gtkwindow.c:10830
-msgid "Don’t show this message again"
+#: gtk/gtkwindow.c:12717
+#, fuzzy
+#| msgid "Don’t show this message again"
+msgid "Don't show this message again"
msgstr "Sporočila ne pokaži več"
-#: gtk/inspector/action-editor.c:279
+#: gtk/inspector/action-editor.c:281
msgid "Activate"
msgstr "Omogoči"
-#: gtk/inspector/action-editor.c:300 gtk/inspector/actions.ui:82
-#: gtk/inspector/css-node-tree.ui:78 gtk/inspector/misc-info.ui:99
+#: gtk/inspector/action-editor.c:302 gtk/inspector/actions.ui:82
+#: gtk/inspector/css-node-tree.ui:78 gtk/inspector/misc-info.ui:102
msgid "State"
msgstr "Stanje"
-#: gtk/inspector/actions.ui:30 gtk/inspector/general.ui:112
-#: gtk/ui/gtkplacesview.ui:145
+#: gtk/inspector/actions.ui:30 gtk/inspector/general.ui:115
+#: gtk/ui/gtkplacesview.ui:158
msgid "Prefix"
msgstr "Predpona"
@@ -3437,7 +4015,7 @@ msgstr "Shranjevanje CSS je spodletelo"
msgid "Disable this custom CSS"
msgstr "Onemogoči uporabljen CSS po meri"
-#: gtk/inspector/css-editor.ui:46
+#: gtk/inspector/css-editor.ui:55
msgid "Save the current CSS"
msgstr "Shrani trenutni CSS"
@@ -3445,7 +4023,7 @@ msgstr "Shrani trenutni CSS"
msgid "ID"
msgstr "ID"
-#: gtk/inspector/css-node-tree.ui:65 gtk/inspector/object-tree.ui:124
+#: gtk/inspector/css-node-tree.ui:65 gtk/inspector/object-tree.ui:142
msgid "Style Classes"
msgstr "Razredi slogov"
@@ -3454,7 +4032,7 @@ msgid "CSS Property"
msgstr "Lastnosti CSS"
#: gtk/inspector/css-node-tree.ui:125 gtk/inspector/prop-list.ui:50
-#: gtk/ui/gtkcoloreditor.ui:271
+#: gtk/ui/gtkcoloreditor.ui:320
msgid "Value"
msgstr "Vrednost"
@@ -3462,41 +4040,43 @@ msgstr "Vrednost"
msgid "Show data"
msgstr "Pokaži podatke"
-#: gtk/inspector/general.c:311
+#: gtk/inspector/general.c:309
msgctxt "GL version"
msgid "None"
msgstr "Brez"
-#: gtk/inspector/general.c:312
+#: gtk/inspector/general.c:310
msgctxt "GL vendor"
msgid "None"
msgstr "Brez"
-#: gtk/inspector/general.ui:35
+#: gtk/inspector/general.ui:34
msgid "GTK+ Version"
msgstr "Različica GTK+"
-#: gtk/inspector/general.ui:67
+#: gtk/inspector/general.ui:68
msgid "GDK Backend"
msgstr "Ozadnji program GDK"
-#: gtk/inspector/general.ui:356
+#: gtk/inspector/general.ui:373
msgid "Display"
msgstr "Prikaz"
-#: gtk/inspector/general.ui:389
-msgid "RGBA Visual"
+#: gtk/inspector/general.ui:408
+#, fuzzy
+#| msgid "RGBA Visual"
+msgid "RGBA visual"
msgstr "Vidni RGBA"
-#: gtk/inspector/general.ui:421
+#: gtk/inspector/general.ui:442
msgid "Composited"
msgstr "Sestavljeno"
-#: gtk/inspector/general.ui:466
+#: gtk/inspector/general.ui:489
msgid "GL Version"
msgstr "Različica GL"
-#: gtk/inspector/general.ui:499
+#: gtk/inspector/general.ui:524
msgid "GL Vendor"
msgstr "Ponudnik GL"
@@ -3524,11 +4104,11 @@ msgstr "Cilj"
msgid "Unnamed section"
msgstr "Neimenovan odsek"
-#: gtk/inspector/menu.ui:26 gtk/inspector/object-tree.ui:107
+#: gtk/inspector/menu.ui:26 gtk/inspector/object-tree.ui:125
msgid "Label"
msgstr "Oznaka"
-#: gtk/inspector/menu.ui:39 gtk/inspector/prop-editor.c:1325
+#: gtk/inspector/menu.ui:39 gtk/inspector/prop-editor.c:1385
msgid "Action"
msgstr "Dejanje"
@@ -3540,98 +4120,116 @@ msgstr "Cilj"
msgid "Icon"
msgstr "Ikona"
-#: gtk/inspector/misc-info.ui:35
+#: gtk/inspector/misc-info.ui:34
msgid "Address"
msgstr "Naslov"
-#: gtk/inspector/misc-info.ui:67
-msgid "Reference Count"
+#: gtk/inspector/misc-info.ui:68
+#, fuzzy
+#| msgid "Reference Count"
+msgid "Reference count"
msgstr "Števec sklicev"
-#: gtk/inspector/misc-info.ui:131
+#: gtk/inspector/misc-info.ui:136
msgid "Buildable ID"
msgstr "Izgradljiv ID"
-#: gtk/inspector/misc-info.ui:163
+#: gtk/inspector/misc-info.ui:170
msgid "Default Widget"
msgstr "Privzeti gradnik"
-#: gtk/inspector/misc-info.ui:183 gtk/inspector/misc-info.ui:226
-#: gtk/inspector/misc-info.ui:430 gtk/inspector/prop-editor.c:1025
-#: gtk/inspector/prop-editor.c:1209 gtk/inspector/prop-editor.c:1333
-#: gtk/inspector/prop-editor.c:1443 gtk/inspector/window.ui:325
+#: gtk/inspector/misc-info.ui:192 gtk/inspector/misc-info.ui:237
+#: gtk/inspector/misc-info.ui:453 gtk/inspector/prop-editor.c:1071
+#: gtk/inspector/prop-editor.c:1268 gtk/inspector/prop-editor.c:1393
+#: gtk/inspector/prop-editor.c:1504 gtk/inspector/window.ui:382
msgid "Properties"
msgstr "Lastnosti"
-#: gtk/inspector/misc-info.ui:205
+#: gtk/inspector/misc-info.ui:214
msgid "Focus Widget"
msgstr "Gradnik žarišča"
-#: gtk/inspector/misc-info.ui:248
+#: gtk/inspector/misc-info.ui:259
msgid "Mnemonic Label"
msgstr "Oznaka pomagala"
-#: gtk/inspector/misc-info.ui:281
-msgid "Request Mode"
+#: gtk/inspector/misc-info.ui:294
+#, fuzzy
+#| msgid "Request Mode"
+msgid "Request mode"
msgstr "Način zahteve"
-#: gtk/inspector/misc-info.ui:313
+#: gtk/inspector/misc-info.ui:328
msgid "Allocation"
msgstr "Dodelitev"
-#: gtk/inspector/misc-info.ui:345
+#: gtk/inspector/misc-info.ui:362
msgid "Baseline"
msgstr "Osnovnica besedila"
-#: gtk/inspector/misc-info.ui:377
-msgid "Clip Area"
+#: gtk/inspector/misc-info.ui:396
+#, fuzzy
+#| msgid "Clip Area"
+msgid "Clip area"
msgstr "Površina predmeta"
-#: gtk/inspector/misc-info.ui:409
+#: gtk/inspector/misc-info.ui:430
msgid "Frame Clock"
msgstr "Okvir ure"
-#: gtk/inspector/misc-info.ui:452
-msgid "Tick Callback"
+#: gtk/inspector/misc-info.ui:475
+#, fuzzy
+#| msgid "Tick Callback"
+msgid "Tick callback"
msgstr "Označi povratni sklic"
-#: gtk/inspector/misc-info.ui:486
-msgid "Frame Count"
+#: gtk/inspector/misc-info.ui:511
+#, fuzzy
+#| msgid "Frame Count"
+msgid "Frame count"
msgstr "Števec sličic"
-#: gtk/inspector/misc-info.ui:518
-msgid "Frame Rate"
+#: gtk/inspector/misc-info.ui:545
+#, fuzzy
+#| msgid "Frame Rate"
+msgid "Frame rate"
msgstr "Hitrost sličic"
-#: gtk/inspector/misc-info.ui:550
-msgid "Accessible Role"
+#: gtk/inspector/misc-info.ui:579
+#, fuzzy
+#| msgid "Accessible Role"
+msgid "Accessible role"
msgstr "Dostopna vloga"
-#: gtk/inspector/misc-info.ui:582
-msgid "Accessible Name"
+#: gtk/inspector/misc-info.ui:613
+#, fuzzy
+#| msgid "Accessible Name"
+msgid "Accessible name"
msgstr "Dostopno ime"
-#: gtk/inspector/misc-info.ui:616
-msgid "Accessible Description"
+#: gtk/inspector/misc-info.ui:649
+#, fuzzy
+#| msgid "Accessible Description"
+msgid "Accessible description"
msgstr "Dostopni opis"
-#: gtk/inspector/misc-info.ui:650
+#: gtk/inspector/misc-info.ui:685
msgid "Mapped"
msgstr "Preslikano"
-#: gtk/inspector/misc-info.ui:684
+#: gtk/inspector/misc-info.ui:721
msgid "Realized"
msgstr "Realizirano"
-#: gtk/inspector/misc-info.ui:718
+#: gtk/inspector/misc-info.ui:757
msgid "Is Toplevel"
msgstr "Je vrhnja raven"
-#: gtk/inspector/misc-info.ui:752
+#: gtk/inspector/misc-info.ui:793
msgid "Child Visible"
msgstr "Viden kazalec"
-#: gtk/inspector/object-tree.ui:77
+#: gtk/inspector/object-tree.ui:95
msgid "Object"
msgstr "Predmet"
@@ -3650,75 +4248,71 @@ msgstr "Neznano"
msgid "Object: %p (%s)"
msgstr "Predmet: %p (%s)"
-#: gtk/inspector/prop-editor.c:1082
+#: gtk/inspector/prop-editor.c:1141
#, c-format
msgid "Uneditable property type: %s"
msgstr "Neuredljiva vrsta lastnosti: %s"
-#: gtk/inspector/prop-editor.c:1200
+#: gtk/inspector/prop-editor.c:1259
msgid "Attribute mapping"
msgstr "Preslikovanje atributov"
-#: gtk/inspector/prop-editor.c:1205
+#: gtk/inspector/prop-editor.c:1264
msgid "Model:"
msgstr "Model:"
-#: gtk/inspector/prop-editor.c:1206
+#: gtk/inspector/prop-editor.c:1265
#, c-format
msgid "%p (%s)"
msgstr "%p (%s)"
-#: gtk/inspector/prop-editor.c:1216
+#: gtk/inspector/prop-editor.c:1275
msgid "Column:"
msgstr "Stolpec:"
-#: gtk/inspector/prop-editor.c:1226
+#: gtk/inspector/prop-editor.c:1285
msgctxt "property name"
msgid "None"
msgstr "Brez"
-#: gtk/inspector/prop-editor.c:1329
+#: gtk/inspector/prop-editor.c:1389
#, c-format
msgid "Defined at: %p (%s)"
msgstr "Določeno pri: %p (%s)"
-#: gtk/inspector/prop-editor.c:1392 gtk/inspector/prop-editor.c:1408
+#: gtk/inspector/prop-editor.c:1453 gtk/inspector/prop-editor.c:1469
msgid "inverted"
msgstr "obrnjeno"
-#: gtk/inspector/prop-editor.c:1424
+#: gtk/inspector/prop-editor.c:1485
msgid "bidirectional, inverted"
msgstr "dvosmerno, obrnjeno"
-#: gtk/inspector/prop-editor.c:1429 gtk/inspector/prop-editor.c:1542
+#: gtk/inspector/prop-editor.c:1490 gtk/inspector/prop-editor.c:1604
msgid "bidirectional"
msgstr "dvosmerno"
-#: gtk/inspector/prop-editor.c:1434
+#: gtk/inspector/prop-editor.c:1495
msgid "Binding:"
msgstr "Vez:"
-#: gtk/inspector/prop-editor.c:1561
+#: gtk/inspector/prop-editor.c:1623
msgid "Setting:"
msgstr "Nastavitve:"
-#: gtk/inspector/prop-editor.c:1600
+#: gtk/inspector/prop-editor.c:1663
msgid "Source:"
msgstr "Vir:"
-#: gtk/inspector/prop-editor.c:1602
+#: gtk/inspector/prop-editor.c:1665
msgid "Reset"
msgstr "Ponastavi"
-#: gtk/inspector/prop-editor.c:1613
-msgid "Default"
-msgstr "Privzeto"
-
-#: gtk/inspector/prop-editor.c:1616
+#: gtk/inspector/prop-editor.c:1679
msgid "Theme"
msgstr "Tema"
-#: gtk/inspector/prop-editor.c:1619
+#: gtk/inspector/prop-editor.c:1682
msgid "XSettings"
msgstr "XSettings"
@@ -3738,32 +4332,28 @@ msgstr "Atribut"
msgid "Defined At"
msgstr "Določeno pri"
-#: gtk/inspector/recorder.c:269
-#, c-format
-msgid "Saving RenderNode failed"
-msgstr "Shranjevanje izrisovanja vozlišča je spodletelo"
-
-#: gtk/inspector/resource-list.ui:82
+#: gtk/inspector/resource-list.ui:100
msgid "Path"
msgstr "Pot"
-#: gtk/inspector/resource-list.ui:100 gtk/inspector/signals-list.ui:63
+#: gtk/inspector/resource-list.ui:118 gtk/inspector/signals-list.ui:63
msgid "Count"
msgstr "Števec"
-#: gtk/inspector/resource-list.ui:112 gtk/ui/gtkfilechooserwidget.ui:199
+#: gtk/inspector/resource-list.ui:130 gtk/ui/gtkfilechooserwidget.ui:223
+#: gtk/ui/gtkfontchooserwidget.ui:134 gtk/ui/gtkfontchooserwidget.ui:276
msgid "Size"
msgstr "Velikost"
-#: gtk/inspector/resource-list.ui:145
+#: gtk/inspector/resource-list.ui:163
msgid "Name:"
msgstr "Ime:"
-#: gtk/inspector/resource-list.ui:169
+#: gtk/inspector/resource-list.ui:187
msgid "Type:"
msgstr "Vrsta:"
-#: gtk/inspector/resource-list.ui:192
+#: gtk/inspector/resource-list.ui:210
msgid "Size:"
msgstr "Velikost:"
@@ -3784,30 +4374,34 @@ msgid "Connected"
msgstr "Povezano"
#: gtk/inspector/size-groups.c:224
+msgid "Ignore hidden"
+msgstr "Prezri skrito"
+
+#: gtk/inspector/size-groups.c:242
msgid "Mode"
msgstr "Način"
-#: gtk/inspector/size-groups.c:234
+#: gtk/inspector/size-groups.c:252
msgctxt "sizegroup mode"
msgid "None"
msgstr "Brez"
-#: gtk/inspector/size-groups.c:235
+#: gtk/inspector/size-groups.c:253
msgctxt "sizegroup mode"
msgid "Horizontal"
msgstr "Vodoravno"
-#: gtk/inspector/size-groups.c:236
+#: gtk/inspector/size-groups.c:254
msgctxt "sizegroup mode"
msgid "Vertical"
msgstr "Navpično"
-#: gtk/inspector/size-groups.c:237
+#: gtk/inspector/size-groups.c:255
msgctxt "sizegroup mode"
msgid "Both"
msgstr "Oboje"
-#: gtk/inspector/statistics.c:372
+#: gtk/inspector/statistics.c:377
msgid "GLib must be configured with --enable-debug"
msgstr "Knjižnica GLib mora biti nastaljena z uporabo zastavice --enable-debug"
@@ -3843,15 +4437,15 @@ msgstr "Omogoči statistiko z GOBJECT_DEBUG=instance-count"
msgid "Theme is hardcoded by GTK_THEME"
msgstr "Tema je vključena v privzeto temo GTK_THEME"
-#: gtk/inspector/visual.c:629
+#: gtk/inspector/visual.c:631
msgid "Backend does not support window scaling"
msgstr "Ozadnji program ne podpira prilagajanja velikosti okna"
-#: gtk/inspector/visual.c:724
+#: gtk/inspector/visual.c:726
msgid "Setting is hardcoded by GTK_TEST_TOUCHSCREEN"
msgstr "Nastavitev je vključena v privzeto vrednost GTK_TEST_TOUCHSCREEN"
-#: gtk/inspector/visual.c:789
+#: gtk/inspector/visual.c:791
msgid ""
"Not settable at runtime.\n"
"Use GDK_GL=always or GDK_GL=disable instead"
@@ -3859,124 +4453,130 @@ msgstr ""
"Možnost ni nastavljiva med delovanjem.\n"
"Uporabiti je treba nastavitvi GDK_GL=always ali GDK_GL=disable"
-#: gtk/inspector/visual.c:803 gtk/inspector/visual.c:804
-#: gtk/inspector/visual.c:805
+#: gtk/inspector/visual.c:805 gtk/inspector/visual.c:806
+#: gtk/inspector/visual.c:807
msgid "GL rendering is disabled"
msgstr "Izrisovanje GL je onemogočeno"
-#: gtk/inspector/visual.ui:62
+#: gtk/inspector/visual.ui:61
msgid "GTK+ Theme"
msgstr "Tema GTK+"
-#: gtk/inspector/visual.ui:93
+#: gtk/inspector/visual.ui:94
msgid "Dark Variant"
msgstr "Temna različica"
-#: gtk/inspector/visual.ui:124
+#: gtk/inspector/visual.ui:127
msgid "Cursor Theme"
msgstr "Tema kazalke"
-#: gtk/inspector/visual.ui:155
+#: gtk/inspector/visual.ui:160
msgid "Cursor Size"
msgstr "Velikost kazalca"
-#: gtk/inspector/visual.ui:190
+#: gtk/inspector/visual.ui:197
msgid "Icon Theme"
msgstr "Tema ikon"
-#: gtk/inspector/visual.ui:252
+#: gtk/inspector/visual.ui:230 gtk/ui/gtkfontbutton.ui:13
+msgid "Font"
+msgstr "Pisava"
+
+#: gtk/inspector/visual.ui:263
msgid "Font Scale"
msgstr "Merilo pisave"
-#: gtk/inspector/visual.ui:296
+#: gtk/inspector/visual.ui:309
msgid "Text Direction"
msgstr "Usmerjenost besedila"
-#: gtk/inspector/visual.ui:310
+#: gtk/inspector/visual.ui:322
msgid "Left-to-Right"
msgstr "Z leve proti desni"
-#: gtk/inspector/visual.ui:311
+#: gtk/inspector/visual.ui:323
msgid "Right-to-Left"
msgstr "Z desne proti levi"
-#: gtk/inspector/visual.ui:332
-msgid "Window Scaling"
+#: gtk/inspector/visual.ui:347
+msgid "Window scaling"
msgstr "Prilagajanje velikosti okna"
-#: gtk/inspector/visual.ui:365
+#: gtk/inspector/visual.ui:382
msgid "Animations"
msgstr "Animacije"
-#: gtk/inspector/visual.ui:396
+#: gtk/inspector/visual.ui:415
msgid "Slowdown"
msgstr "Upočasni"
-#: gtk/inspector/visual.ui:453
+#: gtk/inspector/visual.ui:474
msgid "Rendering Mode"
msgstr "Način izrisovanja"
-#: gtk/inspector/visual.ui:467
+#: gtk/inspector/visual.ui:487
msgid "Similar"
msgstr "Podobno"
-#: gtk/inspector/visual.ui:468
+#: gtk/inspector/visual.ui:488
msgid "Image"
msgstr "Slika"
-#: gtk/inspector/visual.ui:469
+#: gtk/inspector/visual.ui:489
msgid "Recording"
msgstr "Snemanje"
-#: gtk/inspector/visual.ui:490
+#: gtk/inspector/visual.ui:513
msgid "Show Graphic Updates"
msgstr "Pokaži grafične posodobitve"
-#: gtk/inspector/visual.ui:522
+#: gtk/inspector/visual.ui:547
msgid "Show Baselines"
msgstr "Pokaži črte vrstic"
-#: gtk/inspector/visual.ui:554
+#: gtk/inspector/visual.ui:581
msgid "Show Layout Borders"
msgstr "Pokaži razporeditev okvirjev"
-#: gtk/inspector/visual.ui:586
-msgid "Snapshot Debug Nodes"
-msgstr "Vozlišča razhroščevanja Snapshot"
+#: gtk/inspector/visual.ui:615
+msgid "Show Pixel Cache"
+msgstr "Pokaži predpomnilnik točk"
-#: gtk/inspector/visual.ui:618
+#: gtk/inspector/visual.ui:649
msgid "Show Widget Resizes"
msgstr "Pokaži prilagajanje velikosti gradnika"
-#: gtk/inspector/visual.ui:650
-msgid "Simulate Touchscreen"
+#: gtk/inspector/visual.ui:683
+#, fuzzy
+#| msgid "Simulate Touchscreen"
+msgid "Simulate touchscreen"
msgstr "Simuliraj zaslon na dotik"
-#: gtk/inspector/visual.ui:693
+#: gtk/inspector/visual.ui:728
msgid "GL Rendering"
msgstr "Izrisovanje GL"
-#: gtk/inspector/visual.ui:706
-msgid "When Needed"
+#: gtk/inspector/visual.ui:740
+msgid "When needed"
msgstr "Ko je zahtevano"
-#: gtk/inspector/visual.ui:707
+#: gtk/inspector/visual.ui:741
msgid "Always"
msgstr "Vedno"
-#: gtk/inspector/visual.ui:708
+#: gtk/inspector/visual.ui:742
msgid "Disabled"
msgstr "Onemogočeno"
-#: gtk/inspector/visual.ui:729
+#: gtk/inspector/visual.ui:766
msgid "Software GL"
msgstr "Programski GL"
-#: gtk/inspector/visual.ui:761
+#: gtk/inspector/visual.ui:800
msgid "Software Surfaces"
msgstr "Programska površina"
-#: gtk/inspector/visual.ui:793
+#: gtk/inspector/visual.ui:834
msgid "Texture Rectangle Extension"
msgstr "Razširitev teksturnega pravokotnika"
@@ -3984,102 +4584,841 @@ msgstr "Razširitev teksturnega pravokotnika"
msgid "Select an Object"
msgstr "Izbor predmeta"
-#: gtk/inspector/window.ui:45 gtk/inspector/window.ui:98
+#: gtk/inspector/window.ui:54 gtk/inspector/window.ui:134
msgid "Show Details"
msgstr "Pokaži podrobnosti"
-#: gtk/inspector/window.ui:59
+#: gtk/inspector/window.ui:77
msgid "Show all Objects"
msgstr "Pokaži vse predmete"
-#: gtk/inspector/window.ui:80
+#: gtk/inspector/window.ui:107
msgid "Collect Statistics"
msgstr "Zbiranje statistike"
-#: gtk/inspector/window.ui:111
+#: gtk/inspector/window.ui:156
msgid "Show all Resources"
msgstr "Pokaži vse vire"
-#: gtk/inspector/window.ui:222
+#: gtk/inspector/window.ui:267
msgid "Trace signal emissions on this object"
msgstr "Sledi signalom tega predmeta"
-#: gtk/inspector/window.ui:230
+#: gtk/inspector/window.ui:284
msgid "Clear log"
msgstr "Počisti dnevnik"
-#: gtk/inspector/window.ui:313
+#: gtk/inspector/window.ui:370
msgid "Miscellaneous"
msgstr "Razno"
-#: gtk/inspector/window.ui:336
+#: gtk/inspector/window.ui:393
msgid "Signals"
msgstr "Signali"
-#: gtk/inspector/window.ui:347
+#: gtk/inspector/window.ui:404
msgid "Child Properties"
msgstr "Podrejene lastnosti"
-#: gtk/inspector/window.ui:356
+#: gtk/inspector/window.ui:413
msgid "Class Hierarchy"
msgstr "Hierarhija razreda"
-#: gtk/inspector/window.ui:365
+#: gtk/inspector/window.ui:422
msgid "CSS Selector"
msgstr "Izbirnik"
-#: gtk/inspector/window.ui:374
-msgid "CSS Nodes"
+#: gtk/inspector/window.ui:431
+msgid "CSS nodes"
msgstr "Vozlišča CSS"
-#: gtk/inspector/window.ui:381
+#: gtk/inspector/window.ui:438
msgid "Size Groups"
msgstr "Velikostne skupine"
-#: gtk/inspector/window.ui:388
+#: gtk/inspector/window.ui:445
msgid "Data"
msgstr "Podatki"
-#: gtk/inspector/window.ui:395
+#: gtk/inspector/window.ui:452
msgid "Actions"
msgstr "Dejanja"
-#: gtk/inspector/window.ui:411
+#: gtk/inspector/window.ui:468
msgid "Gestures"
msgstr "Poteze"
-#: gtk/inspector/window.ui:420
+#: gtk/inspector/window.ui:477
msgid "Magnifier"
msgstr "Povečevalo"
-#: gtk/inspector/window.ui:433
+#: gtk/inspector/window.ui:490
msgid "Objects"
msgstr "Predmeti"
-#: gtk/inspector/window.ui:443
+#: gtk/inspector/window.ui:500
msgid "Statistics"
msgstr "Statistika"
-#: gtk/inspector/window.ui:453
+#: gtk/inspector/window.ui:510
msgid "Resources"
msgstr "Viri"
-#: gtk/inspector/window.ui:462
+#: gtk/inspector/window.ui:519
msgid "CSS"
msgstr "CSS"
-#: gtk/inspector/window.ui:471
-msgid "Recorder"
-msgstr "Snemalnik"
-
-#: gtk/inspector/window.ui:480
+#: gtk/inspector/window.ui:528
msgid "Visual"
msgstr "Vizualno"
-#: gtk/inspector/window.ui:489 gtk/ui/gtkprintunixdialog.ui:406
+#: gtk/inspector/window.ui:537 gtk/ui/gtkprintunixdialog.ui:426
msgid "General"
msgstr "Splošno"
+#: gtk/open-type-layout.h:13
+msgctxt "OpenType layout"
+msgid "Access All Alternates"
+msgstr ""
+
+#: gtk/open-type-layout.h:14
+msgctxt "OpenType layout"
+msgid "Above-base Forms"
+msgstr ""
+
+#: gtk/open-type-layout.h:15
+msgctxt "OpenType layout"
+msgid "Above-base Mark Positioning"
+msgstr ""
+
+#: gtk/open-type-layout.h:16
+msgctxt "OpenType layout"
+msgid "Above-base Substitutions"
+msgstr ""
+
+#: gtk/open-type-layout.h:17
+#, fuzzy
+#| msgid "Authentication"
+msgctxt "OpenType layout"
+msgid "Alternative Fractions"
+msgstr "Overitev"
+
+#: gtk/open-type-layout.h:18
+msgctxt "OpenType layout"
+msgid "Akhands"
+msgstr ""
+
+#: gtk/open-type-layout.h:19
+msgctxt "OpenType layout"
+msgid "Below-base Forms"
+msgstr ""
+
+#: gtk/open-type-layout.h:20
+msgctxt "OpenType layout"
+msgid "Below-base Mark Positioning"
+msgstr ""
+
+#: gtk/open-type-layout.h:21
+msgctxt "OpenType layout"
+msgid "Below-base Substitutions"
+msgstr ""
+
+#: gtk/open-type-layout.h:22
+msgctxt "OpenType layout"
+msgid "Contextual Alternates"
+msgstr ""
+
+#: gtk/open-type-layout.h:23
+msgctxt "OpenType layout"
+msgid "Case-Sensitive Forms"
+msgstr ""
+
+#: gtk/open-type-layout.h:24
+msgctxt "OpenType layout"
+msgid "Glyph Composition / Decomposition"
+msgstr ""
+
+#: gtk/open-type-layout.h:25
+msgctxt "OpenType layout"
+msgid "Conjunct Form After Ro"
+msgstr ""
+
+#: gtk/open-type-layout.h:26
+msgctxt "OpenType layout"
+msgid "Conjunct Forms"
+msgstr ""
+
+#: gtk/open-type-layout.h:27
+msgctxt "OpenType layout"
+msgid "Contextual Ligatures"
+msgstr ""
+
+#: gtk/open-type-layout.h:28
+msgctxt "OpenType layout"
+msgid "Centered CJK Punctuation"
+msgstr ""
+
+#: gtk/open-type-layout.h:29
+msgctxt "OpenType layout"
+msgid "Capital Spacing"
+msgstr ""
+
+#: gtk/open-type-layout.h:30
+msgctxt "OpenType layout"
+msgid "Contextual Swash"
+msgstr ""
+
+#: gtk/open-type-layout.h:31
+msgctxt "OpenType layout"
+msgid "Cursive Positioning"
+msgstr ""
+
+#: gtk/open-type-layout.h:32
+msgctxt "OpenType layout"
+msgid "Petite Capitals From Capitals"
+msgstr ""
+
+#: gtk/open-type-layout.h:33
+msgctxt "OpenType layout"
+msgid "Small Capitals From Capitals"
+msgstr ""
+
+#: gtk/open-type-layout.h:34
+msgctxt "OpenType layout"
+msgid "Distances"
+msgstr ""
+
+#: gtk/open-type-layout.h:35
+msgctxt "OpenType layout"
+msgid "Discretionary Ligatures"
+msgstr ""
+
+#: gtk/open-type-layout.h:36
+msgctxt "OpenType layout"
+msgid "Denominators"
+msgstr ""
+
+#: gtk/open-type-layout.h:37
+msgctxt "OpenType layout"
+msgid "Dotless Forms"
+msgstr ""
+
+#: gtk/open-type-layout.h:38
+msgctxt "OpenType layout"
+msgid "Expert Forms"
+msgstr ""
+
+#: gtk/open-type-layout.h:39
+msgctxt "OpenType layout"
+msgid "Final Glyph on Line Alternates"
+msgstr ""
+
+#: gtk/open-type-layout.h:40
+#, fuzzy
+#| msgid "Terminal Pager"
+msgctxt "OpenType layout"
+msgid "Terminal Forms #2"
+msgstr "Pozivnik terminala"
+
+#: gtk/open-type-layout.h:41
+#, fuzzy
+#| msgid "Terminal Pager"
+msgctxt "OpenType layout"
+msgid "Terminal Forms #3"
+msgstr "Pozivnik terminala"
+
+#: gtk/open-type-layout.h:42
+#, fuzzy
+#| msgid "Terminal Pager"
+msgctxt "OpenType layout"
+msgid "Terminal Forms"
+msgstr "Pozivnik terminala"
+
+#: gtk/open-type-layout.h:43
+msgctxt "OpenType layout"
+msgid "Flattened accent forms"
+msgstr ""
+
+#: gtk/open-type-layout.h:44
+#, fuzzy
+#| msgid "Actions"
+msgctxt "OpenType layout"
+msgid "Fractions"
+msgstr "Dejanja"
+
+#: gtk/open-type-layout.h:45
+#, fuzzy
+#| msgid "Focus Widget"
+msgctxt "OpenType layout"
+msgid "Full Widths"
+msgstr "Gradnik žarišča"
+
+#: gtk/open-type-layout.h:46
+msgctxt "OpenType layout"
+msgid "Half Forms"
+msgstr ""
+
+#: gtk/open-type-layout.h:47
+msgctxt "OpenType layout"
+msgid "Halant Forms"
+msgstr ""
+
+#: gtk/open-type-layout.h:48
+msgctxt "OpenType layout"
+msgid "Alternate Half Widths"
+msgstr ""
+
+#: gtk/open-type-layout.h:49
+msgctxt "OpenType layout"
+msgid "Historical Forms"
+msgstr ""
+
+#: gtk/open-type-layout.h:50
+msgctxt "OpenType layout"
+msgid "Horizontal Kana Alternates"
+msgstr ""
+
+#: gtk/open-type-layout.h:51
+msgctxt "OpenType layout"
+msgid "Historical Ligatures"
+msgstr ""
+
+#: gtk/open-type-layout.h:52
+msgctxt "OpenType layout"
+msgid "Hangul"
+msgstr ""
+
+#: gtk/open-type-layout.h:53
+msgctxt "OpenType layout"
+msgid "Hojo Kanji Forms"
+msgstr ""
+
+#: gtk/open-type-layout.h:54
+msgctxt "OpenType layout"
+msgid "Half Widths"
+msgstr ""
+
+#: gtk/open-type-layout.h:55
+#, fuzzy
+#| msgctxt "print operation status"
+#| msgid "Initial state"
+msgctxt "OpenType layout"
+msgid "Initial Forms"
+msgstr "Začetno stanje"
+
+#: gtk/open-type-layout.h:56
+msgctxt "OpenType layout"
+msgid "Isolated Forms"
+msgstr ""
+
+#: gtk/open-type-layout.h:57
+msgctxt "OpenType layout"
+msgid "Italics"
+msgstr "Ležeče pisave"
+
+#: gtk/open-type-layout.h:58
+msgctxt "OpenType layout"
+msgid "Justification Alternates"
+msgstr ""
+
+#: gtk/open-type-layout.h:59
+msgctxt "OpenType layout"
+msgid "JIS78 Forms"
+msgstr ""
+
+#: gtk/open-type-layout.h:60
+msgctxt "OpenType layout"
+msgid "JIS83 Forms"
+msgstr ""
+
+#: gtk/open-type-layout.h:61
+msgctxt "OpenType layout"
+msgid "JIS90 Forms"
+msgstr ""
+
+#: gtk/open-type-layout.h:62
+msgctxt "OpenType layout"
+msgid "JIS2004 Forms"
+msgstr ""
+
+#: gtk/open-type-layout.h:63
+#, fuzzy
+#| msgid "Warning"
+msgctxt "OpenType layout"
+msgid "Kerning"
+msgstr "Opozorilo"
+
+#: gtk/open-type-layout.h:64
+#, fuzzy
+#| msgctxt "output-bin"
+#| msgid "Left Bin"
+msgctxt "OpenType layout"
+msgid "Left Bounds"
+msgstr "Vsebnik na levi"
+
+#: gtk/open-type-layout.h:65
+#, fuzzy
+#| msgctxt "cover page"
+#| msgid "Standard"
+msgctxt "OpenType layout"
+msgid "Standard Ligatures"
+msgstr "Zaupno"
+
+#: gtk/open-type-layout.h:66
+msgctxt "OpenType layout"
+msgid "Leading Jamo Forms"
+msgstr ""
+
+#: gtk/open-type-layout.h:67
+msgctxt "OpenType layout"
+msgid "Lining Figures"
+msgstr ""
+
+#: gtk/open-type-layout.h:68
+msgctxt "OpenType layout"
+msgid "Localized Forms"
+msgstr ""
+
+#: gtk/open-type-layout.h:69
+#, fuzzy
+#| msgid "LRM _Left-to-right mark"
+msgctxt "OpenType layout"
+msgid "Left-to-right alternates"
+msgstr "LRM oznaka z _leve proti desni"
+
+#: gtk/open-type-layout.h:70
+#, fuzzy
+#| msgid "LRM _Left-to-right mark"
+msgctxt "OpenType layout"
+msgid "Left-to-right mirrored forms"
+msgstr "LRM oznaka z _leve proti desni"
+
+#: gtk/open-type-layout.h:71
+msgctxt "OpenType layout"
+msgid "Mark Positioning"
+msgstr ""
+
+#: gtk/open-type-layout.h:72
+msgctxt "OpenType layout"
+msgid "Medial Forms #2"
+msgstr ""
+
+#: gtk/open-type-layout.h:73
+msgctxt "OpenType layout"
+msgid "Medial Forms"
+msgstr ""
+
+#: gtk/open-type-layout.h:74
+msgctxt "OpenType layout"
+msgid "Mathematical Greek"
+msgstr ""
+
+#: gtk/open-type-layout.h:75
+msgctxt "OpenType layout"
+msgid "Mark to Mark Positioning"
+msgstr ""
+
+#: gtk/open-type-layout.h:76
+msgctxt "OpenType layout"
+msgid "Mark Positioning via Substitution"
+msgstr ""
+
+#: gtk/open-type-layout.h:77
+msgctxt "OpenType layout"
+msgid "Alternate Annotation Forms"
+msgstr ""
+
+#: gtk/open-type-layout.h:78
+msgctxt "OpenType layout"
+msgid "NLC Kanji Forms"
+msgstr ""
+
+#: gtk/open-type-layout.h:79
+msgctxt "OpenType layout"
+msgid "Nukta Forms"
+msgstr ""
+
+#: gtk/open-type-layout.h:80
+msgctxt "OpenType layout"
+msgid "Numerators"
+msgstr ""
+
+#: gtk/open-type-layout.h:81
+msgctxt "OpenType layout"
+msgid "Oldstyle Figures"
+msgstr ""
+
+#: gtk/open-type-layout.h:82
+msgctxt "OpenType layout"
+msgid "Optical Bounds"
+msgstr ""
+
+#: gtk/open-type-layout.h:83
+#, fuzzy
+#| msgid "Signals"
+msgctxt "OpenType layout"
+msgid "Ordinals"
+msgstr "Signali"
+
+#: gtk/open-type-layout.h:84
+msgctxt "OpenType layout"
+msgid "Ornaments"
+msgstr ""
+
+#: gtk/open-type-layout.h:85
+msgctxt "OpenType layout"
+msgid "Proportional Alternate Widths"
+msgstr ""
+
+#: gtk/open-type-layout.h:86
+msgctxt "OpenType layout"
+msgid "Petite Capitals"
+msgstr ""
+
+#: gtk/open-type-layout.h:87
+msgctxt "OpenType layout"
+msgid "Proportional Kana"
+msgstr ""
+
+#: gtk/open-type-layout.h:88
+#, fuzzy
+#| msgid "Properties"
+msgctxt "OpenType layout"
+msgid "Proportional Figures"
+msgstr "Lastnosti"
+
+#: gtk/open-type-layout.h:89
+msgctxt "OpenType layout"
+msgid "Pre-Base Forms"
+msgstr ""
+
+#: gtk/open-type-layout.h:90
+msgctxt "OpenType layout"
+msgid "Pre-base Substitutions"
+msgstr ""
+
+#: gtk/open-type-layout.h:91
+msgctxt "OpenType layout"
+msgid "Post-base Forms"
+msgstr ""
+
+#: gtk/open-type-layout.h:92
+msgctxt "OpenType layout"
+msgid "Post-base Substitutions"
+msgstr ""
+
+#: gtk/open-type-layout.h:93
+msgctxt "OpenType layout"
+msgid "Proportional Widths"
+msgstr ""
+
+#: gtk/open-type-layout.h:94
+msgctxt "OpenType layout"
+msgid "Quarter Widths"
+msgstr ""
+
+#: gtk/open-type-layout.h:95
+msgctxt "OpenType layout"
+msgid "Randomize"
+msgstr ""
+
+#: gtk/open-type-layout.h:96
+msgctxt "OpenType layout"
+msgid "Required Contextual Alternates"
+msgstr ""
+
+#: gtk/open-type-layout.h:97
+msgctxt "OpenType layout"
+msgid "Rakar Forms"
+msgstr ""
+
+#: gtk/open-type-layout.h:98
+msgctxt "OpenType layout"
+msgid "Required Ligatures"
+msgstr ""
+
+#: gtk/open-type-layout.h:99
+msgctxt "OpenType layout"
+msgid "Reph Forms"
+msgstr ""
+
+#: gtk/open-type-layout.h:100
+#, fuzzy
+#| msgctxt "output-bin"
+#| msgid "Right Bin"
+msgctxt "OpenType layout"
+msgid "Right Bounds"
+msgstr "Vsebnik na desni"
+
+#: gtk/open-type-layout.h:101
+#, fuzzy
+#| msgid "RLM _Right-to-left mark"
+msgctxt "OpenType layout"
+msgid "Right-to-left alternates"
+msgstr "RLM oznaka z _desne proti levi"
+
+#: gtk/open-type-layout.h:102
+#, fuzzy
+#| msgid "RLM _Right-to-left mark"
+msgctxt "OpenType layout"
+msgid "Right-to-left mirrored forms"
+msgstr "RLM oznaka z _desne proti levi"
+
+#: gtk/open-type-layout.h:103
+msgctxt "OpenType layout"
+msgid "Ruby Notation Forms"
+msgstr ""
+
+#: gtk/open-type-layout.h:104
+msgctxt "OpenType layout"
+msgid "Required Variation Alternates"
+msgstr ""
+
+#: gtk/open-type-layout.h:105
+msgctxt "OpenType layout"
+msgid "Stylistic Alternates"
+msgstr ""
+
+#: gtk/open-type-layout.h:106
+msgctxt "OpenType layout"
+msgid "Scientific Inferiors"
+msgstr ""
+
+#: gtk/open-type-layout.h:107
+msgctxt "OpenType layout"
+msgid "Optical size"
+msgstr ""
+
+#: gtk/open-type-layout.h:108
+msgctxt "OpenType layout"
+msgid "Small Capitals"
+msgstr "Male velike črke"
+
+#: gtk/open-type-layout.h:109
+msgctxt "OpenType layout"
+msgid "Simplified Forms"
+msgstr ""
+
+#: gtk/open-type-layout.h:110
+msgctxt "OpenType layout"
+msgid "Stylistic Set 1"
+msgstr ""
+
+#: gtk/open-type-layout.h:111
+msgctxt "OpenType layout"
+msgid "Stylistic Set 2"
+msgstr ""
+
+#: gtk/open-type-layout.h:112
+msgctxt "OpenType layout"
+msgid "Stylistic Set 3"
+msgstr ""
+
+#: gtk/open-type-layout.h:113
+msgctxt "OpenType layout"
+msgid "Stylistic Set 4"
+msgstr ""
+
+#: gtk/open-type-layout.h:114
+msgctxt "OpenType layout"
+msgid "Stylistic Set 5"
+msgstr ""
+
+#: gtk/open-type-layout.h:115
+msgctxt "OpenType layout"
+msgid "Stylistic Set 6"
+msgstr ""
+
+#: gtk/open-type-layout.h:116
+msgctxt "OpenType layout"
+msgid "Stylistic Set 7"
+msgstr ""
+
+#: gtk/open-type-layout.h:117
+msgctxt "OpenType layout"
+msgid "Stylistic Set 8"
+msgstr ""
+
+#: gtk/open-type-layout.h:118
+msgctxt "OpenType layout"
+msgid "Stylistic Set 9"
+msgstr ""
+
+#: gtk/open-type-layout.h:119
+msgctxt "OpenType layout"
+msgid "Stylistic Set 10"
+msgstr ""
+
+#: gtk/open-type-layout.h:120
+msgctxt "OpenType layout"
+msgid "Stylistic Set 11"
+msgstr ""
+
+#: gtk/open-type-layout.h:121
+msgctxt "OpenType layout"
+msgid "Stylistic Set 12"
+msgstr ""
+
+#: gtk/open-type-layout.h:122
+msgctxt "OpenType layout"
+msgid "Stylistic Set 13"
+msgstr ""
+
+#: gtk/open-type-layout.h:123
+msgctxt "OpenType layout"
+msgid "Stylistic Set 14"
+msgstr ""
+
+#: gtk/open-type-layout.h:124
+msgctxt "OpenType layout"
+msgid "Stylistic Set 15"
+msgstr ""
+
+#: gtk/open-type-layout.h:125
+msgctxt "OpenType layout"
+msgid "Stylistic Set 16"
+msgstr ""
+
+#: gtk/open-type-layout.h:126
+msgctxt "OpenType layout"
+msgid "Stylistic Set 17"
+msgstr ""
+
+#: gtk/open-type-layout.h:127
+msgctxt "OpenType layout"
+msgid "Stylistic Set 18"
+msgstr ""
+
+#: gtk/open-type-layout.h:128
+msgctxt "OpenType layout"
+msgid "Stylistic Set 19"
+msgstr ""
+
+#: gtk/open-type-layout.h:129
+#, fuzzy
+#| msgid "Artistic License 2.0"
+msgctxt "OpenType layout"
+msgid "Stylistic Set 20"
+msgstr "Umetniško dovoljenje 2.0"
+
+#: gtk/open-type-layout.h:130
+msgctxt "OpenType layout"
+msgid "Math script style alternates"
+msgstr ""
+
+#: gtk/open-type-layout.h:131
+msgctxt "OpenType layout"
+msgid "Stretching Glyph Decomposition"
+msgstr ""
+
+#: gtk/open-type-layout.h:132
+msgctxt "OpenType layout"
+msgid "Subscript"
+msgstr "Podpisano"
+
+#: gtk/open-type-layout.h:133
+msgctxt "OpenType layout"
+msgid "Superscript"
+msgstr "Nadpisano"
+
+#: gtk/open-type-layout.h:134
+msgctxt "OpenType layout"
+msgid "Swash"
+msgstr ""
+
+#: gtk/open-type-layout.h:135
+msgctxt "OpenType layout"
+msgid "Titling"
+msgstr ""
+
+#: gtk/open-type-layout.h:136
+msgctxt "OpenType layout"
+msgid "Trailing Jamo Forms"
+msgstr ""
+
+#: gtk/open-type-layout.h:137
+msgctxt "OpenType layout"
+msgid "Traditional Name Forms"
+msgstr ""
+
+#: gtk/open-type-layout.h:138
+msgctxt "OpenType layout"
+msgid "Tabular Figures"
+msgstr ""
+
+#: gtk/open-type-layout.h:139
+msgctxt "OpenType layout"
+msgid "Traditional Forms"
+msgstr ""
+
+#: gtk/open-type-layout.h:140
+msgctxt "OpenType layout"
+msgid "Third Widths"
+msgstr ""
+
+#: gtk/open-type-layout.h:141
+msgctxt "OpenType layout"
+msgid "Unicase"
+msgstr ""
+
+#: gtk/open-type-layout.h:142
+msgctxt "OpenType layout"
+msgid "Alternate Vertical Metrics"
+msgstr ""
+
+#: gtk/open-type-layout.h:143
+msgctxt "OpenType layout"
+msgid "Vattu Variants"
+msgstr "Izpeljanke Vattu"
+
+#: gtk/open-type-layout.h:144
+msgctxt "OpenType layout"
+msgid "Vertical Writing"
+msgstr "Navpično pisanje"
+
+#: gtk/open-type-layout.h:145
+msgctxt "OpenType layout"
+msgid "Alternate Vertical Half Metrics"
+msgstr ""
+
+#: gtk/open-type-layout.h:146
+msgctxt "OpenType layout"
+msgid "Vowel Jamo Forms"
+msgstr ""
+
+#: gtk/open-type-layout.h:147
+msgctxt "OpenType layout"
+msgid "Vertical Kana Alternates"
+msgstr ""
+
+#: gtk/open-type-layout.h:148
+#, fuzzy
+#| msgctxt "sizegroup mode"
+#| msgid "Vertical"
+msgctxt "OpenType layout"
+msgid "Vertical Kerning"
+msgstr "Navpično"
+
+#: gtk/open-type-layout.h:149
+msgctxt "OpenType layout"
+msgid "Proportional Alternate Vertical Metrics"
+msgstr ""
+
+#: gtk/open-type-layout.h:150
+msgctxt "OpenType layout"
+msgid "Vertical Alternates and Rotation"
+msgstr ""
+
+#: gtk/open-type-layout.h:151
+msgctxt "OpenType layout"
+msgid "Vertical Alternates for Rotation"
+msgstr ""
+
+#: gtk/open-type-layout.h:152
+msgctxt "OpenType layout"
+msgid "Slashed Zero"
+msgstr ""
+
#: gtk/paper_names_offsets.c:4
msgctxt "paper size"
msgid "asme_f"
@@ -4990,27 +6329,755 @@ msgctxt "paper size"
msgid "ROC 8k"
msgstr "ROC 8k"
-#: gtk/ui/gtkaboutdialog.ui:112
+#: gtk/script-names.c:18
+msgctxt "Script"
+msgid "Arabic"
+msgstr ""
+
+#: gtk/script-names.c:19
+msgctxt "Script"
+msgid "Armenian"
+msgstr ""
+
+#: gtk/script-names.c:20
+msgctxt "Script"
+msgid "Bengali"
+msgstr ""
+
+#: gtk/script-names.c:21
+msgctxt "Script"
+msgid "Bopomofo"
+msgstr ""
+
+#: gtk/script-names.c:22
+msgctxt "Script"
+msgid "Cherokee"
+msgstr ""
+
+#: gtk/script-names.c:23
+msgctxt "Script"
+msgid "Coptic"
+msgstr ""
+
+#: gtk/script-names.c:24
+msgctxt "Script"
+msgid "Cyrillic"
+msgstr ""
+
+#: gtk/script-names.c:25
+msgctxt "Script"
+msgid "Deseret"
+msgstr ""
+
+#: gtk/script-names.c:26
+msgctxt "Script"
+msgid "Devanagari"
+msgstr ""
+
+#: gtk/script-names.c:27
+msgctxt "Script"
+msgid "Ethiopic"
+msgstr ""
+
+#: gtk/script-names.c:28
+msgctxt "Script"
+msgid "Georgian"
+msgstr ""
+
+#: gtk/script-names.c:29
+msgctxt "Script"
+msgid "Gothic"
+msgstr ""
+
+#: gtk/script-names.c:30
+#, fuzzy
+#| msgid "_Green:"
+msgctxt "Script"
+msgid "Greek"
+msgstr "_Zelena:"
+
+#: gtk/script-names.c:31
+msgctxt "Script"
+msgid "Gujarati"
+msgstr ""
+
+#: gtk/script-names.c:32
+msgctxt "Script"
+msgid "Gurmukhi"
+msgstr ""
+
+#: gtk/script-names.c:33
+msgctxt "Script"
+msgid "Han"
+msgstr ""
+
+#: gtk/script-names.c:34
+msgctxt "Script"
+msgid "Hangul"
+msgstr ""
+
+#: gtk/script-names.c:35
+msgctxt "Script"
+msgid "Hebrew"
+msgstr ""
+
+#: gtk/script-names.c:36
+msgctxt "Script"
+msgid "Hiragana"
+msgstr ""
+
+#: gtk/script-names.c:37
+msgctxt "Script"
+msgid "Kannada"
+msgstr ""
+
+#: gtk/script-names.c:38
+msgctxt "Script"
+msgid "Katakana"
+msgstr ""
+
+#: gtk/script-names.c:39
+msgctxt "Script"
+msgid "Khmer"
+msgstr ""
+
+#: gtk/script-names.c:40
+#, fuzzy
+#| msgid "Low"
+msgctxt "Script"
+msgid "Lao"
+msgstr "Nizka"
+
+#: gtk/script-names.c:41
+msgctxt "Script"
+msgid "Latin"
+msgstr ""
+
+#: gtk/script-names.c:42
+msgctxt "Script"
+msgid "Malayalam"
+msgstr ""
+
+#: gtk/script-names.c:43
+msgctxt "Script"
+msgid "Mongolian"
+msgstr ""
+
+#: gtk/script-names.c:44
+msgctxt "Script"
+msgid "Myanmar"
+msgstr ""
+
+#: gtk/script-names.c:45
+msgctxt "Script"
+msgid "Ogham"
+msgstr ""
+
+#: gtk/script-names.c:46
+#, fuzzy
+#| msgctxt "Stock label"
+#| msgid "_Italic"
+msgctxt "Script"
+msgid "Old Italic"
+msgstr "_Ležeče"
+
+#: gtk/script-names.c:47
+msgctxt "Script"
+msgid "Oriya"
+msgstr ""
+
+#: gtk/script-names.c:48
+msgctxt "Script"
+msgid "Runic"
+msgstr ""
+
+#: gtk/script-names.c:49
+msgctxt "Script"
+msgid "Sinhala"
+msgstr ""
+
+#: gtk/script-names.c:50
+msgctxt "Script"
+msgid "Syriac"
+msgstr ""
+
+#: gtk/script-names.c:51
+#, fuzzy
+#| msgid "_Family:"
+msgctxt "Script"
+msgid "Tamil"
+msgstr "_Družina:"
+
+#: gtk/script-names.c:52
+msgctxt "Script"
+msgid "Telugu"
+msgstr ""
+
+#: gtk/script-names.c:53
+msgctxt "Script"
+msgid "Thaana"
+msgstr ""
+
+#: gtk/script-names.c:54
+#, fuzzy
+#| msgctxt "input method menu"
+#| msgid "Thai-Lao"
+msgctxt "Script"
+msgid "Thai"
+msgstr "tajsko-laoški"
+
+#: gtk/script-names.c:55
+msgctxt "Script"
+msgid "Tibetan"
+msgstr ""
+
+#: gtk/script-names.c:56
+msgctxt "Script"
+msgid "Canadian Aboriginal"
+msgstr ""
+
+#: gtk/script-names.c:57
+msgctxt "Script"
+msgid "Yi"
+msgstr ""
+
+#: gtk/script-names.c:58
+msgctxt "Script"
+msgid "Tagalog"
+msgstr ""
+
+#: gtk/script-names.c:59
+msgctxt "Script"
+msgid "Hanunoo"
+msgstr ""
+
+#: gtk/script-names.c:60
+msgctxt "Script"
+msgid "Buhid"
+msgstr ""
+
+#: gtk/script-names.c:61
+msgctxt "Script"
+msgid "Tagbanwa"
+msgstr ""
+
+#: gtk/script-names.c:62
+msgctxt "Script"
+msgid "Braille"
+msgstr ""
+
+#: gtk/script-names.c:63
+msgctxt "Script"
+msgid "Cypriot"
+msgstr ""
+
+#: gtk/script-names.c:64
+msgctxt "Script"
+msgid "Limbu"
+msgstr ""
+
+#: gtk/script-names.c:65
+msgctxt "Script"
+msgid "Osmanya"
+msgstr ""
+
+#: gtk/script-names.c:66
+msgctxt "Script"
+msgid "Shavian"
+msgstr ""
+
+#: gtk/script-names.c:67
+#, fuzzy
+#| msgctxt "output-bin"
+#| msgid "Rear Bin"
+msgctxt "Script"
+msgid "Linear B"
+msgstr "Vsebnik zadaj"
+
+#: gtk/script-names.c:68
+msgctxt "Script"
+msgid "Tai Le"
+msgstr ""
+
+#: gtk/script-names.c:69
+msgctxt "Script"
+msgid "Ugaritic"
+msgstr ""
+
+#: gtk/script-names.c:70
+msgctxt "Script"
+msgid "New Tai Lue"
+msgstr ""
+
+#: gtk/script-names.c:71
+msgctxt "Script"
+msgid "Buginese"
+msgstr ""
+
+#: gtk/script-names.c:72
+msgctxt "Script"
+msgid "Glagolitic"
+msgstr ""
+
+#: gtk/script-names.c:73
+msgctxt "Script"
+msgid "Tifinagh"
+msgstr ""
+
+#: gtk/script-names.c:74
+msgctxt "Script"
+msgid "Syloti Nagri"
+msgstr ""
+
+#: gtk/script-names.c:75
+msgctxt "Script"
+msgid "Old Persian"
+msgstr ""
+
+#: gtk/script-names.c:76
+msgctxt "Script"
+msgid "Kharoshthi"
+msgstr ""
+
+#: gtk/script-names.c:77
+#, fuzzy
+#| msgid "Unknown"
+msgctxt "Script"
+msgid "Unknown"
+msgstr "Neznano"
+
+#: gtk/script-names.c:78
+#, fuzzy
+#| msgid "Baseline"
+msgctxt "Script"
+msgid "Balinese"
+msgstr "Osnovnica besedila"
+
+#: gtk/script-names.c:79
+msgctxt "Script"
+msgid "Cuneiform"
+msgstr ""
+
+#: gtk/script-names.c:80
+msgctxt "Script"
+msgid "Phoenician"
+msgstr ""
+
+#: gtk/script-names.c:81
+msgctxt "Script"
+msgid "Phags-pa"
+msgstr ""
+
+#: gtk/script-names.c:82
+msgctxt "Script"
+msgid "N'Ko"
+msgstr ""
+
+#: gtk/script-names.c:83
+msgctxt "Script"
+msgid "Kayah Li"
+msgstr ""
+
+#: gtk/script-names.c:84
+msgctxt "Script"
+msgid "Lepcha"
+msgstr ""
+
+#: gtk/script-names.c:85
+msgctxt "Script"
+msgid "Rejang"
+msgstr ""
+
+#: gtk/script-names.c:86
+msgctxt "Script"
+msgid "Sundanese"
+msgstr ""
+
+#: gtk/script-names.c:87
+msgctxt "Script"
+msgid "Saurashtra"
+msgstr ""
+
+#: gtk/script-names.c:88
+#, fuzzy
+#| msgctxt "Color name"
+#| msgid "Chameleon"
+msgctxt "Script"
+msgid "Cham"
+msgstr "kameleonska"
+
+#: gtk/script-names.c:89
+msgctxt "Script"
+msgid "Ol Chiki"
+msgstr ""
+
+#: gtk/script-names.c:90
+msgctxt "Script"
+msgid "Vai"
+msgstr ""
+
+#: gtk/script-names.c:91
+msgctxt "Script"
+msgid "Carian"
+msgstr ""
+
+#: gtk/script-names.c:92
+msgctxt "Script"
+msgid "Lycian"
+msgstr ""
+
+#: gtk/script-names.c:93
+msgctxt "Script"
+msgid "Lydian"
+msgstr ""
+
+#: gtk/script-names.c:94
+msgctxt "Script"
+msgid "Avestan"
+msgstr ""
+
+#: gtk/script-names.c:95
+msgctxt "Script"
+msgid "Bamum"
+msgstr ""
+
+#: gtk/script-names.c:96
+msgctxt "Script"
+msgid "Egyptian Hieroglyphs"
+msgstr ""
+
+#: gtk/script-names.c:97
+msgctxt "Script"
+msgid "Imperial Aramaic"
+msgstr ""
+
+#: gtk/script-names.c:98
+msgctxt "Script"
+msgid "Inscriptional Pahlavi"
+msgstr ""
+
+#: gtk/script-names.c:99
+msgctxt "Script"
+msgid "Inscriptional Parthian"
+msgstr ""
+
+#: gtk/script-names.c:100
+msgctxt "Script"
+msgid "Javanese"
+msgstr ""
+
+#: gtk/script-names.c:101
+msgctxt "Script"
+msgid "Kaithi"
+msgstr ""
+
+#: gtk/script-names.c:102
+msgctxt "Script"
+msgid "Lisu"
+msgstr ""
+
+#: gtk/script-names.c:103
+msgctxt "Script"
+msgid "Meetei Mayek"
+msgstr ""
+
+#: gtk/script-names.c:104
+msgctxt "Script"
+msgid "Old South Arabian"
+msgstr ""
+
+#: gtk/script-names.c:105
+msgctxt "Script"
+msgid "Old Turkic"
+msgstr ""
+
+#: gtk/script-names.c:106
+msgctxt "Script"
+msgid "Samaritan"
+msgstr ""
+
+#: gtk/script-names.c:107
+msgctxt "Script"
+msgid "Tai Tham"
+msgstr ""
+
+#: gtk/script-names.c:108
+msgctxt "Script"
+msgid "Tai Viet"
+msgstr ""
+
+#: gtk/script-names.c:109
+msgctxt "Script"
+msgid "Batak"
+msgstr ""
+
+#: gtk/script-names.c:110
+msgctxt "Script"
+msgid "Brahmi"
+msgstr ""
+
+#: gtk/script-names.c:111
+msgctxt "Script"
+msgid "Mandaic"
+msgstr ""
+
+#: gtk/script-names.c:112
+msgctxt "Script"
+msgid "Chakma"
+msgstr ""
+
+#: gtk/script-names.c:113
+msgctxt "Script"
+msgid "Meroitic Cursive"
+msgstr ""
+
+#: gtk/script-names.c:114
+msgctxt "Script"
+msgid "Meroitic Hieroglyphs"
+msgstr ""
+
+#: gtk/script-names.c:115
+msgctxt "Script"
+msgid "Miao"
+msgstr ""
+
+#: gtk/script-names.c:116
+msgctxt "Script"
+msgid "Sharada"
+msgstr ""
+
+#: gtk/script-names.c:117
+msgctxt "Script"
+msgid "Sora Sompeng"
+msgstr ""
+
+#: gtk/script-names.c:118
+msgctxt "Script"
+msgid "Takri"
+msgstr ""
+
+#: gtk/script-names.c:119
+msgctxt "Script"
+msgid "Bassa"
+msgstr ""
+
+#: gtk/script-names.c:120
+msgctxt "Script"
+msgid "Caucasian Albanian"
+msgstr ""
+
+#: gtk/script-names.c:121
+msgctxt "Script"
+msgid "Duployan"
+msgstr ""
+
+#: gtk/script-names.c:122
+msgctxt "Script"
+msgid "Elbasan"
+msgstr ""
+
+#: gtk/script-names.c:123
+msgctxt "Script"
+msgid "Grantha"
+msgstr ""
+
+#: gtk/script-names.c:124
+msgctxt "Script"
+msgid "Khojki"
+msgstr ""
+
+#: gtk/script-names.c:125
+msgctxt "Script"
+msgid "Khudawadi, Sindhi"
+msgstr ""
+
+#: gtk/script-names.c:126
+msgctxt "Script"
+msgid "Linear A"
+msgstr ""
+
+#: gtk/script-names.c:127
+msgctxt "Script"
+msgid "Mahajani"
+msgstr ""
+
+#: gtk/script-names.c:128
+msgctxt "Script"
+msgid "Manichaean"
+msgstr ""
+
+#: gtk/script-names.c:129
+msgctxt "Script"
+msgid "Mende Kikakui"
+msgstr ""
+
+#: gtk/script-names.c:130
+#, fuzzy
+#| msgid "Modified"
+msgctxt "Script"
+msgid "Modi"
+msgstr "Spremenjeno"
+
+#: gtk/script-names.c:131
+msgctxt "Script"
+msgid "Mro"
+msgstr ""
+
+#: gtk/script-names.c:132
+msgctxt "Script"
+msgid "Nabataean"
+msgstr ""
+
+#: gtk/script-names.c:133
+msgctxt "Script"
+msgid "Old North Arabian"
+msgstr ""
+
+#: gtk/script-names.c:134
+msgctxt "Script"
+msgid "Old Permic"
+msgstr ""
+
+#: gtk/script-names.c:135
+msgctxt "Script"
+msgid "Pahawh Hmong"
+msgstr ""
+
+#: gtk/script-names.c:136
+msgctxt "Script"
+msgid "Palmyrene"
+msgstr ""
+
+#: gtk/script-names.c:137
+msgctxt "Script"
+msgid "Pau Cin Hau"
+msgstr ""
+
+#: gtk/script-names.c:138
+msgctxt "Script"
+msgid "Psalter Pahlavi"
+msgstr ""
+
+#: gtk/script-names.c:139
+msgctxt "Script"
+msgid "Siddham"
+msgstr ""
+
+#: gtk/script-names.c:140
+msgctxt "Script"
+msgid "Tirhuta"
+msgstr ""
+
+#: gtk/script-names.c:141
+msgctxt "Script"
+msgid "Warang Citi"
+msgstr ""
+
+#: gtk/script-names.c:142
+msgctxt "Script"
+msgid "Ahom"
+msgstr ""
+
+#: gtk/script-names.c:143
+msgctxt "Script"
+msgid "Anatolian Hieroglyphs"
+msgstr ""
+
+#: gtk/script-names.c:144
+msgctxt "Script"
+msgid "Hatran"
+msgstr ""
+
+#: gtk/script-names.c:145
+#, fuzzy
+#| msgctxt "keyboard label"
+#| msgid "Multi_key"
+msgctxt "Script"
+msgid "Multani"
+msgstr "Multi Key"
+
+#: gtk/script-names.c:146
+msgctxt "Script"
+msgid "Old Hungarian"
+msgstr ""
+
+#: gtk/script-names.c:147
+#, fuzzy
+#| msgctxt "print operation status"
+#| msgid "Printing"
+msgctxt "Script"
+msgid "Signwriting"
+msgstr "Tiskanje"
+
+#: gtk/script-names.c:148
+msgctxt "Script"
+msgid "Adlam"
+msgstr ""
+
+#: gtk/script-names.c:149
+msgctxt "Script"
+msgid "Bhaiksuki"
+msgstr ""
+
+#: gtk/script-names.c:150
+#, fuzzy
+#| msgid "Searching"
+msgctxt "Script"
+msgid "Marchen"
+msgstr "Poteka iskanje"
+
+#: gtk/script-names.c:151
+msgctxt "Script"
+msgid "Newa"
+msgstr ""
+
+#: gtk/script-names.c:152
+msgctxt "Script"
+msgid "Osage"
+msgstr ""
+
+#: gtk/script-names.c:153
+msgctxt "Script"
+msgid "Tangut"
+msgstr ""
+
+#: gtk/script-names.c:154
+msgctxt "Script"
+msgid "Masaram Gondi"
+msgstr ""
+
+#: gtk/script-names.c:155
+msgctxt "Script"
+msgid "Nushu"
+msgstr ""
+
+#: gtk/script-names.c:156
+msgctxt "Script"
+msgid "Soyombo"
+msgstr ""
+
+#: gtk/script-names.c:157
+msgctxt "Script"
+msgid "Zanabazar Square"
+msgstr ""
+
+#: gtk/ui/gtkaboutdialog.ui:133
msgid "About"
msgstr "O programu"
-#: gtk/ui/gtkaboutdialog.ui:150
+#: gtk/ui/gtkaboutdialog.ui:173
msgid "Credits"
msgstr "Zasluge"
-#: gtk/ui/gtkaboutdialog.ui:212
-msgid "System"
-msgstr "Sistem"
-
-#: gtk/ui/gtkappchooserdialog.ui:75
+#: gtk/ui/gtkappchooserdialog.ui:78
msgid "_View All Applications"
msgstr "Poglej vse _programe"
-#: gtk/ui/gtkappchooserdialog.ui:83
+#: gtk/ui/gtkappchooserdialog.ui:86
msgid "_Find New Applications"
msgstr "_Najdi nove programe"
-#: gtk/ui/gtkappchooserwidget.ui:116
+#: gtk/ui/gtkappchooserwidget.ui:117
msgid "No applications found."
msgstr "Ni najdenih programov."
@@ -5046,288 +7113,284 @@ msgstr "Pokaži vse"
msgid "Quit %s"
msgstr "Končaj %s"
-#: gtk/ui/gtkassistant.ui:63
+#: gtk/ui/gtkassistant.ui:68
msgid "_Next"
msgstr "_Naslednji"
-#: gtk/ui/gtkassistant.ui:81
+#: gtk/ui/gtkassistant.ui:88
msgid "_Back"
msgstr "_Nazaj"
-#: gtk/ui/gtkassistant.ui:99
+#: gtk/ui/gtkassistant.ui:107
msgid "_Finish"
msgstr "_Končaj"
-#: gtk/ui/gtkcolorchooserdialog.ui:5
+#: gtk/ui/gtkcolorchooserdialog.ui:6
msgid "Select a Color"
msgstr "Izberite barvo"
-#: gtk/ui/gtkcoloreditor.ui:59
+#: gtk/ui/gtkcoloreditor.ui:57
+msgid "Pick a color from the screen"
+msgstr ""
+
+#: gtk/ui/gtkcoloreditor.ui:89
msgid "Color Name"
msgstr "Ime barve"
-#: gtk/ui/gtkcoloreditor.ui:142
+#: gtk/ui/gtkcoloreditor.ui:180
msgctxt "Color channel"
msgid "A"
msgstr "A"
-#: gtk/ui/gtkcoloreditor.ui:157
+#: gtk/ui/gtkcoloreditor.ui:196
msgid "Alpha"
msgstr "Alfa"
-#: gtk/ui/gtkcoloreditor.ui:185
+#: gtk/ui/gtkcoloreditor.ui:227
msgctxt "Color channel"
msgid "H"
msgstr "H"
-#: gtk/ui/gtkcoloreditor.ui:200
+#: gtk/ui/gtkcoloreditor.ui:243
msgid "Hue"
msgstr "Odtenek"
-#: gtk/ui/gtkcoloreditor.ui:229
+#: gtk/ui/gtkcoloreditor.ui:275
msgctxt "Color Channel"
msgid "S"
msgstr "S"
-#: gtk/ui/gtkcoloreditor.ui:238
+#: gtk/ui/gtkcoloreditor.ui:285
msgctxt "Color Channel"
msgid "V"
msgstr "V"
-#: gtk/ui/gtkcoloreditor.ui:253
+#: gtk/ui/gtkcoloreditor.ui:301
msgid "Saturation"
msgstr "Nasičenost"
-#: gtk/ui/gtkemojichooser.ui:43
-msgctxt "emoji category"
+#: gtk/ui/gtkemojichooser.ui:53 gtk/ui/gtkemojichooser.ui:212
msgid "Smileys & People"
-msgstr "Izrazi in Ljudlje"
+msgstr "Izrazi in Ljudje"
-#: gtk/ui/gtkemojichooser.ui:56
-msgctxt "emoji category"
+#: gtk/ui/gtkemojichooser.ui:68 gtk/ui/gtkemojichooser.ui:227
msgid "Body & Clothing"
msgstr "Telo in Oblačila"
-#: gtk/ui/gtkemojichooser.ui:69
-msgctxt "emoji category"
+#: gtk/ui/gtkemojichooser.ui:83 gtk/ui/gtkemojichooser.ui:242
msgid "Animals & Nature"
msgstr "Živali in Narava"
-#: gtk/ui/gtkemojichooser.ui:82
-msgctxt "emoji category"
+#: gtk/ui/gtkemojichooser.ui:98 gtk/ui/gtkemojichooser.ui:257
msgid "Food & Drink"
msgstr "Hrana in Pijača"
-#: gtk/ui/gtkemojichooser.ui:95
-msgctxt "emoji category"
+#: gtk/ui/gtkemojichooser.ui:113 gtk/ui/gtkemojichooser.ui:272
msgid "Travel & Places"
msgstr "Potovanja in Mesta"
-#: gtk/ui/gtkemojichooser.ui:108
-msgctxt "emoji category"
+#: gtk/ui/gtkemojichooser.ui:128 gtk/ui/gtkemojichooser.ui:287
msgid "Activities"
msgstr "Dejavnosti"
-#: gtk/ui/gtkemojichooser.ui:121
+#: gtk/ui/gtkemojichooser.ui:143 gtk/ui/gtkemojichooser.ui:302
msgctxt "emoji category"
msgid "Objects"
msgstr "Predmeti"
-#: gtk/ui/gtkemojichooser.ui:134
-msgctxt "emoji category"
+#: gtk/ui/gtkemojichooser.ui:158 gtk/ui/gtkemojichooser.ui:317
msgid "Symbols"
msgstr "Simboli"
-#: gtk/ui/gtkemojichooser.ui:147
-msgctxt "emoji category"
+#: gtk/ui/gtkemojichooser.ui:173 gtk/ui/gtkemojichooser.ui:332
msgid "Flags"
msgstr "Zastavice"
-#: gtk/ui/gtkfilechooserwidget.ui:62
+#: gtk/ui/gtkfilechooserwidget.ui:69
msgid "Create Folder"
msgstr "Ustvari mapo"
-#: gtk/ui/gtkfilechooserwidget.ui:144
+#: gtk/ui/gtkfilechooserwidget.ui:168
msgid "Files"
msgstr "Datoteke"
-#: gtk/ui/gtkfilechooserwidget.ui:235
+#: gtk/ui/gtkfilechooserwidget.ui:261
msgid "Remote location — only searching the current folder"
msgstr "Oddaljeno mesto — iskanje le trenutne mape"
-#: gtk/ui/gtkfilechooserwidget.ui:390
+#: gtk/ui/gtkfilechooserwidget.ui:433
msgid "Folder Name"
msgstr "Ime mape"
-#: gtk/ui/gtkfilechooserwidget.ui:416
+#: gtk/ui/gtkfilechooserwidget.ui:461
msgid "_Create"
msgstr "_Ustvari"
-#: gtk/ui/gtkfontchooserdialog.ui:5
+#: gtk/ui/gtkfontchooserdialog.ui:6
msgid "Select Font"
msgstr "Izbor pisave"
-#: gtk/ui/gtkfontchooserwidget.ui:50
+#: gtk/ui/gtkfontchooserwidget.ui:53
msgid "Search font name"
msgstr "Poišči pisavo po imenu"
-#: gtk/ui/gtkfontchooserwidget.ui:97
+#: gtk/ui/gtkfontchooserwidget.ui:100
msgid "Font Family"
msgstr "Družina pisav"
-#: gtk/ui/gtkfontchooserwidget.ui:118
+#: gtk/ui/gtkfontchooserwidget.ui:121 gtk/ui/gtkfontchooserwidget.ui:248
msgid "Preview text"
msgstr "Besedilo za predogled"
-#: gtk/ui/gtkfontchooserwidget.ui:184
+#: gtk/ui/gtkfontchooserwidget.ui:201
msgid "No Fonts Found"
msgstr "Ni najdenih pisav"
-#: gtk/ui/gtkpagesetupunixdialog.ui:48
+#: gtk/ui/gtkpagesetupunixdialog.ui:47
msgid "_Format for:"
msgstr "_Vrsta za:"
-#: gtk/ui/gtkpagesetupunixdialog.ui:81 gtk/ui/gtkprintunixdialog.ui:715
+#: gtk/ui/gtkpagesetupunixdialog.ui:80 gtk/ui/gtkprintunixdialog.ui:747
msgid "_Paper size:"
msgstr "_Velikost papirja:"
-#: gtk/ui/gtkpagesetupunixdialog.ui:123
+#: gtk/ui/gtkpagesetupunixdialog.ui:122
msgid "_Orientation:"
msgstr "_Usmerjenost:"
-#: gtk/ui/gtkpagesetupunixdialog.ui:153 gtk/ui/gtkprintunixdialog.ui:762
+#: gtk/ui/gtkpagesetupunixdialog.ui:152 gtk/ui/gtkprintunixdialog.ui:794
msgid "Portrait"
msgstr "Pokončno"
-#: gtk/ui/gtkpagesetupunixdialog.ui:189 gtk/ui/gtkprintunixdialog.ui:764
+#: gtk/ui/gtkpagesetupunixdialog.ui:188 gtk/ui/gtkprintunixdialog.ui:796
msgid "Reverse portrait"
msgstr "Obrnjeno pokončno"
-#: gtk/ui/gtkpagesetupunixdialog.ui:225 gtk/ui/gtkprintunixdialog.ui:763
+#: gtk/ui/gtkpagesetupunixdialog.ui:224 gtk/ui/gtkprintunixdialog.ui:795
msgid "Landscape"
msgstr "Ležeče"
-#: gtk/ui/gtkpagesetupunixdialog.ui:260 gtk/ui/gtkprintunixdialog.ui:765
+#: gtk/ui/gtkpagesetupunixdialog.ui:259 gtk/ui/gtkprintunixdialog.ui:797
msgid "Reverse landscape"
msgstr "Obrnjeno ležeče"
-#: gtk/ui/gtkpathbar.ui:10
+#: gtk/ui/gtkpathbar.ui:11
msgid "Down Path"
msgstr "Po poti navzdol"
-#: gtk/ui/gtkpathbar.ui:33
+#: gtk/ui/gtkpathbar.ui:36
msgid "Up Path"
msgstr "Po poti navzgor"
-#: gtk/ui/gtkplacesview.ui:28
+#: gtk/ui/gtkplacesview.ui:30
msgid "Server Addresses"
msgstr "Naslovi strežnika"
-#: gtk/ui/gtkplacesview.ui:40
+#: gtk/ui/gtkplacesview.ui:43
msgid ""
"Server addresses are made up of a protocol prefix and an address. Examples:"
msgstr ""
"Naslovi strežnikov so sestavljeni in predpone protokola in naslova. Primeri:"
-#: gtk/ui/gtkplacesview.ui:72
+#: gtk/ui/gtkplacesview.ui:78
msgid "Available Protocols"
msgstr "Razpoložljivi protokoli"
-#: gtk/ui/gtkplacesview.ui:85
+#: gtk/ui/gtkplacesview.ui:92
msgid "AppleTalk"
msgstr "AppleTalk"
-#: gtk/ui/gtkplacesview.ui:95
+#: gtk/ui/gtkplacesview.ui:103
msgid "File Transfer Protocol"
msgstr "Protokol prenosa datotek FTP"
-#: gtk/ui/gtkplacesview.ui:105
+#: gtk/ui/gtkplacesview.ui:114
msgid "Network File System"
msgstr "Omrežni datotečni sistem"
-#: gtk/ui/gtkplacesview.ui:115
+#: gtk/ui/gtkplacesview.ui:125
msgid "Samba"
msgstr "Samba"
-#: gtk/ui/gtkplacesview.ui:125
+#: gtk/ui/gtkplacesview.ui:136
msgid "SSH File Transfer Protocol"
msgstr "Protokol prenosa datotek SSH"
-#: gtk/ui/gtkplacesview.ui:135
+#: gtk/ui/gtkplacesview.ui:147
msgid "WebDAV"
msgstr "WebDAV"
#. Translators: do not translate ftp:// and ftps://
-#: gtk/ui/gtkplacesview.ui:168
+#: gtk/ui/gtkplacesview.ui:183
msgid "ftp:// or ftps://"
msgstr "ftp:// ali ftps://"
-#: gtk/ui/gtkplacesview.ui:188
+#: gtk/ui/gtkplacesview.ui:205
msgid "smb://"
msgstr "smb://"
#. Translators: do not translate sftp:// and ssh://
-#: gtk/ui/gtkplacesview.ui:198
+#: gtk/ui/gtkplacesview.ui:216
msgid "sftp:// or ssh://"
msgstr "sftp:// ali ssh://"
#. Translators: do not translate dav:// and davs://
-#: gtk/ui/gtkplacesview.ui:208
+#: gtk/ui/gtkplacesview.ui:227
msgid "dav:// or davs://"
msgstr "dav:// ali davs://"
#. Translators: Server as any successfully connected network address
-#: gtk/ui/gtkplacesview.ui:244
+#: gtk/ui/gtkplacesview.ui:267
msgid "No recent servers found"
msgstr "Ni najdenih nedavnih strežnikov"
-#: gtk/ui/gtkplacesview.ui:265
+#: gtk/ui/gtkplacesview.ui:290
msgid "Recent Servers"
msgstr "Nedavni strežniki"
-#: gtk/ui/gtkplacesview.ui:356
+#: gtk/ui/gtkplacesview.ui:393
msgid "No results found"
msgstr "Ni zadetkov"
-#: gtk/ui/gtkplacesview.ui:397
+#: gtk/ui/gtkplacesview.ui:439
msgid "Connect to _Server"
msgstr "Poveži s _strežnikom"
-#: gtk/ui/gtkplacesview.ui:427
+#: gtk/ui/gtkplacesview.ui:472
msgid "Enter server address…"
msgstr "Vpis naslova strežnika ..."
-#: gtk/ui/gtkprintunixdialog.ui:113
+#: gtk/ui/gtkprintunixdialog.ui:112
msgid "Printer"
msgstr "Tiskalnik"
#. this is the header for the printer status column in the print dialog
-#: gtk/ui/gtkprintunixdialog.ui:135
+#: gtk/ui/gtkprintunixdialog.ui:134
msgid "Status"
msgstr "Stanje"
-#: gtk/ui/gtkprintunixdialog.ui:176
+#: gtk/ui/gtkprintunixdialog.ui:181
msgid "Range"
msgstr "Obseg"
-#: gtk/ui/gtkprintunixdialog.ui:193
+#: gtk/ui/gtkprintunixdialog.ui:201
msgid "_All Pages"
msgstr "_Vse strani"
-#: gtk/ui/gtkprintunixdialog.ui:208
+#: gtk/ui/gtkprintunixdialog.ui:216
msgid "C_urrent Page"
msgstr "_Trenutna stran"
-#: gtk/ui/gtkprintunixdialog.ui:225
+#: gtk/ui/gtkprintunixdialog.ui:233
msgid "Se_lection"
msgstr "_Izbira"
-#: gtk/ui/gtkprintunixdialog.ui:241
+#: gtk/ui/gtkprintunixdialog.ui:249
msgid "Pag_es:"
msgstr "_Strani:"
-#: gtk/ui/gtkprintunixdialog.ui:244 gtk/ui/gtkprintunixdialog.ui:262
-#: gtk/ui/gtkprintunixdialog.ui:268
+#: gtk/ui/gtkprintunixdialog.ui:252 gtk/ui/gtkprintunixdialog.ui:270
+#: gtk/ui/gtkprintunixdialog.ui:277
msgid ""
"Specify one or more page ranges,\n"
" e.g. 1–3, 7, 11"
@@ -5335,112 +7398,112 @@ msgstr ""
"Določite enega ali več obsegov strani,\n"
" npr. 1–3, 7, 11"
-#: gtk/ui/gtkprintunixdialog.ui:267
+#: gtk/ui/gtkprintunixdialog.ui:276
msgid "Pages"
msgstr "Strani"
-#: gtk/ui/gtkprintunixdialog.ui:299
+#: gtk/ui/gtkprintunixdialog.ui:311
msgid "Copies"
msgstr "Kopije"
-#: gtk/ui/gtkprintunixdialog.ui:319
+#: gtk/ui/gtkprintunixdialog.ui:334
msgid "Copie_s:"
msgstr "_Kopije:"
-#: gtk/ui/gtkprintunixdialog.ui:345
+#: gtk/ui/gtkprintunixdialog.ui:361
msgid "C_ollate"
msgstr "_Zloži"
-#: gtk/ui/gtkprintunixdialog.ui:359
+#: gtk/ui/gtkprintunixdialog.ui:375
msgid "_Reverse"
msgstr "_Obrnjeno"
-#: gtk/ui/gtkprintunixdialog.ui:430
+#: gtk/ui/gtkprintunixdialog.ui:452
msgid "Layout"
msgstr "Razporeditev"
-#: gtk/ui/gtkprintunixdialog.ui:450
+#: gtk/ui/gtkprintunixdialog.ui:475
msgid "T_wo-sided:"
msgstr "_Dvostransko:"
-#: gtk/ui/gtkprintunixdialog.ui:475
+#: gtk/ui/gtkprintunixdialog.ui:500
msgid "Pages per _side:"
msgstr "Strani na _stran:"
-#: gtk/ui/gtkprintunixdialog.ui:502
+#: gtk/ui/gtkprintunixdialog.ui:527
msgid "Page or_dering:"
msgstr "Vrstni _red strani:"
-#: gtk/ui/gtkprintunixdialog.ui:528
+#: gtk/ui/gtkprintunixdialog.ui:553
msgid "_Only print:"
msgstr "Natisni _samo:"
-#: gtk/ui/gtkprintunixdialog.ui:545
+#: gtk/ui/gtkprintunixdialog.ui:570
msgid "All sheets"
msgstr "Vse liste"
-#: gtk/ui/gtkprintunixdialog.ui:546
+#: gtk/ui/gtkprintunixdialog.ui:571
msgid "Even sheets"
msgstr "Sode liste"
-#: gtk/ui/gtkprintunixdialog.ui:547
+#: gtk/ui/gtkprintunixdialog.ui:572
msgid "Odd sheets"
msgstr "Lihe liste"
-#: gtk/ui/gtkprintunixdialog.ui:560
+#: gtk/ui/gtkprintunixdialog.ui:585
msgid "Sc_ale:"
msgstr "_Merilo:"
-#: gtk/ui/gtkprintunixdialog.ui:620
+#: gtk/ui/gtkprintunixdialog.ui:649
msgid "Paper"
msgstr "Papir"
-#: gtk/ui/gtkprintunixdialog.ui:640
+#: gtk/ui/gtkprintunixdialog.ui:672
msgid "Paper _type:"
msgstr "V_rsta papirja:"
-#: gtk/ui/gtkprintunixdialog.ui:665
+#: gtk/ui/gtkprintunixdialog.ui:697
msgid "Paper _source:"
msgstr "_Vir papirja:"
-#: gtk/ui/gtkprintunixdialog.ui:690
+#: gtk/ui/gtkprintunixdialog.ui:722
msgid "Output t_ray:"
msgstr "Izhodni p_ult:"
-#: gtk/ui/gtkprintunixdialog.ui:744
+#: gtk/ui/gtkprintunixdialog.ui:776
msgid "Or_ientation:"
msgstr "_Usmerjenost:"
-#: gtk/ui/gtkprintunixdialog.ui:834
+#: gtk/ui/gtkprintunixdialog.ui:876
msgid "Job Details"
msgstr "Podrobnosti posla"
-#: gtk/ui/gtkprintunixdialog.ui:854
+#: gtk/ui/gtkprintunixdialog.ui:899
msgid "Pri_ority:"
msgstr "_Prednost:"
-#: gtk/ui/gtkprintunixdialog.ui:878
+#: gtk/ui/gtkprintunixdialog.ui:923
msgid "_Billing info:"
msgstr "Podatki o _plačilu:"
-#: gtk/ui/gtkprintunixdialog.ui:921
+#: gtk/ui/gtkprintunixdialog.ui:967
msgid "Print Document"
msgstr "Natisni dokument"
#. this is one of the choices for the print at option in the print dialog
-#: gtk/ui/gtkprintunixdialog.ui:938
+#: gtk/ui/gtkprintunixdialog.ui:987
msgid "_Now"
msgstr "_Zdaj"
#. this is one of the choices for the print at option in the print dialog. It also serves as the label for an entry that allows the user to enter a time.
-#: gtk/ui/gtkprintunixdialog.ui:954
+#: gtk/ui/gtkprintunixdialog.ui:1003
msgid "A_t:"
msgstr "_Ob:"
#. Ability to parse the am/pm format depends on actual locale. You can remove the am/pm values below for your locale if they are not supported.
-#: gtk/ui/gtkprintunixdialog.ui:958 gtk/ui/gtkprintunixdialog.ui:960
-#: gtk/ui/gtkprintunixdialog.ui:979 gtk/ui/gtkprintunixdialog.ui:981
-#: gtk/ui/gtkprintunixdialog.ui:986
+#: gtk/ui/gtkprintunixdialog.ui:1007 gtk/ui/gtkprintunixdialog.ui:1009
+#: gtk/ui/gtkprintunixdialog.ui:1028 gtk/ui/gtkprintunixdialog.ui:1030
+#: gtk/ui/gtkprintunixdialog.ui:1037
msgid ""
"Specify the time of print,\n"
" e.g. 15∶30, 2∶35 pm, 14∶15∶20, 11∶46∶30 am, 4 pm"
@@ -5448,57 +7511,57 @@ msgstr ""
"Navedite časa tiskanja,\n"
" npr.: 15:30, 2:35 pm, 14:15:20, 11:46:30 am, 4 pm"
-#: gtk/ui/gtkprintunixdialog.ui:985
+#: gtk/ui/gtkprintunixdialog.ui:1036
msgid "Time of print"
msgstr "Čas tiskanja"
#. this is one of the choices for the print at option in the print dialog. It means that the print job will not be printed until it explicitly gets 'released'.
-#: gtk/ui/gtkprintunixdialog.ui:999
+#: gtk/ui/gtkprintunixdialog.ui:1050
msgid "On _hold"
msgstr "_Zadržano"
-#: gtk/ui/gtkprintunixdialog.ui:1003 gtk/ui/gtkprintunixdialog.ui:1004
+#: gtk/ui/gtkprintunixdialog.ui:1054 gtk/ui/gtkprintunixdialog.ui:1055
msgid "Hold the job until it is explicitly released"
msgstr "Zadrži posel, dokler ni izrecno sproščen"
-#: gtk/ui/gtkprintunixdialog.ui:1040
+#: gtk/ui/gtkprintunixdialog.ui:1092
msgid "Add Cover Page"
msgstr "Dodaj naslovno stran"
#. this is the label used for the option in the print dialog that controls the front cover page.
-#: gtk/ui/gtkprintunixdialog.ui:1060
+#: gtk/ui/gtkprintunixdialog.ui:1115
msgid "Be_fore:"
msgstr "P_red:"
#. this is the label used for the option in the print dialog that controls the back cover page.
-#: gtk/ui/gtkprintunixdialog.ui:1084
+#: gtk/ui/gtkprintunixdialog.ui:1139
msgid "_After:"
msgstr "_Po:"
-#: gtk/ui/gtkprintunixdialog.ui:1125
+#: gtk/ui/gtkprintunixdialog.ui:1181
msgid "Job"
msgstr "Posel"
#. This will appear as a tab label in the print dialog.
-#: gtk/ui/gtkprintunixdialog.ui:1159
+#: gtk/ui/gtkprintunixdialog.ui:1214
msgid "Image Quality"
msgstr "Kakovost slike"
#. This will appear as a tab label in the print dialog.
-#: gtk/ui/gtkprintunixdialog.ui:1192
+#: gtk/ui/gtkprintunixdialog.ui:1247
msgid "Color"
msgstr "Barva"
#. This will appear as a tab label in the print dialog. It's a typographical term, as in "Binding and finishing"
-#: gtk/ui/gtkprintunixdialog.ui:1225
+#: gtk/ui/gtkprintunixdialog.ui:1280
msgid "Finishing"
msgstr "Zaključevanje"
-#: gtk/ui/gtkprintunixdialog.ui:1258
+#: gtk/ui/gtkprintunixdialog.ui:1313
msgid "Advanced"
msgstr "Napredno"
-#: gtk/ui/gtkprintunixdialog.ui:1279
+#: gtk/ui/gtkprintunixdialog.ui:1337
msgid "Some of the settings in the dialog conflict"
msgstr "Nekatere nastavitve v pogovornem oknu so v sporu"
@@ -5506,132 +7569,140 @@ msgstr "Nekatere nastavitve v pogovornem oknu so v sporu"
msgid "Select which type of documents are shown"
msgstr "Izberite, katere vrste dokumentov so prikazane"
-#: gtk/ui/gtkvolumebutton.ui:23
+#: gtk/ui/gtkvolumebutton.ui:24
msgid "Volume"
msgstr "Glasnost"
-#: gtk/ui/gtkvolumebutton.ui:24
+#: gtk/ui/gtkvolumebutton.ui:25
msgid "Turns volume up or down"
msgstr "Poveča ali zmanjša glasnost"
-#: gtk/ui/gtkvolumebutton.ui:33
+#: gtk/ui/gtkvolumebutton.ui:34
msgid "Volume Up"
msgstr "Povečaj glasnost"
-#: gtk/ui/gtkvolumebutton.ui:34
+#: gtk/ui/gtkvolumebutton.ui:35
msgid "Increases the volume"
msgstr "Poveča glasnost"
-#: gtk/ui/gtkvolumebutton.ui:43
+#: gtk/ui/gtkvolumebutton.ui:44
msgid "Volume Down"
msgstr "Zmanjšaj glasnost"
-#: gtk/ui/gtkvolumebutton.ui:44
+#: gtk/ui/gtkvolumebutton.ui:45
msgid "Decreases the volume"
msgstr "Zmanjša glasnost"
-#: gtk/updateiconcache.c:1390
+#: gtk/updateiconcache.c:1388
#, c-format
msgid "Failed to write header\n"
msgstr "Zapisovanje glave ni bilo uspešno\n"
-#: gtk/updateiconcache.c:1396
+#: gtk/updateiconcache.c:1394
#, c-format
msgid "Failed to write hash table\n"
msgstr "Zapisovanje razpredelnice razpršila ni bilo uspešno\n"
-#: gtk/updateiconcache.c:1402
+#: gtk/updateiconcache.c:1400
#, c-format
msgid "Failed to write folder index\n"
msgstr "Zapisovanje kazala mape ni bilo uspešno\n"
-#: gtk/updateiconcache.c:1410
+#: gtk/updateiconcache.c:1408
#, c-format
msgid "Failed to rewrite header\n"
msgstr "Ponovno zapisovanje glave ni bilo uspešno\n"
-#: gtk/updateiconcache.c:1504
+#: gtk/updateiconcache.c:1502
#, c-format
msgid "Failed to open file %s : %s\n"
msgstr "Datoteke %s ni mogoče odpreti: %s\n"
-#: gtk/updateiconcache.c:1512 gtk/updateiconcache.c:1542
+#: gtk/updateiconcache.c:1510 gtk/updateiconcache.c:1540
#, c-format
msgid "Failed to write cache file: %s\n"
msgstr "Zapisovanje predpomnilniške datoteke ni bilo uspešno: %s\n"
-#: gtk/updateiconcache.c:1552
+#: gtk/updateiconcache.c:1550
#, c-format
msgid "The generated cache was invalid.\n"
msgstr "Ustvarjeni predpomnilnik je neveljaven.\n"
-#: gtk/updateiconcache.c:1566
+#: gtk/updateiconcache.c:1564
#, c-format
msgid "Could not rename %s to %s: %s, removing %s then.\n"
msgstr "%s ni mogoče preimenovati v %s: %s, odstranjevanje %s.\n"
-#: gtk/updateiconcache.c:1580
+#: gtk/updateiconcache.c:1578
#, c-format
msgid "Could not rename %s to %s: %s\n"
msgstr "%s ni mogoče preimenovati v %s: %s\n"
-#: gtk/updateiconcache.c:1590
+#: gtk/updateiconcache.c:1588
#, c-format
msgid "Could not rename %s back to %s: %s.\n"
msgstr "%s ni mogoče preimenovati nazaj v %s: %s\n"
-#: gtk/updateiconcache.c:1617
+#: gtk/updateiconcache.c:1615
#, c-format
msgid "Cache file created successfully.\n"
msgstr "Predpomnilniška datoteka je bila uspešno ustvarjena.\n"
-#: gtk/updateiconcache.c:1656
+#: gtk/updateiconcache.c:1654
msgid "Overwrite an existing cache, even if up to date"
msgstr "Prepiši obstoječi predpomnilnik, tudi če je posodobljen"
-#: gtk/updateiconcache.c:1657
-msgid "Don’t check for the existence of index.theme"
+#: gtk/updateiconcache.c:1655
+#, fuzzy
+#| msgid "Don’t check for the existence of index.theme"
+msgid "Don't check for the existence of index.theme"
msgstr "Ne preveri obstoja datoteke index.theme"
-#: gtk/updateiconcache.c:1658
-msgid "Don’t include image data in the cache"
+#: gtk/updateiconcache.c:1656
+#, fuzzy
+#| msgid "Don’t include image data in the cache"
+msgid "Don't include image data in the cache"
msgstr "Ne vključi slikovnih podatkov v predpomnilnik"
-#: gtk/updateiconcache.c:1659
+#: gtk/updateiconcache.c:1657
msgid "Include image data in the cache"
msgstr "Vključi slikovne podatke v predpomnilnik"
-#: gtk/updateiconcache.c:1660
+#: gtk/updateiconcache.c:1658
msgid "Output a C header file"
msgstr "Izpiši datoteko glave C"
-#: gtk/updateiconcache.c:1661
+#: gtk/updateiconcache.c:1659
msgid "Turn off verbose output"
msgstr "Izključi podrobni izpis"
-#: gtk/updateiconcache.c:1662
+#: gtk/updateiconcache.c:1660
msgid "Validate existing icon cache"
msgstr "Preveri veljavnost obstoječega predpomnilnika ikon"
-#: gtk/updateiconcache.c:1729
+#: gtk/updateiconcache.c:1727
#, c-format
msgid "File not found: %s\n"
msgstr "Datoteke ni mogoče najti: %s\n"
-#: gtk/updateiconcache.c:1735
+#: gtk/updateiconcache.c:1733
#, c-format
msgid "Not a valid icon cache: %s\n"
msgstr "Ni veljaven predpomnilnik ikon: %s\n"
-#: gtk/updateiconcache.c:1748
+#: gtk/updateiconcache.c:1746
#, c-format
msgid "No theme index file.\n"
msgstr "Ni datoteke kazala teme.\n"
-#: gtk/updateiconcache.c:1752
-#, c-format
+#: gtk/updateiconcache.c:1750
+#, fuzzy, c-format
+#| msgid ""
+#| "No theme index file in “%s”.\n"
+#| "If you really want to create an icon cache here, use --ignore-theme-"
+#| "index.\n"
msgid ""
-"No theme index file in “%s”.\n"
+"No theme index file in '%s'.\n"
"If you really want to create an icon cache here, use --ignore-theme-index.\n"
msgstr ""
"V »%s« ni nobene datoteke kazala teme.\n"
@@ -5715,6 +7786,18 @@ msgid "Vietnamese (VIQR)"
msgstr "vietnamski (VIQR)"
#. ID
+#: modules/input/imwayland.c:100
+msgctxt "input method menu"
+msgid "Wayland"
+msgstr "Wayland"
+
+#. ID
+#: modules/input/imwaylandgtk.c:82
+msgctxt "input method menu"
+msgid "Waylandgtk"
+msgstr "Waylandgtk"
+
+#. ID
#: modules/input/imxim.c:26
msgctxt "input method menu"
msgid "X Input Method"
@@ -5745,441 +7828,438 @@ msgstr "Nedejavno stanje"
msgid "Pages per _sheet:"
msgstr "Strani na _list:"
-#: modules/printbackends/cups/gtkprintbackendcups.c:1106
-#: modules/printbackends/cups/gtkprintbackendcups.c:1415
+#: modules/printbackends/cups/gtkprintbackendcups.c:1113
+#: modules/printbackends/cups/gtkprintbackendcups.c:1422
msgid "Username:"
msgstr "Uporabniško ime:"
-#: modules/printbackends/cups/gtkprintbackendcups.c:1107
-#: modules/printbackends/cups/gtkprintbackendcups.c:1424
+#: modules/printbackends/cups/gtkprintbackendcups.c:1114
+#: modules/printbackends/cups/gtkprintbackendcups.c:1431
msgid "Password:"
msgstr "Geslo:"
-#: modules/printbackends/cups/gtkprintbackendcups.c:1146
-#: modules/printbackends/cups/gtkprintbackendcups.c:1437
+#: modules/printbackends/cups/gtkprintbackendcups.c:1153
+#: modules/printbackends/cups/gtkprintbackendcups.c:1444
#, c-format
msgid "Authentication is required to print document “%s” on printer %s"
msgstr "Za tiskanje dokumenta »%s« na tiskalniku %s je zahtevana overitev"
-#: modules/printbackends/cups/gtkprintbackendcups.c:1148
+#: modules/printbackends/cups/gtkprintbackendcups.c:1155
#, c-format
msgid "Authentication is required to print a document on %s"
msgstr "Za tiskanje dokumenta na %s je zahtevana overitev"
-#: modules/printbackends/cups/gtkprintbackendcups.c:1152
+#: modules/printbackends/cups/gtkprintbackendcups.c:1159
#, c-format
msgid "Authentication is required to get attributes of job “%s”"
msgstr "Za pridobitev atributov posla »%s« je zahtevana overitev"
-#: modules/printbackends/cups/gtkprintbackendcups.c:1154
+#: modules/printbackends/cups/gtkprintbackendcups.c:1161
msgid "Authentication is required to get attributes of a job"
msgstr "Za pridobitev atributov posla je zahtevana overitev"
-#: modules/printbackends/cups/gtkprintbackendcups.c:1158
+#: modules/printbackends/cups/gtkprintbackendcups.c:1165
#, c-format
msgid "Authentication is required to get attributes of printer %s"
msgstr "Za pridobitev atributov tiskalnika %s je zahtevana overitev"
-#: modules/printbackends/cups/gtkprintbackendcups.c:1160
+#: modules/printbackends/cups/gtkprintbackendcups.c:1167
msgid "Authentication is required to get attributes of a printer"
msgstr "Za pridobitev atributov tiskalnika je zahtevana overitev"
-#: modules/printbackends/cups/gtkprintbackendcups.c:1163
+#: modules/printbackends/cups/gtkprintbackendcups.c:1170
#, c-format
msgid "Authentication is required to get default printer of %s"
msgstr "Za pridobitev privzetega tiskalnika %s je zahtevana overitev"
-#: modules/printbackends/cups/gtkprintbackendcups.c:1166
+#: modules/printbackends/cups/gtkprintbackendcups.c:1173
#, c-format
msgid "Authentication is required to get printers from %s"
msgstr "Za pridobitev tiskalnikov iz %s je zahtevana overitev"
-#: modules/printbackends/cups/gtkprintbackendcups.c:1171
+#: modules/printbackends/cups/gtkprintbackendcups.c:1178
#, c-format
msgid "Authentication is required to get a file from %s"
msgstr "Za pridobitev datoteke iz %s je zahtevana overitev"
-#: modules/printbackends/cups/gtkprintbackendcups.c:1173
+#: modules/printbackends/cups/gtkprintbackendcups.c:1180
#, c-format
msgid "Authentication is required on %s"
msgstr "Na %s je zahtevana overitev"
-#: modules/printbackends/cups/gtkprintbackendcups.c:1409
+#: modules/printbackends/cups/gtkprintbackendcups.c:1416
msgid "Domain:"
msgstr "Domena:"
-#: modules/printbackends/cups/gtkprintbackendcups.c:1439
+#: modules/printbackends/cups/gtkprintbackendcups.c:1446
#, c-format
msgid "Authentication is required to print document “%s”"
msgstr "Za tiskanje dokumenta »%s« je zahtevana overitev."
-#: modules/printbackends/cups/gtkprintbackendcups.c:1444
+#: modules/printbackends/cups/gtkprintbackendcups.c:1451
#, c-format
msgid "Authentication is required to print this document on printer %s"
msgstr "Za tiskanje tega dokumenta na tiskalniku %s je zahtevana overitev"
-#: modules/printbackends/cups/gtkprintbackendcups.c:1446
+#: modules/printbackends/cups/gtkprintbackendcups.c:1453
msgid "Authentication is required to print this document"
msgstr "Za tiskanje tega dokumenta je zahtevana overitev"
-#: modules/printbackends/cups/gtkprintbackendcups.c:2517
+#: modules/printbackends/cups/gtkprintbackendcups.c:2532
#, c-format
msgid "Printer “%s” is low on toner."
msgstr "V tiskalniku »%s« je skoraj prazen toner."
-#: modules/printbackends/cups/gtkprintbackendcups.c:2521
+#: modules/printbackends/cups/gtkprintbackendcups.c:2536
#, c-format
msgid "Printer “%s” has no toner left."
msgstr "V tiskalniku »%s« je prazen toner."
#. Translators: "Developer" like on photo development context
-#: modules/printbackends/cups/gtkprintbackendcups.c:2526
+#: modules/printbackends/cups/gtkprintbackendcups.c:2541
#, c-format
msgid "Printer “%s” is low on developer."
msgstr "V tiskalniku »%s« je skoraj zmanjkalo razvijalca."
#. Translators: "Developer" like on photo development context
-#: modules/printbackends/cups/gtkprintbackendcups.c:2531
+#: modules/printbackends/cups/gtkprintbackendcups.c:2546
#, c-format
msgid "Printer “%s” is out of developer."
msgstr "V tiskalniku »%s« je zmanjkalo razvijalca."
#. Translators: "marker" is one color bin of the printer
-#: modules/printbackends/cups/gtkprintbackendcups.c:2536
+#: modules/printbackends/cups/gtkprintbackendcups.c:2551
#, c-format
msgid "Printer “%s” is low on at least one marker supply."
msgstr "V tiskalniku »%s« je skoraj prazna vsaj ena kartuša."
#. Translators: "marker" is one color bin of the printer
-#: modules/printbackends/cups/gtkprintbackendcups.c:2541
+#: modules/printbackends/cups/gtkprintbackendcups.c:2556
#, c-format
msgid "Printer “%s” is out of at least one marker supply."
msgstr "V tiskalniku »%s« je prazna vsaj ena kartuša."
-#: modules/printbackends/cups/gtkprintbackendcups.c:2545
+#: modules/printbackends/cups/gtkprintbackendcups.c:2560
#, c-format
msgid "The cover is open on printer “%s”."
msgstr "Tiskalnik »%s« ima odprt pokrov."
-#: modules/printbackends/cups/gtkprintbackendcups.c:2549
+#: modules/printbackends/cups/gtkprintbackendcups.c:2564
#, c-format
msgid "The door is open on printer “%s”."
msgstr "Tiskalnik »%s« ima odprta vratca."
-#: modules/printbackends/cups/gtkprintbackendcups.c:2553
+#: modules/printbackends/cups/gtkprintbackendcups.c:2568
#, c-format
msgid "Printer “%s” is low on paper."
msgstr "V tiskalniku »%s« je skoraj zmanjkalo papirja."
-#: modules/printbackends/cups/gtkprintbackendcups.c:2557
+#: modules/printbackends/cups/gtkprintbackendcups.c:2572
#, c-format
msgid "Printer “%s” is out of paper."
msgstr "V tiskalniku »%s« je zmanjkalo papirja."
-#: modules/printbackends/cups/gtkprintbackendcups.c:2561
+#: modules/printbackends/cups/gtkprintbackendcups.c:2576
#, c-format
msgid "Printer “%s” is currently offline."
msgstr "Tiskalnik »%s« trenutno ni povezan."
-#: modules/printbackends/cups/gtkprintbackendcups.c:2565
+#: modules/printbackends/cups/gtkprintbackendcups.c:2580
#, c-format
msgid "There is a problem on printer “%s”."
msgstr "Prišlo je do težav na tiskalniku “%s“."
#. Translators: this is a printer status.
-#: modules/printbackends/cups/gtkprintbackendcups.c:2585
+#: modules/printbackends/cups/gtkprintbackendcups.c:2600
msgid "Paused; Rejecting Jobs"
msgstr "Premor ; zavračanje poslov"
#. Translators: this is a printer status.
-#: modules/printbackends/cups/gtkprintbackendcups.c:2591
+#: modules/printbackends/cups/gtkprintbackendcups.c:2606
msgid "Rejecting Jobs"
msgstr "Zavračanje poslov"
#. Translators: this string connects multiple printer states together.
-#: modules/printbackends/cups/gtkprintbackendcups.c:2632
+#: modules/printbackends/cups/gtkprintbackendcups.c:2647
msgid "; "
msgstr ";"
-#: modules/printbackends/cups/gtkprintbackendcups.c:4318
-#: modules/printbackends/cups/gtkprintbackendcups.c:4385
+#: modules/printbackends/cups/gtkprintbackendcups.c:4387
+#: modules/printbackends/cups/gtkprintbackendcups.c:4454
msgctxt "printing option"
msgid "Two Sided"
msgstr "Dvostransko"
-#: modules/printbackends/cups/gtkprintbackendcups.c:4319
+#: modules/printbackends/cups/gtkprintbackendcups.c:4388
msgctxt "printing option"
msgid "Paper Type"
msgstr "Vrsta papirja"
-#: modules/printbackends/cups/gtkprintbackendcups.c:4320
+#: modules/printbackends/cups/gtkprintbackendcups.c:4389
msgctxt "printing option"
msgid "Paper Source"
msgstr "Vir papirja"
-#: modules/printbackends/cups/gtkprintbackendcups.c:4321
-#: modules/printbackends/cups/gtkprintbackendcups.c:4386
+#: modules/printbackends/cups/gtkprintbackendcups.c:4390
+#: modules/printbackends/cups/gtkprintbackendcups.c:4455
msgctxt "printing option"
msgid "Output Tray"
msgstr "Pladenj za papir"
-#: modules/printbackends/cups/gtkprintbackendcups.c:4322
+#: modules/printbackends/cups/gtkprintbackendcups.c:4391
msgctxt "printing option"
msgid "Resolution"
msgstr "Ločljivost"
-#: modules/printbackends/cups/gtkprintbackendcups.c:4323
+#: modules/printbackends/cups/gtkprintbackendcups.c:4392
msgctxt "printing option"
msgid "GhostScript pre-filtering"
msgstr "Predhodno filtriranje GhostScript"
-#: modules/printbackends/cups/gtkprintbackendcups.c:4332
+#: modules/printbackends/cups/gtkprintbackendcups.c:4401
msgctxt "printing option value"
msgid "One Sided"
msgstr "Enostransko"
#. Translators: this is an option of "Two Sided"
-#: modules/printbackends/cups/gtkprintbackendcups.c:4334
+#: modules/printbackends/cups/gtkprintbackendcups.c:4403
msgctxt "printing option value"
msgid "Long Edge (Standard)"
msgstr "Dolga stranica (standardno)"
#. Translators: this is an option of "Two Sided"
-#: modules/printbackends/cups/gtkprintbackendcups.c:4336
+#: modules/printbackends/cups/gtkprintbackendcups.c:4405
msgctxt "printing option value"
msgid "Short Edge (Flip)"
msgstr "Kratka stranica (zrcaljeno)"
#. Translators: this is an option of "Paper Source"
-#: modules/printbackends/cups/gtkprintbackendcups.c:4338
-#: modules/printbackends/cups/gtkprintbackendcups.c:4340
-#: modules/printbackends/cups/gtkprintbackendcups.c:4348
+#: modules/printbackends/cups/gtkprintbackendcups.c:4407
+#: modules/printbackends/cups/gtkprintbackendcups.c:4409
+#: modules/printbackends/cups/gtkprintbackendcups.c:4417
msgctxt "printing option value"
msgid "Auto Select"
msgstr "Samodejno izberi"
#. Translators: this is an option of "Paper Source"
#. Translators: this is an option of "Resolution"
-#: modules/printbackends/cups/gtkprintbackendcups.c:4342
-#: modules/printbackends/cups/gtkprintbackendcups.c:4344
-#: modules/printbackends/cups/gtkprintbackendcups.c:4346
-#: modules/printbackends/cups/gtkprintbackendcups.c:4350
+#: modules/printbackends/cups/gtkprintbackendcups.c:4411
+#: modules/printbackends/cups/gtkprintbackendcups.c:4413
+#: modules/printbackends/cups/gtkprintbackendcups.c:4415
+#: modules/printbackends/cups/gtkprintbackendcups.c:4419
msgctxt "printing option value"
msgid "Printer Default"
msgstr "Privzeto za tiskalnik"
#. Translators: this is an option of "GhostScript"
-#: modules/printbackends/cups/gtkprintbackendcups.c:4352
+#: modules/printbackends/cups/gtkprintbackendcups.c:4421
msgctxt "printing option value"
msgid "Embed GhostScript fonts only"
msgstr "Vstavi samo pisave GhostScript"
#. Translators: this is an option of "GhostScript"
-#: modules/printbackends/cups/gtkprintbackendcups.c:4354
+#: modules/printbackends/cups/gtkprintbackendcups.c:4423
msgctxt "printing option value"
msgid "Convert to PS level 1"
msgstr "Pretvori v PS ravni 1"
#. Translators: this is an option of "GhostScript"
-#: modules/printbackends/cups/gtkprintbackendcups.c:4356
+#: modules/printbackends/cups/gtkprintbackendcups.c:4425
msgctxt "printing option value"
msgid "Convert to PS level 2"
msgstr "Pretvori v PS ravni 2"
#. Translators: this is an option of "GhostScript"
-#: modules/printbackends/cups/gtkprintbackendcups.c:4358
+#: modules/printbackends/cups/gtkprintbackendcups.c:4427
msgctxt "printing option value"
msgid "No pre-filtering"
msgstr "Brez predhodnega filtriranja"
#. Translators: "Miscellaneous" is the label for a button, that opens
#. up an extra panel of settings in a print dialog.
-#: modules/printbackends/cups/gtkprintbackendcups.c:4367
+#: modules/printbackends/cups/gtkprintbackendcups.c:4436
msgctxt "printing option group"
msgid "Miscellaneous"
msgstr "Razno"
-#: modules/printbackends/cups/gtkprintbackendcups.c:4394
+#: modules/printbackends/cups/gtkprintbackendcups.c:4463
msgctxt "sides"
msgid "One Sided"
msgstr "Enostransko"
#. Translators: this is an option of "Two Sided"
-#: modules/printbackends/cups/gtkprintbackendcups.c:4396
+#: modules/printbackends/cups/gtkprintbackendcups.c:4465
msgctxt "sides"
msgid "Long Edge (Standard)"
msgstr "Dolga stranica (standardno)"
#. Translators: this is an option of "Two Sided"
-#: modules/printbackends/cups/gtkprintbackendcups.c:4398
+#: modules/printbackends/cups/gtkprintbackendcups.c:4467
msgctxt "sides"
msgid "Short Edge (Flip)"
msgstr "Kratka stranica (zrcaljeno)"
#. Translators: Top output bin
-#: modules/printbackends/cups/gtkprintbackendcups.c:4401
+#: modules/printbackends/cups/gtkprintbackendcups.c:4470
msgctxt "output-bin"
msgid "Top Bin"
msgstr "Vsebnik na vrhu"
#. Translators: Middle output bin
-#: modules/printbackends/cups/gtkprintbackendcups.c:4403
+#: modules/printbackends/cups/gtkprintbackendcups.c:4472
msgctxt "output-bin"
msgid "Middle Bin"
msgstr "Vsebnik na sredini"
#. Translators: Bottom output bin
-#: modules/printbackends/cups/gtkprintbackendcups.c:4405
+#: modules/printbackends/cups/gtkprintbackendcups.c:4474
msgctxt "output-bin"
msgid "Bottom Bin"
msgstr "Vsebnik na dnu"
#. Translators: Side output bin
-#: modules/printbackends/cups/gtkprintbackendcups.c:4407
+#: modules/printbackends/cups/gtkprintbackendcups.c:4476
msgctxt "output-bin"
msgid "Side Bin"
msgstr "Vsebnik na robu"
#. Translators: Left output bin
-#: modules/printbackends/cups/gtkprintbackendcups.c:4409
+#: modules/printbackends/cups/gtkprintbackendcups.c:4478
msgctxt "output-bin"
msgid "Left Bin"
msgstr "Vsebnik na levi"
#. Translators: Right output bin
-#: modules/printbackends/cups/gtkprintbackendcups.c:4411
+#: modules/printbackends/cups/gtkprintbackendcups.c:4480
msgctxt "output-bin"
msgid "Right Bin"
msgstr "Vsebnik na desni"
#. Translators: Center output bin
-#: modules/printbackends/cups/gtkprintbackendcups.c:4413
+#: modules/printbackends/cups/gtkprintbackendcups.c:4482
msgctxt "output-bin"
msgid "Center Bin"
msgstr "Vsebnik na sredini"
#. Translators: Rear output bin
-#: modules/printbackends/cups/gtkprintbackendcups.c:4415
+#: modules/printbackends/cups/gtkprintbackendcups.c:4484
msgctxt "output-bin"
msgid "Rear Bin"
msgstr "Vsebnik zadaj"
#. Translators: Output bin where one sided output is oriented in the face-up position
-#: modules/printbackends/cups/gtkprintbackendcups.c:4417
+#: modules/printbackends/cups/gtkprintbackendcups.c:4486
msgctxt "output-bin"
msgid "Face Up Bin"
msgstr "Vsebnik obrnjen navzgor"
#. Translators: Output bin where one sided output is oriented in the face-down position
-#: modules/printbackends/cups/gtkprintbackendcups.c:4419
+#: modules/printbackends/cups/gtkprintbackendcups.c:4488
msgctxt "output-bin"
msgid "Face Down Bin"
msgstr "Vsebnik obrnjen navzdol"
#. Translators: Large capacity output bin
-#: modules/printbackends/cups/gtkprintbackendcups.c:4421
+#: modules/printbackends/cups/gtkprintbackendcups.c:4490
msgctxt "output-bin"
msgid "Large Capacity Bin"
msgstr "Obsežni zmogljivi vsebnik"
#. Translators: Output stacker number %d
-#: modules/printbackends/cups/gtkprintbackendcups.c:4443
+#: modules/printbackends/cups/gtkprintbackendcups.c:4512
#, c-format
msgctxt "output-bin"
msgid "Stacker %d"
msgstr "Skladalnik %d"
#. Translators: Output mailbox number %d
-#: modules/printbackends/cups/gtkprintbackendcups.c:4447
+#: modules/printbackends/cups/gtkprintbackendcups.c:4516
#, c-format
msgctxt "output-bin"
msgid "Mailbox %d"
msgstr "Poštni predal %d"
#. Translators: Private mailbox
-#: modules/printbackends/cups/gtkprintbackendcups.c:4451
+#: modules/printbackends/cups/gtkprintbackendcups.c:4520
msgctxt "output-bin"
msgid "My Mailbox"
msgstr "Poštni predal"
#. Translators: Output tray number %d
-#: modules/printbackends/cups/gtkprintbackendcups.c:4455
+#: modules/printbackends/cups/gtkprintbackendcups.c:4524
#, c-format
msgctxt "output-bin"
msgid "Tray %d"
msgstr "Pladenj %d"
-#: modules/printbackends/cups/gtkprintbackendcups.c:4926
+#: modules/printbackends/cups/gtkprintbackendcups.c:4995
msgid "Printer Default"
msgstr "Privzeto za tiskalnik"
#. Translators: These strings name the possible values of the
#. * job priority option in the print dialog
#.
-#: modules/printbackends/cups/gtkprintbackendcups.c:5367
+#: modules/printbackends/cups/gtkprintbackendcups.c:5436
msgid "Urgent"
msgstr "Nujno"
-#: modules/printbackends/cups/gtkprintbackendcups.c:5367
+#: modules/printbackends/cups/gtkprintbackendcups.c:5436
msgid "High"
msgstr "Visoka"
-#: modules/printbackends/cups/gtkprintbackendcups.c:5367
+#: modules/printbackends/cups/gtkprintbackendcups.c:5436
msgid "Medium"
msgstr "Srednja"
-#: modules/printbackends/cups/gtkprintbackendcups.c:5367
+#: modules/printbackends/cups/gtkprintbackendcups.c:5436
msgid "Low"
msgstr "Nizka"
#. Translators, this string is used to label the job priority option
#. * in the print dialog
#.
-#: modules/printbackends/cups/gtkprintbackendcups.c:5397
+#: modules/printbackends/cups/gtkprintbackendcups.c:5466
msgid "Job Priority"
msgstr "Prednost posla"
#. Translators, this string is used to label the billing info entry
#. * in the print dialog
#.
-#: modules/printbackends/cups/gtkprintbackendcups.c:5408
+#: modules/printbackends/cups/gtkprintbackendcups.c:5477
msgid "Billing Info"
msgstr "Podatki o plačilu"
-#. Translators, these strings are names for various 'standard' cover
-#. * pages that the printing system may support.
-#.
-#: modules/printbackends/cups/gtkprintbackendcups.c:5432
+#: modules/printbackends/cups/gtkprintbackendcups.c:5501
msgctxt "cover page"
msgid "None"
msgstr "Brez"
-#: modules/printbackends/cups/gtkprintbackendcups.c:5433
+#: modules/printbackends/cups/gtkprintbackendcups.c:5502
msgctxt "cover page"
msgid "Classified"
msgstr "Omejeno"
-#: modules/printbackends/cups/gtkprintbackendcups.c:5434
+#: modules/printbackends/cups/gtkprintbackendcups.c:5503
msgctxt "cover page"
msgid "Confidential"
msgstr "Varovano"
-#: modules/printbackends/cups/gtkprintbackendcups.c:5435
+#: modules/printbackends/cups/gtkprintbackendcups.c:5504
msgctxt "cover page"
msgid "Secret"
msgstr "Tajno"
-#: modules/printbackends/cups/gtkprintbackendcups.c:5436
+#: modules/printbackends/cups/gtkprintbackendcups.c:5505
msgctxt "cover page"
msgid "Standard"
msgstr "Zaupno"
-#: modules/printbackends/cups/gtkprintbackendcups.c:5437
+#: modules/printbackends/cups/gtkprintbackendcups.c:5506
msgctxt "cover page"
msgid "Top Secret"
msgstr "Strogo zaupno"
-#: modules/printbackends/cups/gtkprintbackendcups.c:5438
+#: modules/printbackends/cups/gtkprintbackendcups.c:5507
msgctxt "cover page"
msgid "Unclassified"
msgstr "Nerazvrščeno"
@@ -6187,7 +8267,7 @@ msgstr "Nerazvrščeno"
#. Translators, this string is used to label the pages-per-sheet option
#. * in the print dialog
#.
-#: modules/printbackends/cups/gtkprintbackendcups.c:5450
+#: modules/printbackends/cups/gtkprintbackendcups.c:5519
msgctxt "printer option"
msgid "Pages per Sheet"
msgstr "Število strani na stran"
@@ -6195,7 +8275,7 @@ msgstr "Število strani na stran"
#. Translators, this string is used to label the option in the print
#. * dialog that controls in what order multiple pages are arranged
#.
-#: modules/printbackends/cups/gtkprintbackendcups.c:5467
+#: modules/printbackends/cups/gtkprintbackendcups.c:5536
msgctxt "printer option"
msgid "Page Ordering"
msgstr "Vrstni red strani"
@@ -6203,7 +8283,7 @@ msgstr "Vrstni red strani"
#. Translators, this is the label used for the option in the print
#. * dialog that controls the front cover page.
#.
-#: modules/printbackends/cups/gtkprintbackendcups.c:5509
+#: modules/printbackends/cups/gtkprintbackendcups.c:5578
msgctxt "printer option"
msgid "Before"
msgstr "Pred"
@@ -6211,7 +8291,7 @@ msgstr "Pred"
#. Translators, this is the label used for the option in the print
#. * dialog that controls the back cover page.
#.
-#: modules/printbackends/cups/gtkprintbackendcups.c:5524
+#: modules/printbackends/cups/gtkprintbackendcups.c:5593
msgctxt "printer option"
msgid "After"
msgstr "Po"
@@ -6220,7 +8300,7 @@ msgstr "Po"
#. * a print job is printed. Possible values are 'now', a specified time,
#. * or 'on hold'
#.
-#: modules/printbackends/cups/gtkprintbackendcups.c:5544
+#: modules/printbackends/cups/gtkprintbackendcups.c:5613
msgctxt "printer option"
msgid "Print at"
msgstr "Natisni ob"
@@ -6228,7 +8308,7 @@ msgstr "Natisni ob"
#. Translators: this is the name of the option that allows the user
#. * to specify a time when a print job will be printed.
#.
-#: modules/printbackends/cups/gtkprintbackendcups.c:5555
+#: modules/printbackends/cups/gtkprintbackendcups.c:5624
msgctxt "printer option"
msgid "Print at time"
msgstr "Natisni ob času"
@@ -6238,36 +8318,35 @@ msgstr "Natisni ob času"
#. * the width and height in points. E.g: "Custom
#. * 230.4x142.9"
#.
-#: modules/printbackends/cups/gtkprintbackendcups.c:5597
+#: modules/printbackends/cups/gtkprintbackendcups.c:5666
#, c-format
msgid "Custom %s×%s"
msgstr "Po meri %s×%s"
-#. TRANSLATORS: this this the ICC color profile to use for this job
-#: modules/printbackends/cups/gtkprintbackendcups.c:5706
+#: modules/printbackends/cups/gtkprintbackendcups.c:5775
msgctxt "printer option"
msgid "Printer Profile"
msgstr "Profil tiskalnika"
#. TRANSLATORS: this is when color profile information is unavailable
-#: modules/printbackends/cups/gtkprintbackendcups.c:5713
+#: modules/printbackends/cups/gtkprintbackendcups.c:5782
msgctxt "printer option value"
msgid "Unavailable"
msgstr "Ni na voljo"
#. TRANSLATORS: when we're running an old CUPS, and
#. * it hasn't registered the device with colord
-#: modules/printbackends/cups/gtkprintercups.c:267
+#: modules/printbackends/cups/gtkprintercups.c:269
msgid "Color management unavailable"
msgstr "Upravljanje barv ni na voljo"
#. TRANSLATORS: when there is no color profile available
-#: modules/printbackends/cups/gtkprintercups.c:279
+#: modules/printbackends/cups/gtkprintercups.c:281
msgid "No profile available"
msgstr "Profil ni na voljo"
#. TRANSLATORS: when the color profile has no title
-#: modules/printbackends/cups/gtkprintercups.c:290
+#: modules/printbackends/cups/gtkprintercups.c:292
msgid "Unspecified profile"
msgstr "Nedoločeno ime profila"
@@ -6284,7 +8363,7 @@ msgid "PDF"
msgstr "PDF"
#: modules/printbackends/file/gtkprintbackendfile.c:663
-msgid "PostScript"
+msgid "Postscript"
msgstr "PostScript"
#: modules/printbackends/file/gtkprintbackendfile.c:663
@@ -6346,308 +8425,26 @@ msgstr "preizkusni-izhod.%s"
msgid "Print to Test Printer"
msgstr "Natisni na preizkusnem tiskalniku"
-#~ msgid "Error parsing option --gdk-debug"
-#~ msgstr "Napaka med razčlenjevanjem možnosti --gdk-debug"
-
-#~ msgid "Error parsing option --gdk-no-debug"
-#~ msgstr "Napaka med razčlenjevanjem možnosti --gdk-no-debug"
-
-#~ msgid "Program class as used by the window manager"
-#~ msgstr "Razred programa, kot ga uporablja upravljalnik oken"
-
-#~ msgid "CLASS"
-#~ msgstr "RAZRED"
-
-#~ msgid "Program name as used by the window manager"
-#~ msgstr "Ime programa, kot ga uporablja upravljalnik oken"
-
-#~ msgid "NAME"
-#~ msgstr "IME"
-
-#~ msgid "X display to use"
-#~ msgstr "Prikaz X, ki je uporabljen"
-
-#~ msgid "DISPLAY"
-#~ msgstr "PRIKAZ"
-
-#~ msgid "GDK debugging flags to set"
-#~ msgstr "Zastavice razhroščevanja GDK, ki naj bodo nastavljene"
-
-#~ msgid "FLAGS"
-#~ msgstr "ZASTAVICE"
-
-#~ msgid "GDK debugging flags to unset"
-#~ msgstr "Zastavice rahroščevanja GDK, ki naj ne bodo nastavljene"
-
-#~ msgid ""
-#~ "Select the color you want from the outer ring. Select the darkness or "
-#~ "lightness of that color using the inner triangle."
-#~ msgstr ""
-#~ "Iz zunanjega obroča izberite željeno barvo. Izberite temnost ali svetlost "
-#~ "te barve z uporabno notranjega trikotnika."
-
-#~ msgid ""
-#~ "Click the eyedropper, then click a color anywhere on your screen to "
-#~ "select that color."
-#~ msgstr "Kliknite na kapalko, nato kjerkoli na zaslon za izbiro tiste barve."
-
-#~ msgid "_Hue:"
-#~ msgstr "_Odtenek:"
+#~ msgid "Vulkan support disabled via GDK_DEBUG"
+#~ msgstr "Podpora Vulkan je onemogočena prek GDK_DEBUG"
-#~ msgid "Position on the color wheel."
-#~ msgstr "Položaj na barvnem krogu."
-
-#~ msgid "S_aturation:"
-#~ msgstr "_Nasičenost:"
-
-#~ msgid "Intensity of the color."
-#~ msgstr "Jakost barve."
-
-#~ msgid "_Value:"
-#~ msgstr "_Vrednost:"
-
-#~ msgid "Brightness of the color."
-#~ msgstr "Svetlost barve."
-
-#~ msgid "_Red:"
-#~ msgstr "_Rdeča:"
-
-#~ msgid "Amount of red light in the color."
-#~ msgstr "Količina rdeče luči v barvi."
-
-#~ msgid "_Green:"
-#~ msgstr "_Zelena:"
-
-#~ msgid "Amount of green light in the color."
-#~ msgstr "Količina zelene luči v barvi."
-
-#~ msgid "_Blue:"
-#~ msgstr "_Modra:"
-
-#~ msgid "Amount of blue light in the color."
-#~ msgstr "Količina modre luči v barvi."
-
-#~ msgid "Op_acity:"
-#~ msgstr "_Prosojnost:"
-
-#~ msgid "Transparency of the color."
-#~ msgstr "Prosojnost barve."
-
-#~ msgid "Color _name:"
-#~ msgstr "_Ime barve:"
-
-#~ msgid ""
-#~ "You can enter an HTML-style hexadecimal color value, or simply a color "
-#~ "name such as “orange” in this entry."
-#~ msgstr ""
-#~ "V tem vnosu lahko vpišete šestnajstiško vrednost barve (kot v HTML) ali "
-#~ "enostavno ime barve (na primer »orange«)."
-
-#~ msgid "_Palette:"
-#~ msgstr "_Paleta:"
-
-#~ msgid "Color Wheel"
-#~ msgstr "Barvni krog"
-
-#~ msgid ""
-#~ "The previously-selected color, for comparison to the color you’re "
-#~ "selecting now. You can drag this color to a palette entry, or select this "
-#~ "color as current by dragging it to the other color swatch alongside."
-#~ msgstr ""
-#~ "Predhodno izbrana barva za primerjavo s trenutno izbrano barvo. To barvo "
-#~ "lahko povlečete do vnosa v paleti ali jo izberete barvo kot trenutno z "
-#~ "vlečenjem na drug, vzporeden barvni vzorec."
-
-#~ msgid ""
-#~ "The color you’ve chosen. You can drag this color to a palette entry to "
-#~ "save it for use in the future."
-#~ msgstr ""
-#~ "Trenutno izbrana barva. To barvo lahko povlečete do vnosa v paleti za "
-#~ "kasnejšo uporabo."
-
-#~ msgid ""
-#~ "The previously-selected color, for comparison to the color you’re "
-#~ "selecting now."
-#~ msgstr "Predhodno izbrana barva za primerjavo s trenutno izbrano barvo."
-
-#~ msgid "The color you’ve chosen."
-#~ msgstr "Izbrana barva."
-
-#~ msgid "_Save color here"
-#~ msgstr "_Shrani barvo sem"
-
-#~ msgid ""
-#~ "Click this palette entry to make it the current color. To change this "
-#~ "entry, drag a color swatch here or right-click it and select “Save color "
-#~ "here.”"
-#~ msgstr ""
-#~ "Kliknite na ta vnos palete za izbor trenutne barva. Za spreminjanje tega "
-#~ "vnosa potegnite na to mesto drugo barvo ali kliknite z desnim gumbom "
-#~ "miške in izberite »Shrani barvo«."
-
-#~ msgid "_Help"
-#~ msgstr "Pomo_č"
-
-#~ msgid "Color Selection"
-#~ msgstr "Izbira barve"
-
-#~ msgid "abcdefghijk ABCDEFGHIJK"
-#~ msgstr "AaBbCcČčDdEeFfGgHhIiJjKkLlMmNnOoPpQqRrSsŠšTtUuVvZzŽž"
-
-#~ msgid "_Family:"
-#~ msgstr "_Družina:"
-
-#~ msgid "_Style:"
-#~ msgstr "_Slog:"
-
-#~ msgid "Si_ze:"
-#~ msgstr "_Velikost:"
-
-#~ msgid "_Preview:"
-#~ msgstr "_Predogled: "
-
-#~ msgid "Font Selection"
-#~ msgstr "Izbira pisave"
-
-#~ msgctxt "Number format"
-#~ msgid "%d"
-#~ msgstr "%d"
-
-#~ msgctxt "Stock label"
-#~ msgid "_Apply"
-#~ msgstr "_Uveljavi"
-
-#~ msgctxt "Stock label"
-#~ msgid "_Cancel"
-#~ msgstr "_Prekliči"
-
-#~ msgctxt "Stock label"
-#~ msgid "C_onnect"
-#~ msgstr "_Poveži"
-
-#~ msgctxt "Stock label"
-#~ msgid "_Convert"
-#~ msgstr "P_retvori"
-
-#~ msgctxt "Stock label"
-#~ msgid "_Discard"
-#~ msgstr "_Zavrzi"
-
-#~ msgctxt "Stock label"
-#~ msgid "_Disconnect"
-#~ msgstr "_Prekini povezavo"
-
-#~ msgctxt "Stock label"
-#~ msgid "_Edit"
-#~ msgstr "_Uredi"
-
-#~ msgctxt "Stock label"
-#~ msgid "_Index"
-#~ msgstr "_Kazalo"
-
-#~ msgctxt "Stock label"
-#~ msgid "_Information"
-#~ msgstr "_Podrobnosti"
-
-#~ msgctxt "Stock label"
-#~ msgid "_No"
-#~ msgstr "_Ne"
-
-#~ msgctxt "Stock label"
-#~ msgid "_OK"
-#~ msgstr "_V redu"
-
-#~ msgctxt "Stock label"
-#~ msgid "Landscape"
-#~ msgstr "Ležeče"
-
-#~ msgctxt "Stock label"
-#~ msgid "Portrait"
-#~ msgstr "Pokončno"
-
-#~ msgctxt "Stock label"
-#~ msgid "Reverse landscape"
-#~ msgstr "Obrnjeno ležeče"
-
-#~ msgctxt "Stock label"
-#~ msgid "Reverse portrait"
-#~ msgstr "Obrnjeno pokončno"
-
-#~ msgctxt "Stock label"
-#~ msgid "Page Set_up"
-#~ msgstr "Nastavitev _strani"
-
-#~ msgctxt "Stock label"
-#~ msgid "_Preferences"
-#~ msgstr "_Možnosti"
-
-#~ msgctxt "Stock label"
-#~ msgid "_Color"
-#~ msgstr "_Barva"
-
-#~ msgctxt "Stock label"
-#~ msgid "_Font"
-#~ msgstr "_Pisava"
-
-#~ msgctxt "Stock label"
-#~ msgid "_Undelete"
-#~ msgstr "Pov_rni izbrisano"
-
-#~ msgctxt "Stock label"
-#~ msgid "_Yes"
-#~ msgstr "_Da"
-
-#~ msgid "Unexpected start tag '%s' on line %d char %d"
-#~ msgstr "Nepričakovana začetna oznaka »%s« v vrstici %d, znak %d"
-
-#~ msgid "Unexpected character data on line %d char %d"
-#~ msgstr "Nepričakovani znakovni podatki v vrstici %d, znak %d"
-
-#~ msgid "Empty"
-#~ msgstr "Prazno"
-
-#~ msgctxt "input method menu"
-#~ msgid "System (%s)"
-#~ msgstr "Sistem (%s)"
-
-#~ msgid "Load additional GTK+ modules"
-#~ msgstr "Naloži dodatne module GTK+"
-
-#~ msgid "MODULES"
-#~ msgstr "MODULI"
-
-#~ msgid "Make all warnings fatal"
-#~ msgstr "Izpiši vsa opozorila kot usodna"
-
-#~ msgid "GTK+ debugging flags to set"
-#~ msgstr "Zastavice razhroščevanja GTK+, ki naj bodo nastavljene"
-
-#~ msgid "GTK+ debugging flags to unset"
-#~ msgstr "Zastavice razhroščevanja GTK+, ki naj ne bodo nastavljene"
-
-#~ msgid "Cannot open display: %s"
-#~ msgstr "Prikaza ni mogoče odpreti: %s"
-
-#~ msgid "GTK+ Options"
-#~ msgstr "Možnosti GTK+"
-
-#~ msgid "Show GTK+ Options"
-#~ msgstr "Pokaži možnosti GTK+"
+#~ msgid "Open “%s”"
+#~ msgstr "Odpri »%s«"
-#~ msgid "Connect to Server"
-#~ msgstr "Poveži s strežnikom"
+#~ msgid "Swipe left"
+#~ msgstr "Poteg v levo"
-#~ msgid "Connect to a network server address"
-#~ msgstr "Poveži z naslovom omrežnega strežnika"
+#~ msgid "Swipe right"
+#~ msgstr "Poteg v desno"
-#~ msgid "Open '%s'"
-#~ msgstr "Odpri »%s«"
+#~ msgid "Saving RenderNode failed"
+#~ msgstr "Shranjevanje izrisovanja vozlišča je spodletelo"
-#~ msgid "Ignore hidden"
-#~ msgstr "Prezri skrito"
+#~ msgid "Snapshot Debug Nodes"
+#~ msgstr "Vozlišča razhroščevanja Snapshot"
-#~ msgid "Show Pixel Cache"
-#~ msgstr "Pokaži predpomnilnik točk"
+#~ msgid "Recorder"
+#~ msgstr "Snemalnik"
#~ msgid ""
#~ "The WGL_ARB_create_context extension needed to create core profiles is "