Index: x11-toolkits/gtk30/Makefile =================================================================== --- x11-toolkits/gtk30/Makefile (revision 369297) +++ x11-toolkits/gtk30/Makefile (working copy) @@ -31,9 +31,9 @@ USE_PERL5= build USE_LDCONFIG= yes GNU_CONFIGURE= yes -USE_GNOME= atk gdkpixbuf2 gtk-update-icon-cache \ - introspection:build pango -USES+= gettext gmake libtool pathfix perl5 pkgconfig +USE_GNOME= atk pango gdkpixbuf2 gtk-update-icon-cache \ + introspection:build +USES+= gmake pathfix perl5 pkgconfig libtool USE_XORG= xext xrender x11 xinerama xi xrandr xcursor xfixes xdamage \ xcomposite CONFIGURE_ARGS= --enable-gtk2-dependency --disable-packagekit @@ -49,9 +49,10 @@ org.gtk.Settings.ColorChooser.gschema.xml \ org.gtk.Settings.FileChooser.gschema.xml -OPTIONS_DEFINE= CUPS COLORD DEBUG +OPTIONS_DEFINE= CUPS COLORD DEBUG NLS SHIFT_INSERT_FIX OPTIONS_DEFAULT=CUPS COLORD COLORD_DESC= Color profile support +SHIFT_INSERT_FIX_DESC= Use Shift-Insert to paste primary selection .include @@ -75,6 +76,21 @@ CONFIGURE_ARGS+=--disable-colord .endif +NLS_USES= gettext +NLS_CONFIGURE_ENABLE= nls +.if ${PORT_OPTIONS:MNLS} +PLIST_SUB+= NLS="" +.else +PLIST_SUB+= NLS="@comment " +.endif + +.if ${PORT_OPTIONS:MSHIFT_INSERT_FIX} +EXTRA_PATCHES= ${FILESDIR}/extra-patch-gtk_gtkentry.c \ + ${FILESDIR}/extra-patch-gtk_gtkentry.h \ + ${FILESDIR}/extra-patch-gtk_gtktextview.c \ + ${FILESDIR}/extra-patch-gtk_gtktextview.h +.endif + post-patch: @${FIND} ${WRKSRC} -name "Makefile.in" | ${XARGS} ${GREP} -l lgmodule | \ ${XARGS} ${REINPLACE_CMD} -e 's|-lgmodule|@GMODULE_LIBS@|g' Index: x11-toolkits/gtk30/files/extra-patch-gtk_gtkentry.c =================================================================== --- x11-toolkits/gtk30/files/extra-patch-gtk_gtkentry.c (revision 0) +++ x11-toolkits/gtk30/files/extra-patch-gtk_gtkentry.c (working copy) @@ -0,0 +1,69 @@ +--- gtk/gtkentry.c.orig 2013-11-27 07:22:37.000000000 +0600 ++++ gtk/gtkentry.c 2014-03-17 22:59:06.000000000 +0600 +@@ -265,6 +265,7 @@ + CUT_CLIPBOARD, + COPY_CLIPBOARD, + PASTE_CLIPBOARD, ++ PASTE_SELECTION, + TOGGLE_OVERWRITE, + ICON_PRESS, + ICON_RELEASE, +@@ -491,6 +492,7 @@ + static void gtk_entry_cut_clipboard (GtkEntry *entry); + static void gtk_entry_copy_clipboard (GtkEntry *entry); + static void gtk_entry_paste_clipboard (GtkEntry *entry); ++static void gtk_entry_paste_selection (GtkEntry *entry); + static void gtk_entry_toggle_overwrite (GtkEntry *entry); + static void gtk_entry_select_all (GtkEntry *entry); + static void gtk_entry_real_activate (GtkEntry *entry); +@@ -720,6 +722,7 @@ + class->cut_clipboard = gtk_entry_cut_clipboard; + class->copy_clipboard = gtk_entry_copy_clipboard; + class->paste_clipboard = gtk_entry_paste_clipboard; ++ class->paste_selection = gtk_entry_paste_selection; + class->toggle_overwrite = gtk_entry_toggle_overwrite; + class->activate = gtk_entry_real_activate; + class->get_text_area_size = gtk_entry_get_text_area_size; +@@ -1721,6 +1724,15 @@ + _gtk_marshal_VOID__VOID, + G_TYPE_NONE, 0); + ++ signals[PASTE_SELECTION] = ++ g_signal_new (I_("paste-selection"), ++ G_OBJECT_CLASS_TYPE (gobject_class), ++ G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION, ++ G_STRUCT_OFFSET (GtkEntryClass, paste_selection), ++ NULL, NULL, ++ _gtk_marshal_VOID__VOID, ++ G_TYPE_NONE, 0); ++ + /** + * GtkEntry::toggle-overwrite: + * @entry: the object which received the signal +@@ -1953,7 +1965,7 @@ + gtk_binding_entry_add_signal (binding_set, GDK_KEY_Insert, GDK_CONTROL_MASK, + "copy-clipboard", 0); + gtk_binding_entry_add_signal (binding_set, GDK_KEY_Insert, GDK_SHIFT_MASK, +- "paste-clipboard", 0); ++ "paste-selection", 0); + + /* Overwrite */ + gtk_binding_entry_add_signal (binding_set, GDK_KEY_Insert, 0, +@@ -5573,6 +5585,17 @@ + } + + static void ++gtk_entry_paste_selection (GtkEntry *entry) ++{ ++ GtkEntryPrivate *priv = entry->priv; ++ ++ if (priv->editable) ++ gtk_entry_paste (entry, GDK_SELECTION_PRIMARY); ++ else ++ gtk_widget_error_bell (GTK_WIDGET (entry)); ++} ++ ++static void + gtk_entry_delete_cb (GtkEntry *entry) + { + GtkEntryPrivate *priv = entry->priv; Property changes on: x11-toolkits/gtk30/files/extra-patch-gtk_gtkentry.c ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Index: x11-toolkits/gtk30/files/extra-patch-gtk_gtkentry.h =================================================================== --- x11-toolkits/gtk30/files/extra-patch-gtk_gtkentry.h (revision 0) +++ x11-toolkits/gtk30/files/extra-patch-gtk_gtkentry.h (working copy) @@ -0,0 +1,10 @@ +--- gtk/gtkentry.h.orig 2013-11-27 07:22:37.000000000 +0600 ++++ gtk/gtkentry.h 2014-03-17 23:18:23.000000000 +0600 +@@ -103,6 +103,7 @@ + void (* cut_clipboard) (GtkEntry *entry); + void (* copy_clipboard) (GtkEntry *entry); + void (* paste_clipboard) (GtkEntry *entry); ++ void (* paste_selection) (GtkEntry *entry); + void (* toggle_overwrite) (GtkEntry *entry); + + /* hooks to add other objects beside the entry (like in GtkSpinButton) */ Property changes on: x11-toolkits/gtk30/files/extra-patch-gtk_gtkentry.h ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Index: x11-toolkits/gtk30/files/extra-patch-gtk_gtktextview.c =================================================================== --- x11-toolkits/gtk30/files/extra-patch-gtk_gtktextview.c (revision 0) +++ x11-toolkits/gtk30/files/extra-patch-gtk_gtktextview.c (working copy) @@ -0,0 +1,70 @@ +--- gtk/gtktextview.c.orig 2013-11-27 07:22:37.000000000 +0600 ++++ gtk/gtktextview.c 2014-03-17 23:01:25.000000000 +0600 +@@ -263,6 +263,7 @@ + CUT_CLIPBOARD, + COPY_CLIPBOARD, + PASTE_CLIPBOARD, ++ PASTE_SELECTION, + TOGGLE_OVERWRITE, + MOVE_VIEWPORT, + SELECT_ALL, +@@ -414,6 +415,7 @@ + static void gtk_text_view_cut_clipboard (GtkTextView *text_view); + static void gtk_text_view_copy_clipboard (GtkTextView *text_view); + static void gtk_text_view_paste_clipboard (GtkTextView *text_view); ++static void gtk_text_view_paste_selection (GtkTextView *text_view); + static void gtk_text_view_toggle_overwrite (GtkTextView *text_view); + static void gtk_text_view_toggle_cursor_visible (GtkTextView *text_view); + +@@ -675,6 +677,7 @@ + klass->cut_clipboard = gtk_text_view_cut_clipboard; + klass->copy_clipboard = gtk_text_view_copy_clipboard; + klass->paste_clipboard = gtk_text_view_paste_clipboard; ++ klass->paste_selection = gtk_text_view_paste_selection; + klass->toggle_overwrite = gtk_text_view_toggle_overwrite; + + /* +@@ -1120,6 +1123,15 @@ + _gtk_marshal_VOID__VOID, + G_TYPE_NONE, 0); + ++ signals[PASTE_SELECTION] = ++ g_signal_new (I_("paste-selection"), ++ G_OBJECT_CLASS_TYPE (gobject_class), ++ G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION, ++ G_STRUCT_OFFSET (GtkTextViewClass, paste_selection), ++ NULL, NULL, ++ _gtk_marshal_VOID__VOID, ++ G_TYPE_NONE, 0); ++ + /** + * GtkTextView::toggle-overwrite: + * @text_view: the object which received the signal +@@ -1417,7 +1429,7 @@ + gtk_binding_entry_add_signal (binding_set, GDK_KEY_Insert, GDK_CONTROL_MASK, + "copy-clipboard", 0); + gtk_binding_entry_add_signal (binding_set, GDK_KEY_Insert, GDK_SHIFT_MASK, +- "paste-clipboard", 0); ++ "paste-selection", 0); + + /* Overwrite */ + gtk_binding_entry_add_signal (binding_set, GDK_KEY_Insert, 0, +@@ -6424,6 +6436,18 @@ + } + + static void ++gtk_text_view_paste_selection (GtkTextView *text_view) ++{ ++ GtkClipboard *clipboard = gtk_widget_get_clipboard (GTK_WIDGET (text_view), ++ GDK_SELECTION_PRIMARY); ++ ++ gtk_text_buffer_paste_clipboard (get_buffer (text_view), ++ clipboard, ++ NULL, ++ text_view->priv->editable); ++} ++ ++static void + gtk_text_view_paste_done_handler (GtkTextBuffer *buffer, + GtkClipboard *clipboard, + gpointer data) Property changes on: x11-toolkits/gtk30/files/extra-patch-gtk_gtktextview.c ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Index: x11-toolkits/gtk30/files/extra-patch-gtk_gtktextview.h =================================================================== --- x11-toolkits/gtk30/files/extra-patch-gtk_gtktextview.h (revision 0) +++ x11-toolkits/gtk30/files/extra-patch-gtk_gtktextview.h (working copy) @@ -0,0 +1,10 @@ +--- gtk/gtktextview.h.orig 2013-11-27 07:22:37.000000000 +0600 ++++ gtk/gtktextview.h 2014-03-17 23:18:39.000000000 +0600 +@@ -103,6 +103,7 @@ + void (* cut_clipboard) (GtkTextView *text_view); + void (* copy_clipboard) (GtkTextView *text_view); + void (* paste_clipboard) (GtkTextView *text_view); ++ void (* paste_selection) (GtkTextView *text_view); + /* overwrite */ + void (* toggle_overwrite) (GtkTextView *text_view); + Property changes on: x11-toolkits/gtk30/files/extra-patch-gtk_gtktextview.h ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Index: x11-toolkits/gtk30/pkg-plist =================================================================== --- x11-toolkits/gtk30/pkg-plist (revision 369297) +++ x11-toolkits/gtk30/pkg-plist (working copy) @@ -372,232 +372,232 @@ share/gir-1.0/GdkX11-3.0.gir share/gir-1.0/Gtk-3.0.gir share/gtk-3.0/gtkbuilder.rng -share/locale/af/LC_MESSAGES/gtk30-properties.mo -share/locale/af/LC_MESSAGES/gtk30.mo -share/locale/am/LC_MESSAGES/gtk30-properties.mo -share/locale/am/LC_MESSAGES/gtk30.mo -share/locale/an/LC_MESSAGES/gtk30-properties.mo -share/locale/an/LC_MESSAGES/gtk30.mo -share/locale/ang/LC_MESSAGES/gtk30-properties.mo -share/locale/ang/LC_MESSAGES/gtk30.mo -share/locale/ar/LC_MESSAGES/gtk30-properties.mo -share/locale/ar/LC_MESSAGES/gtk30.mo -share/locale/as/LC_MESSAGES/gtk30-properties.mo -share/locale/as/LC_MESSAGES/gtk30.mo -share/locale/ast/LC_MESSAGES/gtk30-properties.mo -share/locale/ast/LC_MESSAGES/gtk30.mo -share/locale/az/LC_MESSAGES/gtk30-properties.mo -share/locale/az/LC_MESSAGES/gtk30.mo -share/locale/az_IR/LC_MESSAGES/gtk30-properties.mo -share/locale/az_IR/LC_MESSAGES/gtk30.mo -share/locale/be/LC_MESSAGES/gtk30-properties.mo -share/locale/be/LC_MESSAGES/gtk30.mo -share/locale/be@latin/LC_MESSAGES/gtk30-properties.mo -share/locale/be@latin/LC_MESSAGES/gtk30.mo -share/locale/bg/LC_MESSAGES/gtk30-properties.mo -share/locale/bg/LC_MESSAGES/gtk30.mo -share/locale/bn/LC_MESSAGES/gtk30-properties.mo -share/locale/bn/LC_MESSAGES/gtk30.mo -share/locale/bn_IN/LC_MESSAGES/gtk30-properties.mo -share/locale/bn_IN/LC_MESSAGES/gtk30.mo -share/locale/br/LC_MESSAGES/gtk30-properties.mo -share/locale/br/LC_MESSAGES/gtk30.mo -share/locale/bs/LC_MESSAGES/gtk30-properties.mo -share/locale/bs/LC_MESSAGES/gtk30.mo -share/locale/ca/LC_MESSAGES/gtk30-properties.mo -share/locale/ca/LC_MESSAGES/gtk30.mo -share/locale/ca@valencia/LC_MESSAGES/gtk30-properties.mo -share/locale/ca@valencia/LC_MESSAGES/gtk30.mo -share/locale/crh/LC_MESSAGES/gtk30-properties.mo -share/locale/crh/LC_MESSAGES/gtk30.mo -share/locale/cs/LC_MESSAGES/gtk30-properties.mo -share/locale/cs/LC_MESSAGES/gtk30.mo -share/locale/cy/LC_MESSAGES/gtk30-properties.mo -share/locale/cy/LC_MESSAGES/gtk30.mo -share/locale/da/LC_MESSAGES/gtk30-properties.mo -share/locale/da/LC_MESSAGES/gtk30.mo -share/locale/de/LC_MESSAGES/gtk30-properties.mo -share/locale/de/LC_MESSAGES/gtk30.mo -share/locale/dz/LC_MESSAGES/gtk30-properties.mo -share/locale/dz/LC_MESSAGES/gtk30.mo -share/locale/el/LC_MESSAGES/gtk30-properties.mo -share/locale/el/LC_MESSAGES/gtk30.mo -share/locale/en/LC_MESSAGES/gtk30-properties.mo -share/locale/en/LC_MESSAGES/gtk30.mo -share/locale/en@shaw/LC_MESSAGES/gtk30-properties.mo -share/locale/en@shaw/LC_MESSAGES/gtk30.mo -share/locale/en_CA/LC_MESSAGES/gtk30-properties.mo -share/locale/en_CA/LC_MESSAGES/gtk30.mo -share/locale/en_GB/LC_MESSAGES/gtk30-properties.mo -share/locale/en_GB/LC_MESSAGES/gtk30.mo -share/locale/eo/LC_MESSAGES/gtk30-properties.mo -share/locale/eo/LC_MESSAGES/gtk30.mo -share/locale/es/LC_MESSAGES/gtk30-properties.mo -share/locale/es/LC_MESSAGES/gtk30.mo -share/locale/et/LC_MESSAGES/gtk30-properties.mo -share/locale/et/LC_MESSAGES/gtk30.mo -share/locale/eu/LC_MESSAGES/gtk30-properties.mo -share/locale/eu/LC_MESSAGES/gtk30.mo -share/locale/fa/LC_MESSAGES/gtk30-properties.mo -share/locale/fa/LC_MESSAGES/gtk30.mo -share/locale/fi/LC_MESSAGES/gtk30-properties.mo -share/locale/fi/LC_MESSAGES/gtk30.mo -share/locale/fr/LC_MESSAGES/gtk30-properties.mo -share/locale/fr/LC_MESSAGES/gtk30.mo -share/locale/ga/LC_MESSAGES/gtk30-properties.mo -share/locale/ga/LC_MESSAGES/gtk30.mo -share/locale/gd/LC_MESSAGES/gtk30-properties.mo -share/locale/gd/LC_MESSAGES/gtk30.mo -share/locale/gl/LC_MESSAGES/gtk30-properties.mo -share/locale/gl/LC_MESSAGES/gtk30.mo -share/locale/gu/LC_MESSAGES/gtk30-properties.mo -share/locale/gu/LC_MESSAGES/gtk30.mo -share/locale/he/LC_MESSAGES/gtk30-properties.mo -share/locale/he/LC_MESSAGES/gtk30.mo -share/locale/hi/LC_MESSAGES/gtk30-properties.mo -share/locale/hi/LC_MESSAGES/gtk30.mo -share/locale/hr/LC_MESSAGES/gtk30-properties.mo -share/locale/hr/LC_MESSAGES/gtk30.mo -share/locale/hu/LC_MESSAGES/gtk30-properties.mo -share/locale/hu/LC_MESSAGES/gtk30.mo -share/locale/hy/LC_MESSAGES/gtk30-properties.mo -share/locale/hy/LC_MESSAGES/gtk30.mo -share/locale/ia/LC_MESSAGES/gtk30-properties.mo -share/locale/ia/LC_MESSAGES/gtk30.mo -share/locale/id/LC_MESSAGES/gtk30-properties.mo -share/locale/id/LC_MESSAGES/gtk30.mo -share/locale/io/LC_MESSAGES/gtk30-properties.mo -share/locale/io/LC_MESSAGES/gtk30.mo -share/locale/is/LC_MESSAGES/gtk30-properties.mo -share/locale/is/LC_MESSAGES/gtk30.mo -share/locale/it/LC_MESSAGES/gtk30-properties.mo -share/locale/it/LC_MESSAGES/gtk30.mo -share/locale/ja/LC_MESSAGES/gtk30-properties.mo -share/locale/ja/LC_MESSAGES/gtk30.mo -share/locale/ka/LC_MESSAGES/gtk30-properties.mo -share/locale/ka/LC_MESSAGES/gtk30.mo -share/locale/kg/LC_MESSAGES/gtk30-properties.mo -share/locale/kg/LC_MESSAGES/gtk30.mo -share/locale/kk/LC_MESSAGES/gtk30-properties.mo -share/locale/kk/LC_MESSAGES/gtk30.mo -share/locale/km/LC_MESSAGES/gtk30-properties.mo -share/locale/km/LC_MESSAGES/gtk30.mo -share/locale/kn/LC_MESSAGES/gtk30-properties.mo -share/locale/kn/LC_MESSAGES/gtk30.mo -share/locale/ko/LC_MESSAGES/gtk30-properties.mo -share/locale/ko/LC_MESSAGES/gtk30.mo -share/locale/ku/LC_MESSAGES/gtk30-properties.mo -share/locale/ku/LC_MESSAGES/gtk30.mo -share/locale/ky/LC_MESSAGES/gtk30-properties.mo -share/locale/ky/LC_MESSAGES/gtk30.mo -share/locale/lg/LC_MESSAGES/gtk30-properties.mo -share/locale/lg/LC_MESSAGES/gtk30.mo -share/locale/li/LC_MESSAGES/gtk30-properties.mo -share/locale/li/LC_MESSAGES/gtk30.mo -share/locale/lt/LC_MESSAGES/gtk30-properties.mo -share/locale/lt/LC_MESSAGES/gtk30.mo -share/locale/lv/LC_MESSAGES/gtk30-properties.mo -share/locale/lv/LC_MESSAGES/gtk30.mo -share/locale/mai/LC_MESSAGES/gtk30-properties.mo -share/locale/mai/LC_MESSAGES/gtk30.mo -share/locale/mi/LC_MESSAGES/gtk30-properties.mo -share/locale/mi/LC_MESSAGES/gtk30.mo -share/locale/mk/LC_MESSAGES/gtk30-properties.mo -share/locale/mk/LC_MESSAGES/gtk30.mo -share/locale/ml/LC_MESSAGES/gtk30-properties.mo -share/locale/ml/LC_MESSAGES/gtk30.mo -share/locale/mn/LC_MESSAGES/gtk30-properties.mo -share/locale/mn/LC_MESSAGES/gtk30.mo -share/locale/mr/LC_MESSAGES/gtk30-properties.mo -share/locale/mr/LC_MESSAGES/gtk30.mo -share/locale/ms/LC_MESSAGES/gtk30-properties.mo -share/locale/ms/LC_MESSAGES/gtk30.mo -share/locale/my/LC_MESSAGES/gtk30-properties.mo -share/locale/my/LC_MESSAGES/gtk30.mo -share/locale/nb/LC_MESSAGES/gtk30-properties.mo -share/locale/nb/LC_MESSAGES/gtk30.mo -share/locale/nds/LC_MESSAGES/gtk30-properties.mo -share/locale/nds/LC_MESSAGES/gtk30.mo -share/locale/ne/LC_MESSAGES/gtk30-properties.mo -share/locale/ne/LC_MESSAGES/gtk30.mo -share/locale/nl/LC_MESSAGES/gtk30-properties.mo -share/locale/nl/LC_MESSAGES/gtk30.mo -share/locale/nn/LC_MESSAGES/gtk30-properties.mo -share/locale/nn/LC_MESSAGES/gtk30.mo -share/locale/nso/LC_MESSAGES/gtk30-properties.mo -share/locale/nso/LC_MESSAGES/gtk30.mo -share/locale/oc/LC_MESSAGES/gtk30-properties.mo -share/locale/oc/LC_MESSAGES/gtk30.mo -share/locale/or/LC_MESSAGES/gtk30-properties.mo -share/locale/or/LC_MESSAGES/gtk30.mo -share/locale/pa/LC_MESSAGES/gtk30-properties.mo -share/locale/pa/LC_MESSAGES/gtk30.mo -share/locale/pl/LC_MESSAGES/gtk30-properties.mo -share/locale/pl/LC_MESSAGES/gtk30.mo -share/locale/ps/LC_MESSAGES/gtk30-properties.mo -share/locale/ps/LC_MESSAGES/gtk30.mo -share/locale/pt/LC_MESSAGES/gtk30-properties.mo -share/locale/pt/LC_MESSAGES/gtk30.mo -share/locale/pt_BR/LC_MESSAGES/gtk30-properties.mo -share/locale/pt_BR/LC_MESSAGES/gtk30.mo -share/locale/ro/LC_MESSAGES/gtk30-properties.mo -share/locale/ro/LC_MESSAGES/gtk30.mo -share/locale/ru/LC_MESSAGES/gtk30-properties.mo -share/locale/ru/LC_MESSAGES/gtk30.mo -share/locale/rw/LC_MESSAGES/gtk30-properties.mo -share/locale/rw/LC_MESSAGES/gtk30.mo -share/locale/si/LC_MESSAGES/gtk30-properties.mo -share/locale/si/LC_MESSAGES/gtk30.mo -share/locale/sk/LC_MESSAGES/gtk30-properties.mo -share/locale/sk/LC_MESSAGES/gtk30.mo -share/locale/sl/LC_MESSAGES/gtk30-properties.mo -share/locale/sl/LC_MESSAGES/gtk30.mo -share/locale/sq/LC_MESSAGES/gtk30-properties.mo -share/locale/sq/LC_MESSAGES/gtk30.mo -share/locale/sr/LC_MESSAGES/gtk30-properties.mo -share/locale/sr/LC_MESSAGES/gtk30.mo -share/locale/sr@ije/LC_MESSAGES/gtk30-properties.mo -share/locale/sr@ije/LC_MESSAGES/gtk30.mo -share/locale/sr@latin/LC_MESSAGES/gtk30-properties.mo -share/locale/sr@latin/LC_MESSAGES/gtk30.mo -share/locale/sv/LC_MESSAGES/gtk30-properties.mo -share/locale/sv/LC_MESSAGES/gtk30.mo -share/locale/ta/LC_MESSAGES/gtk30-properties.mo -share/locale/ta/LC_MESSAGES/gtk30.mo -share/locale/te/LC_MESSAGES/gtk30-properties.mo -share/locale/te/LC_MESSAGES/gtk30.mo -share/locale/th/LC_MESSAGES/gtk30-properties.mo -share/locale/th/LC_MESSAGES/gtk30.mo -share/locale/tk/LC_MESSAGES/gtk30-properties.mo -share/locale/tk/LC_MESSAGES/gtk30.mo -share/locale/tr/LC_MESSAGES/gtk30-properties.mo -share/locale/tr/LC_MESSAGES/gtk30.mo -share/locale/tt/LC_MESSAGES/gtk30-properties.mo -share/locale/tt/LC_MESSAGES/gtk30.mo -share/locale/ug/LC_MESSAGES/gtk30-properties.mo -share/locale/ug/LC_MESSAGES/gtk30.mo -share/locale/uk/LC_MESSAGES/gtk30-properties.mo -share/locale/uk/LC_MESSAGES/gtk30.mo -share/locale/ur/LC_MESSAGES/gtk30-properties.mo -share/locale/ur/LC_MESSAGES/gtk30.mo -share/locale/uz/LC_MESSAGES/gtk30-properties.mo -share/locale/uz/LC_MESSAGES/gtk30.mo -share/locale/uz@cyrillic/LC_MESSAGES/gtk30-properties.mo -share/locale/uz@cyrillic/LC_MESSAGES/gtk30.mo -share/locale/vi/LC_MESSAGES/gtk30-properties.mo -share/locale/vi/LC_MESSAGES/gtk30.mo -share/locale/wa/LC_MESSAGES/gtk30-properties.mo -share/locale/wa/LC_MESSAGES/gtk30.mo -share/locale/xh/LC_MESSAGES/gtk30-properties.mo -share/locale/xh/LC_MESSAGES/gtk30.mo -share/locale/yi/LC_MESSAGES/gtk30-properties.mo -share/locale/yi/LC_MESSAGES/gtk30.mo -share/locale/zh_CN/LC_MESSAGES/gtk30-properties.mo -share/locale/zh_CN/LC_MESSAGES/gtk30.mo -share/locale/zh_HK/LC_MESSAGES/gtk30-properties.mo -share/locale/zh_HK/LC_MESSAGES/gtk30.mo -share/locale/zh_TW/LC_MESSAGES/gtk30-properties.mo -share/locale/zh_TW/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/af/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/af/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/am/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/am/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/an/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/an/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/ang/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/ang/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/ar/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/ar/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/as/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/as/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/ast/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/ast/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/az/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/az/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/az_IR/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/az_IR/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/be/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/be/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/be@latin/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/be@latin/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/bg/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/bg/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/bn/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/bn/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/bn_IN/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/bn_IN/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/br/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/br/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/bs/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/bs/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/ca/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/ca/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/ca@valencia/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/ca@valencia/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/crh/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/crh/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/cs/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/cs/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/cy/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/cy/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/da/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/da/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/de/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/de/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/dz/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/dz/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/el/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/el/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/en/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/en/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/en@shaw/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/en@shaw/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/en_CA/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/en_CA/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/en_GB/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/en_GB/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/eo/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/eo/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/es/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/es/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/et/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/et/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/eu/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/eu/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/fa/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/fa/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/fi/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/fi/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/fr/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/fr/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/ga/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/ga/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/gd/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/gd/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/gl/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/gl/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/gu/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/gu/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/he/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/he/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/hi/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/hi/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/hr/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/hr/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/hu/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/hu/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/hy/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/hy/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/ia/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/ia/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/id/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/id/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/io/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/io/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/is/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/is/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/it/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/it/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/ja/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/ja/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/ka/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/ka/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/kg/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/kg/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/kk/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/kk/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/km/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/km/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/kn/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/kn/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/ko/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/ko/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/ku/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/ku/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/ky/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/ky/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/lg/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/lg/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/li/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/li/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/lt/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/lt/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/lv/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/lv/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/mai/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/mai/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/mi/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/mi/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/mk/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/mk/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/ml/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/ml/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/mn/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/mn/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/mr/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/mr/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/ms/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/ms/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/my/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/my/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/nb/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/nb/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/nds/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/nds/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/ne/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/ne/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/nl/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/nl/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/nn/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/nn/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/nso/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/nso/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/oc/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/oc/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/or/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/or/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/pa/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/pa/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/pl/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/pl/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/ps/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/ps/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/pt/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/pt/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/pt_BR/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/pt_BR/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/ro/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/ro/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/ru/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/ru/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/rw/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/rw/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/si/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/si/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/sk/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/sk/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/sl/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/sl/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/sq/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/sq/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/sr/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/sr/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/sr@ije/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/sr@ije/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/sr@latin/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/sr@latin/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/sv/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/sv/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/ta/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/ta/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/te/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/te/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/th/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/th/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/tk/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/tk/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/tr/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/tr/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/tt/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/tt/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/ug/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/ug/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/uk/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/uk/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/ur/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/ur/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/uz/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/uz/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/uz@cyrillic/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/uz@cyrillic/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/vi/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/vi/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/wa/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/wa/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/xh/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/xh/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/yi/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/yi/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/zh_HK/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/zh_HK/LC_MESSAGES/gtk30.mo +%%NLS%%share/locale/zh_TW/LC_MESSAGES/gtk30-properties.mo +%%NLS%%share/locale/zh_TW/LC_MESSAGES/gtk30.mo share/themes/Default/gtk-3.0/gtk-keys.css share/themes/Emacs/gtk-3.0/gtk-keys.css @exec /usr/bin/find %%LOCALBASE%%/share/icons -type d -depth 1 -exec %D/bin/gtk-update-icon-cache -q -f {} \; 2>/dev/null || /usr/bin/true @@ -607,88 +607,88 @@ @dirrm share/themes/Default/gtk-3.0 @dirrmtry share/themes/Default @dirrmtry share/themes -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/yi/LC_MESSAGES -@dirrmtry share/locale/yi -@dirrmtry share/locale/xh/LC_MESSAGES -@dirrmtry share/locale/xh -@dirrmtry share/locale/uz@cyrillic/LC_MESSAGES -@dirrmtry share/locale/uz@cyrillic -@dirrmtry share/locale/ur/LC_MESSAGES -@dirrmtry share/locale/ur -@dirrmtry share/locale/ug/LC_MESSAGES -@dirrmtry share/locale/ug -@dirrmtry share/locale/tt/LC_MESSAGES -@dirrmtry share/locale/tt -@dirrmtry share/locale/te/LC_MESSAGES -@dirrmtry share/locale/te -@dirrmtry share/locale/sr@latin/LC_MESSAGES -@dirrmtry share/locale/sr@latin -@dirrmtry share/locale/sr@ije/LC_MESSAGES -@dirrmtry share/locale/sr@ije -@dirrmtry share/locale/si/LC_MESSAGES -@dirrmtry share/locale/si -@dirrmtry share/locale/rw/LC_MESSAGES -@dirrmtry share/locale/rw -@dirrmtry share/locale/ps/LC_MESSAGES -@dirrmtry share/locale/ps -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/nso/LC_MESSAGES -@dirrmtry share/locale/nso -@dirrmtry share/locale/nds/LC_MESSAGES -@dirrmtry share/locale/nds -@dirrmtry share/locale/my/LC_MESSAGES -@dirrmtry share/locale/my -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/mi/LC_MESSAGES -@dirrmtry share/locale/mi -@dirrmtry share/locale/mai/LC_MESSAGES -@dirrmtry share/locale/mai -@dirrmtry share/locale/lg/LC_MESSAGES -@dirrmtry share/locale/lg -@dirrmtry share/locale/ky/LC_MESSAGES -@dirrmtry share/locale/ky -@dirrmtry share/locale/ku/LC_MESSAGES -@dirrmtry share/locale/ku -@dirrmtry share/locale/km/LC_MESSAGES -@dirrmtry share/locale/km -@dirrmtry share/locale/kk/LC_MESSAGES -@dirrmtry share/locale/kk -@dirrmtry share/locale/kg/LC_MESSAGES -@dirrmtry share/locale/kg -@dirrmtry share/locale/io/LC_MESSAGES -@dirrmtry share/locale/io -@dirrmtry share/locale/ia/LC_MESSAGES -@dirrmtry share/locale/ia -@dirrmtry share/locale/hy/LC_MESSAGES -@dirrmtry share/locale/hy -@dirrmtry share/locale/gd/LC_MESSAGES -@dirrmtry share/locale/gd -@dirrmtry share/locale/en@shaw/LC_MESSAGES -@dirrmtry share/locale/en@shaw -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/crh/LC_MESSAGES -@dirrmtry share/locale/crh -@dirrmtry share/locale/ca@valencia/LC_MESSAGES -@dirrmtry share/locale/ca@valencia -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN -@dirrmtry share/locale/be@latin/LC_MESSAGES -@dirrmtry share/locale/be@latin -@dirrmtry share/locale/az_IR/LC_MESSAGES -@dirrmtry share/locale/az_IR -@dirrmtry share/locale/ast/LC_MESSAGES -@dirrmtry share/locale/ast -@dirrmtry share/locale/as/LC_MESSAGES -@dirrmtry share/locale/as -@dirrmtry share/locale/ang/LC_MESSAGES -@dirrmtry share/locale/ang -@dirrmtry share/locale/an/LC_MESSAGES -@dirrmtry share/locale/an +%%NLS%%@dirrmtry share/locale/zh_HK/LC_MESSAGES +%%NLS%%@dirrmtry share/locale/zh_HK +%%NLS%%@dirrmtry share/locale/yi/LC_MESSAGES +%%NLS%%@dirrmtry share/locale/yi +%%NLS%%@dirrmtry share/locale/xh/LC_MESSAGES +%%NLS%%@dirrmtry share/locale/xh +%%NLS%%@dirrmtry share/locale/uz@cyrillic/LC_MESSAGES +%%NLS%%@dirrmtry share/locale/uz@cyrillic +%%NLS%%@dirrmtry share/locale/ur/LC_MESSAGES +%%NLS%%@dirrmtry share/locale/ur +%%NLS%%@dirrmtry share/locale/ug/LC_MESSAGES +%%NLS%%@dirrmtry share/locale/ug +%%NLS%%@dirrmtry share/locale/tt/LC_MESSAGES +%%NLS%%@dirrmtry share/locale/tt +%%NLS%%@dirrmtry share/locale/te/LC_MESSAGES +%%NLS%%@dirrmtry share/locale/te +%%NLS%%@dirrmtry share/locale/sr@latin/LC_MESSAGES +%%NLS%%@dirrmtry share/locale/sr@latin +%%NLS%%@dirrmtry share/locale/sr@ije/LC_MESSAGES +%%NLS%%@dirrmtry share/locale/sr@ije +%%NLS%%@dirrmtry share/locale/si/LC_MESSAGES +%%NLS%%@dirrmtry share/locale/si +%%NLS%%@dirrmtry share/locale/rw/LC_MESSAGES +%%NLS%%@dirrmtry share/locale/rw +%%NLS%%@dirrmtry share/locale/ps/LC_MESSAGES +%%NLS%%@dirrmtry share/locale/ps +%%NLS%%@dirrmtry share/locale/oc/LC_MESSAGES +%%NLS%%@dirrmtry share/locale/oc +%%NLS%%@dirrmtry share/locale/nso/LC_MESSAGES +%%NLS%%@dirrmtry share/locale/nso +%%NLS%%@dirrmtry share/locale/nds/LC_MESSAGES +%%NLS%%@dirrmtry share/locale/nds +%%NLS%%@dirrmtry share/locale/my/LC_MESSAGES +%%NLS%%@dirrmtry share/locale/my +%%NLS%%@dirrmtry share/locale/mr/LC_MESSAGES +%%NLS%%@dirrmtry share/locale/mr +%%NLS%%@dirrmtry share/locale/mi/LC_MESSAGES +%%NLS%%@dirrmtry share/locale/mi +%%NLS%%@dirrmtry share/locale/mai/LC_MESSAGES +%%NLS%%@dirrmtry share/locale/mai +%%NLS%%@dirrmtry share/locale/lg/LC_MESSAGES +%%NLS%%@dirrmtry share/locale/lg +%%NLS%%@dirrmtry share/locale/ky/LC_MESSAGES +%%NLS%%@dirrmtry share/locale/ky +%%NLS%%@dirrmtry share/locale/ku/LC_MESSAGES +%%NLS%%@dirrmtry share/locale/ku +%%NLS%%@dirrmtry share/locale/km/LC_MESSAGES +%%NLS%%@dirrmtry share/locale/km +%%NLS%%@dirrmtry share/locale/kk/LC_MESSAGES +%%NLS%%@dirrmtry share/locale/kk +%%NLS%%@dirrmtry share/locale/kg/LC_MESSAGES +%%NLS%%@dirrmtry share/locale/kg +%%NLS%%@dirrmtry share/locale/io/LC_MESSAGES +%%NLS%%@dirrmtry share/locale/io +%%NLS%%@dirrmtry share/locale/ia/LC_MESSAGES +%%NLS%%@dirrmtry share/locale/ia +%%NLS%%@dirrmtry share/locale/hy/LC_MESSAGES +%%NLS%%@dirrmtry share/locale/hy +%%NLS%%@dirrmtry share/locale/gd/LC_MESSAGES +%%NLS%%@dirrmtry share/locale/gd +%%NLS%%@dirrmtry share/locale/en@shaw/LC_MESSAGES +%%NLS%%@dirrmtry share/locale/en@shaw +%%NLS%%@dirrmtry share/locale/dz/LC_MESSAGES +%%NLS%%@dirrmtry share/locale/dz +%%NLS%%@dirrmtry share/locale/crh/LC_MESSAGES +%%NLS%%@dirrmtry share/locale/crh +%%NLS%%@dirrmtry share/locale/ca@valencia/LC_MESSAGES +%%NLS%%@dirrmtry share/locale/ca@valencia +%%NLS%%@dirrmtry share/locale/bn_IN/LC_MESSAGES +%%NLS%%@dirrmtry share/locale/bn_IN +%%NLS%%@dirrmtry share/locale/be@latin/LC_MESSAGES +%%NLS%%@dirrmtry share/locale/be@latin +%%NLS%%@dirrmtry share/locale/az_IR/LC_MESSAGES +%%NLS%%@dirrmtry share/locale/az_IR +%%NLS%%@dirrmtry share/locale/ast/LC_MESSAGES +%%NLS%%@dirrmtry share/locale/ast +%%NLS%%@dirrmtry share/locale/as/LC_MESSAGES +%%NLS%%@dirrmtry share/locale/as +%%NLS%%@dirrmtry share/locale/ang/LC_MESSAGES +%%NLS%%@dirrmtry share/locale/ang +%%NLS%%@dirrmtry share/locale/an/LC_MESSAGES +%%NLS%%@dirrmtry share/locale/an @dirrm share/gtk-3.0 @exec %D/bin/gtk-query-immodules-3.0 --update-cache > /dev/null 2>&1 || /usr/bin/true @rmtry lib/gtk-3.0/%%GTK3_VERSION%%/immodules.cache