diff options
Diffstat (limited to 'drivemount')
140 files changed, 4231 insertions, 2514 deletions
diff --git a/drivemount/Makefile.am b/drivemount/Makefile.am index a33779bd..04c1df64 100644 --- a/drivemount/Makefile.am +++ b/drivemount/Makefile.am @@ -1,60 +1,3 @@ -SUBDIRS = help - -AM_CPPFLAGS = \ - -I. \ - -I$(srcdir) \ - -DDRIVEMOUNT_MENU_UI_DIR=\""$(uidir)"\" \ - ${WARN_CFLAGS} \ - $(MATE_APPLETS4_CFLAGS) - -libexec_PROGRAMS = mate-drivemount-applet - -mate_drivemount_applet_SOURCES = \ - drivemount.c \ - drive-list.c \ - drive-list.h \ - drive-button.c \ - drive-button.h - -mate_drivemount_applet_LDADD = \ - $(MATE_APPLETS4_LIBS) - -uidir = $(datadir)/mate/ui -ui_DATA = drivemount-applet-menu.xml - -drivemount_gschema_in_files = org.mate.drivemount.gschema.xml.in -gsettings_SCHEMAS = $(drivemount_gschema_in_files:.xml.in=.xml) -@GSETTINGS_RULES@ - -EXTRA_DIST = \ - $(applet_in_files).in \ - $(service_in_files) \ - $(drivemount_gschema_in_files) \ - $(ui_DATA) - - -appletdir = $(datadir)/mate-panel/applets -applet_in_files = org.mate.applets.DriveMountApplet.mate-panel-applet.desktop.in -applet_DATA = $(applet_in_files:.mate-panel-applet.desktop.in=.mate-panel-applet) - -$(applet_in_files): $(applet_in_files).in Makefile - $(AM_V_GEN)sed \ - -e "s|\@LIBEXECDIR\@|$(libexecdir)|" \ - -e "s|\@VERSION\@|$(PACKAGE_VERSION)|" \ - $< > $@ - -$(applet_DATA): $(applet_in_files) Makefile - $(AM_V_GEN) $(MSGFMT) --desktop --keyword=Name --keyword=Description --template $< -d $(top_srcdir)/po -o $@ - -servicedir = $(datadir)/dbus-1/services -service_in_files = org.mate.panel.applet.DriveMountAppletFactory.service.in -service_DATA = $(service_in_files:.service.in=.service) - -org.mate.panel.applet.DriveMountAppletFactory.service: $(service_in_files) - $(AM_V_GEN)sed \ - -e "s|\@LIBEXECDIR\@|$(libexecdir)|" \ - $< > $@ - -CLEANFILES = $(applet_DATA) $(applet_in_files) $(service_DATA) $(gsettings_SCHEMAS) *.gschema.valid +SUBDIRS = help data src -include $(top_srcdir)/git.mk diff --git a/drivemount/data/Makefile.am b/drivemount/data/Makefile.am new file mode 100644 index 00000000..5c7205a7 --- /dev/null +++ b/drivemount/data/Makefile.am @@ -0,0 +1,55 @@ +NULL = + +applet_in_files = org.mate.applets.DriveMountApplet.mate-panel-applet.desktop.in +service_in_files = org.mate.panel.applet.DriveMountAppletFactory.service.in +gschema_in_files = org.mate.drivemount.gschema.xml.in + +if ENABLE_IN_PROCESS +APPLET_LOCATION = $(pkglibdir)/libmate-drivemount-applet.so +else !ENABLE_IN_PROCESS +APPLET_LOCATION = $(libexecdir)/mate-drivemount-applet +endif !ENABLE_IN_PROCESS + +gsettings_SCHEMAS = $(gschema_in_files:.xml.in=.xml) +@GSETTINGS_RULES@ + +appletdir = $(datadir)/mate-panel/applets +applet_DATA = $(applet_in_files:.mate-panel-applet.desktop.in=.mate-panel-applet) + +$(applet_in_files): $(applet_in_files).in Makefile + $(AM_V_GEN)sed \ + -e "s|\@APPLET_LOCATION\@|$(APPLET_LOCATION)|" \ + -e "s|\@APPLET_IN_PROCESS\@|$(APPLET_IN_PROCESS)|" \ + -e "s|\@VERSION\@|$(PACKAGE_VERSION)|" \ + $< > $@ + +$(applet_DATA): $(applet_in_files) Makefile + $(AM_V_GEN) $(MSGFMT) --desktop --keyword=Name --keyword=Description --template $< -d $(top_srcdir)/po -o $@ + +if !ENABLE_IN_PROCESS +servicedir = $(datadir)/dbus-1/services +service_DATA = $(service_in_files:.service.in=.service) + +$(service_DATA): $(service_in_files) Makefile + $(AM_V_GEN)sed \ + -e "s|\@APPLET_LOCATION\@|$(APPLET_LOCATION)|" \ + $< > $@ +endif !ENABLE_IN_PROCESS + +CLEANFILES = \ + $(applet_DATA) \ + $(applet_in_files) \ + $(service_DATA) \ + $(gsettings_SCHEMAS) \ + *.gschema.valid \ + $(NULL) + +EXTRA_DIST = \ + $(applet_in_files:=.in) \ + $(gschema_in_files) \ + $(service_in_files) \ + drivemount-applet-menu.xml \ + drivemount-resources.gresource.xml \ + $(NULL) + +-include $(top_srcdir)/git.mk diff --git a/drivemount/drivemount-applet-menu.xml b/drivemount/data/drivemount-applet-menu.xml index efc26591..efc26591 100644 --- a/drivemount/drivemount-applet-menu.xml +++ b/drivemount/data/drivemount-applet-menu.xml diff --git a/drivemount/data/drivemount-resources.gresource.xml b/drivemount/data/drivemount-resources.gresource.xml new file mode 100644 index 00000000..3a8c57a8 --- /dev/null +++ b/drivemount/data/drivemount-resources.gresource.xml @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="UTF-8"?> +<gresources> + <gresource prefix="/org/mate/mate-applets/drivemount"> + <file compressed="true">drivemount-applet-menu.xml</file> + </gresource> +</gresources> diff --git a/drivemount/org.mate.applets.DriveMountApplet.mate-panel-applet.desktop.in.in b/drivemount/data/org.mate.applets.DriveMountApplet.mate-panel-applet.desktop.in.in index 637628d2..01e12296 100644 --- a/drivemount/org.mate.applets.DriveMountApplet.mate-panel-applet.desktop.in.in +++ b/drivemount/data/org.mate.applets.DriveMountApplet.mate-panel-applet.desktop.in.in @@ -1,6 +1,7 @@ [Applet Factory] Id=DriveMountAppletFactory -Location=@LIBEXECDIR@/mate-drivemount-applet +Location=@APPLET_LOCATION@ +InProcess=@APPLET_IN_PROCESS@ Name=Drive Mount Applet Factory Description=Factory for drive mount applet @@ -10,6 +11,7 @@ Description=Mount local disks and devices # Translators: Do NOT translate or transliterate this text (this is an icon file name)! Icon=media-floppy MateComponentId=OAFIID:MATE_DriveMountApplet +Platforms=X11;Wayland; X-MATE-Bugzilla-Bugzilla=MATE X-MATE-Bugzilla-Product=mate-applets X-MATE-Bugzilla-Component=Disk Mounter (drivemount) diff --git a/drivemount/org.mate.drivemount.gschema.xml.in b/drivemount/data/org.mate.drivemount.gschema.xml.in index 24ffe871..24ffe871 100644 --- a/drivemount/org.mate.drivemount.gschema.xml.in +++ b/drivemount/data/org.mate.drivemount.gschema.xml.in diff --git a/drivemount/org.mate.panel.applet.DriveMountAppletFactory.service.in b/drivemount/data/org.mate.panel.applet.DriveMountAppletFactory.service.in index 90d44b42..8034ae4d 100644 --- a/drivemount/org.mate.panel.applet.DriveMountAppletFactory.service.in +++ b/drivemount/data/org.mate.panel.applet.DriveMountAppletFactory.service.in @@ -1,3 +1,3 @@ [D-BUS Service] Name=org.mate.panel.applet.DriveMountAppletFactory -Exec=@LIBEXECDIR@/mate-drivemount-applet +Exec=@APPLET_LOCATION@ diff --git a/drivemount/drive-button.c b/drivemount/drive-button.c deleted file mode 100644 index 59d8c86d..00000000 --- a/drivemount/drive-button.c +++ /dev/null @@ -1,960 +0,0 @@ -/* -*- mode: C; c-basic-offset: 4 -*- - * Drive Mount Applet - * Copyright (c) 2004 Canonical Ltd - * Copyright 2008 Pierre Ossman - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - * - * Author: - * James Henstridge <[email protected]> - */ - -#ifdef HAVE_CONFIG_H -#include <config.h> -#endif - -#include <gio/gio.h> -#include "drive-button.h" -#include <glib/gi18n.h> -#include <gdk/gdkkeysyms.h> -#include <gio/gdesktopappinfo.h> - -#include <string.h> - -enum { - CMD_NONE, - CMD_MOUNT_OR_PLAY, - CMD_UNMOUNT, - CMD_EJECT -}; - -/* type registration boilerplate code */ -G_DEFINE_TYPE(DriveButton, drive_button, GTK_TYPE_BUTTON) - -static void drive_button_set_volume (DriveButton *self, - GVolume *volume); -static void drive_button_set_mount (DriveButton *self, - GMount *mount); -static void drive_button_reset_popup (DriveButton *self); -static void drive_button_ensure_popup (DriveButton *self); - -static void drive_button_dispose (GObject *object); -#if 0 -static void drive_button_unrealize (GtkWidget *widget); -#endif /* 0 */ -static gboolean drive_button_button_press (GtkWidget *widget, - GdkEventButton *event); -static gboolean drive_button_key_press (GtkWidget *widget, - GdkEventKey *event); -static void drive_button_theme_change (GtkIconTheme *icon_theme, - gpointer data); - -static void -drive_button_class_init (DriveButtonClass *class) -{ - G_OBJECT_CLASS(class)->dispose = drive_button_dispose; - GTK_WIDGET_CLASS(class)->button_press_event = drive_button_button_press; - GTK_WIDGET_CLASS(class)->key_press_event = drive_button_key_press; - - GtkCssProvider *provider; - - provider = gtk_css_provider_new (); - - gtk_css_provider_load_from_data (provider, - "#drive-button {\n" - " border-width: 0px;\n" - " padding: 0px;\n" - " margin: 0px;\n" - "}", - -1, NULL); - - gtk_style_context_add_provider_for_screen (gdk_screen_get_default(), - GTK_STYLE_PROVIDER (provider), - GTK_STYLE_PROVIDER_PRIORITY_APPLICATION); - g_object_unref (provider); -} - -static void -drive_button_init (DriveButton *self) -{ - GtkWidget *image; - - image = gtk_image_new (); - gtk_container_add (GTK_CONTAINER (self), image); - gtk_widget_show(image); - - self->volume = NULL; - self->mount = NULL; - self->icon_size = 24; - self->update_tag = 0; - - self->popup_menu = NULL; - - gtk_widget_set_name (GTK_WIDGET (self), "drive-button"); -} - -GtkWidget * -drive_button_new (GVolume *volume) -{ - DriveButton *self; - - self = g_object_new (DRIVE_TYPE_BUTTON, NULL); - if (volume != NULL) { - drive_button_set_volume (self, volume); - g_signal_connect (gtk_icon_theme_get_default (), - "changed", G_CALLBACK (drive_button_theme_change), - self); - } - - return (GtkWidget *)self; -} - -GtkWidget * -drive_button_new_from_mount (GMount *mount) -{ - DriveButton *self; - - self = g_object_new (DRIVE_TYPE_BUTTON, NULL); - drive_button_set_mount (self, mount); - - g_signal_connect (gtk_icon_theme_get_default (), - "changed", G_CALLBACK (drive_button_theme_change), - self); - - return (GtkWidget *)self; -} - -static void -drive_button_dispose (GObject *object) -{ - DriveButton *self = DRIVE_BUTTON (object); - - drive_button_set_volume (self, NULL); - - if (self->update_tag) - g_source_remove (self->update_tag); - self->update_tag = 0; - - drive_button_reset_popup (self); - - if (G_OBJECT_CLASS (drive_button_parent_class)->dispose) - (* G_OBJECT_CLASS (drive_button_parent_class)->dispose) (object); -} - -static gboolean -drive_button_button_press (GtkWidget *widget, - GdkEventButton *event) -{ - DriveButton *self = DRIVE_BUTTON (widget); - - /* don't consume non-button1 presses */ - if (event->button == 1) { - drive_button_ensure_popup (self); - if (self->popup_menu) { - gtk_menu_popup_at_widget (GTK_MENU (self->popup_menu), - widget, - GDK_GRAVITY_SOUTH_WEST, - GDK_GRAVITY_NORTH_WEST, - (const GdkEvent*) event); - } - return TRUE; - } - return FALSE; -} - -static gboolean -drive_button_key_press (GtkWidget *widget, - GdkEventKey *event) -{ - DriveButton *self = DRIVE_BUTTON (widget); - - switch (event->keyval) { - case GDK_KEY_KP_Space: - case GDK_KEY_space: - case GDK_KEY_KP_Enter: - case GDK_KEY_Return: - drive_button_ensure_popup (self); - if (self->popup_menu) { - gtk_menu_popup_at_widget (GTK_MENU (self->popup_menu), - widget, - GDK_GRAVITY_SOUTH_WEST, - GDK_GRAVITY_NORTH_WEST, - (const GdkEvent*) event); - } - return TRUE; - } - return FALSE; -} - -static void -drive_button_theme_change (GtkIconTheme *icon_theme, gpointer data) -{ - drive_button_queue_update (data); -} - -static void -drive_button_set_volume (DriveButton *self, GVolume *volume) -{ - g_return_if_fail (DRIVE_IS_BUTTON (self)); - - if (self->volume) { - g_object_unref (self->volume); - } - self->volume = NULL; - if (self->mount) { - g_object_unref (self->mount); - } - self->mount = NULL; - - if (volume) { - self->volume = g_object_ref (volume); - } - drive_button_queue_update (self); -} - -static void -drive_button_set_mount (DriveButton *self, GMount *mount) -{ - g_return_if_fail (DRIVE_IS_BUTTON (self)); - - if (self->volume) { - g_object_unref (self->volume); - } - self->volume = NULL; - if (self->mount) { - g_object_unref (self->mount); - } - self->mount = NULL; - - if (mount) { - self->mount = g_object_ref (mount); - } - drive_button_queue_update (self); -} - -static gboolean -drive_button_update (gpointer user_data) -{ - DriveButton *self; - GdkScreen *screen; - GtkIconTheme *icon_theme; - GtkIconInfo *icon_info; - GIcon *icon; - int width, height, scale; - cairo_t *cr; - cairo_surface_t *surface = NULL; - cairo_surface_t *tmp_surface = NULL; - GtkRequisition button_req, image_req; - char *display_name, *tip; - - g_return_val_if_fail (DRIVE_IS_BUTTON (user_data), FALSE); - self = DRIVE_BUTTON (user_data); - self->update_tag = 0; - - /* base the icon size on the desired button size */ - drive_button_reset_popup (self); - scale = gtk_widget_get_scale_factor (GTK_WIDGET (self)); - gtk_widget_get_preferred_size (GTK_WIDGET (self), NULL, &button_req); - gtk_widget_get_preferred_size (gtk_bin_get_child (GTK_BIN (self)), NULL, &image_req); - width = (self->icon_size - (button_req.width - image_req.width)) / scale; - height = (self->icon_size - (button_req.height - image_req.height)) / scale; - - /* if no volume or mount, display general image */ - if (!self->volume && !self->mount) - { - gtk_widget_set_tooltip_text (GTK_WIDGET (self), _("nothing to mount")); - screen = gtk_widget_get_screen (GTK_WIDGET (self)); - icon_theme = gtk_icon_theme_get_for_screen (screen); //m - // note - other good icon would be emblem-unreadable - icon_info = gtk_icon_theme_lookup_icon_for_scale (icon_theme, "media-floppy", - MIN (width, height), scale, - GTK_ICON_LOOKUP_USE_BUILTIN); - if (icon_info) { - surface = gtk_icon_info_load_surface (icon_info, NULL, NULL); - g_object_unref (icon_info); - } - - if (!surface) - return FALSE; - - if (gtk_bin_get_child (GTK_BIN (self)) != NULL) - gtk_image_set_from_surface (GTK_IMAGE (gtk_bin_get_child (GTK_BIN (self))), surface); - - return FALSE; - } - - gboolean is_mounted = FALSE; - - if (self->volume) - { - GMount *mount; - - display_name = g_volume_get_name (self->volume); - mount = g_volume_get_mount (self->volume); - - if (mount) - { - is_mounted = TRUE; - tip = g_strdup_printf ("%s\n%s", display_name, _("(mounted)")); - icon = g_mount_get_icon (mount); - g_object_unref (mount); - } - else - { - is_mounted = FALSE; - tip = g_strdup_printf ("%s\n%s", display_name, _("(not mounted)")); - icon = g_volume_get_icon (self->volume); - } - } else - { - is_mounted = TRUE; - display_name = g_mount_get_name (self->mount); - tip = g_strdup_printf ("%s\n%s", display_name, _("(mounted)")); - icon = g_mount_get_icon (self->mount); - } - - gtk_widget_set_tooltip_text (GTK_WIDGET (self), tip); - g_free (tip); - g_free (display_name); - - screen = gtk_widget_get_screen (GTK_WIDGET (self)); - icon_theme = gtk_icon_theme_get_for_screen (screen); - icon_info = gtk_icon_theme_lookup_by_gicon_for_scale (icon_theme, icon, - MIN (width, height), scale, - GTK_ICON_LOOKUP_USE_BUILTIN); - if (icon_info) - { - surface = gtk_icon_info_load_surface (icon_info, NULL, NULL); - g_object_unref (icon_info); - } - - g_object_unref (icon); - - if (!surface) - return FALSE; - - // create a new surface because icon image can be shared by system - tmp_surface = cairo_surface_create_similar (surface, - cairo_surface_get_content (surface), - cairo_image_surface_get_width (surface) / scale, - cairo_image_surface_get_height (surface) / scale); - - // if mounted, change icon - if (is_mounted) - { - int icon_width, icon_height, rowstride, n_channels, x, y; - guchar *pixels, *p; - gboolean has_alpha; - - has_alpha = cairo_surface_get_content (tmp_surface) != CAIRO_CONTENT_COLOR; - n_channels = 3; - if (has_alpha) - n_channels++; - - icon_width = cairo_image_surface_get_width (tmp_surface); - icon_height = cairo_image_surface_get_height (tmp_surface); - - rowstride = cairo_image_surface_get_stride (tmp_surface); - pixels = cairo_image_surface_get_data (tmp_surface); - - GdkRGBA color; - GSettings *settings; - settings = g_settings_new ("org.mate.drivemount"); - gchar *color_string = g_settings_get_string (settings, "drivemount-checkmark-color"); - if (!color_string) - color_string = g_strdup ("#00ff00"); - gdk_rgba_parse (&color, color_string); - g_free (color_string); - g_object_unref (settings); - - guchar red = color.red*255; - guchar green = color.green*255; - guchar blue = color.blue*255; - - const gdouble ratio = 0.65; - gdouble y_start = icon_height * ratio; - gdouble x_start = icon_height * (1 + ratio); - - for (y = y_start; y < icon_height; y++) - for (x = x_start - y; x < icon_width; x++) - { - p = pixels + y * rowstride + x * n_channels; - p[0] = red; - p[1] = green; - p[2] = blue; - if (has_alpha) - p[3] = 255; - } - } - - cr = cairo_create (tmp_surface); - cairo_set_operator (cr, CAIRO_OPERATOR_OVERLAY); - cairo_set_source_surface (cr, surface, 0, 0); - cairo_paint (cr); - - gtk_image_set_from_surface (GTK_IMAGE (gtk_bin_get_child (GTK_BIN (self))), tmp_surface); - - cairo_surface_destroy (surface); - cairo_surface_destroy (tmp_surface); - - gtk_widget_get_preferred_size (GTK_WIDGET (self), NULL, &button_req); - - return FALSE; -} - -void -drive_button_queue_update (DriveButton *self) -{ - if (!self->update_tag) { - self->update_tag = g_idle_add (drive_button_update, self); - } -} - -void -drive_button_set_size (DriveButton *self, int icon_size) -{ - g_return_if_fail (DRIVE_IS_BUTTON (self)); - - if (self->icon_size != icon_size) { - self->icon_size = icon_size; - drive_button_queue_update (self); - } -} - -void -drive_button_redraw (gpointer key, gpointer value, gpointer user_data) -{ - DriveButton *button = value; - drive_button_queue_update (button); -} - -int -drive_button_compare (DriveButton *button, DriveButton *other_button) -{ - /* sort drives before driveless volumes volumes */ - if (button->volume) { - if (other_button->volume) - { - int cmp; - gchar *str1, *str2; - - str1 = g_volume_get_name (button->volume); - str2 = g_volume_get_name (other_button->volume); - cmp = g_utf8_collate (str1, str2); - g_free (str2); - g_free (str1); - - return cmp; - } else { - return -1; - } - } else { - if (other_button->volume) - { - return 1; - } else { - int cmp; - gchar *str1, *str2; - - str1 = g_mount_get_name (button->mount); - str2 = g_mount_get_name (other_button->mount); - cmp = g_utf8_collate (str1, str2); - g_free (str2); - g_free (str1); - - return cmp; - } - } -} - -static void -drive_button_reset_popup (DriveButton *self) -{ - if (self->popup_menu) - gtk_widget_destroy (GTK_WIDGET (self->popup_menu)); - self->popup_menu = NULL; -} - -#if 0 -static void -popup_menu_detach (GtkWidget *attach_widget, GtkMenu *menu) -{ - DRIVE_BUTTON (attach_widget)->popup_menu = NULL; -} -#endif /* 0 */ - -static char * -escape_underscores (const char *str) -{ - char *new_str; - int i, j, count; - - /* count up how many underscores are in the string */ - count = 0; - for (i = 0; str[i] != '\0'; i++) { - if (str[i] == '_') - count++; - } - /* copy to new string, doubling up underscores */ - new_str = g_new (char, i + count + 1); - for (i = j = 0; str[i] != '\0'; i++, j++) { - new_str[j] = str[i]; - if (str[i] == '_') - new_str[++j] = '_'; - } - new_str[j] = '\0'; - return new_str; -} -static GtkWidget * -create_menu_item (DriveButton *self, const gchar *icon_name, - const gchar *label, GCallback callback, - gboolean sensitive) -{ - GtkWidget *item, *image; - - item = gtk_image_menu_item_new_with_mnemonic (label); - if (icon_name) { - image = gtk_image_new_from_icon_name (icon_name, GTK_ICON_SIZE_MENU); - gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (item), image); - gtk_widget_show (image); - } - if (callback) - g_signal_connect_object (item, "activate", callback, self, - G_CONNECT_SWAPPED); - gtk_widget_set_sensitive (item, sensitive); - gtk_widget_show (item); - return item; -} - -static void -open_drive (DriveButton *self, GtkWidget *item) -{ - GdkScreen *screen; - GtkWidget *dialog; - GError *error = NULL; - GFile *file = NULL; - GList *files = NULL; - GdkAppLaunchContext *launch_context; - GAppInfo *app_info; - - if (self->volume) { - GMount *mount; - - mount = g_volume_get_mount (self->volume); - if (mount) { - file = g_mount_get_root (mount); - g_object_unref(mount); - } - } else if (self->mount) { - file = g_mount_get_root (self->mount); - } else - g_return_if_reached(); - - app_info = g_app_info_get_default_for_type("inode/directory", FALSE); - if (!app_info) - app_info = G_APP_INFO (g_desktop_app_info_new ("caja.desktop")); - - if (app_info) { - GdkDisplay *display = gtk_widget_get_display (item); - launch_context = gdk_display_get_app_launch_context (display); - screen = gtk_widget_get_screen (GTK_WIDGET (self)); - gdk_app_launch_context_set_screen (launch_context, screen); - files = g_list_prepend (files, file); - g_app_info_launch (app_info, - files, - G_APP_LAUNCH_CONTEXT (launch_context), - &error); - - g_object_unref (launch_context); - g_list_free (files); - } - - if (!app_info || error) { - dialog = gtk_message_dialog_new (GTK_WINDOW (gtk_widget_get_toplevel (GTK_WIDGET (self))), - GTK_DIALOG_DESTROY_WITH_PARENT, - GTK_MESSAGE_ERROR, - GTK_BUTTONS_OK, - _("Cannot execute Caja")); - if (error) - gtk_message_dialog_format_secondary_text (GTK_MESSAGE_DIALOG (dialog), "%s", error->message); - else - gtk_message_dialog_format_secondary_text (GTK_MESSAGE_DIALOG (dialog), "Could not find Caja"); - g_signal_connect (dialog, "response", - G_CALLBACK (gtk_widget_destroy), NULL); - gtk_widget_show (dialog); - g_error_free (error); - } - - g_object_unref(file); -} - -/* copied from mate-volume-manager/src/manager.c maybe there is a better way than - * duplicating this code? */ - -/* - * gvm_run_command - run the given command, replacing %d with the device node - * and %m with the given path - */ -static void -gvm_run_command (const char *device, const char *command, const char *path) -{ - char *argv[4]; - gchar *new_command; - GError *error = NULL; - GString *exec = g_string_new (NULL); - char *p, *q; - - /* perform s/%d/device/ and s/%m/path/ */ - new_command = g_strdup (command); - q = new_command; - p = new_command; - while ((p = strchr (p, '%')) != NULL) { - if (*(p + 1) == 'd') { - *p = '\0'; - g_string_append (exec, q); - g_string_append (exec, device); - q = p + 2; - p = p + 2; - } else if (*(p + 1) == 'm') { - *p = '\0'; - g_string_append (exec, q); - g_string_append (exec, path); - q = p + 2; - p = p + 2; - } else { - /* Ignore anything else. */ - p++; - } - } - g_string_append (exec, q); - - argv[0] = "/bin/sh"; - argv[1] = "-c"; - argv[2] = exec->str; - argv[3] = NULL; - - g_spawn_async (g_get_home_dir (), argv, NULL, 0, NULL, NULL, - NULL, &error); - if (error) { - g_warning ("failed to exec %s: %s\n", exec->str, error->message); - g_error_free (error); - } - - g_string_free (exec, TRUE); - g_free (new_command); -} - -/* - * gvm_check_dvd_only - is this a Video DVD? - * - * Returns TRUE if this was a Video DVD and FALSE otherwise. - * (the original in gvm was also running the autoplay action, - * I removed that code, so I renamed from gvm_check_dvd to - * gvm_check_dvd_only) - */ -static gboolean -gvm_check_dvd_only (const char *udi, const char *device, const char *mount_point) -{ - char *path; - gboolean retval; - - path = g_build_path (G_DIR_SEPARATOR_S, mount_point, "video_ts", NULL); - retval = g_file_test (path, G_FILE_TEST_IS_DIR); - g_free (path); - - /* try the other name, if needed */ - if (retval == FALSE) { - path = g_build_path (G_DIR_SEPARATOR_S, mount_point, - "VIDEO_TS", NULL); - retval = g_file_test (path, G_FILE_TEST_IS_DIR); - g_free (path); - } - - return retval; -} -/* END copied from mate-volume-manager/src/manager.c */ - -static gboolean -check_dvd_video (DriveButton *self) -{ - GFile *file; - char *udi, *device_path, *mount_path; - gboolean result; - GMount *mount; - - if (!self->volume) - return FALSE; - - mount = g_volume_get_mount (self->volume); - if (!mount) - return FALSE; - - file = g_mount_get_root (mount); - g_object_unref (mount); - - if (!file) - return FALSE; - - mount_path = g_file_get_path (file); - - g_object_unref (file); - - device_path = g_volume_get_identifier (self->volume, - G_VOLUME_IDENTIFIER_KIND_UNIX_DEVICE); - udi = g_volume_get_identifier (self->volume, - G_VOLUME_IDENTIFIER_KIND_HAL_UDI); - - result = gvm_check_dvd_only (udi, device_path, mount_path); - - g_free (device_path); - g_free (udi); - g_free (mount_path); - - return result; -} - -static gboolean -check_audio_cd (DriveButton *self) -{ - GFile *file; - char *activation_uri; - GMount *mount; - - if (!self->volume) - return FALSE; - - mount = g_volume_get_mount (self->volume); - if (!mount) - return FALSE; - - file = g_mount_get_root (mount); - g_object_unref (mount); - - if (!file) - return FALSE; - - activation_uri = g_file_get_uri (file); - - g_object_unref (file); - - /* we have an audioCD if the activation URI starts by 'cdda://' */ - gboolean result = (strncmp ("cdda://", activation_uri, 7) == 0); - g_free (activation_uri); - return result; -} - -static void -run_command (DriveButton *self, const char *command) -{ - GFile *file; - char *mount_path, *device_path; - GMount *mount; - - if (!self->volume) - return; - - mount = g_volume_get_mount (self->volume); - if (!mount) - return; - - file = g_mount_get_root (mount); - g_object_unref (mount); - - g_assert (file); - - mount_path = g_file_get_path (file); - - g_object_unref (file); - - device_path = g_volume_get_identifier (self->volume, - G_VOLUME_IDENTIFIER_KIND_UNIX_DEVICE); - - gvm_run_command (device_path, command, mount_path); - - g_free (mount_path); - g_free (device_path); -} - -static void dummy_async_ready_callback(GObject *source_object, GAsyncResult *res, gpointer user_data) { - /* do nothing */ -} - -static void -mount_drive (DriveButton *self, GtkWidget *item) -{ - if (self->volume) { - GMountOperation *mount_op = gtk_mount_operation_new (NULL); - g_volume_mount (self->volume, G_MOUNT_MOUNT_NONE, - mount_op, NULL, dummy_async_ready_callback, NULL); - g_object_unref (mount_op); - } else { - g_return_if_reached(); - } -} - -static void -unmount_drive (DriveButton *self, GtkWidget *item) -{ - if (self->volume) { - GMount *mount; - - mount = g_volume_get_mount (self->volume); - if (mount) - { - g_mount_unmount_with_operation (mount, G_MOUNT_UNMOUNT_NONE, - NULL, NULL, dummy_async_ready_callback, NULL); - g_object_unref (mount); - } - } else if (self->mount) { - g_mount_unmount_with_operation (self->mount, G_MOUNT_UNMOUNT_NONE, - NULL, NULL, dummy_async_ready_callback, NULL); - } else { - g_return_if_reached(); - } -} - -static void eject_finish (DriveButton *self, GAsyncResult *res, - gpointer user_data) -{ - /* Do nothing. We shouldn't need this according to the GIO - * docs, but the applet crashes without it using glib 2.18.0 */ -} - -static void -eject_drive (DriveButton *self, GtkWidget *item) -{ - if (self->volume) { - g_volume_eject_with_operation (self->volume, G_MOUNT_UNMOUNT_NONE, - NULL, NULL, - (GAsyncReadyCallback) eject_finish, - NULL); - } else if (self->mount) { - g_mount_eject_with_operation (self->mount, G_MOUNT_UNMOUNT_NONE, - NULL, NULL, - (GAsyncReadyCallback) eject_finish, - NULL); - } else { - g_return_if_reached(); - } -} -static void -play_autoplay_media (DriveButton *self, const char *dflt) -{ - run_command (self, dflt); -} - -static void -play_dvd (DriveButton *self, GtkWidget *item) -{ - /* FIXME add an option to set this */ - play_autoplay_media (self, "totem %d"); -} - -static void -play_cda (DriveButton *self, GtkWidget *item) -{ - /* FIXME add an option to set this */ - play_autoplay_media (self, "sound-juicer -d %d"); -} - -static void -drive_button_ensure_popup (DriveButton *self) -{ - char *display_name, *tmp, *label; - GtkWidget *item; - gboolean mounted, ejectable; - - if (self->popup_menu) return; - - mounted = FALSE; - - if (self->volume) { - GMount *mount = NULL; - - display_name = g_volume_get_name (self->volume); - ejectable = g_volume_can_eject (self->volume); - - mount = g_volume_get_mount (self->volume); - if (mount) { - mounted = TRUE; - g_object_unref (mount); - } - } else { - if (!G_IS_MOUNT(self->volume)) - return; - else { - display_name = g_mount_get_name (self->mount); - ejectable = g_mount_can_eject (self->mount); - mounted = TRUE; - } - } - - self->popup_menu = gtk_menu_new (); - - /* make sure the display name doesn't look like a mnemonic */ - tmp = escape_underscores (display_name ? display_name : "(none)"); - g_free (display_name); - display_name = tmp; - - if (check_dvd_video (self)) { - item = create_menu_item (self, "media-playback-start", - _("_Play DVD"), G_CALLBACK (play_dvd), - TRUE); - } else if (check_audio_cd (self)) { - item = create_menu_item (self, "media-playback-start", - _("_Play CD"), G_CALLBACK (play_cda), - TRUE); - } else { - label = g_strdup_printf (_("_Open %s"), display_name); - item = create_menu_item (self, "document-open", label, - G_CALLBACK (open_drive), mounted); - g_free (label); - } - gtk_container_add (GTK_CONTAINER (self->popup_menu), item); - - if (mounted) { - label = g_strdup_printf (_("Un_mount %s"), display_name); - item = create_menu_item (self, NULL, label, - G_CALLBACK (unmount_drive), TRUE); - g_free (label); - gtk_container_add (GTK_CONTAINER (self->popup_menu), item); - } else { - label = g_strdup_printf (_("_Mount %s"), display_name); - item = create_menu_item (self, NULL, label, - G_CALLBACK (mount_drive), TRUE); - g_free (label); - gtk_container_add (GTK_CONTAINER (self->popup_menu), item); - } - - if (ejectable) { - label = g_strdup_printf (_("_Eject %s"), display_name); - item = create_menu_item (self, "media-eject", label, - G_CALLBACK (eject_drive), TRUE); - g_free (label); - gtk_container_add (GTK_CONTAINER (self->popup_menu), item); - } - - /*Set up custom theme and transparency support */ - GtkWidget *toplevel = gtk_widget_get_toplevel (self->popup_menu); - /* Fix any failures of compiz/other wm's to communicate with gtk for transparency */ - GdkScreen *screen2 = gtk_widget_get_screen(GTK_WIDGET(toplevel)); - GdkVisual *visual = gdk_screen_get_rgba_visual(screen2); - gtk_widget_set_visual(GTK_WIDGET(toplevel), visual); - /*set menu and it's toplevel window to follow panel theme */ - GtkStyleContext *context; - context = gtk_widget_get_style_context (GTK_WIDGET(toplevel)); - gtk_style_context_add_class(context,"gnome-panel-menu-bar"); - gtk_style_context_add_class(context,"mate-panel-menu-bar"); -} diff --git a/drivemount/drive-list.c b/drivemount/drive-list.c deleted file mode 100644 index 97e28573..00000000 --- a/drivemount/drive-list.c +++ /dev/null @@ -1,532 +0,0 @@ -/* -*- mode: C; c-basic-offset: 4 -*- - * Drive Mount Applet - * Copyright (c) 2004 Canonical Ltd - * Copyright 2008 Pierre Ossman - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - * - * Author: - * James Henstridge <[email protected]> - */ - -#ifdef HAVE_CONFIG_H -#include <config.h> -#endif - -#include <gio/gio.h> -#include "drive-list.h" -#include "drive-button.h" -#include <glib/gi18n.h> - -G_DEFINE_TYPE (DriveList, drive_list, GTK_TYPE_GRID); - -static GVolumeMonitor *volume_monitor = NULL; - -static void drive_list_finalize (GObject *object); -static void drive_list_dispose (GObject *object); -static void drive_list_add (GtkContainer *container, GtkWidget *child); -static void drive_list_remove (GtkContainer *container, GtkWidget *child); - -static void mount_added (GVolumeMonitor *monitor, - GMount *mount, - DriveList *self); -static void mount_changed (GVolumeMonitor *monitor, - GMount *mount, - DriveList *self); -static void mount_removed (GVolumeMonitor *monitor, - GMount *mount, - DriveList *self); -static void volume_added (GVolumeMonitor *monitor, - GVolume *volume, - DriveList *self); -static void volume_changed (GVolumeMonitor *monitor, - GVolume *volume, - DriveList *self); -static void volume_removed (GVolumeMonitor *monitor, - GVolume *volume, - DriveList *self); -static void add_volume (DriveList *self, - GVolume *volume); -static void remove_volume (DriveList *self, - GVolume *volume); -static void add_mount (DriveList *self, - GMount *mount); -static void remove_mount (DriveList *self, - GMount *mount); -static void queue_relayout (DriveList *self); -static void -drive_list_class_init (DriveListClass *class) -{ - G_OBJECT_CLASS (class)->finalize = drive_list_finalize; - G_OBJECT_CLASS (class)->dispose = drive_list_dispose; - GTK_CONTAINER_CLASS (class)->add = drive_list_add; - GTK_CONTAINER_CLASS (class)->remove = drive_list_remove; -} - -static void -drive_list_init (DriveList *self) -{ - GList *volumes, *mounts, *tmp; - - gtk_grid_set_column_homogeneous (GTK_GRID (self), TRUE); - gtk_grid_set_row_homogeneous (GTK_GRID (self), TRUE); - - self->volumes = g_hash_table_new (NULL, NULL); - self->mounts = g_hash_table_new (NULL, NULL); - self->orientation = GTK_ORIENTATION_HORIZONTAL; - self->layout_tag = 0; - self->settings = g_settings_new ("org.mate.drivemount"); - self->icon_size = 24; - self->relief = GTK_RELIEF_NORMAL; - - g_signal_connect(self->settings, - "changed::drivemount-checkmark-color", - G_CALLBACK (settings_color_changed), - self); - - /* listen for drive connects/disconnects, and add - * currently connected drives. */ - self->count = 0; - if (!volume_monitor) - volume_monitor = g_volume_monitor_get (); - - g_signal_connect_object (volume_monitor, "mount_added", - G_CALLBACK (mount_added), self, 0); - g_signal_connect_object (volume_monitor, "mount_changed", - G_CALLBACK (mount_changed), self, 0); - g_signal_connect_object (volume_monitor, "mount_removed", - G_CALLBACK (mount_removed), self, 0); - g_signal_connect_object (volume_monitor, "volume_added", - G_CALLBACK (volume_added), self, 0); - g_signal_connect_object (volume_monitor, "volume_changed", - G_CALLBACK (volume_changed), self, 0); - g_signal_connect_object (volume_monitor, "volume_removed", - G_CALLBACK (volume_removed), self, 0); - volumes = g_volume_monitor_get_volumes (volume_monitor); - for (tmp = volumes; tmp != NULL; tmp = tmp->next) - { - GVolume *volume = tmp->data; - add_volume (self, volume); - g_object_unref (volume); - self->count++; - } - g_list_free (volumes); - - mounts = g_volume_monitor_get_mounts (volume_monitor); - for (tmp = mounts; tmp != NULL; tmp = tmp->next) - { - GMount *mount = tmp->data; - add_mount (self, mount); - g_object_unref (mount); - self->count++; - } - self->dummy = drive_button_new (NULL); - gtk_button_set_relief (GTK_BUTTON (self->dummy), self->relief); - drive_button_set_size (DRIVE_BUTTON (self->dummy), self->icon_size); - - if (self->count == 0) - { - gtk_container_add (GTK_CONTAINER (self), self->dummy); - queue_relayout (self); - drive_button_queue_update (DRIVE_BUTTON (self->dummy)); - } - g_list_free (mounts); -} - -GtkWidget * -drive_list_new (void) -{ - return g_object_new (DRIVE_TYPE_LIST, NULL); -} - -static void -drive_list_finalize (GObject *object) -{ - DriveList *self = DRIVE_LIST (object); - - g_hash_table_destroy (self->volumes); - g_hash_table_destroy (self->mounts); - g_object_unref (self->settings); - - if (G_OBJECT_CLASS (drive_list_parent_class)->finalize) - (* G_OBJECT_CLASS (drive_list_parent_class)->finalize) (object); -} - -static void -drive_list_dispose (GObject *object) -{ - DriveList *self = DRIVE_LIST (object); - - g_signal_handlers_disconnect_by_func (volume_monitor, - G_CALLBACK (mount_added), self); - g_signal_handlers_disconnect_by_func (volume_monitor, - G_CALLBACK (mount_changed), self); - g_signal_handlers_disconnect_by_func (volume_monitor, - G_CALLBACK (mount_removed), self); - g_signal_handlers_disconnect_by_func (volume_monitor, - G_CALLBACK (volume_added), self); - g_signal_handlers_disconnect_by_func (volume_monitor, - G_CALLBACK (volume_changed), self); - g_signal_handlers_disconnect_by_func (volume_monitor, - G_CALLBACK (volume_removed), self); - - if (self->layout_tag) - g_source_remove (self->layout_tag); - self->layout_tag = 0; - - if (G_OBJECT_CLASS (drive_list_parent_class)->dispose) - (* G_OBJECT_CLASS (drive_list_parent_class)->dispose) (object); -} - -static void -drive_list_add (GtkContainer *container, GtkWidget *child) -{ - DriveList *self; - DriveButton *button; - - g_return_if_fail (DRIVE_IS_LIST (container)); - g_return_if_fail (DRIVE_IS_BUTTON (child)); - - if (GTK_CONTAINER_CLASS (drive_list_parent_class)->add) - (* GTK_CONTAINER_CLASS (drive_list_parent_class)->add) (container, - child); - - self = DRIVE_LIST (container); - button = DRIVE_BUTTON (child); - if (button->volume) - g_hash_table_insert (self->volumes, button->volume, button); - else - g_hash_table_insert (self->mounts, button->mount, button); -} - -static void -drive_list_remove (GtkContainer *container, GtkWidget *child) -{ - DriveList *self; - DriveButton *button; - - g_return_if_fail (DRIVE_IS_LIST (container)); - g_return_if_fail (DRIVE_IS_BUTTON (child)); - - self = DRIVE_LIST (container); - button = DRIVE_BUTTON (child); - if (button->volume) - g_hash_table_remove (self->volumes, button->volume); - else - g_hash_table_remove (self->mounts, button->mount); - - if (GTK_CONTAINER_CLASS (drive_list_parent_class)->remove) - (* GTK_CONTAINER_CLASS (drive_list_parent_class)->remove) (container, - child); -} - -static void -list_buttons (gpointer key, gpointer value, gpointer user_data) -{ - GtkWidget *button = value; - GList **sorted_buttons = user_data; - - *sorted_buttons = g_list_insert_sorted (*sorted_buttons, button, - (GCompareFunc)drive_button_compare); -} - -static gboolean -relayout_buttons (gpointer data) -{ - DriveList *self = DRIVE_LIST (data); - GList *sorted_buttons = NULL, *tmp; - int i = 0; - - - self->layout_tag = 0; - if ( self->count > 0 ) - { - g_hash_table_foreach (self->volumes, list_buttons, &sorted_buttons); - g_hash_table_foreach (self->mounts, list_buttons, &sorted_buttons); - - /* position buttons in the table according to their sorted order */ - for (tmp = sorted_buttons, i = 0; tmp != NULL; tmp = tmp->next, i++) - { - GtkWidget *button = tmp->data; - - if (self->orientation == GTK_ORIENTATION_HORIZONTAL) { - gtk_container_child_set (GTK_CONTAINER (self), button, - "left-attach", i + 1, "top-attach", 0, - "width", 1, "height", 1, - NULL); - } - else - { - gtk_container_child_set (GTK_CONTAINER (self), button, - "left-attach", 0, "top-attach", i + 1, - "width", 1, "height", 1, - NULL); - } - } - } - else - { - gtk_widget_show (self->dummy); - if (self->orientation == GTK_ORIENTATION_HORIZONTAL) - { - gtk_container_child_set (GTK_CONTAINER (self), self->dummy, - "left-attach", i + 1, "top-attach", 0, - "width", 1, "height", 1, - NULL); - } - else - { - gtk_container_child_set (GTK_CONTAINER (self), self->dummy, - "left-attach", 0, "top-attach", i + 1, - "width", 1, "height", 1, - NULL); - } - } - return FALSE; -} - -static void -queue_relayout (DriveList *self) -{ - if (!self->layout_tag) { - self->layout_tag = g_idle_add (relayout_buttons, self); - } -} - -static void -mount_added (GVolumeMonitor *monitor, - GMount *mount, - DriveList *self) -{ - add_mount (self, mount); - self->count++; - if (self->count == 1) - gtk_container_remove (GTK_CONTAINER (self), g_object_ref(self->dummy)); - mount_changed (monitor, mount, self); -} - -static void -mount_changed (GVolumeMonitor *monitor, - GMount *mount, - DriveList *self) -{ - GVolume *volume; - DriveButton *button = NULL;; - - volume = g_mount_get_volume (mount); - if (volume) { - button = g_hash_table_lookup (self->volumes, volume); - g_object_unref (volume); - } else { - button = g_hash_table_lookup (self->mounts, mount); - } - if (button) - drive_button_queue_update (button); -} - -static void -mount_removed (GVolumeMonitor *monitor, - GMount *mount, - DriveList *self) -{ - remove_mount (self, mount); - mount_changed (monitor, mount, self); - self->count--; - if (self->count == 0) { - gtk_container_add (GTK_CONTAINER (self), self->dummy); - queue_relayout(self); - } -} - -static void -volume_added (GVolumeMonitor *monitor, - GVolume *volume, - DriveList *self) -{ - add_volume (self, volume); - self->count++; - if (self->count == 1) - gtk_container_remove (GTK_CONTAINER (self), g_object_ref(self->dummy)); -} - -static void -volume_changed (GVolumeMonitor *monitor, - GVolume *volume, - DriveList *self) -{ - DriveButton *button = NULL;; - - button = g_hash_table_lookup (self->volumes, volume); - if (button) - drive_button_queue_update (button); -} - -static void -volume_removed (GVolumeMonitor *monitor, - GVolume *volume, - DriveList *self) -{ - remove_volume (self, volume); - self->count--; - if (self->count == 0) { - gtk_container_add (GTK_CONTAINER (self), self->dummy); - queue_relayout(self); - } -} - -static void -add_volume (DriveList *self, GVolume *volume) -{ - GtkWidget *button; - - /* if the volume has already been added, return */ - if (g_hash_table_lookup (self->volumes, volume) != NULL) - return; - - button = drive_button_new (volume); - gtk_button_set_relief (GTK_BUTTON (button), self->relief); - drive_button_set_size (DRIVE_BUTTON (button), self->icon_size); - gtk_container_add (GTK_CONTAINER (self), button); - gtk_widget_show (button); - queue_relayout (self); -} - -static void -remove_volume (DriveList *self, GVolume *volume) -{ - GtkWidget *button; - - /* if the volume has already been added, return */ - button = g_hash_table_lookup (self->volumes, volume); - if (button) { - gtk_container_remove (GTK_CONTAINER (self), button); - queue_relayout (self); - } -} - -static void -add_mount (DriveList *self, GMount *mount) -{ - GtkWidget *button; - GVolume *volume; - - /* ignore mounts reported as shadowed */ - if (g_mount_is_shadowed (mount)) { - return; - } - - /* ignore mounts attached to a volume */ - volume = g_mount_get_volume (mount); - if (volume) { - g_object_unref (volume); - return; - } - - /* if the mount has already been added, return */ - if (g_hash_table_lookup (self->mounts, mount) != NULL) - return; - - button = drive_button_new_from_mount (mount); - gtk_button_set_relief (GTK_BUTTON (button), self->relief); - drive_button_set_size (DRIVE_BUTTON (button), self->icon_size); - gtk_container_add (GTK_CONTAINER (self), button); - gtk_widget_show (button); - queue_relayout (self); -} - -static void -remove_mount (DriveList *self, GMount *mount) -{ - GtkWidget *button; - - /* if the mount has already been added, return */ - button = g_hash_table_lookup (self->mounts, mount); - if (button) { - gtk_container_remove (GTK_CONTAINER (self), button); - queue_relayout (self); - } -} - -void -drive_list_set_orientation (DriveList *self, - GtkOrientation orientation) -{ - g_return_if_fail (DRIVE_IS_LIST (self)); - - if (orientation != self->orientation) { - self->orientation = orientation; - queue_relayout (self); - } -} - -static void -set_icon_size (gpointer key, gpointer value, gpointer user_data) -{ - DriveButton *button = value; - DriveList *self = user_data; - - drive_button_set_size (button, self->icon_size); -} - - -void -drive_list_set_panel_size (DriveList *self, int panel_size) -{ - g_return_if_fail (DRIVE_IS_LIST (self)); - - if (self->icon_size != panel_size) { - self->icon_size = panel_size; - g_hash_table_foreach (self->volumes, set_icon_size, self); - g_hash_table_foreach (self->mounts, set_icon_size, self); - } -} - -void -drive_list_redraw (DriveList *self) -{ - g_hash_table_foreach (self->volumes, drive_button_redraw, self); - g_hash_table_foreach (self->mounts, drive_button_redraw, self); -} - -void -settings_color_changed (GSettings *settings, gchar *key, DriveList *drive_list) -{ - g_return_if_fail (DRIVE_IS_LIST (drive_list)); - drive_list_redraw (drive_list); -} - -static void -set_button_relief (gpointer key, gpointer value, gpointer user_data) -{ - GtkButton *button = value; - DriveList *self = user_data; - - gtk_button_set_relief (button, self->relief); -} - -void -drive_list_set_transparent (DriveList *self, gboolean transparent) -{ - GtkReliefStyle relief; - - relief = transparent ? GTK_RELIEF_NONE : GTK_RELIEF_NORMAL; - - if (relief == self->relief) - return; - - self->relief = relief; - g_hash_table_foreach (self->volumes, set_button_relief, self); - g_hash_table_foreach (self->mounts, set_button_relief, self); -} diff --git a/drivemount/drivemount.c b/drivemount/drivemount.c deleted file mode 100644 index 84d6f77f..00000000 --- a/drivemount/drivemount.c +++ /dev/null @@ -1,233 +0,0 @@ -/* -*- mode: C; c-basic-offset: 4 -*- - * Drive Mount Applet - * Copyright (c) 2004 Canonical Ltd - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - * - * Author: - * James Henstridge <[email protected]> - */ - -#ifdef HAVE_CONFIG_H -# include <config.h> -#endif - -#include <string.h> - -#include <glib/gi18n.h> -#include <gtk/gtk.h> -#include <mate-panel-applet.h> - -#include "drive-list.h" - -static const char drivemount_iid[] = "DriveMountApplet"; -static const char factory_iid[] = "DriveMountAppletFactory"; - -static void -change_orient (MatePanelApplet *applet, MatePanelAppletOrient o, DriveList *drive_list) -{ - GtkOrientation orientation; - - switch (o) { - case MATE_PANEL_APPLET_ORIENT_LEFT: - case MATE_PANEL_APPLET_ORIENT_RIGHT: - orientation = GTK_ORIENTATION_VERTICAL; - break; - case MATE_PANEL_APPLET_ORIENT_UP: - case MATE_PANEL_APPLET_ORIENT_DOWN: - default: - orientation = GTK_ORIENTATION_HORIZONTAL; - break; - } - drive_list_set_orientation (drive_list, orientation); -} - -static void -size_allocate (MatePanelApplet *applet, - GdkRectangle *allocation, - DriveList *drive_list) -{ - int size; - - switch (mate_panel_applet_get_orient (applet)) { - case MATE_PANEL_APPLET_ORIENT_LEFT: - case MATE_PANEL_APPLET_ORIENT_RIGHT: - size = allocation->width; - break; - case MATE_PANEL_APPLET_ORIENT_UP: - case MATE_PANEL_APPLET_ORIENT_DOWN: - default: - size = allocation->height; - break; - } - drive_list_set_panel_size (drive_list, size); -} - -static void -change_background (MatePanelApplet *applet, - MatePanelAppletBackgroundType type, - GdkColor *colour, - cairo_pattern_t *pattern, - DriveList *drivelist) -{ - switch (type) { - case PANEL_NO_BACKGROUND: - drive_list_set_transparent (drivelist, FALSE); - break; - - case PANEL_COLOR_BACKGROUND: - case PANEL_PIXMAP_BACKGROUND: - drive_list_set_transparent (drivelist, TRUE); - break; - } -} - -static void -display_about_dialog (GtkAction *action, - DriveList *drive_list) -{ - const gchar *authors[] = { - "James Henstridge <[email protected]>", - NULL - }; - - const gchar *documenters[] = { - "Dan Mueth <[email protected]>", - "John Fleck <[email protected]>", - N_("MATE Documentation Team"), - NULL - }; - -#ifdef ENABLE_NLS - const char **p; - for (p = documenters; *p; ++p) - *p = _(*p); -#endif - - gtk_show_about_dialog (NULL, - "title", _("About Disk Mounter"), - "version", VERSION, - "copyright", _("Copyright \xC2\xA9 2004 Canonical Ltd\n" - "Copyright \xc2\xa9 2012-2020 MATE developers"), - "comments", _("Applet for mounting and unmounting block volumes."), - "authors", authors, - "documenters", documenters, - "translator-credits", _("translator-credits"), - "logo_icon_name", "media-floppy", - NULL); -} - -static void -display_help (GtkAction *action, - DriveList *drive_list) -{ - GdkScreen *screen; - GError *error = NULL; - - screen = gtk_widget_get_screen (GTK_WIDGET (drive_list)); - - gtk_show_uri_on_window (NULL, - "help:mate-drivemount", - gtk_get_current_event_time (), - &error); - - if (error) { - GtkWidget *dialog; - - dialog = gtk_message_dialog_new (NULL, - GTK_DIALOG_MODAL, - GTK_MESSAGE_ERROR, - GTK_BUTTONS_OK, - _("There was an error displaying help: %s"), - error->message); - g_signal_connect (dialog, "response", - G_CALLBACK (gtk_widget_destroy), NULL); - gtk_window_set_resizable (GTK_WINDOW (dialog), FALSE); - gtk_window_set_screen (GTK_WINDOW (dialog), screen); - gtk_widget_show (dialog); - g_error_free (error); - } -} - -static const GtkActionEntry applet_menu_actions[] = { - { "Help", "help-browser", N_("_Help"), - NULL, NULL, - G_CALLBACK (display_help) }, - { "About", "help-about", N_("_About"), - NULL, NULL, - G_CALLBACK (display_about_dialog) } -}; - -static gboolean -applet_factory (MatePanelApplet *applet, - const char *iid, - gpointer user_data) -{ - gboolean ret = FALSE; - GtkWidget *drive_list; - AtkObject *ao; - GtkActionGroup *action_group; - gchar *ui_path; - - if (!strcmp (iid, drivemount_iid)) { - g_set_application_name (_("Disk Mounter")); - - gtk_window_set_default_icon_name ("media-floppy"); - - mate_panel_applet_set_flags (applet, MATE_PANEL_APPLET_EXPAND_MINOR); - mate_panel_applet_set_background_widget (applet, GTK_WIDGET (applet)); - - drive_list = drive_list_new (); - - gtk_container_add (GTK_CONTAINER (applet), drive_list); - - g_signal_connect_object (applet, "change_orient", - G_CALLBACK (change_orient), drive_list, 0); - g_signal_connect_object (applet, "size_allocate", - G_CALLBACK (size_allocate), drive_list, 0); - g_signal_connect (applet, "change_background", - G_CALLBACK (change_background), drive_list); - - /* set initial state */ - change_orient (applet, - mate_panel_applet_get_orient (applet), - DRIVE_LIST (drive_list)); - - action_group = gtk_action_group_new ("DriveMount Applet Actions"); - gtk_action_group_set_translation_domain (action_group, GETTEXT_PACKAGE); - gtk_action_group_add_actions (action_group, - applet_menu_actions, - G_N_ELEMENTS (applet_menu_actions), - drive_list); - ui_path = g_build_filename (DRIVEMOUNT_MENU_UI_DIR, "drivemount-applet-menu.xml", NULL); - mate_panel_applet_setup_menu_from_file (applet, ui_path, action_group); - g_free (ui_path); - g_object_unref (action_group); - - ao = gtk_widget_get_accessible (GTK_WIDGET (applet)); - atk_object_set_name (ao, _("Disk Mounter")); - - gtk_widget_show_all (GTK_WIDGET (applet)); - - ret = TRUE; - } - - return ret; -} - -MATE_PANEL_APPLET_OUT_PROCESS_FACTORY (factory_iid, - PANEL_TYPE_APPLET, - "Drive-Mount-Applet", - applet_factory, NULL) diff --git a/drivemount/help/C/index.docbook b/drivemount/help/C/index.docbook index 88c5a1b3..be933f1b 100644 --- a/drivemount/help/C/index.docbook +++ b/drivemount/help/C/index.docbook @@ -26,7 +26,7 @@ </para> </abstract> <copyright> - <year>2015-2020</year> + <year>2015-2021</year> <holder>MATE Documentation Project</holder> </copyright> <copyright> diff --git a/drivemount/help/af/af.po b/drivemount/help/af/af.po index d7ba567d..9bee1e31 100644 --- a/drivemount/help/af/af.po +++ b/drivemount/help/af/af.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Afrikaans (https://www.transifex.com/mate/teams/13566/af/)\n" +"Language-Team: Afrikaans (https://app.transifex.com/mate/teams/13566/af/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -37,7 +37,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright diff --git a/drivemount/help/am/am.po b/drivemount/help/am/am.po index 4b8c5cb5..e68638d4 100644 --- a/drivemount/help/am/am.po +++ b/drivemount/help/am/am.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" "Last-Translator: samson <[email protected]>, 2019\n" -"Language-Team: Amharic (https://www.transifex.com/mate/teams/13566/am/)\n" +"Language-Team: Amharic (https://app.transifex.com/mate/teams/13566/am/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -34,7 +34,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright diff --git a/drivemount/help/ar/ar.po b/drivemount/help/ar/ar.po index 236d4b08..eb11348f 100644 --- a/drivemount/help/ar/ar.po +++ b/drivemount/help/ar/ar.po @@ -5,14 +5,15 @@ # Wolfgang Ulbrich <[email protected]>, 2018 # مهدي السطيفي <[email protected]>, 2018 # Ahmad Dakhlallah <[email protected]>, 2019 +# Ahmd go <[email protected]>, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" -"Last-Translator: Ahmad Dakhlallah <[email protected]>, 2019\n" -"Language-Team: Arabic (https://www.transifex.com/mate/teams/13566/ar/)\n" +"Last-Translator: Ahmd go <[email protected]>, 2021\n" +"Language-Team: Arabic (https://app.transifex.com/mate/teams/13566/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -40,7 +41,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -117,7 +118,7 @@ msgstr "" #. (itstool) path: revdescription/para #: C/index.docbook:124 msgid "MATE Documentation Team" -msgstr "" +msgstr "فريق متّة التوثيقي " #. (itstool) path: revhistory/revision #: C/index.docbook:120 diff --git a/drivemount/help/as/as.po b/drivemount/help/as/as.po index 20d5409d..b4211eb1 100644 --- a/drivemount/help/as/as.po +++ b/drivemount/help/as/as.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Assamese (https://www.transifex.com/mate/teams/13566/as/)\n" +"Language-Team: Assamese (https://app.transifex.com/mate/teams/13566/as/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -34,7 +34,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright diff --git a/drivemount/help/ast/ast.po b/drivemount/help/ast/ast.po index 84d74818..5a271044 100644 --- a/drivemount/help/ast/ast.po +++ b/drivemount/help/ast/ast.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" "Last-Translator: Ḷḷumex03, 2018\n" -"Language-Team: Asturian (https://www.transifex.com/mate/teams/13566/ast/)\n" +"Language-Team: Asturian (https://app.transifex.com/mate/teams/13566/ast/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -35,7 +35,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright diff --git a/drivemount/help/az/az.po b/drivemount/help/az/az.po index 983e362f..6bd30a05 100644 --- a/drivemount/help/az/az.po +++ b/drivemount/help/az/az.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Azerbaijani (https://www.transifex.com/mate/teams/13566/az/)\n" +"Language-Team: Azerbaijani (https://app.transifex.com/mate/teams/13566/az/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -38,7 +38,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright diff --git a/drivemount/help/be/be.po b/drivemount/help/be/be.po index db376540..494bf8b7 100644 --- a/drivemount/help/be/be.po +++ b/drivemount/help/be/be.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" "Last-Translator: Mihail Varantsou <[email protected]>, 2018\n" -"Language-Team: Belarusian (https://www.transifex.com/mate/teams/13566/be/)\n" +"Language-Team: Belarusian (https://app.transifex.com/mate/teams/13566/be/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -37,7 +37,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright diff --git a/drivemount/help/bg/bg.po b/drivemount/help/bg/bg.po index 9b68582b..9e1c22c2 100644 --- a/drivemount/help/bg/bg.po +++ b/drivemount/help/bg/bg.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" "Last-Translator: H Bozhkov, 2020\n" -"Language-Team: Bulgarian (https://www.transifex.com/mate/teams/13566/bg/)\n" +"Language-Team: Bulgarian (https://app.transifex.com/mate/teams/13566/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -45,7 +45,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright diff --git a/drivemount/help/bn/bn.po b/drivemount/help/bn/bn.po index 6b164851..1e0bd2f2 100644 --- a/drivemount/help/bn/bn.po +++ b/drivemount/help/bn/bn.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Bengali (https://www.transifex.com/mate/teams/13566/bn/)\n" +"Language-Team: Bengali (https://app.transifex.com/mate/teams/13566/bn/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -39,7 +39,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright diff --git a/drivemount/help/bn_IN/bn_IN.po b/drivemount/help/bn_IN/bn_IN.po index 3b4f9fa3..92157b61 100644 --- a/drivemount/help/bn_IN/bn_IN.po +++ b/drivemount/help/bn_IN/bn_IN.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Bengali (India) (https://www.transifex.com/mate/teams/13566/bn_IN/)\n" +"Language-Team: Bengali (India) (https://app.transifex.com/mate/teams/13566/bn_IN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -37,7 +37,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright diff --git a/drivemount/help/br/br.po b/drivemount/help/br/br.po index 41dbb37a..9ac27860 100644 --- a/drivemount/help/br/br.po +++ b/drivemount/help/br/br.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" "Last-Translator: Alan Monfort <[email protected]>, 2018\n" -"Language-Team: Breton (https://www.transifex.com/mate/teams/13566/br/)\n" +"Language-Team: Breton (https://app.transifex.com/mate/teams/13566/br/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -35,7 +35,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright diff --git a/drivemount/help/bs/bs.po b/drivemount/help/bs/bs.po index 39173ae8..544fe77c 100644 --- a/drivemount/help/bs/bs.po +++ b/drivemount/help/bs/bs.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" "Last-Translator: Sky Lion <[email protected]>, 2018\n" -"Language-Team: Bosnian (https://www.transifex.com/mate/teams/13566/bs/)\n" +"Language-Team: Bosnian (https://app.transifex.com/mate/teams/13566/bs/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -35,7 +35,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright diff --git a/drivemount/help/ca/ca.po b/drivemount/help/ca/ca.po index d7351e03..4ab05a7c 100644 --- a/drivemount/help/ca/ca.po +++ b/drivemount/help/ca/ca.po @@ -1,15 +1,15 @@ # # Translators: # Stefano Karapetsas <[email protected]>, 2018 -# Robert Antoni Buj Gelonch <[email protected]>, 2020 +# Robert Antoni Buj i Gelonch <[email protected]>, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" -"Last-Translator: Robert Antoni Buj Gelonch <[email protected]>, 2020\n" -"Language-Team: Catalan (https://www.transifex.com/mate/teams/13566/ca/)\n" +"Last-Translator: Robert Antoni Buj i Gelonch <[email protected]>, 2021\n" +"Language-Team: Catalan (https://app.transifex.com/mate/teams/13566/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -21,7 +21,7 @@ msgctxt "_" msgid "translator-credits" msgstr "" "Aniol Gervasi <[email protected]>, 2009\n" -"Robert Antoni Buj Gelonch <[email protected]>, 2018, 2019" +"Robert Antoni Buj Gelonch <[email protected]>, 2018, 2019, 2020, 2021" #. (itstool) path: articleinfo/title #: C/index.docbook:22 @@ -39,9 +39,9 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" -"<year>2015-2020</year> <holder>Projecte de documentació de MATE</holder>" +"<year>2015-2021</year> <holder>Projecte de documentació de MATE</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:32 diff --git a/drivemount/help/ca@valencia/[email protected] b/drivemount/help/ca@valencia/[email protected] index 00e86977..6bb9fc5a 100644 --- a/drivemount/help/ca@valencia/[email protected] +++ b/drivemount/help/ca@valencia/[email protected] @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" "Last-Translator: Empar Montoro <[email protected]>, 2018\n" -"Language-Team: Catalan (Valencian) (https://www.transifex.com/mate/teams/13566/ca@valencia/)\n" +"Language-Team: Catalan (Valencian) (https://app.transifex.com/mate/teams/13566/ca@valencia/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -43,7 +43,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright diff --git a/drivemount/help/cmn/cmn.po b/drivemount/help/cmn/cmn.po index 8add215e..c378660e 100644 --- a/drivemount/help/cmn/cmn.po +++ b/drivemount/help/cmn/cmn.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" "Last-Translator: 趙惟倫 <[email protected]>, 2018\n" -"Language-Team: Chinese (Mandarin) (https://www.transifex.com/mate/teams/13566/cmn/)\n" +"Language-Team: Chinese (Mandarin) (https://app.transifex.com/mate/teams/13566/cmn/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -37,7 +37,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright diff --git a/drivemount/help/crh/crh.po b/drivemount/help/crh/crh.po index 30abbf95..952b79d9 100644 --- a/drivemount/help/crh/crh.po +++ b/drivemount/help/crh/crh.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Crimean Turkish (https://www.transifex.com/mate/teams/13566/crh/)\n" +"Language-Team: Crimean Turkish (https://app.transifex.com/mate/teams/13566/crh/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -36,7 +36,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright diff --git a/drivemount/help/cs/cs.po b/drivemount/help/cs/cs.po index 099350e9..54023c88 100644 --- a/drivemount/help/cs/cs.po +++ b/drivemount/help/cs/cs.po @@ -3,15 +3,16 @@ # Stefano Karapetsas <[email protected]>, 2018 # ToMáš Marný, 2018 # Wolfgang Ulbrich <[email protected]>, 2018 -# Lucas Lommer <[email protected]>, 2020 +# Roman Horník <[email protected]>, 2021 +# Lukáš Lommer <[email protected]>, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" -"Last-Translator: Lucas Lommer <[email protected]>, 2020\n" -"Language-Team: Czech (https://www.transifex.com/mate/teams/13566/cs/)\n" +"Last-Translator: Lukáš Lommer <[email protected]>, 2021\n" +"Language-Team: Czech (https://app.transifex.com/mate/teams/13566/cs/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -50,8 +51,8 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" -msgstr "<year>2015-2020</year> <holder>Dokumentační projekt MATE</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" +msgstr "<year>2015-2021</year> <holder>Projekt dokumentace MATE</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:32 @@ -597,3 +598,5 @@ msgid "" "OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: " "<_:orderedlist-1/>" msgstr "" +"DOKUMENT A JEHO UPRAVENÉ VERZE JSOU ŠÍŘENY V SOULADU SE ZNĚNÍM LICENCE GNU " +"FREE DOCUMENTATION LICENSE S NÁSLEDUJÍCÍM USTANOVENÍM: <_:orderedlist-1/>" diff --git a/drivemount/help/cy/cy.po b/drivemount/help/cy/cy.po index 20843e63..79e1d1fa 100644 --- a/drivemount/help/cy/cy.po +++ b/drivemount/help/cy/cy.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" "Last-Translator: ciaran, 2018\n" -"Language-Team: Welsh (https://www.transifex.com/mate/teams/13566/cy/)\n" +"Language-Team: Welsh (https://app.transifex.com/mate/teams/13566/cy/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -37,7 +37,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright diff --git a/drivemount/help/da/da.po b/drivemount/help/da/da.po index 78dcbe4e..cc6e285d 100644 --- a/drivemount/help/da/da.po +++ b/drivemount/help/da/da.po @@ -1,15 +1,15 @@ # # Translators: # Stefano Karapetsas <[email protected]>, 2018 -# Joe Hansen <[email protected]>, 2020 +# Joe Hansen <[email protected]>, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" -"Last-Translator: Joe Hansen <[email protected]>, 2020\n" -"Language-Team: Danish (https://www.transifex.com/mate/teams/13566/da/)\n" +"Last-Translator: Joe Hansen <[email protected]>, 2021\n" +"Language-Team: Danish (https://app.transifex.com/mate/teams/13566/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -20,10 +20,10 @@ msgstr "" msgctxt "_" msgid "translator-credits" msgstr "" -"\"Joe Hansen, 2012, 2013, 2014, 2015, 2016, 2017, 2018.\\n\"\n" -"\"\\n\"\n" -"\"Dansk-gruppen <[email protected]>\\n\"\n" -"\"Mere info: http://www.dansk-gruppen.dk\"" +"Joe Hansen 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021.\n" +"\n" +"Dansk-gruppen <[email protected]>\n" +"Mere info: http://www.dansk-gruppen.dk" #. (itstool) path: articleinfo/title #: C/index.docbook:22 @@ -41,8 +41,8 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" -msgstr "<year>2015-2020</year> <holder>MATE-dokumentationsprojektet</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" +msgstr "<year>2015-2021</year> <holder>MATE-dokumentationsprojektet</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:32 @@ -93,8 +93,8 @@ msgid "" "<orgname>GNOME Documentation Project</orgname> " "<address><email>[email protected]</email></address> </affiliation>" msgstr "" -"<firstname>Trent</firstname> <surname>Lloyd</surname> <affiliation> <orgname" -">GNOME-dokumentationsprojektet</orgname> " +"<firstname>Trent</firstname> <surname>Lloyd</surname> <affiliation> " +"<orgname>GNOME-dokumentationsprojektet</orgname> " "<address><email>[email protected]</email></address> </affiliation>" #. (itstool) path: authorgroup/author @@ -124,8 +124,8 @@ msgid "" "<orgname>GNOME Documentation Project</orgname> <address> " "<email>[email protected]</email> </address> </affiliation>" msgstr "" -"<firstname>Dan </firstname> <surname> Mueth</surname> <affiliation> <orgname" -">GNOME-dokumentationsprojektet</orgname> <address> " +"<firstname>Dan </firstname> <surname> Mueth</surname> <affiliation> " +"<orgname>GNOME-dokumentationsprojektet</orgname> <address> " "<email>[email protected]</email> </address> </affiliation>" #. (itstool) path: revdescription/para diff --git a/drivemount/help/de/de.po b/drivemount/help/de/de.po index 7909dc94..1d4a64ec 100644 --- a/drivemount/help/de/de.po +++ b/drivemount/help/de/de.po @@ -5,16 +5,17 @@ # Tobias Bannert <[email protected]>, 2018 # Wolfgang Ulbrich <[email protected]>, 2018 # Julian Rüger <[email protected]>, 2018 -# Marcel Artz <[email protected]>, 2019 +# Marcel Artz, 2019 # Michael Hartmann, 2020 +# Xpistian <[email protected]>, 2023 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" -"Last-Translator: Michael Hartmann, 2020\n" -"Language-Team: German (https://www.transifex.com/mate/teams/13566/de/)\n" +"Last-Translator: Xpistian <[email protected]>, 2023\n" +"Language-Team: German (https://app.transifex.com/mate/teams/13566/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -49,8 +50,8 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" -msgstr "<year>2015-2020</year> <holder>MATE Dokumentations Projekt</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" +msgstr "<year>2015-2021</year> <holder>Mate-Dokumentationsprojekt</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:32 diff --git a/drivemount/help/dz/dz.po b/drivemount/help/dz/dz.po index 54fa0fc3..d2d9c859 100644 --- a/drivemount/help/dz/dz.po +++ b/drivemount/help/dz/dz.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Dzongkha (https://www.transifex.com/mate/teams/13566/dz/)\n" +"Language-Team: Dzongkha (https://app.transifex.com/mate/teams/13566/dz/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -37,7 +37,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright diff --git a/drivemount/help/el/el.po b/drivemount/help/el/el.po index e9f6bf49..08b4c4cd 100644 --- a/drivemount/help/el/el.po +++ b/drivemount/help/el/el.po @@ -6,14 +6,15 @@ # kosmmart <[email protected]>, 2018 # TheDimitris15, 2019 # anvo <[email protected]>, 2019 +# Chris Balabanis, 2023 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" -"Last-Translator: anvo <[email protected]>, 2019\n" -"Language-Team: Greek (https://www.transifex.com/mate/teams/13566/el/)\n" +"Last-Translator: Chris Balabanis, 2023\n" +"Language-Team: Greek (https://app.transifex.com/mate/teams/13566/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -43,8 +44,8 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" -msgstr "" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" +msgstr "<year>2015-2021</year> <holder>Έργο Τεκμηρίωσης MATE</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:32 diff --git a/drivemount/help/en_AU/en_AU.po b/drivemount/help/en_AU/en_AU.po index cd292e0f..8fb66e2a 100644 --- a/drivemount/help/en_AU/en_AU.po +++ b/drivemount/help/en_AU/en_AU.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" "Last-Translator: Michael Findlay <[email protected]>, 2018\n" -"Language-Team: English (Australia) (https://www.transifex.com/mate/teams/13566/en_AU/)\n" +"Language-Team: English (Australia) (https://app.transifex.com/mate/teams/13566/en_AU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -34,7 +34,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright diff --git a/drivemount/help/en_CA/en_CA.po b/drivemount/help/en_CA/en_CA.po index 23a19b8d..7147f275 100644 --- a/drivemount/help/en_CA/en_CA.po +++ b/drivemount/help/en_CA/en_CA.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: English (Canada) (https://www.transifex.com/mate/teams/13566/en_CA/)\n" +"Language-Team: English (Canada) (https://app.transifex.com/mate/teams/13566/en_CA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -34,7 +34,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright diff --git a/drivemount/help/en_GB/en_GB.po b/drivemount/help/en_GB/en_GB.po index 54e78214..4c782ae0 100644 --- a/drivemount/help/en_GB/en_GB.po +++ b/drivemount/help/en_GB/en_GB.po @@ -1,16 +1,15 @@ # # Translators: # Stefano Karapetsas <[email protected]>, 2018 -# Martin Wimpress <[email protected]>, 2018 -# Andi Chandler <[email protected]>, 2020 +# Andi Chandler <[email protected]>, 2023 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" -"Last-Translator: Andi Chandler <[email protected]>, 2020\n" -"Language-Team: English (United Kingdom) (https://www.transifex.com/mate/teams/13566/en_GB/)\n" +"Last-Translator: Andi Chandler <[email protected]>, 2023\n" +"Language-Team: English (United Kingdom) (https://app.transifex.com/mate/teams/13566/en_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -20,12 +19,14 @@ msgstr "" #. Put one translator per line, in the form NAME <EMAIL>, YEAR1, YEAR2 msgctxt "_" msgid "translator-credits" -msgstr "Martin Wimpress" +msgstr "" +"Martin Wimpress\n" +"Andi Chandler" #. (itstool) path: articleinfo/title #: C/index.docbook:22 msgid "Disk Mounter Manual" -msgstr "" +msgstr "Disk Mounter Manual" #. (itstool) path: abstract/para #: C/index.docbook:24 @@ -33,16 +34,18 @@ msgid "" "The Disk Mounter applet enables you to quickly mount or unmount various " "types of drives and file systems from a panel." msgstr "" +"The Disk Mounter applet enables you to quickly mount or unmount various " +"types of drives and file systems from a panel." #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" -msgstr "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" +msgstr "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:32 msgid "<year>2005</year> <holder>Trent Lloyd</holder>" -msgstr "" +msgstr "<year>2005</year> <holder>Trent Lloyd</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:36 @@ -52,12 +55,12 @@ msgstr "<year>2004</year> <holder>Sun Microsystems</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:40 msgid "<year>2002</year> <holder>John Fleck</holder>" -msgstr "" +msgstr "<year>2002</year> <holder>John Fleck</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:44 msgid "<year>2000</year> <holder>Dan Mueth</holder>" -msgstr "" +msgstr "<year>2000</year> <holder>Dan Mueth</holder>" #. (itstool) path: publisher/publishername #. (itstool) path: revdescription/para @@ -88,6 +91,9 @@ msgid "" "<orgname>GNOME Documentation Project</orgname> " "<address><email>[email protected]</email></address> </affiliation>" msgstr "" +"<firstname>Trent</firstname> <surname>Lloyd</surname> <affiliation> " +"<orgname>GNOME Documentation Project</orgname> " +"<address><email>[email protected]</email></address> </affiliation>" #. (itstool) path: authorgroup/author #: C/index.docbook:81 @@ -95,6 +101,8 @@ msgid "" "<firstname>Sun</firstname> <surname>GNOME Documentation Team</surname> " "<affiliation><orgname>Sun Microsystems</orgname></affiliation>" msgstr "" +"<firstname>Sun</firstname> <surname>GNOME Documentation Team</surname> " +"<affiliation><orgname>Sun Microsystems</orgname></affiliation>" #. (itstool) path: authorgroup/author #: C/index.docbook:86 @@ -103,6 +111,9 @@ msgid "" "<orgname>GNOME Documentation Project</orgname> <address> " "<email>[email protected]</email> </address> </affiliation>" msgstr "" +"<firstname>John </firstname> <surname> Fleck</surname> <affiliation> " +"<orgname>GNOME Documentation Project</orgname> <address> " +"<email>[email protected]</email> </address> </affiliation>" #. (itstool) path: authorgroup/author #: C/index.docbook:94 @@ -111,6 +122,9 @@ msgid "" "<orgname>GNOME Documentation Project</orgname> <address> " "<email>[email protected]</email> </address> </affiliation>" msgstr "" +"<firstname>Dan </firstname> <surname> Mueth</surname> <affiliation> " +"<orgname>GNOME Documentation Project</orgname> <address> " +"<email>[email protected]</email> </address> </affiliation>" #. (itstool) path: revdescription/para #: C/index.docbook:124 @@ -123,11 +137,13 @@ msgid "" "<revnumber>Disk Mounter Applet Manual V2.12</revnumber> <date>July " "2015</date> <_:revdescription-1/>" msgstr "" +"<revnumber>Disk Mounter Applet Manual V2.12</revnumber> <date>July " +"2015</date> <_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:132 msgid "Trent Lloyd" -msgstr "" +msgstr "Trent Lloyd" #. (itstool) path: revhistory/revision #: C/index.docbook:128 @@ -135,11 +151,13 @@ msgid "" "<revnumber>Disk Mounter Applet Manual V2.11</revnumber> <date>July " "2015</date> <_:revdescription-1/>" msgstr "" +"<revnumber>Disk Mounter Applet Manual V2.11</revnumber> <date>July " +"2015</date> <_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:140 msgid "Sun GNOME Documentation Team" -msgstr "" +msgstr "Sun GNOME Documentation Team" #. (itstool) path: revhistory/revision #: C/index.docbook:136 @@ -147,11 +165,13 @@ msgid "" "<revnumber>Disk Mounter Applet Manual V2.10</revnumber> <date>February " "2004</date> <_:revdescription-1/>" msgstr "" +"<revnumber>Disk Mounter Applet Manual V2.10</revnumber> <date>February " +"2004</date> <_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:148 msgid "John Fleck <email>[email protected]</email>" -msgstr "" +msgstr "John Fleck <email>[email protected]</email>" #. (itstool) path: revhistory/revision #: C/index.docbook:144 @@ -159,11 +179,13 @@ msgid "" "<revnumber>Disk Mounter Applet Manual V2.0</revnumber> <date>March " "2002</date> <_:revdescription-1/>" msgstr "" +"<revnumber>Disk Mounter Applet Manual V2.0</revnumber> <date>March " +"2002</date> <_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:158 msgid "Dan Mueth <email>[email protected]</email>" -msgstr "" +msgstr "Dan Mueth <email>[email protected]</email>" #. (itstool) path: revhistory/revision #: C/index.docbook:154 @@ -171,11 +193,13 @@ msgid "" "<revnumber>Drive Mount Applet Manual</revnumber> <date>April 2000</date> " "<_:revdescription-1/>" msgstr "" +"<revnumber>Drive Mount Applet Manual</revnumber> <date>April 2000</date> " +"<_:revdescription-1/>" #. (itstool) path: articleinfo/releaseinfo #: C/index.docbook:166 msgid "This manual describes version 1.10.2 of Disk Mounter." -msgstr "" +msgstr "This manual describes version 1.10.2 of Disk Mounter." #. (itstool) path: legalnotice/title #: C/index.docbook:169 @@ -190,11 +214,15 @@ msgid "" "url=\"help:mate-user-guide/feedback\" type=\"help\">MATE Feedback " "Page</ulink>." msgstr "" +"To report a bug or make a suggestion regarding the <application>Disk " +"Mounter</application> or this manual, follow the directions in the <ulink " +"url=\"help:mate-user-guide/feedback\" type=\"help\">MATE Feedback " +"Page</ulink>." #. (itstool) path: article/indexterm #: C/index.docbook:178 msgid "<primary>Disk Mounter</primary>" -msgstr "" +msgstr "<primary>Disk Mounter</primary>" #. (itstool) path: sect1/title #: C/index.docbook:185 @@ -217,6 +245,8 @@ msgid "" "external ref='figures/drivemount-applet_example.png' " "md5='8c212ac1173b8716b962165890dddc28'" msgstr "" +"external ref='figures/drivemount-applet_example.png' " +"md5='8c212ac1173b8716b962165890dddc28'" #. (itstool) path: screenshot/mediaobject #: C/index.docbook:190 @@ -225,6 +255,9 @@ msgid "" "format=\"PNG\"/> </imageobject> <textobject> <phrase>The Disk Mounter " "applet.</phrase> </textobject>" msgstr "" +"<imageobject><imagedata fileref=\"figures/drivemount-applet_example.png\" " +"format=\"PNG\"/> </imageobject> <textobject> <phrase>The Disk Mounter " +"applet.</phrase> </textobject>" #. (itstool) path: sect1/para #: C/index.docbook:201 @@ -232,6 +265,8 @@ msgid "" "The <application>Disk Mounter</application> enables you to quickly mount and" " unmount various types of drives and file systems." msgstr "" +"The <application>Disk Mounter</application> enables you to quickly mount and" +" unmount various types of drives and file systems." #. (itstool) path: sect1/para #: C/index.docbook:204 @@ -242,11 +277,16 @@ msgid "" "type=\"man\"><citerefentry><refentrytitle>fstab</refentrytitle><manvolnum>5</manvolnum></citerefentry></ulink>" " for more information about the necessary system administration tasks." msgstr "" +"For the <application>Disk Mounter</application> to work properly, your " +"system administrator must configure your system appropriately. Refer to the " +"<ulink url=\"man:fstab\" " +"type=\"man\"><citerefentry><refentrytitle>fstab</refentrytitle><manvolnum>5</manvolnum></citerefentry></ulink>" +" for more information about the necessary system administration tasks." #. (itstool) path: sect2/title #: C/index.docbook:209 msgid "To Add Disk Mounter to a Panel" -msgstr "" +msgstr "To Add Disk Mounter to a Panel" #. (itstool) path: sect2/para #: C/index.docbook:210 @@ -254,11 +294,13 @@ msgid "" "To add <application>Disk Mounter</application> to a panel, perform the " "following steps:" msgstr "" +"To add <application>Disk Mounter</application> to a panel, perform the " +"following steps:" #. (itstool) path: listitem/para #: C/index.docbook:216 msgid "Right-click on the panel." -msgstr "" +msgstr "Right-click on the panel." #. (itstool) path: listitem/para #: C/index.docbook:221 @@ -271,6 +313,8 @@ msgid "" "Scroll down the list of items in the <guilabel>Add to Panel</guilabel> " "dialog, then select <guilabel>Disk Mounter</guilabel>." msgstr "" +"Scroll down the list of items in the <guilabel>Add to Panel</guilabel> " +"dialogue, then select <guilabel>Disk Mounter</guilabel>." #. (itstool) path: listitem/para #: C/index.docbook:232 @@ -280,7 +324,7 @@ msgstr "Click <guibutton>Add</guibutton>." #. (itstool) path: sect2/title #: C/index.docbook:240 msgid "Manually Mounting and Unmounting File Systems" -msgstr "" +msgstr "Manually Mounting and Unmounting File Systems" #. (itstool) path: sect2/para #: C/index.docbook:241 @@ -288,6 +332,8 @@ msgid "" "Many file systems on Linux and other Unix-like systems must be manually " "mounted and unmounted." msgstr "" +"Many file systems on Linux and other Unix-like systems must be manually " +"mounted and unmounted." #. (itstool) path: sect2/para #: C/index.docbook:244 @@ -296,6 +342,9 @@ msgid "" "When you finish working with a file system, you should unmount the file " "system." msgstr "" +"When a file system is mounted, you can read and write to the file system. " +"When you finish working with a file system, you should unmount the file " +"system." #. (itstool) path: sect2/para #: C/index.docbook:247 @@ -305,6 +354,10 @@ msgid "" "not always write the changes immediately. Such systems typically buffer the " "changes to the disk, to improve the speed of the system." msgstr "" +"You must unmount removable drives, such as floppy disks and Zip disks, " +"before you remove the media, because Linux and other Unix-like systems do " +"not always write the changes immediately. Such systems typically buffer the " +"changes to the disk, to improve the speed of the system." #. (itstool) path: sect2/para #: C/index.docbook:250 @@ -314,6 +367,10 @@ msgid "" "shuts down. Removable media must be mounted and unmounted manually, for " "example by using the <application>Disk Mounter</application>." msgstr "" +"Partitions on fixed drives, such as your hard drive, are typically mounted " +"automatically when your computer boots, and unmounted when your computer " +"shuts down. Removable media must be mounted and unmounted manually, for " +"example by using the <application>Disk Mounter</application>." #. (itstool) path: sect2/para #: C/index.docbook:253 @@ -323,6 +380,10 @@ msgid "" " Mounter</application> so that you can unmount them when you are finished, " "and provide a visual indication that they are present." msgstr "" +"Some systems may also automatically mount some removable media (such as USB " +"and IEEE1394 disks), these devices may also come up in the <application>Disk" +" Mounter</application> so that you can unmount them when you are finished, " +"and provide a visual indication that they are present." #. (itstool) path: sect1/title #: C/index.docbook:262 @@ -332,7 +393,7 @@ msgstr "Usage" #. (itstool) path: sect2/title #: C/index.docbook:265 msgid "To Display the Name and Mount Status of a Drive" -msgstr "" +msgstr "To Display the Name and Mount Status of a Drive" #. (itstool) path: sect2/para #: C/index.docbook:266 @@ -341,6 +402,9 @@ msgid "" "the drive icon in the panel. A tooltip displays the name and mount status of" " the drive." msgstr "" +"To display the name and mount status of a drive, move the mouse pointer to " +"the drive icon in the panel. A tooltip displays the name and mount status of" +" the drive." #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -353,11 +417,13 @@ msgid "" "external ref='figures/drivemount-applet_status.png' " "md5='a150e5b8efeee5c397591acbda957f1d'" msgstr "" +"external ref='figures/drivemount-applet_status.png' " +"md5='a150e5b8efeee5c397591acbda957f1d'" #. (itstool) path: sect2/title #: C/index.docbook:275 msgid "To Mount, Unmount or Eject a Drive" -msgstr "" +msgstr "To Mount, Unmount or Eject a Drive" #. (itstool) path: sect2/para #: C/index.docbook:276 @@ -365,6 +431,8 @@ msgid "" "To mount drive, click on the drive icon in the panel and then select the " "<guimenuitem>Mount Drive</guimenuitem> option." msgstr "" +"To mount drive, click on the drive icon in the panel and then select the " +"<guimenuitem>Mount Drive</guimenuitem> option." #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -377,6 +445,8 @@ msgid "" "external ref='figures/drivemount-applet_mount.png' " "md5='d9ed1ad7dd9a94891d7bf943d42b79cf'" msgstr "" +"external ref='figures/drivemount-applet_mount.png' " +"md5='d9ed1ad7dd9a94891d7bf943d42b79cf'" #. (itstool) path: sect2/para #: C/index.docbook:282 @@ -385,6 +455,9 @@ msgid "" " <guimenuitem>Unmount Drive</guimenuitem> option, or if the device is a CD-" "ROM Drive, it may be labeled <guimenuitem>Eject Drive</guimenuitem>" msgstr "" +"To unmount a drive, click on the drive icon in the panel and then select the" +" <guimenuitem>Unmount Drive</guimenuitem> option, or if the device is a CD-" +"ROM Drive, it may be labelled <guimenuitem>Eject Drive</guimenuitem>" #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -397,11 +470,13 @@ msgid "" "external ref='figures/drivemount-applet_eject.png' " "md5='784afdef2d482b1b70ad2d44562205de'" msgstr "" +"external ref='figures/drivemount-applet_eject.png' " +"md5='784afdef2d482b1b70ad2d44562205de'" #. (itstool) path: sect2/title #: C/index.docbook:291 msgid "To Browse the Contents of a Drive" -msgstr "" +msgstr "To Browse the Contents of a Drive" #. (itstool) path: sect2/para #: C/index.docbook:292 @@ -409,6 +484,8 @@ msgid "" "To use a file manager to browse the contents of a drive, click on the drive " "icon in the panel, then choose <guimenuitem>Open Drive</guimenuitem>." msgstr "" +"To use a file manager to browse the contents of a drive, click on the drive " +"icon in the panel, then choose <guimenuitem>Open Drive</guimenuitem>." #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -421,11 +498,13 @@ msgid "" "external ref='figures/drivemount-applet_open.png' " "md5='3140016491c9d55772b1c62e4893e9e7'" msgstr "" +"external ref='figures/drivemount-applet_open.png' " +"md5='3140016491c9d55772b1c62e4893e9e7'" #. (itstool) path: sect2/para #: C/index.docbook:298 msgid "You can only browse the contents of a mounted drive." -msgstr "" +msgstr "You can only browse the contents of a mounted drive." #. (itstool) path: para/ulink #: C/legal.xml:9 diff --git a/drivemount/help/eo/eo.po b/drivemount/help/eo/eo.po index 4422c50b..1979ef05 100644 --- a/drivemount/help/eo/eo.po +++ b/drivemount/help/eo/eo.po @@ -7,10 +7,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" "Last-Translator: Cora Loftis, 2018\n" -"Language-Team: Esperanto (https://www.transifex.com/mate/teams/13566/eo/)\n" +"Language-Team: Esperanto (https://app.transifex.com/mate/teams/13566/eo/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -44,7 +44,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright diff --git a/drivemount/help/es/es.po b/drivemount/help/es/es.po index 346915fc..0f2375bd 100644 --- a/drivemount/help/es/es.po +++ b/drivemount/help/es/es.po @@ -5,20 +5,20 @@ # Wolfgang Ulbrich <[email protected]>, 2018 # Joel Barrios <[email protected]>, 2018 # Luis Zárate <[email protected]>, 2019 -# Toni Estévez <[email protected]>, 2020 +# Toni Estévez <[email protected]>, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" -"Last-Translator: Toni Estévez <[email protected]>, 2020\n" -"Language-Team: Spanish (https://www.transifex.com/mate/teams/13566/es/)\n" +"Last-Translator: Toni Estévez <[email protected]>, 2021\n" +"Language-Team: Spanish (https://app.transifex.com/mate/teams/13566/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: es\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #. Put one translator per line, in the form NAME <EMAIL>, YEAR1, YEAR2 msgctxt "_" @@ -45,9 +45,9 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" -"<year>2015-2020</year> <holder>Proyecto de documentación de MATE</holder>" +"<year>2015-2021</year> <holder>Proyecto de documentación de MATE</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:32 @@ -377,8 +377,8 @@ msgid "" msgstr "" "Las particiones de las unidades fijas, como el disco duro, suelen montarse " "automáticamente al arrancar y desmontarse al apagar el equipo. Los soportes " -"extraíbles deben montarse y desmontarse manualmente, por ejemplo, utilizando" -" <application>Montador de discos</application>." +"extraíbles deben montarse y desmontarse manualmente, por ejemplo, usando " +"<application>Montador de discos</application>." #. (itstool) path: sect2/para #: C/index.docbook:253 @@ -561,9 +561,9 @@ msgid "" "aware of those trademarks, then the names are in capital letters or initial " "capital letters." msgstr "" -"Muchos de los nombres utilizados por las empresas para distinguir sus " -"productos y servicios se consideran marcas comerciales. Cuando esos nombres " -"aparecen en cualquier documentación de MATE y los miembros del proyecto de " +"Muchos de los nombres usados por las empresas para distinguir sus productos " +"y servicios se consideran marcas comerciales. Cuando esos nombres aparecen " +"en cualquier documentación de MATE y los miembros del proyecto de " "documentación de MATE son conscientes de que se trata de marcas registradas," " dichos nombres se escriben en letras mayúsculas o con inical mayúscula." diff --git a/drivemount/help/es_AR/es_AR.po b/drivemount/help/es_AR/es_AR.po index 298162bd..276b6a8c 100644 --- a/drivemount/help/es_AR/es_AR.po +++ b/drivemount/help/es_AR/es_AR.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" "Last-Translator: Dario Badagnani <[email protected]>, 2018\n" -"Language-Team: Spanish (Argentina) (https://www.transifex.com/mate/teams/13566/es_AR/)\n" +"Language-Team: Spanish (Argentina) (https://app.transifex.com/mate/teams/13566/es_AR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: es_AR\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #. Put one translator per line, in the form NAME <EMAIL>, YEAR1, YEAR2 msgctxt "_" @@ -37,7 +37,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright diff --git a/drivemount/help/es_CL/es_CL.po b/drivemount/help/es_CL/es_CL.po index 1dc55f73..123ce00f 100644 --- a/drivemount/help/es_CL/es_CL.po +++ b/drivemount/help/es_CL/es_CL.po @@ -1,21 +1,21 @@ # # Translators: # Stefano Karapetsas <[email protected]>, 2018 -# prflr88 <[email protected]>, 2018 +# Pablo Lezaeta Reyes <[email protected]>, 2018 # Robert Petitpas <[email protected]>, 2018 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" "Last-Translator: Robert Petitpas <[email protected]>, 2018\n" -"Language-Team: Spanish (Chile) (https://www.transifex.com/mate/teams/13566/es_CL/)\n" +"Language-Team: Spanish (Chile) (https://app.transifex.com/mate/teams/13566/es_CL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: es_CL\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #. Put one translator per line, in the form NAME <EMAIL>, YEAR1, YEAR2 msgctxt "_" @@ -36,7 +36,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright diff --git a/drivemount/help/es_CO/es_CO.po b/drivemount/help/es_CO/es_CO.po index ef878f7f..0d3be165 100644 --- a/drivemount/help/es_CO/es_CO.po +++ b/drivemount/help/es_CO/es_CO.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" "Last-Translator: Julian Borrero <[email protected]>, 2018\n" -"Language-Team: Spanish (Colombia) (https://www.transifex.com/mate/teams/13566/es_CO/)\n" +"Language-Team: Spanish (Colombia) (https://app.transifex.com/mate/teams/13566/es_CO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: es_CO\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #. Put one translator per line, in the form NAME <EMAIL>, YEAR1, YEAR2 msgctxt "_" @@ -36,7 +36,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright diff --git a/drivemount/help/es_CR/es_CR.po b/drivemount/help/es_CR/es_CR.po index d87b6202..df4c6d05 100644 --- a/drivemount/help/es_CR/es_CR.po +++ b/drivemount/help/es_CR/es_CR.po @@ -5,15 +5,15 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/mate/teams/13566/es_CR/)\n" +"Language-Team: Spanish (Costa Rica) (https://app.transifex.com/mate/teams/13566/es_CR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: es_CR\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #. Put one translator per line, in the form NAME <EMAIL>, YEAR1, YEAR2 msgctxt "_" @@ -36,7 +36,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright diff --git a/drivemount/help/es_DO/es_DO.po b/drivemount/help/es_DO/es_DO.po index b7c47cbc..b35c8218 100644 --- a/drivemount/help/es_DO/es_DO.po +++ b/drivemount/help/es_DO/es_DO.po @@ -5,15 +5,15 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/mate/teams/13566/es_DO/)\n" +"Language-Team: Spanish (Dominican Republic) (https://app.transifex.com/mate/teams/13566/es_DO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: es_DO\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #. Put one translator per line, in the form NAME <EMAIL>, YEAR1, YEAR2 msgctxt "_" @@ -36,7 +36,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright diff --git a/drivemount/help/es_EC/es_EC.po b/drivemount/help/es_EC/es_EC.po index 1e15c42f..f462c06b 100644 --- a/drivemount/help/es_EC/es_EC.po +++ b/drivemount/help/es_EC/es_EC.po @@ -5,15 +5,15 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Spanish (Ecuador) (https://www.transifex.com/mate/teams/13566/es_EC/)\n" +"Language-Team: Spanish (Ecuador) (https://app.transifex.com/mate/teams/13566/es_EC/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: es_EC\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #. Put one translator per line, in the form NAME <EMAIL>, YEAR1, YEAR2 msgctxt "_" @@ -36,7 +36,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright diff --git a/drivemount/help/es_ES/es_ES.po b/drivemount/help/es_ES/es_ES.po index 85e9f84d..d18de876 100644 --- a/drivemount/help/es_ES/es_ES.po +++ b/drivemount/help/es_ES/es_ES.po @@ -5,15 +5,15 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Spanish (Spain) (https://www.transifex.com/mate/teams/13566/es_ES/)\n" +"Language-Team: Spanish (Spain) (https://app.transifex.com/mate/teams/13566/es_ES/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: es_ES\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #. Put one translator per line, in the form NAME <EMAIL>, YEAR1, YEAR2 msgctxt "_" @@ -36,7 +36,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright diff --git a/drivemount/help/es_MX/es_MX.po b/drivemount/help/es_MX/es_MX.po index 968c26a9..966f4a74 100644 --- a/drivemount/help/es_MX/es_MX.po +++ b/drivemount/help/es_MX/es_MX.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" "Last-Translator: Luis Armando Medina <[email protected]>, 2018\n" -"Language-Team: Spanish (Mexico) (https://www.transifex.com/mate/teams/13566/es_MX/)\n" +"Language-Team: Spanish (Mexico) (https://app.transifex.com/mate/teams/13566/es_MX/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: es_MX\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #. Put one translator per line, in the form NAME <EMAIL>, YEAR1, YEAR2 msgctxt "_" @@ -42,7 +42,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright diff --git a/drivemount/help/es_NI/es_NI.po b/drivemount/help/es_NI/es_NI.po index aed42ca8..74216978 100644 --- a/drivemount/help/es_NI/es_NI.po +++ b/drivemount/help/es_NI/es_NI.po @@ -5,15 +5,15 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Spanish (Nicaragua) (https://www.transifex.com/mate/teams/13566/es_NI/)\n" +"Language-Team: Spanish (Nicaragua) (https://app.transifex.com/mate/teams/13566/es_NI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: es_NI\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #. Put one translator per line, in the form NAME <EMAIL>, YEAR1, YEAR2 msgctxt "_" @@ -36,7 +36,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright diff --git a/drivemount/help/es_PA/es_PA.po b/drivemount/help/es_PA/es_PA.po index 75539073..0a411105 100644 --- a/drivemount/help/es_PA/es_PA.po +++ b/drivemount/help/es_PA/es_PA.po @@ -5,15 +5,15 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Spanish (Panama) (https://www.transifex.com/mate/teams/13566/es_PA/)\n" +"Language-Team: Spanish (Panama) (https://app.transifex.com/mate/teams/13566/es_PA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: es_PA\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #. Put one translator per line, in the form NAME <EMAIL>, YEAR1, YEAR2 msgctxt "_" @@ -36,7 +36,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright diff --git a/drivemount/help/es_PE/es_PE.po b/drivemount/help/es_PE/es_PE.po index e7efb5db..e30668d6 100644 --- a/drivemount/help/es_PE/es_PE.po +++ b/drivemount/help/es_PE/es_PE.po @@ -5,15 +5,15 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Spanish (Peru) (https://www.transifex.com/mate/teams/13566/es_PE/)\n" +"Language-Team: Spanish (Peru) (https://app.transifex.com/mate/teams/13566/es_PE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: es_PE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #. Put one translator per line, in the form NAME <EMAIL>, YEAR1, YEAR2 msgctxt "_" @@ -36,7 +36,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright diff --git a/drivemount/help/es_PR/es_PR.po b/drivemount/help/es_PR/es_PR.po index 6e469639..3ec9d77c 100644 --- a/drivemount/help/es_PR/es_PR.po +++ b/drivemount/help/es_PR/es_PR.po @@ -5,15 +5,15 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Spanish (Puerto Rico) (https://www.transifex.com/mate/teams/13566/es_PR/)\n" +"Language-Team: Spanish (Puerto Rico) (https://app.transifex.com/mate/teams/13566/es_PR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: es_PR\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #. Put one translator per line, in the form NAME <EMAIL>, YEAR1, YEAR2 msgctxt "_" @@ -36,7 +36,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright diff --git a/drivemount/help/es_SV/es_SV.po b/drivemount/help/es_SV/es_SV.po index 7d3ecd0c..5e74e86f 100644 --- a/drivemount/help/es_SV/es_SV.po +++ b/drivemount/help/es_SV/es_SV.po @@ -5,15 +5,15 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Spanish (El Salvador) (https://www.transifex.com/mate/teams/13566/es_SV/)\n" +"Language-Team: Spanish (El Salvador) (https://app.transifex.com/mate/teams/13566/es_SV/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: es_SV\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #. Put one translator per line, in the form NAME <EMAIL>, YEAR1, YEAR2 msgctxt "_" @@ -36,7 +36,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright diff --git a/drivemount/help/es_UY/es_UY.po b/drivemount/help/es_UY/es_UY.po index 09fb1d42..5126edf5 100644 --- a/drivemount/help/es_UY/es_UY.po +++ b/drivemount/help/es_UY/es_UY.po @@ -5,15 +5,15 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Spanish (Uruguay) (https://www.transifex.com/mate/teams/13566/es_UY/)\n" +"Language-Team: Spanish (Uruguay) (https://app.transifex.com/mate/teams/13566/es_UY/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: es_UY\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #. Put one translator per line, in the form NAME <EMAIL>, YEAR1, YEAR2 msgctxt "_" @@ -36,7 +36,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright diff --git a/drivemount/help/es_VE/es_VE.po b/drivemount/help/es_VE/es_VE.po index 6afa6bbb..1f713a3d 100644 --- a/drivemount/help/es_VE/es_VE.po +++ b/drivemount/help/es_VE/es_VE.po @@ -5,15 +5,15 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Spanish (Venezuela) (https://www.transifex.com/mate/teams/13566/es_VE/)\n" +"Language-Team: Spanish (Venezuela) (https://app.transifex.com/mate/teams/13566/es_VE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: es_VE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #. Put one translator per line, in the form NAME <EMAIL>, YEAR1, YEAR2 msgctxt "_" @@ -36,7 +36,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright diff --git a/drivemount/help/et/et.po b/drivemount/help/et/et.po index 29eed471..b9d58e78 100644 --- a/drivemount/help/et/et.po +++ b/drivemount/help/et/et.po @@ -7,10 +7,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" "Last-Translator: Mattias Põldaru <[email protected]>, 2019\n" -"Language-Team: Estonian (https://www.transifex.com/mate/teams/13566/et/)\n" +"Language-Team: Estonian (https://app.transifex.com/mate/teams/13566/et/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -41,7 +41,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright diff --git a/drivemount/help/eu/eu.po b/drivemount/help/eu/eu.po index 8ed0fa8b..3f1b1233 100644 --- a/drivemount/help/eu/eu.po +++ b/drivemount/help/eu/eu.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" "Last-Translator: Alexander Gabilondo <[email protected]>, 2020\n" -"Language-Team: Basque (https://www.transifex.com/mate/teams/13566/eu/)\n" +"Language-Team: Basque (https://app.transifex.com/mate/teams/13566/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -39,7 +39,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright diff --git a/drivemount/help/fa/fa.po b/drivemount/help/fa/fa.po index 9e0156a7..8a94bc51 100644 --- a/drivemount/help/fa/fa.po +++ b/drivemount/help/fa/fa.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" "Last-Translator: Borderliner <[email protected]>, 2018\n" -"Language-Team: Persian (https://www.transifex.com/mate/teams/13566/fa/)\n" +"Language-Team: Persian (https://app.transifex.com/mate/teams/13566/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -35,7 +35,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright diff --git a/drivemount/help/fi/fi.po b/drivemount/help/fi/fi.po index cdccc15d..c9a1034d 100644 --- a/drivemount/help/fi/fi.po +++ b/drivemount/help/fi/fi.po @@ -9,10 +9,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" "Last-Translator: Kimmo Kujansuu <[email protected]>, 2019\n" -"Language-Team: Finnish (https://www.transifex.com/mate/teams/13566/fi/)\n" +"Language-Team: Finnish (https://app.transifex.com/mate/teams/13566/fi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -43,7 +43,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright diff --git a/drivemount/help/fr/fr.po b/drivemount/help/fr/fr.po index c0ae9fb2..eafccf6d 100644 --- a/drivemount/help/fr/fr.po +++ b/drivemount/help/fr/fr.po @@ -1,29 +1,30 @@ # # Translators: # Stefano Karapetsas <[email protected]>, 2018 -# Wolfgang Ulbrich <[email protected]>, 2018 -# Xorg, 2018 +# df3de0cb43d289cd23a753345b3743cd_a20684f, 2018 # Guillaume Fayard <[email protected]>, 2018 # Laurent Napias <[email protected]>, 2018 # Étienne Deparis <[email protected]>, 2018 -# Robert Antoni Buj Gelonch <[email protected]>, 2019 -# Stéphane PETRUS <[email protected]>, 2019 # Jérôme JACQUIN <[email protected]>, 2019 # Laurent Napias, 2020 # Jerom Turible <[email protected]>, 2020 +# Tubuntu, 2020 +# Yoshida Shouyou, 2021 +# Stéphane PETRUS <[email protected]>, 2021 +# Wolfgang Ulbrich <[email protected]>, 2023 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" -"Last-Translator: Jerom Turible <[email protected]>, 2020\n" -"Language-Team: French (https://www.transifex.com/mate/teams/13566/fr/)\n" +"Last-Translator: Wolfgang Ulbrich <[email protected]>, 2023\n" +"Language-Team: French (https://app.transifex.com/mate/teams/13566/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: fr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #. Put one translator per line, in the form NAME <EMAIL>, YEAR1, YEAR2 msgctxt "_" @@ -55,16 +56,19 @@ msgid "" "The Disk Mounter applet enables you to quickly mount or unmount various " "types of drives and file systems from a panel." msgstr "" +"L'applet Monteur de disques vous permet de rapidement monter ou démonter " +"divers types de disques ou de systèmes de fichiers à partir du tableau de " +"bord." #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" -msgstr "<year>2015-2020</year> <holder>Projet de documentation MATE</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" +msgstr "<year>2015-2021</year> <holder>Projet de documentation MATE</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:32 msgid "<year>2005</year> <holder>Trent Lloyd</holder>" -msgstr "" +msgstr "<year>2005</year> <holder>Trent Lloyd</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:36 @@ -74,7 +78,7 @@ msgstr "<year>2004</year> <holder>Sun Microsystems</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:40 msgid "<year>2002</year> <holder>John Fleck</holder>" -msgstr "" +msgstr "<year>2002</year> <holder>John Fleck</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:44 @@ -110,6 +114,9 @@ msgid "" "<orgname>GNOME Documentation Project</orgname> " "<address><email>[email protected]</email></address> </affiliation>" msgstr "" +"<firstname>Trent</firstname> <surname>Lloyd</surname> <affiliation> " +"<orgname>GNOME Documentation Project</orgname> <address> " +"<email>[email protected]</email> </address> </affiliation>" #. (itstool) path: authorgroup/author #: C/index.docbook:81 @@ -127,6 +134,9 @@ msgid "" "<orgname>GNOME Documentation Project</orgname> <address> " "<email>[email protected]</email> </address> </affiliation>" msgstr "" +"<firstname>John</firstname> <surname>Fleck</surname> <affiliation> " +"<orgname>GNOME Documentation Project</orgname> <address> " +"<email>[email protected]</email> </address> </affiliation>" #. (itstool) path: authorgroup/author #: C/index.docbook:94 @@ -135,6 +145,9 @@ msgid "" "<orgname>GNOME Documentation Project</orgname> <address> " "<email>[email protected]</email> </address> </affiliation>" msgstr "" +"<firstname>Dan</firstname> <surname>Mueth</surname> <affiliation> " +"<orgname>GNOME Documentation Project</orgname> <address> " +"<email>[email protected]</email> </address> </affiliation>" #. (itstool) path: revdescription/para #: C/index.docbook:124 @@ -147,11 +160,13 @@ msgid "" "<revnumber>Disk Mounter Applet Manual V2.12</revnumber> <date>July " "2015</date> <_:revdescription-1/>" msgstr "" +"<revnumber>Manuel de l'applet monteur de disques V2.12</revnumber> " +"<date>Juillet 2015</date> <_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:132 msgid "Trent Lloyd" -msgstr "" +msgstr "Trent Lloyd" #. (itstool) path: revhistory/revision #: C/index.docbook:128 @@ -159,6 +174,8 @@ msgid "" "<revnumber>Disk Mounter Applet Manual V2.11</revnumber> <date>July " "2015</date> <_:revdescription-1/>" msgstr "" +"<revnumber>Manuel de l'applet monteur de disques V2.11</revnumber> " +"<date>Juillet 2015</date> <_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:140 @@ -171,11 +188,13 @@ msgid "" "<revnumber>Disk Mounter Applet Manual V2.10</revnumber> <date>February " "2004</date> <_:revdescription-1/>" msgstr "" +"<revnumber>Manuel de l'applet monteur de disques V2.10</revnumber> " +"<date>Février 2004</date> <_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:148 msgid "John Fleck <email>[email protected]</email>" -msgstr "" +msgstr "John Fleck <email>[email protected]</email>" #. (itstool) path: revhistory/revision #: C/index.docbook:144 @@ -183,11 +202,13 @@ msgid "" "<revnumber>Disk Mounter Applet Manual V2.0</revnumber> <date>March " "2002</date> <_:revdescription-1/>" msgstr "" +"<revnumber>Manuel de l'applet monteur de disques V2.0</revnumber> <date>Mars" +" 2002</date> <_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:158 msgid "Dan Mueth <email>[email protected]</email>" -msgstr "" +msgstr "Dan Mueth <email>[email protected]</email>" #. (itstool) path: revhistory/revision #: C/index.docbook:154 @@ -195,11 +216,13 @@ msgid "" "<revnumber>Drive Mount Applet Manual</revnumber> <date>April 2000</date> " "<_:revdescription-1/>" msgstr "" +"<revnumber>Manuel de l'applet monteur de disques</revnumber> <date>Avril " +"2000</date> <_:revdescription-1/> " #. (itstool) path: articleinfo/releaseinfo #: C/index.docbook:166 msgid "This manual describes version 1.10.2 of Disk Mounter." -msgstr "" +msgstr "Ce manuel décrit la version 1.10.2 du monteur de disques." #. (itstool) path: legalnotice/title #: C/index.docbook:169 @@ -214,6 +237,10 @@ msgid "" "url=\"help:mate-user-guide/feedback\" type=\"help\">MATE Feedback " "Page</ulink>." msgstr "" +"Pour signaler un bug en rapport avec le<application>Monteur de " +"disques</application> ou ce manuel, suivez les instructions de <ulink " +"url=\"help:mate-user-guide/feedback\" type=\"help\">MATE Feedback " +"Page</ulink>." #. (itstool) path: article/indexterm #: C/index.docbook:178 @@ -241,6 +268,8 @@ msgid "" "external ref='figures/drivemount-applet_example.png' " "md5='8c212ac1173b8716b962165890dddc28'" msgstr "" +"external ref='figures/drivemount-applet_example.png' " +"md5='8c212ac1173b8716b962165890dddc28'" #. (itstool) path: screenshot/mediaobject #: C/index.docbook:190 @@ -249,6 +278,9 @@ msgid "" "format=\"PNG\"/> </imageobject> <textobject> <phrase>The Disk Mounter " "applet.</phrase> </textobject>" msgstr "" +"<imageobject><imagedata fileref=\"figures/drivemount-applet_example.png\" " +"format=\"PNG\"/></imageobject><textobject><phrase>L'applet Monteur de " +"disques.</phrase></textobject>" #. (itstool) path: sect1/para #: C/index.docbook:201 @@ -256,6 +288,8 @@ msgid "" "The <application>Disk Mounter</application> enables you to quickly mount and" " unmount various types of drives and file systems." msgstr "" +"Le <application>Monteur de disques</application> vous permet de rapidement " +"monter ou démonter divers types de disques ou de systèmes de fichiers." #. (itstool) path: sect1/para #: C/index.docbook:204 @@ -266,6 +300,12 @@ msgid "" "type=\"man\"><citerefentry><refentrytitle>fstab</refentrytitle><manvolnum>5</manvolnum></citerefentry></ulink>" " for more information about the necessary system administration tasks." msgstr "" +"Pour que le <application>monteur de disques</application> fonctionne " +"correctement, votre administrateur système doit configurer votre système de " +"manière appropriée. Reportez-vous à <ulink url=\"man:fstab\" " +"type=\"man\"><citerefentry><refentrytitle>fstab</refentrytitle><manvolnum>5</manvolnum></citerefentry></ulink>" +" pour plus d'informations à propos des tâches d'administration système " +"nécessaires." #. (itstool) path: sect2/title #: C/index.docbook:209 @@ -297,6 +337,9 @@ msgid "" "Scroll down the list of items in the <guilabel>Add to Panel</guilabel> " "dialog, then select <guilabel>Disk Mounter</guilabel>." msgstr "" +"Faites défiler la liste dans la boîte de dialogue <guilabel>Ajouter au " +"tableau de bord</guilabel> jusqu'à sélectionner <guilabel>Monteur de " +"disques</guilabel>." #. (itstool) path: listitem/para #: C/index.docbook:232 @@ -306,7 +349,7 @@ msgstr "Cliquez sur <guibutton>Ajouter</guibutton>." #. (itstool) path: sect2/title #: C/index.docbook:240 msgid "Manually Mounting and Unmounting File Systems" -msgstr "" +msgstr "Monter et démonter manuellement des systèmes de fichiers" #. (itstool) path: sect2/para #: C/index.docbook:241 @@ -314,6 +357,8 @@ msgid "" "Many file systems on Linux and other Unix-like systems must be manually " "mounted and unmounted." msgstr "" +"De nombreux systèmes de fichiers sur Linux et autres systèmes de type Unix " +"peuvent être montés et démontés." #. (itstool) path: sect2/para #: C/index.docbook:244 @@ -322,6 +367,9 @@ msgid "" "When you finish working with a file system, you should unmount the file " "system." msgstr "" +"Quand un système de fichiers est monté, vous pouvez lire et écrire sur ce " +"système de fichiers. Quand vous avez fini de travailler avec un système de " +"fichiers, vous devriez le démonter." #. (itstool) path: sect2/para #: C/index.docbook:247 @@ -331,6 +379,11 @@ msgid "" "not always write the changes immediately. Such systems typically buffer the " "changes to the disk, to improve the speed of the system." msgstr "" +"Vous devez démonter les disques amovibles tels que des disquettes ou des " +"lecteurs Zip avant de retirer le disque car Linux et d'autres systèmes type " +"Unix n'écrivent pas toujours les changements immédiatement. Ces systèmes " +"mettent généralement ces changements en mémoire tampon afin d'améliorer la " +"vitesse du système." #. (itstool) path: sect2/para #: C/index.docbook:250 @@ -340,6 +393,11 @@ msgid "" "shuts down. Removable media must be mounted and unmounted manually, for " "example by using the <application>Disk Mounter</application>." msgstr "" +"Les partitions sur des disques fixes, tel votre disque dur, sont " +"généralement montées automatiquement quand votre ordinateur démarre et " +"démontées quand votre ordinateur s'éteint. Les disques amovibles doivent " +"être montés et démontés manuellement, par exemple en utilisant le " +"<application>Monteur de disques</application>." #. (itstool) path: sect2/para #: C/index.docbook:253 @@ -349,6 +407,11 @@ msgid "" " Mounter</application> so that you can unmount them when you are finished, " "and provide a visual indication that they are present." msgstr "" +"Certains systèmes peuvent automatiquement monter certains disques amovibles " +"(tels les disques USB et IEEE1394), ces appareils peuvent également " +"apparaître dans le <application>Monteur de disques</application> pour que " +"vous puissiez les démonter quand vous avez terminé et ainsi procurer une " +"indication visuelle de leur présence." #. (itstool) path: sect1/title #: C/index.docbook:262 @@ -358,7 +421,7 @@ msgstr "Utilisation" #. (itstool) path: sect2/title #: C/index.docbook:265 msgid "To Display the Name and Mount Status of a Drive" -msgstr "" +msgstr "Pour afficher le nom et le statut de montage d'un disque." #. (itstool) path: sect2/para #: C/index.docbook:266 @@ -367,6 +430,9 @@ msgid "" "the drive icon in the panel. A tooltip displays the name and mount status of" " the drive." msgstr "" +"Pour afficher le nom et le statut de montage d'un disque, déplacez le " +"curseur de la souris sur l'icône du disque dans le tableau de bord. Une " +"boite de dialogue affiche le nom et le statut de montage du disque." #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -379,11 +445,13 @@ msgid "" "external ref='figures/drivemount-applet_status.png' " "md5='a150e5b8efeee5c397591acbda957f1d'" msgstr "" +"external ref='figures/drivemount-applet_status.png' " +"md5='a150e5b8efeee5c397591acbda957f1d'" #. (itstool) path: sect2/title #: C/index.docbook:275 msgid "To Mount, Unmount or Eject a Drive" -msgstr "" +msgstr "Pour monter, démonter ou éjecter un disque." #. (itstool) path: sect2/para #: C/index.docbook:276 @@ -391,6 +459,8 @@ msgid "" "To mount drive, click on the drive icon in the panel and then select the " "<guimenuitem>Mount Drive</guimenuitem> option." msgstr "" +"Pour monter un disque, cliquer sur l'icône du disque dans le tableau de bord" +" et sélectionner l'option <guimenuitem>Monter le Disque</guimenuitem>." #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -403,6 +473,8 @@ msgid "" "external ref='figures/drivemount-applet_mount.png' " "md5='d9ed1ad7dd9a94891d7bf943d42b79cf'" msgstr "" +"external ref='figures/drivemount-applet_mount.png' " +"md5='d9ed1ad7dd9a94891d7bf943d42b79cf'" #. (itstool) path: sect2/para #: C/index.docbook:282 @@ -411,6 +483,10 @@ msgid "" " <guimenuitem>Unmount Drive</guimenuitem> option, or if the device is a CD-" "ROM Drive, it may be labeled <guimenuitem>Eject Drive</guimenuitem>" msgstr "" +"Pour démonter un disque, cliquer sur l'icône du disque dans le tableau de " +"bord et sélectionner ensuite l'option <guimenuitem>Démonter le " +"disque</guimenuitem>, ou si l'appareil est un lecteur de CD-ROM, elle sera " +"peut-être intitulée <guimenuitem>Éjecter le disque</guimenuitem>" #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -423,11 +499,13 @@ msgid "" "external ref='figures/drivemount-applet_eject.png' " "md5='784afdef2d482b1b70ad2d44562205de'" msgstr "" +"external ref='figures/drivemount-applet_eject.png' " +"md5='784afdef2d482b1b70ad2d44562205de'" #. (itstool) path: sect2/title #: C/index.docbook:291 msgid "To Browse the Contents of a Drive" -msgstr "" +msgstr "Pour parcourir le contenu d'un disque" #. (itstool) path: sect2/para #: C/index.docbook:292 @@ -435,6 +513,9 @@ msgid "" "To use a file manager to browse the contents of a drive, click on the drive " "icon in the panel, then choose <guimenuitem>Open Drive</guimenuitem>." msgstr "" +"Pour utiliser un explorateur de fichiers ou parcourir le contenu d'un " +"disque, cliquer sur l'icône du disque dans le tableau de bord puis " +"choisissez <guimenuitem>Ouvrir le disque</guimenuitem>." #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -447,11 +528,13 @@ msgid "" "external ref='figures/drivemount-applet_open.png' " "md5='3140016491c9d55772b1c62e4893e9e7'" msgstr "" +"external ref='figures/drivemount-applet_open.png' " +"md5='3140016491c9d55772b1c62e4893e9e7'" #. (itstool) path: sect2/para #: C/index.docbook:298 msgid "You can only browse the contents of a mounted drive." -msgstr "" +msgstr "Vous pouvez seulement parcourir le contenu d'un disque monté." #. (itstool) path: para/ulink #: C/legal.xml:9 @@ -468,13 +551,14 @@ msgid "" " of the GFDL at this <_:ulink-1/> or in the file COPYING-DOCS distributed " "with this manual." msgstr "" -"Permission vous est donnée de copier, distribuer et/ou modifier ce document " -"selon les termes de la Licence GNU Free Documentation License, Version 1.1 " -"ou ultérieure publiée par la Free Software Foundation sans section " -"inaltérable, sans texte de première page de couverture ni texte de dernière " -"page de couverture. Vous trouverez un exemplaire de cette licence en suivant" -" ce <_:ulink-1/> ou dans le fichier COPYING-DOCS fourni avec le présent " -"manuel." +"Permission est accordée de copier, distribuer et/ou modifier ce document " +"selon les termes de la Licence GNU de documentation libre (GFDL), Version " +"1.1 ou ultérieure publiée par la Free Software Foundation sans section " +"inaltérable, sans texte de première page ni de dernière page de couverture. " +"Vous trouverez une copie (en anglais) de la GFDL en suivant ce <ulink " +"type=\"help\" url=\"https://www.gnu.org/licenses/old-" +"licenses/fdl-1.1.html\">lien</ulink> ou dans le fichier COPYING-DOCS fourni " +"avec le présent manuel." #. (itstool) path: legalnotice/para #: C/legal.xml:12 diff --git a/drivemount/help/fur/fur.po b/drivemount/help/fur/fur.po index db2a0c84..9ff7a3e2 100644 --- a/drivemount/help/fur/fur.po +++ b/drivemount/help/fur/fur.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Friulian (https://www.transifex.com/mate/teams/13566/fur/)\n" +"Language-Team: Friulian (https://app.transifex.com/mate/teams/13566/fur/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -34,7 +34,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright diff --git a/drivemount/help/fy/fy.po b/drivemount/help/fy/fy.po index acd6090b..e02347ea 100644 --- a/drivemount/help/fy/fy.po +++ b/drivemount/help/fy/fy.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Western Frisian (https://www.transifex.com/mate/teams/13566/fy/)\n" +"Language-Team: Western Frisian (https://app.transifex.com/mate/teams/13566/fy/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -37,7 +37,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright diff --git a/drivemount/help/ga/ga.po b/drivemount/help/ga/ga.po index f7e7f018..b554b4b5 100644 --- a/drivemount/help/ga/ga.po +++ b/drivemount/help/ga/ga.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Irish (https://www.transifex.com/mate/teams/13566/ga/)\n" +"Language-Team: Irish (https://app.transifex.com/mate/teams/13566/ga/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -37,7 +37,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright diff --git a/drivemount/help/gl/gl.po b/drivemount/help/gl/gl.po index 71c3c894..9f198cee 100644 --- a/drivemount/help/gl/gl.po +++ b/drivemount/help/gl/gl.po @@ -2,16 +2,16 @@ # Translators: # Stefano Karapetsas <[email protected]>, 2018 # Wolfgang Ulbrich <[email protected]>, 2018 -# Robert Antoni Buj Gelonch <[email protected]>, 2019 -# Miguel Anxo Bouzada <[email protected]>, 2020 +# Robert Antoni Buj i Gelonch <[email protected]>, 2019 +# Miguel Anxo Bouzada <[email protected]>, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" -"Last-Translator: Miguel Anxo Bouzada <[email protected]>, 2020\n" -"Language-Team: Galician (https://www.transifex.com/mate/teams/13566/gl/)\n" +"Last-Translator: Miguel Anxo Bouzada <[email protected]>, 2021\n" +"Language-Team: Galician (https://app.transifex.com/mate/teams/13566/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -41,9 +41,9 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" -"<year>2015-2020</year> <holder>Proxecto de documentación do MATE</holder>" +"<year>2015-2021</year> <holder>Proxecto de documentación do MATE</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:32 diff --git a/drivemount/help/gu/gu.po b/drivemount/help/gu/gu.po index f19e6ec8..0312d7ad 100644 --- a/drivemount/help/gu/gu.po +++ b/drivemount/help/gu/gu.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" "Last-Translator: Milan Savaliya <[email protected]>, 2018\n" -"Language-Team: Gujarati (https://www.transifex.com/mate/teams/13566/gu/)\n" +"Language-Team: Gujarati (https://app.transifex.com/mate/teams/13566/gu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -35,7 +35,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright diff --git a/drivemount/help/ha/ha.po b/drivemount/help/ha/ha.po index 0ac0183f..a5816f83 100644 --- a/drivemount/help/ha/ha.po +++ b/drivemount/help/ha/ha.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Hausa (https://www.transifex.com/mate/teams/13566/ha/)\n" +"Language-Team: Hausa (https://app.transifex.com/mate/teams/13566/ha/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -34,7 +34,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright diff --git a/drivemount/help/he/he.po b/drivemount/help/he/he.po index 4b461670..b1f2f61d 100644 --- a/drivemount/help/he/he.po +++ b/drivemount/help/he/he.po @@ -3,20 +3,20 @@ # Stefano Karapetsas <[email protected]>, 2018 # Yaron Shahrabani <[email protected]>, 2020 # shy tzedaka <[email protected]>, 2020 -# Omer, 2020 +# 63f334ffc0709ba0fc2361b80bf3c0f0_00ffd1e <ab96c93ca0ac55ba7fa06385427e60dd_878890>, 2020 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" -"Last-Translator: Omer, 2020\n" -"Language-Team: Hebrew (https://www.transifex.com/mate/teams/13566/he/)\n" +"Last-Translator: 63f334ffc0709ba0fc2361b80bf3c0f0_00ffd1e <ab96c93ca0ac55ba7fa06385427e60dd_878890>, 2020\n" +"Language-Team: Hebrew (https://app.transifex.com/mate/teams/13566/he/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: he\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" +"Plural-Forms: nplurals=3; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" #. Put one translator per line, in the form NAME <EMAIL>, YEAR1, YEAR2 msgctxt "_" @@ -37,8 +37,8 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" -msgstr "<year>2019-2020</year> <holder>מיזם התיעוד של MATE</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" +msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:32 @@ -262,7 +262,7 @@ msgstr "קליק ימני על הלוח." #. (itstool) path: listitem/para #: C/index.docbook:221 msgid "Choose <guimenuitem>Add to Panel</guimenuitem>." -msgstr "" +msgstr "בחירת ב<guimenuitem>הוספה ללוח</guimenuitem>." #. (itstool) path: listitem/para #: C/index.docbook:226 @@ -274,7 +274,7 @@ msgstr "" #. (itstool) path: listitem/para #: C/index.docbook:232 msgid "Click <guibutton>Add</guibutton>." -msgstr "" +msgstr "לחיצה על <guibutton>הוספה</guibutton>." #. (itstool) path: sect2/title #: C/index.docbook:240 diff --git a/drivemount/help/hi/hi.po b/drivemount/help/hi/hi.po index 0b44c0c4..44523825 100644 --- a/drivemount/help/hi/hi.po +++ b/drivemount/help/hi/hi.po @@ -7,10 +7,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" "Last-Translator: Panwar108 <[email protected]>, 2018\n" -"Language-Team: Hindi (https://www.transifex.com/mate/teams/13566/hi/)\n" +"Language-Team: Hindi (https://app.transifex.com/mate/teams/13566/hi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -40,7 +40,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright diff --git a/drivemount/help/hr/hr.po b/drivemount/help/hr/hr.po index ae7acf3a..2466e78b 100644 --- a/drivemount/help/hr/hr.po +++ b/drivemount/help/hr/hr.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" "Last-Translator: Radovan Gundulić <[email protected]>, 2020\n" -"Language-Team: Croatian (https://www.transifex.com/mate/teams/13566/hr/)\n" +"Language-Team: Croatian (https://app.transifex.com/mate/teams/13566/hr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -60,8 +60,8 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" -msgstr "<year>2015-2020</year> <holder>MATE dokumentacijski projekt</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" +msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:32 diff --git a/drivemount/help/hu/hu.po b/drivemount/help/hu/hu.po index bb5a6637..4867e1ba 100644 --- a/drivemount/help/hu/hu.po +++ b/drivemount/help/hu/hu.po @@ -6,15 +6,14 @@ # KAMI KAMI <[email protected]>, 2018 # Wolfgang Ulbrich <[email protected]>, 2019 # Csaba Székely <[email protected]>, 2019 -# Szabó Máté <[email protected]>, 2020 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" -"Last-Translator: Szabó Máté <[email protected]>, 2020\n" -"Language-Team: Hungarian (https://www.transifex.com/mate/teams/13566/hu/)\n" +"Last-Translator: Csaba Székely <[email protected]>, 2019\n" +"Language-Team: Hungarian (https://app.transifex.com/mate/teams/13566/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -48,8 +47,8 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" -msgstr "<year>2015-2020</year> <holder>MATE Dokumentációs Projekt</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" +msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:32 diff --git a/drivemount/help/hy/hy.po b/drivemount/help/hy/hy.po index 3530784b..959e0f4b 100644 --- a/drivemount/help/hy/hy.po +++ b/drivemount/help/hy/hy.po @@ -7,10 +7,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" "Last-Translator: Avag Sayan <[email protected]>, 2020\n" -"Language-Team: Armenian (https://www.transifex.com/mate/teams/13566/hy/)\n" +"Language-Team: Armenian (https://app.transifex.com/mate/teams/13566/hy/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -36,7 +36,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright diff --git a/drivemount/help/ia/ia.po b/drivemount/help/ia/ia.po index 40536b6d..fdf4ac22 100644 --- a/drivemount/help/ia/ia.po +++ b/drivemount/help/ia/ia.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" "Last-Translator: Tea Coba <[email protected]>, 2018\n" -"Language-Team: Interlingua (https://www.transifex.com/mate/teams/13566/ia/)\n" +"Language-Team: Interlingua (https://app.transifex.com/mate/teams/13566/ia/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -34,7 +34,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright diff --git a/drivemount/help/id/id.po b/drivemount/help/id/id.po index b4e7e4ad..70849b97 100644 --- a/drivemount/help/id/id.po +++ b/drivemount/help/id/id.po @@ -3,16 +3,16 @@ # Stefano Karapetsas <[email protected]>, 2018 # Wolfgang Ulbrich <[email protected]>, 2018 # Kukuh Syafaat <[email protected]>, 2018 -# Andika Triwidada <[email protected]>, 2020 # Chotibul Studio <[email protected]>, 2020 +# Andika Triwidada <[email protected]>, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" -"Last-Translator: Chotibul Studio <[email protected]>, 2020\n" -"Language-Team: Indonesian (https://www.transifex.com/mate/teams/13566/id/)\n" +"Last-Translator: Andika Triwidada <[email protected]>, 2021\n" +"Language-Team: Indonesian (https://app.transifex.com/mate/teams/13566/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -43,8 +43,8 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" -msgstr "<year>2015-2020</year> <holder>Projek Dokumentasi MATE</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" +msgstr "<year>2015-2021</year> <holder>Projek Dokumentasi MATE</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:32 @@ -85,6 +85,8 @@ msgid "" "<firstname>MATE Documentation Team</firstname> <surname/> <affiliation> " "<orgname>MATE Desktop</orgname> </affiliation>" msgstr "" +"<firstname>Tim Dokumentasi MATE </firstname> <surname/> <affiliation> " +"<orgname>MATE Desktop</orgname> </affiliation>" #. (itstool) path: authorgroup/author #: C/index.docbook:73 @@ -265,12 +267,12 @@ msgstr "" #. (itstool) path: listitem/para #: C/index.docbook:216 msgid "Right-click on the panel." -msgstr "" +msgstr "Klik kanan pada panel." #. (itstool) path: listitem/para #: C/index.docbook:221 msgid "Choose <guimenuitem>Add to Panel</guimenuitem>." -msgstr "" +msgstr "Pilih <guimenuitem>Tambah ke Panel</guimenuitem>." #. (itstool) path: listitem/para #: C/index.docbook:226 @@ -282,7 +284,7 @@ msgstr "" #. (itstool) path: listitem/para #: C/index.docbook:232 msgid "Click <guibutton>Add</guibutton>." -msgstr "" +msgstr "Klik <guibutton>Tambah</guibutton>." #. (itstool) path: sect2/title #: C/index.docbook:240 @@ -449,6 +451,13 @@ msgid "" " of the GFDL at this <_:ulink-1/> or in the file COPYING-DOCS distributed " "with this manual." msgstr "" +"Hak diberikan untuk menyalin, mendistribusikan, dan/atau mengubah dokumen " +"ini di bawah persyaratan GNU Free Documentation License (GFDL, Lisensi " +"Dokumentasi Bebas GNU), Versi 1.1 atau sebarang versi setelahnya yang " +"dipublikasikan oleh Free Software Foundation tanpa Invariant Section, tanpa " +"Front-Cover Texts, dan tanpa Back-Cover Texts. Anda dapat menemukan salinan " +"dari GFDL pada <_:ulink-1/> atau di dalam berkas COPYING-DOCS yang " +"didistribusikan bersama manual ini." #. (itstool) path: legalnotice/para #: C/legal.xml:12 diff --git a/drivemount/help/ie/ie.po b/drivemount/help/ie/ie.po index b64e0ca5..b0bcdd87 100644 --- a/drivemount/help/ie/ie.po +++ b/drivemount/help/ie/ie.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" "Last-Translator: Caarmi, 2019\n" -"Language-Team: Interlingue (https://www.transifex.com/mate/teams/13566/ie/)\n" +"Language-Team: Interlingue (https://app.transifex.com/mate/teams/13566/ie/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -34,7 +34,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright diff --git a/drivemount/help/ig/ig.po b/drivemount/help/ig/ig.po index 97351bb3..1174c2e4 100644 --- a/drivemount/help/ig/ig.po +++ b/drivemount/help/ig/ig.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Igbo (https://www.transifex.com/mate/teams/13566/ig/)\n" +"Language-Team: Igbo (https://app.transifex.com/mate/teams/13566/ig/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -34,7 +34,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright diff --git a/drivemount/help/is/is.po b/drivemount/help/is/is.po index dfebb8c4..dd1701e4 100644 --- a/drivemount/help/is/is.po +++ b/drivemount/help/is/is.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Icelandic (https://www.transifex.com/mate/teams/13566/is/)\n" +"Language-Team: Icelandic (https://app.transifex.com/mate/teams/13566/is/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -38,7 +38,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright diff --git a/drivemount/help/it/it.po b/drivemount/help/it/it.po index d88d3f6a..beb71d01 100644 --- a/drivemount/help/it/it.po +++ b/drivemount/help/it/it.po @@ -4,32 +4,32 @@ # Wolfgang Ulbrich <[email protected]>, 2018 # Marco Z. <[email protected]>, 2018 # talorno <[email protected]>, 2018 -# Giuseppe Pignataro <[email protected]>, 2019 +# Giuseppe Pignataro (Fastbyte01) <[email protected]>, 2019 # Enrico B. <[email protected]>, 2019 -# Alessandro Volturno <[email protected]>, 2020 +# Alessandro Volturno <[email protected]>, 2022 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" -"Last-Translator: Alessandro Volturno <[email protected]>, 2020\n" -"Language-Team: Italian (https://www.transifex.com/mate/teams/13566/it/)\n" +"Last-Translator: Alessandro Volturno <[email protected]>, 2022\n" +"Language-Team: Italian (https://app.transifex.com/mate/teams/13566/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: it\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #. Put one translator per line, in the form NAME <EMAIL>, YEAR1, YEAR2 msgctxt "_" msgid "translator-credits" -msgstr "Alessandro Volturno, 2020" +msgstr "Alessandro Volturno, 2020, 2022" #. (itstool) path: articleinfo/title #: C/index.docbook:22 msgid "Disk Mounter Manual" -msgstr "Manuale di Montadischi" +msgstr "Manuale di Disk Mounter" #. (itstool) path: abstract/para #: C/index.docbook:24 @@ -37,14 +37,14 @@ msgid "" "The Disk Mounter applet enables you to quickly mount or unmount various " "types of drives and file systems from a panel." msgstr "" -"L'applet Montadischi permette di montare e smontare rapidamente direttametne" -" dal pannello varie tipologie di dischi e filesystem." +"L'applet Disk Mounter permette di montare e smontare rapidamente " +"direttamente dal pannello varie tipologie di dischi e filesystem." #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" -"<year>2015-2020</year> <holder>Progetto Documentazione di MATE</holder>" +"<year>2015-2021</year> <holder>Progetto Documentazione di MATE</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:32 @@ -141,8 +141,8 @@ msgid "" "<revnumber>Disk Mounter Applet Manual V2.12</revnumber> <date>July " "2015</date> <_:revdescription-1/>" msgstr "" -"<revnumber>Manuale di Montadischi V2.12</revnumber> <date>Luglio 2015</date>" -" <_:revdescription-1/>" +"<revnumber>Manuale di Disk Mounter Applet V2.12</revnumber> <date>Luglio " +"2015</date> <_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:132 @@ -155,8 +155,8 @@ msgid "" "<revnumber>Disk Mounter Applet Manual V2.11</revnumber> <date>July " "2015</date> <_:revdescription-1/>" msgstr "" -"<revnumber>Manuale di Montadischi V2.11</revnumber> <date>Luglio 2015</date>" -" <_:revdescription-1/>" +"<revnumber>Manuale di Disk Mounter Applet V2.11</revnumber> <date>Luglio " +"2015</date> <_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:140 @@ -169,7 +169,7 @@ msgid "" "<revnumber>Disk Mounter Applet Manual V2.10</revnumber> <date>February " "2004</date> <_:revdescription-1/>" msgstr "" -"<revnumber>Manuale di Montadischi V2.10</revnumber> <date>Febbraio " +"<revnumber>Manuale di Disk Mounter Applet V2.10</revnumber> <date>Febbraio " "2004</date> <_:revdescription-1/>" #. (itstool) path: revdescription/para @@ -183,8 +183,8 @@ msgid "" "<revnumber>Disk Mounter Applet Manual V2.0</revnumber> <date>March " "2002</date> <_:revdescription-1/>" msgstr "" -"<revnumber>Manuale di Montadischi V2.0</revnumber> <date>Marzo 2002</date> " -"<_:revdescription-1/>" +"<revnumber>Manuale di Disk Mounter Applet V2.0</revnumber> <date>Marzo " +"2002</date> <_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:158 @@ -197,13 +197,13 @@ msgid "" "<revnumber>Drive Mount Applet Manual</revnumber> <date>April 2000</date> " "<_:revdescription-1/>" msgstr "" -"<revnumber>Manuale di Montadischi</revnumber> <date>Aprile 2000</date> " -"<_:revdescription-1/>" +"<revnumber>Manuale di Drive Mounter Applet</revnumber> <date>Aprile " +"2000</date> <_:revdescription-1/>" #. (itstool) path: articleinfo/releaseinfo #: C/index.docbook:166 msgid "This manual describes version 1.10.2 of Disk Mounter." -msgstr "Questo manuale è relativo alla versione 1.10.2 di Montadischi" +msgstr "Questo manuale è relativo alla versione 1.10.2 di Disk Mounter" #. (itstool) path: legalnotice/title #: C/index.docbook:169 @@ -218,14 +218,15 @@ msgid "" "url=\"help:mate-user-guide/feedback\" type=\"help\">MATE Feedback " "Page</ulink>." msgstr "" -"Per segnalare un malfunzionamento o un suggerimento per il Montadischi o " -"questo manuale, seguire le indicazioni nella <ulink url=\"help:mate-user-" -"guide/feedback\" type=\"help\">Pagina feedback di MATE</ulink>." +"Per segnalare un malfunzionamento o dare suggerimenti per <application>Disk " +"Mounter</application> o su questo manuale, seguire le indicazioni nella " +"<ulink url=\"help:mate-user-guide/feedback\" type=\"help\">Pagina feedback " +"di MATE</ulink>." #. (itstool) path: article/indexterm #: C/index.docbook:178 msgid "<primary>Disk Mounter</primary>" -msgstr "<primary>Montadischi</primary>" +msgstr "<primary>Disk Mounter</primary>" #. (itstool) path: sect1/title #: C/index.docbook:185 @@ -235,7 +236,7 @@ msgstr "Introduzione" #. (itstool) path: figure/title #: C/index.docbook:188 msgid "Disk Mounter" -msgstr "Montadischi" +msgstr "Disk Mounter" #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -259,8 +260,8 @@ msgid "" "applet.</phrase> </textobject>" msgstr "" "<imageobject><imagedata fileref=\"figures/drivemount-applet_example.png\" " -"format=\"PNG\"/> </imageobject> <textobject> <phrase>L'applet " -"Montadischi.</phrase> </textobject>" +"format=\"PNG\"/> </imageobject> <textobject> <phrase>L'applet Disk Mounter " +"Applet.</phrase> </textobject>" #. (itstool) path: sect1/para #: C/index.docbook:201 @@ -268,7 +269,7 @@ msgid "" "The <application>Disk Mounter</application> enables you to quickly mount and" " unmount various types of drives and file systems." msgstr "" -" <application>Montadischi</application> permette di montare e smontare " +" <application>Disk Mounter</application> permette di montare e smontare " "rapidamente varie tipologie di dischi e filesystem. " #. (itstool) path: sect1/para @@ -280,8 +281,8 @@ msgid "" "type=\"man\"><citerefentry><refentrytitle>fstab</refentrytitle><manvolnum>5</manvolnum></citerefentry></ulink>" " for more information about the necessary system administration tasks." msgstr "" -"Per far funzionare correttamente il <application>Montadischi</application>, " -"il sistema deve essere configurato correttamente dall'amministratore . Fare " +"Per far funzionare correttamente <application>Disk Mounter</application>, il" +" sistema deve essere configurato correttamente dall'amministratore . Fare " "riferimento a <ulink url=\"man:fstab\" " "type=\"man\"><citerefentry><refentrytitle>fstab</refentrytitle><manvolnum>5</manvolnum></citerefentry></ulink>" " per ulteriori informazioni sulle attività necessarie da compiere." @@ -289,7 +290,7 @@ msgstr "" #. (itstool) path: sect2/title #: C/index.docbook:209 msgid "To Add Disk Mounter to a Panel" -msgstr "Aggiungere Montadischi al pannello" +msgstr "Aggiungere Disk Mounter al pannello" #. (itstool) path: sect2/para #: C/index.docbook:210 @@ -297,7 +298,7 @@ msgid "" "To add <application>Disk Mounter</application> to a panel, perform the " "following steps:" msgstr "" -"Per aggiungere <application>Montadischi</application> al pannello segure " +"Per aggiungere <application>Disk Mounter</application> al pannello seguire " "questi passaggi:" #. (itstool) path: listitem/para @@ -308,7 +309,7 @@ msgstr "Fare clic destro sul pannello." #. (itstool) path: listitem/para #: C/index.docbook:221 msgid "Choose <guimenuitem>Add to Panel</guimenuitem>." -msgstr "Scegliere <guimenuitem>Aggiungi al pannello</guimenuitem>." +msgstr "Selezionare <guimenuitem>Aggiungi al pannello</guimenuitem>." #. (itstool) path: listitem/para #: C/index.docbook:226 @@ -317,7 +318,7 @@ msgid "" "dialog, then select <guilabel>Disk Mounter</guilabel>." msgstr "" "Scorrere in basso la lista della finestra <guilabel>Aggiungi al " -"pannello</guilabel>, e selezionare <guilabel>Montadischi</guilabel>." +"pannello</guilabel>, e selezionare <guilabel>Disk Mounter</guilabel>." #. (itstool) path: listitem/para #: C/index.docbook:232 @@ -374,8 +375,7 @@ msgstr "" "Le partizioni su dischi fissi, come il disco rigido, vengono generalmente " "montate automaticamente all'avvio del computer e smontate quando il computer" " viene spento. I supporti rimovibili devono essere montati e smontati " -"manualmente, ad esempio utilizzando il " -"<application>Montadischi</application>." +"manualmente, ad esempio utilizzando <application>Disk Mounter</application>." #. (itstool) path: sect2/para #: C/index.docbook:253 @@ -386,14 +386,14 @@ msgid "" "and provide a visual indication that they are present." msgstr "" "Alcuni sistemi sono in grado di montare automaticamente certi supporti " -"rimovibili (come i dischi USB e IEEE1394) che possono apparire anche nel " -"<application>Montadischi</application>in modo da poterli smontare quando si " -"è finito di usarli e fornire un'indicazione visiva della loro presenza." +"rimovibili (come i dischi USB e IEEE1394) che possono apparire anche in " +"<application>Disk Mounter</application>in modo da poterli smontare quando si" +" è finito di usarli e fornire un'indicazione visiva della loro presenza." #. (itstool) path: sect1/title #: C/index.docbook:262 msgid "Usage" -msgstr "Uso" +msgstr "Utilizzo" #. (itstool) path: sect2/title #: C/index.docbook:265 @@ -437,7 +437,7 @@ msgid "" "<guimenuitem>Mount Drive</guimenuitem> option." msgstr "" "Per montare il disco, fare clic sull'icona nel pannello e selezionare " -"l'opzione <guimenuitem>Monta</guimenuitem> unità." +"l'opzione <guimenuitem>Monta</guimenuitem> il dispositivo." #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -460,9 +460,9 @@ msgid "" " <guimenuitem>Unmount Drive</guimenuitem> option, or if the device is a CD-" "ROM Drive, it may be labeled <guimenuitem>Eject Drive</guimenuitem>" msgstr "" -"Per smontare il disco, fare clic sull'icona nel pannello e selezionare " -"l'opzione <guimenuitem>Smonta</guimenuitem>, o nel caso sia un CD-ROM, " -"sull'opzione <guimenuitem>Espelli</guimenuitem>" +"Per smontare un disco, fare clic sull'icona nel pannello e selezionare " +"l'opzione <guimenuitem>Smonta</guimenuitem>, o nel caso in cui esso sia un " +"CD-ROM, sull'opzione <guimenuitem>Espelli</guimenuitem>" #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -490,8 +490,8 @@ msgid "" "icon in the panel, then choose <guimenuitem>Open Drive</guimenuitem>." msgstr "" "Per sfogliare tramite un file manager il contenuto del disco, fare clic " -"sull'icona dell'unità nel pannello, quindi scegliere " -"<guimenuitem>Apri</guimenuitem> disco." +"sull'icona dell'unità nel pannello, quindi scegliere <guimenuitem>Apri " +"disco</guimenuitem>." #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -590,7 +590,7 @@ msgstr "" "REDATTORE INIZIALE, DELL'AUTORE O DI ALTRI COLLABORATORI). QUESTA " "LIMITAZIONE DELLA GARANZIA COSTITUISCE PARTE ESSENZIALE DELLA LICENZA. L'USO" " DEL DOCUMENTO O DELLE SUE VERSIONI MODIFICATE È CONSENTITO SOLO ENTRO I " -"TERMINI DI QUESTA LIMITAZIONE DELLA GARANZIA;" +"TERMINI DI QUESTA LIMITAZIONE DELLA GARANZIA; E" #. (itstool) path: listitem/para #: C/legal.xml:55 diff --git a/drivemount/help/ja/ja.po b/drivemount/help/ja/ja.po index 65766a7d..aeb9d7ed 100644 --- a/drivemount/help/ja/ja.po +++ b/drivemount/help/ja/ja.po @@ -2,17 +2,16 @@ # Translators: # Stefano Karapetsas <[email protected]>, 2018 # ABE Tsunehiko, 2018 -# あわしろいくや <[email protected]>, 2018 -# Wolfgang Ulbrich <[email protected]>, 2018 -# Aefgh Threenine <[email protected]>, 2019 +# Green <[email protected]>, 2021 +# Wolfgang Ulbrich <[email protected]>, 2023 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" -"Last-Translator: Aefgh Threenine <[email protected]>, 2019\n" -"Language-Team: Japanese (https://www.transifex.com/mate/teams/13566/ja/)\n" +"Last-Translator: Wolfgang Ulbrich <[email protected]>, 2023\n" +"Language-Team: Japanese (https://app.transifex.com/mate/teams/13566/ja/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -23,22 +22,24 @@ msgstr "" msgctxt "_" msgid "translator-credits" msgstr "" -"相花 毅 <[email protected]>\n" -"佐藤 暁 <[email protected]>\n" -"KAMAGASAKO Masatoshi <[email protected]>\n" -"Akira TAGOH <[email protected]>\n" -"Yukihiro Nakai <[email protected]>\n" -"Yuusuke Tahara <[email protected]>\n" -"Akira Higuchi <[email protected]>\n" -"やまね ひでき <[email protected]>\n" -"草野 貴之 <[email protected]>\n" -"松澤 二郎 <[email protected]>\n" -"日本GNOMEユーザー会 http://www.gnome.gr.jp/" +"相花 毅 \n" +"佐藤 暁 \n" +"KAMAGASAKO Masatoshi \n" +"Akira TAGOH \n" +"Yukihiro Nakai \n" +"Yuusuke Tahara \n" +"Akira Higuchi \n" +"やまね ひでき \n" +"草野 貴之 \n" +"松澤 二郎 \n" +"Green, alias usergreen \n" +"日本GNOMEユーザー会 http://www.gnome.gr.jp/\n" +"MATE 文書化チーム https://www.transifex.com/mate/ " #. (itstool) path: articleinfo/title #: C/index.docbook:22 msgid "Disk Mounter Manual" -msgstr "" +msgstr "ディスク・マウンタ・マニュアル" #. (itstool) path: abstract/para #: C/index.docbook:24 @@ -46,44 +47,45 @@ msgid "" "The Disk Mounter applet enables you to quickly mount or unmount various " "types of drives and file systems from a panel." msgstr "" +"ディスク・マウンタ・アプレットを使用すると、さまざまな種類のドライブやファイルシステムを、パネルから迅速にマウントまたはマウント解除できます。" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" -msgstr "" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" +msgstr "<year>2015-2021</year> <holder>MATE 文書化プロジェクト</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:32 msgid "<year>2005</year> <holder>Trent Lloyd</holder>" -msgstr "" +msgstr "<year>2005</year> <holder>Trent Lloyd</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:36 msgid "<year>2004</year> <holder>Sun Microsystems</holder>" -msgstr "<year>2004</year> <holder>Sun Microsystems</holder>" +msgstr "<year>2004</year> <holder>サン・マイクロシステムズ</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:40 msgid "<year>2002</year> <holder>John Fleck</holder>" -msgstr "" +msgstr "<year>2002</year> <holder>John Fleck</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:44 msgid "<year>2000</year> <holder>Dan Mueth</holder>" -msgstr "" +msgstr "<year>2000</year> <holder>Dan Mueth</holder>" #. (itstool) path: publisher/publishername #. (itstool) path: revdescription/para #: C/index.docbook:57 C/index.docbook:125 msgid "MATE Documentation Project" -msgstr "MATE ドキュメンテーション・プロジェクト" +msgstr "MATE 文書化プロジェクト" #. (itstool) path: publisher/publishername #. (itstool) path: revdescription/para #: C/index.docbook:60 C/index.docbook:133 C/index.docbook:141 #: C/index.docbook:151 C/index.docbook:161 msgid "GNOME Documentation Project" -msgstr "GNOME ドキュメンテーション・プロジェクト" +msgstr "GNOME 文書化プロジェクト" #. (itstool) path: authorgroup/author #: C/index.docbook:66 @@ -91,6 +93,8 @@ msgid "" "<firstname>MATE Documentation Team</firstname> <surname/> <affiliation> " "<orgname>MATE Desktop</orgname> </affiliation>" msgstr "" +"<firstname>MATE 文書化チーム</firstname> <surname/> <affiliation><orgname>MATE " +"デスクトップ</orgname></affiliation>" #. (itstool) path: authorgroup/author #: C/index.docbook:73 @@ -99,6 +103,9 @@ msgid "" "<orgname>GNOME Documentation Project</orgname> " "<address><email>[email protected]</email></address> </affiliation>" msgstr "" +"<firstname>Trent</firstname> <surname>Lloyd</surname> <affiliation> " +"<orgname>GNOME 文書化プロジェクト</orgname> " +"<address><email>[email protected]</email></address> </affiliation>" #. (itstool) path: authorgroup/author #: C/index.docbook:81 @@ -106,6 +113,8 @@ msgid "" "<firstname>Sun</firstname> <surname>GNOME Documentation Team</surname> " "<affiliation><orgname>Sun Microsystems</orgname></affiliation>" msgstr "" +"<firstname>Sun</firstname> <surname>GNOME 文書化チーム </surname> <affiliation> " +"<orgname>サン・マイクロシステムズ</orgname> </affiliation>" #. (itstool) path: authorgroup/author #: C/index.docbook:86 @@ -114,6 +123,9 @@ msgid "" "<orgname>GNOME Documentation Project</orgname> <address> " "<email>[email protected]</email> </address> </affiliation>" msgstr "" +"<firstname>John </firstname> <surname> Fleck</surname> <affiliation> " +"<orgname>GNOME 文書化プロジェクト</orgname> <address> " +"<email>[email protected]</email> </address> </affiliation>" #. (itstool) path: authorgroup/author #: C/index.docbook:94 @@ -122,11 +134,14 @@ msgid "" "<orgname>GNOME Documentation Project</orgname> <address> " "<email>[email protected]</email> </address> </affiliation>" msgstr "" +"<firstname>Dan </firstname> <surname> Mueth</surname> <affiliation> " +"<orgname>GNOME 文書化プロジェクト</orgname> <address> " +"<email>[email protected]</email> </address> </affiliation>" #. (itstool) path: revdescription/para #: C/index.docbook:124 msgid "MATE Documentation Team" -msgstr "MATE ドキュメンテーション・チーム" +msgstr "MATE 文書化チーム" #. (itstool) path: revhistory/revision #: C/index.docbook:120 @@ -134,11 +149,13 @@ msgid "" "<revnumber>Disk Mounter Applet Manual V2.12</revnumber> <date>July " "2015</date> <_:revdescription-1/>" msgstr "" +"<revnumber>ディスク・マウンタ・アプレットマニュアル 2.12 版</revnumber> <date>2015年7月</date> " +"<_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:132 msgid "Trent Lloyd" -msgstr "" +msgstr "Trent Lloyd" #. (itstool) path: revhistory/revision #: C/index.docbook:128 @@ -146,11 +163,13 @@ msgid "" "<revnumber>Disk Mounter Applet Manual V2.11</revnumber> <date>July " "2015</date> <_:revdescription-1/>" msgstr "" +"<revnumber>ディスク・マウンタ・アプレットマニュアル 2.11 版</revnumber> <date>2015年7月</date> " +"<_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:140 msgid "Sun GNOME Documentation Team" -msgstr "Sun GNOME ドキュメンテーション・チーム" +msgstr "Sun GNOME 文書化チーム" #. (itstool) path: revhistory/revision #: C/index.docbook:136 @@ -158,11 +177,13 @@ msgid "" "<revnumber>Disk Mounter Applet Manual V2.10</revnumber> <date>February " "2004</date> <_:revdescription-1/>" msgstr "" +"<revnumber>ディスク・マウンタ・アプレットマニュアル 2.10 版</revnumber> <date>2004年2月</date> " +"<_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:148 msgid "John Fleck <email>[email protected]</email>" -msgstr "" +msgstr "John Fleck <email>[email protected]</email>" #. (itstool) path: revhistory/revision #: C/index.docbook:144 @@ -170,11 +191,13 @@ msgid "" "<revnumber>Disk Mounter Applet Manual V2.0</revnumber> <date>March " "2002</date> <_:revdescription-1/>" msgstr "" +"<revnumber>ディスク・マウンタ・アプレットマニュアル 2.0 版</revnumber> <date>2004年3月</date> " +"<_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:158 msgid "Dan Mueth <email>[email protected]</email>" -msgstr "" +msgstr "Dan Mueth <email>[email protected]</email>" #. (itstool) path: revhistory/revision #: C/index.docbook:154 @@ -182,11 +205,13 @@ msgid "" "<revnumber>Drive Mount Applet Manual</revnumber> <date>April 2000</date> " "<_:revdescription-1/>" msgstr "" +"<revnumber>ドライブ・マウント・アプレットマニュアル</revnumber> <date>2000年4月</date> " +"<_:revdescription-1/>" #. (itstool) path: articleinfo/releaseinfo #: C/index.docbook:166 msgid "This manual describes version 1.10.2 of Disk Mounter." -msgstr "" +msgstr "本マニュアルは、ディスク・マウンタ 1.10.2 版について説明しています。" #. (itstool) path: legalnotice/title #: C/index.docbook:169 @@ -201,11 +226,14 @@ msgid "" "url=\"help:mate-user-guide/feedback\" type=\"help\">MATE Feedback " "Page</ulink>." msgstr "" +"<application>ディスク・マウンタ</application>やこのマニュアルに関する不具合や提案を報告するには、<ulink " +"url=\"help:mate-user-guide/feedback\" type=\"help\">MATE " +"フィードバック・ページ</ulink>の方法に従ってください。" #. (itstool) path: article/indexterm #: C/index.docbook:178 msgid "<primary>Disk Mounter</primary>" -msgstr "" +msgstr "<primary>ディスク・マウンタ</primary>" #. (itstool) path: sect1/title #: C/index.docbook:185 @@ -228,6 +256,8 @@ msgid "" "external ref='figures/drivemount-applet_example.png' " "md5='8c212ac1173b8716b962165890dddc28'" msgstr "" +"external ref='figures/drivemount-applet_example.png' " +"md5='8c212ac1173b8716b962165890dddc28'" #. (itstool) path: screenshot/mediaobject #: C/index.docbook:190 @@ -236,6 +266,9 @@ msgid "" "format=\"PNG\"/> </imageobject> <textobject> <phrase>The Disk Mounter " "applet.</phrase> </textobject>" msgstr "" +"<imageobject><imagedata fileref=\"figures/drivemount-applet_example.png\" " +"format=\"PNG\"/> </imageobject> <textobject> " +"<phrase>ディスクをマウントするアプレットです。</phrase> </textobject>" #. (itstool) path: sect1/para #: C/index.docbook:201 @@ -243,6 +276,7 @@ msgid "" "The <application>Disk Mounter</application> enables you to quickly mount and" " unmount various types of drives and file systems." msgstr "" +"<application>ディスク・マウンタ</application>を使用すると、さまざまなタイプのドライブやファイル・システムを、迅速にマウントおよびアンマウントできます。" #. (itstool) path: sect1/para #: C/index.docbook:204 @@ -253,28 +287,31 @@ msgid "" "type=\"man\"><citerefentry><refentrytitle>fstab</refentrytitle><manvolnum>5</manvolnum></citerefentry></ulink>" " for more information about the necessary system administration tasks." msgstr "" +"<application>ディスク・マウンタ</application>を正しく動作させるには、システム管理者が対象システムを適切に構成する必要があります。必要なシステム管理タスクの詳細については、<ulink" +" url=\"man:fstab\" " +"type=\"man\"><citerefentry><refentrytitle>fstab</refentrytitle><manvolnum>5</manvolnum></citerefentry></ulink>を参照してください。" #. (itstool) path: sect2/title #: C/index.docbook:209 msgid "To Add Disk Mounter to a Panel" -msgstr "" +msgstr "ディスク・マウンタをパネルに追加するには" #. (itstool) path: sect2/para #: C/index.docbook:210 msgid "" "To add <application>Disk Mounter</application> to a panel, perform the " "following steps:" -msgstr "" +msgstr "<application>ディスク・マウンタ</application>をパネルに追加するには、次の手順に従ってください。" #. (itstool) path: listitem/para #: C/index.docbook:216 msgid "Right-click on the panel." -msgstr "" +msgstr "パネル上で右クリックします。" #. (itstool) path: listitem/para #: C/index.docbook:221 msgid "Choose <guimenuitem>Add to Panel</guimenuitem>." -msgstr "" +msgstr "<guimenuitem>パネルに追加</guimenuitem>を選びます。" #. (itstool) path: listitem/para #: C/index.docbook:226 @@ -282,23 +319,24 @@ msgid "" "Scroll down the list of items in the <guilabel>Add to Panel</guilabel> " "dialog, then select <guilabel>Disk Mounter</guilabel>." msgstr "" +"<guilabel>パネルに追加</guilabel>ダイアログの項目一覧を下にスクロールし、<guilabel>ディスク・マウンタ</guilabel>を選択します。" #. (itstool) path: listitem/para #: C/index.docbook:232 msgid "Click <guibutton>Add</guibutton>." -msgstr "" +msgstr "<guibutton>追加</guibutton>をクリックします。" #. (itstool) path: sect2/title #: C/index.docbook:240 msgid "Manually Mounting and Unmounting File Systems" -msgstr "" +msgstr "手動でのファイルシステムのマウントとアンマウント" #. (itstool) path: sect2/para #: C/index.docbook:241 msgid "" "Many file systems on Linux and other Unix-like systems must be manually " "mounted and unmounted." -msgstr "" +msgstr "Linux やその他の Unix ライクなシステムのファイルシステムの多くでは、手動でマウントやアンマウントする必要があります。" #. (itstool) path: sect2/para #: C/index.docbook:244 @@ -307,6 +345,7 @@ msgid "" "When you finish working with a file system, you should unmount the file " "system." msgstr "" +"ファイルシステムをマウントすると、ファイルシステムに対して読取りや書込みが可能になります。ファイルシステム上の操作が終了したら、これをアンマウントする必要があります。" #. (itstool) path: sect2/para #: C/index.docbook:247 @@ -316,6 +355,8 @@ msgid "" "not always write the changes immediately. Such systems typically buffer the " "changes to the disk, to improve the speed of the system." msgstr "" +"Linux やその他の Unix ライクなシステムでは、変更がすぐに書き込まれるとは限らないので、フロッピー・ディスクや Zip " +"ディスクなどメディアを取り外す前に、こうしたリムーバブル・ドライブをアンマウントする必要があります。こうしたシステムでは通常、ディスクへの変更がバッファされるため、システム速度が向上します。" #. (itstool) path: sect2/para #: C/index.docbook:250 @@ -325,6 +366,7 @@ msgid "" "shuts down. Removable media must be mounted and unmounted manually, for " "example by using the <application>Disk Mounter</application>." msgstr "" +"ハードディスク・ドライブなどの固定ドライブ上のパーティションは、通常、コンピュータの起動時に自動的にマウントされ、シャットダウン時にアンマウントされます。リムーバブル・メディアは、<application>ディスク・マウンタ</application>などを使用して手動でマウントおよびアンマウントする必要があります。" #. (itstool) path: sect2/para #: C/index.docbook:253 @@ -334,6 +376,8 @@ msgid "" " Mounter</application> so that you can unmount them when you are finished, " "and provide a visual indication that they are present." msgstr "" +"システムによっては、一部のリムーバブルメディア (USB ディスクや IEEE1394 ディスクなど) " +"も自動的にマウントされる場合があります。これらのデバイスは<application>ディスク・マウンタ</application>でも使用されるため、終了時にマウントを解除できます。また、デバイスの存在を視覚的に表示することができます。" #. (itstool) path: sect1/title #: C/index.docbook:262 @@ -343,7 +387,7 @@ msgstr "使い方" #. (itstool) path: sect2/title #: C/index.docbook:265 msgid "To Display the Name and Mount Status of a Drive" -msgstr "" +msgstr "ドライブの名前とマウントのステータスを表示するには" #. (itstool) path: sect2/para #: C/index.docbook:266 @@ -352,6 +396,7 @@ msgid "" "the drive icon in the panel. A tooltip displays the name and mount status of" " the drive." msgstr "" +"ドライブの名前とマウントの状態を表示するには、パネル内のドライブ・アイコンにマウスポインタを移動します。ツールのヒントにドライブの名前とマウントの状態が表示されます。" #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -364,11 +409,13 @@ msgid "" "external ref='figures/drivemount-applet_status.png' " "md5='a150e5b8efeee5c397591acbda957f1d'" msgstr "" +"external ref='figures/drivemount-applet_status.png' " +"md5='a150e5b8efeee5c397591acbda957f1d'" #. (itstool) path: sect2/title #: C/index.docbook:275 msgid "To Mount, Unmount or Eject a Drive" -msgstr "" +msgstr "ドライブをマウント、アンマウント、または取り出すには" #. (itstool) path: sect2/para #: C/index.docbook:276 @@ -376,6 +423,7 @@ msgid "" "To mount drive, click on the drive icon in the panel and then select the " "<guimenuitem>Mount Drive</guimenuitem> option." msgstr "" +"ドライブをマウントするには、パネル内のドライブ・アイコンをクリックし、<guimenuitem>ドライブのマウント</guimenuitem>オプションを選択します。" #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -388,6 +436,8 @@ msgid "" "external ref='figures/drivemount-applet_mount.png' " "md5='d9ed1ad7dd9a94891d7bf943d42b79cf'" msgstr "" +"external ref='figures/drivemount-applet_mount.png' " +"md5='d9ed1ad7dd9a94891d7bf943d42b79cf'" #. (itstool) path: sect2/para #: C/index.docbook:282 @@ -396,6 +446,8 @@ msgid "" " <guimenuitem>Unmount Drive</guimenuitem> option, or if the device is a CD-" "ROM Drive, it may be labeled <guimenuitem>Eject Drive</guimenuitem>" msgstr "" +"ドライブをマウント解除するには、パネルのドライブアイコンをクリックしてから、<guimenuitem>ドライブのマウント解除</guimenuitem>オプションを選択します。デバイスがCD-" +"ROMドライブの場合は、<guimenuitem>ドライブの取り出し</guimenuitem>というラベルが付いている場合があります。" #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -408,11 +460,13 @@ msgid "" "external ref='figures/drivemount-applet_eject.png' " "md5='784afdef2d482b1b70ad2d44562205de'" msgstr "" +"external ref='figures/drivemount-applet_eject.png' " +"md5='784afdef2d482b1b70ad2d44562205de'" #. (itstool) path: sect2/title #: C/index.docbook:291 msgid "To Browse the Contents of a Drive" -msgstr "" +msgstr "ドライブの内容を表示するには" #. (itstool) path: sect2/para #: C/index.docbook:292 @@ -420,6 +474,7 @@ msgid "" "To use a file manager to browse the contents of a drive, click on the drive " "icon in the panel, then choose <guimenuitem>Open Drive</guimenuitem>." msgstr "" +"ファイルマネージャを使用してドライブの内容を参照するには、パネル内のドライブアイコンをクリックし、<guimenuitem>ドライブを開く</guimenuitem>を選択します。" #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -432,11 +487,13 @@ msgid "" "external ref='figures/drivemount-applet_open.png' " "md5='3140016491c9d55772b1c62e4893e9e7'" msgstr "" +"external ref='figures/drivemount-applet_open.png' " +"md5='3140016491c9d55772b1c62e4893e9e7'" #. (itstool) path: sect2/para #: C/index.docbook:298 msgid "You can only browse the contents of a mounted drive." -msgstr "" +msgstr "マウントされたドライブの内容だけしか参照できません。" #. (itstool) path: para/ulink #: C/legal.xml:9 @@ -453,6 +510,9 @@ msgid "" " of the GFDL at this <_:ulink-1/> or in the file COPYING-DOCS distributed " "with this manual." msgstr "" +"この文書をフリーソフトウェア財団発行の GNU 自由文書ライセンス(第 1.1 " +"版かそれ以降から1つを選択)が定める条件の下で複製、頒布、あるいは改変することを許可します。変更不可部分、表カバーテキスト、裏カバーテキストは存在しません。このライセンスの複製物は<_:ulink-1/>、またはこの文書と共に配布されている" +" COPYING-DOCS というファイルに中に記載されています。" #. (itstool) path: legalnotice/para #: C/legal.xml:12 @@ -462,9 +522,8 @@ msgid "" "you can do so by adding a copy of the license to the manual, as described in" " section 6 of the license." msgstr "" -"本ドキュメントは GFDL の下で配布されているその他の MATE " -"マニュアル集の一部である。これらのマニュアルとは別に本ドキュメントを別個に配布する場合は、GFDL " -"のセクション6で説明しているように、そのマニュアル集に対するライセンスの複製を添付することで実現できる。" +"本文書は GFDL の下で配布されているその他の MATE マニュアル集の一部です。これらのマニュアルとは別に本文書を別個に配布する場合は、GFDL " +"の第6節で説明しているように、そのマニュアル集に対してライセンスの複製を添付してください。" #. (itstool) path: legalnotice/para #: C/legal.xml:19 @@ -475,9 +534,9 @@ msgid "" "aware of those trademarks, then the names are in capital letters or initial " "capital letters." msgstr "" -"企業は自分達の製品とサービスを区別するために使用する多くの名称が登録商標であると主張している。これらの名称が MATE " -"のドキュメントの中に表記されていたり、これらの登録商標が MATE " -"ドキュメンテーション・プロジェクトのメンバに提示している箇所は全部を大文字または最初の文字を大文字にしている。" +"企業が自らの製品とサービスを区別する目的で使用する名称の多くは、登録商標であると主張しています。こうした名称が MATE " +"の文書の中に記載されていて、この登録商標が MATE " +"文書化プロジェクトのメンバーによって了解されている箇所については、名称を大文字または頭文字を大文字で表示しています。" #. (itstool) path: listitem/para #: C/legal.xml:35 @@ -538,3 +597,5 @@ msgid "" "OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: " "<_:orderedlist-1/>" msgstr "" +"この文書およびその修正版は、以下の点を理解したという前提で、GNU 自由文書ライセンス " +"の条件の下で配布されています:<_:orderedlist-1/>" diff --git a/drivemount/help/ka/ka.po b/drivemount/help/ka/ka.po index 15df9ede..ff4cc503 100644 --- a/drivemount/help/ka/ka.po +++ b/drivemount/help/ka/ka.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Georgian (https://www.transifex.com/mate/teams/13566/ka/)\n" +"Language-Team: Georgian (https://app.transifex.com/mate/teams/13566/ka/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -34,7 +34,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright diff --git a/drivemount/help/kab/kab.po b/drivemount/help/kab/kab.po index 2122b4dd..cb5c89ba 100644 --- a/drivemount/help/kab/kab.po +++ b/drivemount/help/kab/kab.po @@ -1,14 +1,14 @@ # # Translators: -# Slimane Selyan AMIRI <[email protected]>, 2020 +# Slimane Selyan AMIRI <[email protected]>, 2020 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" -"Last-Translator: Slimane Selyan AMIRI <[email protected]>, 2020\n" -"Language-Team: Kabyle (https://www.transifex.com/mate/teams/13566/kab/)\n" +"Last-Translator: Slimane Selyan AMIRI <[email protected]>, 2020\n" +"Language-Team: Kabyle (https://app.transifex.com/mate/teams/13566/kab/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -37,7 +37,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright diff --git a/drivemount/help/kk/kk.po b/drivemount/help/kk/kk.po index c7eb5dd1..76b07512 100644 --- a/drivemount/help/kk/kk.po +++ b/drivemount/help/kk/kk.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Kazakh (https://www.transifex.com/mate/teams/13566/kk/)\n" +"Language-Team: Kazakh (https://app.transifex.com/mate/teams/13566/kk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -35,7 +35,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright diff --git a/drivemount/help/kn/kn.po b/drivemount/help/kn/kn.po index 6af94403..d417beed 100644 --- a/drivemount/help/kn/kn.po +++ b/drivemount/help/kn/kn.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" "Last-Translator: karthik holla <[email protected]>, 2018\n" -"Language-Team: Kannada (https://www.transifex.com/mate/teams/13566/kn/)\n" +"Language-Team: Kannada (https://app.transifex.com/mate/teams/13566/kn/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -36,7 +36,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright diff --git a/drivemount/help/ko/ko.po b/drivemount/help/ko/ko.po index 3b351e24..d9e9c868 100644 --- a/drivemount/help/ko/ko.po +++ b/drivemount/help/ko/ko.po @@ -1,17 +1,17 @@ # # Translators: # Stefano Karapetsas <[email protected]>, 2018 +# 1763f4a4329a2376c933c5e919a36cbc_341ca53 <1f851310383599d03339229d772e1290_119292>, 2018 # Wolfgang Ulbrich <[email protected]>, 2018 -# HanSol Park <[email protected]>, 2018 -# 박정규(Jung-Kyu Park) <[email protected]>, 2019 +# Junghee Lee <[email protected]>, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" -"Last-Translator: 박정규(Jung-Kyu Park) <[email protected]>, 2019\n" -"Language-Team: Korean (https://www.transifex.com/mate/teams/13566/ko/)\n" +"Last-Translator: Junghee Lee <[email protected]>, 2021\n" +"Language-Team: Korean (https://app.transifex.com/mate/teams/13566/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -27,6 +27,7 @@ msgstr "" "Yoo Duk Nam https://launchpad.net/~yoo2001818\n" "onlyeriko https://launchpad.net/~onlyeriko\n" "Seong-ho Cho <[email protected]>\n" +"JungHee Lee <[email protected]>\n" "MATE Desktop Environment Team <https://www.transifex.com/mate/teams/13566/ko/>" #. (itstool) path: articleinfo/title @@ -43,8 +44,8 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" -msgstr "" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" +msgstr "<year>2015-2021</year> <holder>MATE 문서화 프로젝트</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:32 @@ -54,7 +55,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:36 msgid "<year>2004</year> <holder>Sun Microsystems</holder>" -msgstr "<year>2004</year> <holder>썬 마이크로시스템즈</holder>" +msgstr "<year>2004</year> <holder>Sun Microsystems</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:40 @@ -70,14 +71,14 @@ msgstr "" #. (itstool) path: revdescription/para #: C/index.docbook:57 C/index.docbook:125 msgid "MATE Documentation Project" -msgstr "그놈 문서 프로젝트" +msgstr "MATE 문서화 프로젝트" #. (itstool) path: publisher/publishername #. (itstool) path: revdescription/para #: C/index.docbook:60 C/index.docbook:133 C/index.docbook:141 #: C/index.docbook:151 C/index.docbook:161 msgid "GNOME Documentation Project" -msgstr "그놈 문서 프로젝트" +msgstr "GNOME 문서화 프로젝트" #. (itstool) path: authorgroup/author #: C/index.docbook:66 @@ -85,6 +86,8 @@ msgid "" "<firstname>MATE Documentation Team</firstname> <surname/> <affiliation> " "<orgname>MATE Desktop</orgname> </affiliation>" msgstr "" +"<firstname>MATE 문서화 팀</firstname> <surname/> <affiliation> <orgname>MATE " +"데스크톱</orgname> </affiliation>" #. (itstool) path: authorgroup/author #: C/index.docbook:73 @@ -93,6 +96,9 @@ msgid "" "<orgname>GNOME Documentation Project</orgname> " "<address><email>[email protected]</email></address> </affiliation>" msgstr "" +"<firstname>Trent</firstname> <surname>Lloyd</surname> <affiliation> " +"<orgname>GNOME 문서화 프로젝트</orgname> " +"<address><email>[email protected]</email></address> </affiliation>" #. (itstool) path: authorgroup/author #: C/index.docbook:81 @@ -100,6 +106,8 @@ msgid "" "<firstname>Sun</firstname> <surname>GNOME Documentation Team</surname> " "<affiliation><orgname>Sun Microsystems</orgname></affiliation>" msgstr "" +"<firstname>Sun</firstname> <surname>GNOME 문서화 팀</surname> " +"<affiliation><orgname>Sun Microsystems</orgname></affiliation>" #. (itstool) path: authorgroup/author #: C/index.docbook:86 @@ -108,6 +116,9 @@ msgid "" "<orgname>GNOME Documentation Project</orgname> <address> " "<email>[email protected]</email> </address> </affiliation>" msgstr "" +"<firstname>John </firstname> <surname> Fleck</surname> <affiliation> " +"<orgname>GNOME 문서화 프로젝트</orgname> <address> " +"<email>[email protected]</email> </address> </affiliation>" #. (itstool) path: authorgroup/author #: C/index.docbook:94 @@ -116,11 +127,14 @@ msgid "" "<orgname>GNOME Documentation Project</orgname> <address> " "<email>[email protected]</email> </address> </affiliation>" msgstr "" +"<firstname>Dan </firstname> <surname> Mueth</surname> <affiliation> " +"<orgname>GNOME 문서화 프로젝트</orgname> <address> " +"<email>[email protected]</email> </address> </affiliation>" #. (itstool) path: revdescription/para #: C/index.docbook:124 msgid "MATE Documentation Team" -msgstr "MATE 문서 팀" +msgstr "MATE 문서화 팀" #. (itstool) path: revhistory/revision #: C/index.docbook:120 @@ -128,6 +142,8 @@ msgid "" "<revnumber>Disk Mounter Applet Manual V2.12</revnumber> <date>July " "2015</date> <_:revdescription-1/>" msgstr "" +"<revnumber>디스크 마운트 도구 애플릿 설명서 V2.12</revnumber> <date>2015년 7월</date> " +"<_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:132 @@ -140,11 +156,13 @@ msgid "" "<revnumber>Disk Mounter Applet Manual V2.11</revnumber> <date>July " "2015</date> <_:revdescription-1/>" msgstr "" +"<revnumber>디스크 마운트 도구 애플릿 설명서 V2.11</revnumber> <date>2015년 7월</date> " +"<_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:140 msgid "Sun GNOME Documentation Team" -msgstr "" +msgstr "Sun GNOME 문서화 팀" #. (itstool) path: revhistory/revision #: C/index.docbook:136 @@ -152,11 +170,13 @@ msgid "" "<revnumber>Disk Mounter Applet Manual V2.10</revnumber> <date>February " "2004</date> <_:revdescription-1/>" msgstr "" +"<revnumber>디스크 마운트 도구 애플릿 설명서 V2.10</revnumber> <date>2월 2004</date> " +"<_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:148 msgid "John Fleck <email>[email protected]</email>" -msgstr "" +msgstr "John Fleck <email>[email protected]</email>" #. (itstool) path: revhistory/revision #: C/index.docbook:144 @@ -164,11 +184,13 @@ msgid "" "<revnumber>Disk Mounter Applet Manual V2.0</revnumber> <date>March " "2002</date> <_:revdescription-1/>" msgstr "" +"<revnumber>디스크 마운트 도구 애플릿 설명서 V2.0</revnumber> <date>3월 2002</date> " +"<_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:158 msgid "Dan Mueth <email>[email protected]</email>" -msgstr "" +msgstr "Dan Mueth <email>[email protected]</email>" #. (itstool) path: revhistory/revision #: C/index.docbook:154 @@ -176,6 +198,8 @@ msgid "" "<revnumber>Drive Mount Applet Manual</revnumber> <date>April 2000</date> " "<_:revdescription-1/>" msgstr "" +"<revnumber>드라이브 마운트 애플릿 설명서</revnumber> <date>4월 2000</date> " +"<_:revdescription-1/>" #. (itstool) path: articleinfo/releaseinfo #: C/index.docbook:166 @@ -199,7 +223,7 @@ msgstr "" #. (itstool) path: article/indexterm #: C/index.docbook:178 msgid "<primary>Disk Mounter</primary>" -msgstr "" +msgstr "<primary>디스크 마운트 도구</primary>" #. (itstool) path: sect1/title #: C/index.docbook:185 @@ -222,6 +246,8 @@ msgid "" "external ref='figures/drivemount-applet_example.png' " "md5='8c212ac1173b8716b962165890dddc28'" msgstr "" +"external ref='figures/drivemount-applet_example.png' " +"md5='8c212ac1173b8716b962165890dddc28'" #. (itstool) path: screenshot/mediaobject #: C/index.docbook:190 @@ -230,6 +256,9 @@ msgid "" "format=\"PNG\"/> </imageobject> <textobject> <phrase>The Disk Mounter " "applet.</phrase> </textobject>" msgstr "" +"<imageobject><imagedata fileref=\"figures/drivemount-애플릿_example.png\" " +"format=\"PNG\"/> </imageobject> <textobject> <phrase>디스크 마운트 도구 " +"애플릿.</phrase> </textobject>" #. (itstool) path: sect1/para #: C/index.docbook:201 @@ -358,6 +387,8 @@ msgid "" "external ref='figures/drivemount-applet_status.png' " "md5='a150e5b8efeee5c397591acbda957f1d'" msgstr "" +"external ref='figures/drivemount-applet_status.png' " +"md5='a150e5b8efeee5c397591acbda957f1d'" #. (itstool) path: sect2/title #: C/index.docbook:275 @@ -382,6 +413,8 @@ msgid "" "external ref='figures/drivemount-applet_mount.png' " "md5='d9ed1ad7dd9a94891d7bf943d42b79cf'" msgstr "" +"external ref='figures/drivemount-applet_mount.png' " +"md5='d9ed1ad7dd9a94891d7bf943d42b79cf'" #. (itstool) path: sect2/para #: C/index.docbook:282 @@ -402,6 +435,8 @@ msgid "" "external ref='figures/drivemount-applet_eject.png' " "md5='784afdef2d482b1b70ad2d44562205de'" msgstr "" +"external ref='figures/drivemount-applet_eject.png' " +"md5='784afdef2d482b1b70ad2d44562205de'" #. (itstool) path: sect2/title #: C/index.docbook:291 @@ -426,6 +461,8 @@ msgid "" "external ref='figures/drivemount-applet_open.png' " "md5='3140016491c9d55772b1c62e4893e9e7'" msgstr "" +"external ref='figures/drivemount-applet_open.png' " +"md5='3140016491c9d55772b1c62e4893e9e7'" #. (itstool) path: sect2/para #: C/index.docbook:298 @@ -447,6 +484,9 @@ msgid "" " of the GFDL at this <_:ulink-1/> or in the file COPYING-DOCS distributed " "with this manual." msgstr "" +"GNU 자유 문서화 사용 허가서(GFDL), 버전 1.1 또는 자유 소프트웨어 재단에서 게시한 모든 이후 버전의 조건에 따라 이 문서를 " +"복사, 배포 및/또는 수정할 수 있는 권한이 부여됩니다. 뒷 표지 텍스트 없음. GFDL의 사본은 여기 또는 이 설명서와 함께 배포된 " +"COPYING-DOCS 파일에서 찾을 수 있습니다." #. (itstool) path: legalnotice/para #: C/legal.xml:12 @@ -456,8 +496,8 @@ msgid "" "you can do so by adding a copy of the license to the manual, as described in" " section 6 of the license." msgstr "" -"본 설명서는 GFDL에 따라 배포된 그놈 설명서 컬렉션의 일부입니다. 본 설명서를 컬렉션과 별도로 배포하려는 경우에는 라이센스 조항 6에" -" 따라 라이센스 사본을 설명서에 추가하면 됩니다." +"본 설명서는 GFDL에 따라 배포된 MATE 설명서 컬렉션의 일부입니다. 본 설명서를 컬렉션과 별도로 배포하려는 경우에는 라이센스 조항 " +"6에 따라 라이센스 사본을 설명서에 추가하면 됩니다." #. (itstool) path: legalnotice/para #: C/legal.xml:19 @@ -468,8 +508,8 @@ msgid "" "aware of those trademarks, then the names are in capital letters or initial " "capital letters." msgstr "" -"기업의 제품과 서비스를 식별하기 위해 사용된 많은 이름은 상표로 간주됩니다. 그놈 문서에 사용된 이름과 그놈 문서 프로젝트의 구성원은 " -"해당 상표로, 모두 대문자로 표시되거나 첫 글자가 대문자로 표시되어 있습니다." +"기업의 제품과 서비스를 식별하기 위해 사용된 많은 이름은 상표로 간주됩니다. MATE 문서에 사용된 이름과 MATE 문서화 프로젝트의 " +"구성원은 해당 상표로, 모두 대문자로 표시되거나 첫 글자가 대문자로 표시되어 있습니다." #. (itstool) path: listitem/para #: C/legal.xml:35 @@ -517,3 +557,5 @@ msgid "" "OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: " "<_:orderedlist-1/>" msgstr "" +"문서의 문서 및 수정된 버전은 gnu 자유 문서 라이센스의 조건에 따라 제공되며, 다음 사항을 더 잘 이해하고 있습니다: " +"<_:orderedlist-1/>" diff --git a/drivemount/help/ku/ku.po b/drivemount/help/ku/ku.po index dd869a38..c4fc496d 100644 --- a/drivemount/help/ku/ku.po +++ b/drivemount/help/ku/ku.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Kurdish (https://www.transifex.com/mate/teams/13566/ku/)\n" +"Language-Team: Kurdish (https://app.transifex.com/mate/teams/13566/ku/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -34,7 +34,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright diff --git a/drivemount/help/ku_IQ/ku_IQ.po b/drivemount/help/ku_IQ/ku_IQ.po new file mode 100644 index 00000000..519229e4 --- /dev/null +++ b/drivemount/help/ku_IQ/ku_IQ.po @@ -0,0 +1,498 @@ +# +# Translators: +# Rasti K5 <[email protected]>, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" +"PO-Revision-Date: 2018-09-27 15:11+0000\n" +"Last-Translator: Rasti K5 <[email protected]>, 2023\n" +"Language-Team: Kurdish (Iraq) (https://app.transifex.com/mate/teams/13566/ku_IQ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ku_IQ\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. Put one translator per line, in the form NAME <EMAIL>, YEAR1, YEAR2 +msgctxt "_" +msgid "translator-credits" +msgstr "" + +#. (itstool) path: articleinfo/title +#: C/index.docbook:22 +msgid "Disk Mounter Manual" +msgstr "" + +#. (itstool) path: abstract/para +#: C/index.docbook:24 +msgid "" +"The Disk Mounter applet enables you to quickly mount or unmount various " +"types of drives and file systems from a panel." +msgstr "" + +#. (itstool) path: articleinfo/copyright +#: C/index.docbook:28 +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" +msgstr "" + +#. (itstool) path: articleinfo/copyright +#: C/index.docbook:32 +msgid "<year>2005</year> <holder>Trent Lloyd</holder>" +msgstr "" + +#. (itstool) path: articleinfo/copyright +#: C/index.docbook:36 +msgid "<year>2004</year> <holder>Sun Microsystems</holder>" +msgstr "" + +#. (itstool) path: articleinfo/copyright +#: C/index.docbook:40 +msgid "<year>2002</year> <holder>John Fleck</holder>" +msgstr "" + +#. (itstool) path: articleinfo/copyright +#: C/index.docbook:44 +msgid "<year>2000</year> <holder>Dan Mueth</holder>" +msgstr "" + +#. (itstool) path: publisher/publishername +#. (itstool) path: revdescription/para +#: C/index.docbook:57 C/index.docbook:125 +msgid "MATE Documentation Project" +msgstr "" + +#. (itstool) path: publisher/publishername +#. (itstool) path: revdescription/para +#: C/index.docbook:60 C/index.docbook:133 C/index.docbook:141 +#: C/index.docbook:151 C/index.docbook:161 +msgid "GNOME Documentation Project" +msgstr "" + +#. (itstool) path: authorgroup/author +#: C/index.docbook:66 +msgid "" +"<firstname>MATE Documentation Team</firstname> <surname/> <affiliation> " +"<orgname>MATE Desktop</orgname> </affiliation>" +msgstr "" + +#. (itstool) path: authorgroup/author +#: C/index.docbook:73 +msgid "" +"<firstname>Trent</firstname> <surname>Lloyd</surname> <affiliation> " +"<orgname>GNOME Documentation Project</orgname> " +"<address><email>[email protected]</email></address> </affiliation>" +msgstr "" + +#. (itstool) path: authorgroup/author +#: C/index.docbook:81 +msgid "" +"<firstname>Sun</firstname> <surname>GNOME Documentation Team</surname> " +"<affiliation><orgname>Sun Microsystems</orgname></affiliation>" +msgstr "" + +#. (itstool) path: authorgroup/author +#: C/index.docbook:86 +msgid "" +"<firstname>John </firstname> <surname> Fleck</surname> <affiliation> " +"<orgname>GNOME Documentation Project</orgname> <address> " +"<email>[email protected]</email> </address> </affiliation>" +msgstr "" + +#. (itstool) path: authorgroup/author +#: C/index.docbook:94 +msgid "" +"<firstname>Dan </firstname> <surname> Mueth</surname> <affiliation> " +"<orgname>GNOME Documentation Project</orgname> <address> " +"<email>[email protected]</email> </address> </affiliation>" +msgstr "" + +#. (itstool) path: revdescription/para +#: C/index.docbook:124 +msgid "MATE Documentation Team" +msgstr "" + +#. (itstool) path: revhistory/revision +#: C/index.docbook:120 +msgid "" +"<revnumber>Disk Mounter Applet Manual V2.12</revnumber> <date>July " +"2015</date> <_:revdescription-1/>" +msgstr "" + +#. (itstool) path: revdescription/para +#: C/index.docbook:132 +msgid "Trent Lloyd" +msgstr "" + +#. (itstool) path: revhistory/revision +#: C/index.docbook:128 +msgid "" +"<revnumber>Disk Mounter Applet Manual V2.11</revnumber> <date>July " +"2015</date> <_:revdescription-1/>" +msgstr "" + +#. (itstool) path: revdescription/para +#: C/index.docbook:140 +msgid "Sun GNOME Documentation Team" +msgstr "" + +#. (itstool) path: revhistory/revision +#: C/index.docbook:136 +msgid "" +"<revnumber>Disk Mounter Applet Manual V2.10</revnumber> <date>February " +"2004</date> <_:revdescription-1/>" +msgstr "" + +#. (itstool) path: revdescription/para +#: C/index.docbook:148 +msgid "John Fleck <email>[email protected]</email>" +msgstr "" + +#. (itstool) path: revhistory/revision +#: C/index.docbook:144 +msgid "" +"<revnumber>Disk Mounter Applet Manual V2.0</revnumber> <date>March " +"2002</date> <_:revdescription-1/>" +msgstr "" + +#. (itstool) path: revdescription/para +#: C/index.docbook:158 +msgid "Dan Mueth <email>[email protected]</email>" +msgstr "" + +#. (itstool) path: revhistory/revision +#: C/index.docbook:154 +msgid "" +"<revnumber>Drive Mount Applet Manual</revnumber> <date>April 2000</date> " +"<_:revdescription-1/>" +msgstr "" + +#. (itstool) path: articleinfo/releaseinfo +#: C/index.docbook:166 +msgid "This manual describes version 1.10.2 of Disk Mounter." +msgstr "" + +#. (itstool) path: legalnotice/title +#: C/index.docbook:169 +msgid "Feedback" +msgstr "پاشخورد" + +#. (itstool) path: legalnotice/para +#: C/index.docbook:170 +msgid "" +"To report a bug or make a suggestion regarding the <application>Disk " +"Mounter</application> or this manual, follow the directions in the <ulink " +"url=\"help:mate-user-guide/feedback\" type=\"help\">MATE Feedback " +"Page</ulink>." +msgstr "" + +#. (itstool) path: article/indexterm +#: C/index.docbook:178 +msgid "<primary>Disk Mounter</primary>" +msgstr "" + +#. (itstool) path: sect1/title +#: C/index.docbook:185 +msgid "Introduction" +msgstr "" + +#. (itstool) path: figure/title +#: C/index.docbook:188 +msgid "Disk Mounter" +msgstr "" + +#. (itstool) path: imageobject/imagedata +#. This is a reference to an external file such as an image or video. When +#. the file changes, the md5 hash will change to let you know you need to +#. update your localized copy. The msgstr is not used at all. Set it to +#. whatever you like once you have updated your copy of the file. +#: C/index.docbook:192 +msgctxt "_" +msgid "" +"external ref='figures/drivemount-applet_example.png' " +"md5='8c212ac1173b8716b962165890dddc28'" +msgstr "" + +#. (itstool) path: screenshot/mediaobject +#: C/index.docbook:190 +msgid "" +"<imageobject><imagedata fileref=\"figures/drivemount-applet_example.png\" " +"format=\"PNG\"/> </imageobject> <textobject> <phrase>The Disk Mounter " +"applet.</phrase> </textobject>" +msgstr "" + +#. (itstool) path: sect1/para +#: C/index.docbook:201 +msgid "" +"The <application>Disk Mounter</application> enables you to quickly mount and" +" unmount various types of drives and file systems." +msgstr "" + +#. (itstool) path: sect1/para +#: C/index.docbook:204 +msgid "" +"For the <application>Disk Mounter</application> to work properly, your " +"system administrator must configure your system appropriately. Refer to the " +"<ulink url=\"man:fstab\" " +"type=\"man\"><citerefentry><refentrytitle>fstab</refentrytitle><manvolnum>5</manvolnum></citerefentry></ulink>" +" for more information about the necessary system administration tasks." +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:209 +msgid "To Add Disk Mounter to a Panel" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:210 +msgid "" +"To add <application>Disk Mounter</application> to a panel, perform the " +"following steps:" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:216 +msgid "Right-click on the panel." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:221 +msgid "Choose <guimenuitem>Add to Panel</guimenuitem>." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:226 +msgid "" +"Scroll down the list of items in the <guilabel>Add to Panel</guilabel> " +"dialog, then select <guilabel>Disk Mounter</guilabel>." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:232 +msgid "Click <guibutton>Add</guibutton>." +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:240 +msgid "Manually Mounting and Unmounting File Systems" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:241 +msgid "" +"Many file systems on Linux and other Unix-like systems must be manually " +"mounted and unmounted." +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:244 +msgid "" +"When a file system is mounted, you can read and write to the file system. " +"When you finish working with a file system, you should unmount the file " +"system." +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:247 +msgid "" +"You must unmount removable drives, such as floppy disks and Zip disks, " +"before you remove the media, because Linux and other Unix-like systems do " +"not always write the changes immediately. Such systems typically buffer the " +"changes to the disk, to improve the speed of the system." +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:250 +msgid "" +"Partitions on fixed drives, such as your hard drive, are typically mounted " +"automatically when your computer boots, and unmounted when your computer " +"shuts down. Removable media must be mounted and unmounted manually, for " +"example by using the <application>Disk Mounter</application>." +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:253 +msgid "" +"Some systems may also automatically mount some removable media (such as USB " +"and IEEE1394 disks), these devices may also come up in the <application>Disk" +" Mounter</application> so that you can unmount them when you are finished, " +"and provide a visual indication that they are present." +msgstr "" + +#. (itstool) path: sect1/title +#: C/index.docbook:262 +msgid "Usage" +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:265 +msgid "To Display the Name and Mount Status of a Drive" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:266 +msgid "" +"To display the name and mount status of a drive, move the mouse pointer to " +"the drive icon in the panel. A tooltip displays the name and mount status of" +" the drive." +msgstr "" + +#. (itstool) path: imageobject/imagedata +#. This is a reference to an external file such as an image or video. When +#. the file changes, the md5 hash will change to let you know you need to +#. update your localized copy. The msgstr is not used at all. Set it to +#. whatever you like once you have updated your copy of the file. +#: C/index.docbook:270 +msgctxt "_" +msgid "" +"external ref='figures/drivemount-applet_status.png' " +"md5='a150e5b8efeee5c397591acbda957f1d'" +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:275 +msgid "To Mount, Unmount or Eject a Drive" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:276 +msgid "" +"To mount drive, click on the drive icon in the panel and then select the " +"<guimenuitem>Mount Drive</guimenuitem> option." +msgstr "" + +#. (itstool) path: imageobject/imagedata +#. This is a reference to an external file such as an image or video. When +#. the file changes, the md5 hash will change to let you know you need to +#. update your localized copy. The msgstr is not used at all. Set it to +#. whatever you like once you have updated your copy of the file. +#: C/index.docbook:280 +msgctxt "_" +msgid "" +"external ref='figures/drivemount-applet_mount.png' " +"md5='d9ed1ad7dd9a94891d7bf943d42b79cf'" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:282 +msgid "" +"To unmount a drive, click on the drive icon in the panel and then select the" +" <guimenuitem>Unmount Drive</guimenuitem> option, or if the device is a CD-" +"ROM Drive, it may be labeled <guimenuitem>Eject Drive</guimenuitem>" +msgstr "" + +#. (itstool) path: imageobject/imagedata +#. This is a reference to an external file such as an image or video. When +#. the file changes, the md5 hash will change to let you know you need to +#. update your localized copy. The msgstr is not used at all. Set it to +#. whatever you like once you have updated your copy of the file. +#: C/index.docbook:286 +msgctxt "_" +msgid "" +"external ref='figures/drivemount-applet_eject.png' " +"md5='784afdef2d482b1b70ad2d44562205de'" +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:291 +msgid "To Browse the Contents of a Drive" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:292 +msgid "" +"To use a file manager to browse the contents of a drive, click on the drive " +"icon in the panel, then choose <guimenuitem>Open Drive</guimenuitem>." +msgstr "" + +#. (itstool) path: imageobject/imagedata +#. This is a reference to an external file such as an image or video. When +#. the file changes, the md5 hash will change to let you know you need to +#. update your localized copy. The msgstr is not used at all. Set it to +#. whatever you like once you have updated your copy of the file. +#: C/index.docbook:296 +msgctxt "_" +msgid "" +"external ref='figures/drivemount-applet_open.png' " +"md5='3140016491c9d55772b1c62e4893e9e7'" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:298 +msgid "You can only browse the contents of a mounted drive." +msgstr "" + +#. (itstool) path: para/ulink +#: C/legal.xml:9 +msgid "link" +msgstr "بەستەر" + +#. (itstool) path: legalnotice/para +#: C/legal.xml:2 +msgid "" +"Permission is granted to copy, distribute and/or modify this document under " +"the terms of the GNU Free Documentation License (GFDL), Version 1.1 or any " +"later version published by the Free Software Foundation with no Invariant " +"Sections, no Front-Cover Texts, and no Back-Cover Texts. You can find a copy" +" of the GFDL at this <_:ulink-1/> or in the file COPYING-DOCS distributed " +"with this manual." +msgstr "" + +#. (itstool) path: legalnotice/para +#: C/legal.xml:12 +msgid "" +"This manual is part of a collection of MATE manuals distributed under the " +"GFDL. If you want to distribute this manual separately from the collection, " +"you can do so by adding a copy of the license to the manual, as described in" +" section 6 of the license." +msgstr "" + +#. (itstool) path: legalnotice/para +#: C/legal.xml:19 +msgid "" +"Many of the names used by companies to distinguish their products and " +"services are claimed as trademarks. Where those names appear in any MATE " +"documentation, and the members of the MATE Documentation Project are made " +"aware of those trademarks, then the names are in capital letters or initial " +"capital letters." +msgstr "" + +#. (itstool) path: listitem/para +#: C/legal.xml:35 +msgid "" +"DOCUMENT IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, " +"EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT " +"THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS " +"MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE " +"RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR " +"MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR " +"MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL " +"WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY " +"SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN " +"ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED VERSION " +"OF THE DOCUMENT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER; AND" +msgstr "" + +#. (itstool) path: listitem/para +#: C/legal.xml:55 +msgid "" +"UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING" +" NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY " +"CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE " +"DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON " +"FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF " +"ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, " +"WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES" +" OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED " +"VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE" +" POSSIBILITY OF SUCH DAMAGES." +msgstr "" + +#. (itstool) path: legalnotice/para +#: C/legal.xml:28 +msgid "" +"DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS " +"OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: " +"<_:orderedlist-1/>" +msgstr "" diff --git a/drivemount/help/ky/ky.po b/drivemount/help/ky/ky.po index 18464dae..c330e56a 100644 --- a/drivemount/help/ky/ky.po +++ b/drivemount/help/ky/ky.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" "Last-Translator: 41e38594a6ab66d45dbd71e8e44a0b16_36d21e8, 2018\n" -"Language-Team: Kyrgyz (https://www.transifex.com/mate/teams/13566/ky/)\n" +"Language-Team: Kyrgyz (https://app.transifex.com/mate/teams/13566/ky/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -35,7 +35,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright diff --git a/drivemount/help/la/la.po b/drivemount/help/la/la.po index 52b5d24a..43fafd8d 100644 --- a/drivemount/help/la/la.po +++ b/drivemount/help/la/la.po @@ -1,14 +1,15 @@ # # Translators: # Vendelín Slezák <[email protected]>, 2018 +# Roger Herikstad, 2023 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" -"Last-Translator: Vendelín Slezák <[email protected]>, 2018\n" -"Language-Team: Latin (https://www.transifex.com/mate/teams/13566/la/)\n" +"Last-Translator: Roger Herikstad, 2023\n" +"Language-Team: Latin (https://app.transifex.com/mate/teams/13566/la/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -34,7 +35,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -323,7 +324,7 @@ msgstr "" #. (itstool) path: sect1/title #: C/index.docbook:262 msgid "Usage" -msgstr "" +msgstr "Usus" #. (itstool) path: sect2/title #: C/index.docbook:265 @@ -426,7 +427,7 @@ msgstr "" #. (itstool) path: para/ulink #: C/legal.xml:9 msgid "link" -msgstr "" +msgstr "vinculum" #. (itstool) path: legalnotice/para #: C/legal.xml:2 diff --git a/drivemount/help/lt/lt.po b/drivemount/help/lt/lt.po index a083a22c..791a5b1c 100644 --- a/drivemount/help/lt/lt.po +++ b/drivemount/help/lt/lt.po @@ -1,16 +1,16 @@ # # Translators: # Stefano Karapetsas <[email protected]>, 2018 -# Moo, 2018 # Džiugas Grėbliūnas <[email protected]>, 2020 +# Moo, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" -"Last-Translator: Džiugas Grėbliūnas <[email protected]>, 2020\n" -"Language-Team: Lithuanian (https://www.transifex.com/mate/teams/13566/lt/)\n" +"Last-Translator: Moo, 2021\n" +"Language-Team: Lithuanian (https://app.transifex.com/mate/teams/13566/lt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -49,8 +49,8 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" -msgstr "<year>2015-2020</year> <holder>MATE dokumentacijos projektas</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" +msgstr "<year>2015-2021</year> <holder>MATE dokumentacijos projektas</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:32 @@ -225,8 +225,9 @@ msgid "" "Page</ulink>." msgstr "" "Pranešimui apie programos klaidą arba pasiūlymams dėl <application>Disko " -"prijungimo</application> ar šio žinyno, sekite nuorodas <ulink url=\"help" -":mate-user-guide/feedback\" type=\"help\">MATE atsako puslapyje</ulink>." +"prijungimo</application> ar šio žinyno, sekite nuorodas <ulink " +"url=\"help:mate-user-guide/feedback\" type=\"help\">MATE atsako " +"puslapyje</ulink>." #. (itstool) path: article/indexterm #: C/index.docbook:178 diff --git a/drivemount/help/lv/lv.po b/drivemount/help/lv/lv.po index 5e3c5b60..90dd85a1 100644 --- a/drivemount/help/lv/lv.po +++ b/drivemount/help/lv/lv.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Latvian (https://www.transifex.com/mate/teams/13566/lv/)\n" +"Language-Team: Latvian (https://app.transifex.com/mate/teams/13566/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -36,7 +36,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright diff --git a/drivemount/help/mai/mai.po b/drivemount/help/mai/mai.po index 6e6b9933..e05f1124 100644 --- a/drivemount/help/mai/mai.po +++ b/drivemount/help/mai/mai.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Maithili (https://www.transifex.com/mate/teams/13566/mai/)\n" +"Language-Team: Maithili (https://app.transifex.com/mate/teams/13566/mai/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -34,7 +34,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright diff --git a/drivemount/help/mg/mg.po b/drivemount/help/mg/mg.po index a479e1c9..e8206f07 100644 --- a/drivemount/help/mg/mg.po +++ b/drivemount/help/mg/mg.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Malagasy (https://www.transifex.com/mate/teams/13566/mg/)\n" +"Language-Team: Malagasy (https://app.transifex.com/mate/teams/13566/mg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -34,7 +34,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright diff --git a/drivemount/help/mk/mk.po b/drivemount/help/mk/mk.po index 2266ccf4..54907d45 100644 --- a/drivemount/help/mk/mk.po +++ b/drivemount/help/mk/mk.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" "Last-Translator: exoos <[email protected]>, 2018\n" -"Language-Team: Macedonian (https://www.transifex.com/mate/teams/13566/mk/)\n" +"Language-Team: Macedonian (https://app.transifex.com/mate/teams/13566/mk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -35,7 +35,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright diff --git a/drivemount/help/ml/ml.po b/drivemount/help/ml/ml.po index 8a8df3d0..ca916114 100644 --- a/drivemount/help/ml/ml.po +++ b/drivemount/help/ml/ml.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Malayalam (https://www.transifex.com/mate/teams/13566/ml/)\n" +"Language-Team: Malayalam (https://app.transifex.com/mate/teams/13566/ml/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -36,7 +36,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright diff --git a/drivemount/help/mn/mn.po b/drivemount/help/mn/mn.po index 079851b1..d6afa126 100644 --- a/drivemount/help/mn/mn.po +++ b/drivemount/help/mn/mn.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Mongolian (https://www.transifex.com/mate/teams/13566/mn/)\n" +"Language-Team: Mongolian (https://app.transifex.com/mate/teams/13566/mn/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -36,7 +36,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright diff --git a/drivemount/help/mr/mr.po b/drivemount/help/mr/mr.po index 2381e71e..e4a4947d 100644 --- a/drivemount/help/mr/mr.po +++ b/drivemount/help/mr/mr.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" "Last-Translator: Vaibhav S Dalvi <[email protected]>, 2018\n" -"Language-Team: Marathi (https://www.transifex.com/mate/teams/13566/mr/)\n" +"Language-Team: Marathi (https://app.transifex.com/mate/teams/13566/mr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -35,7 +35,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright diff --git a/drivemount/help/ms/ms.po b/drivemount/help/ms/ms.po index 7580b769..d7d57eda 100644 --- a/drivemount/help/ms/ms.po +++ b/drivemount/help/ms/ms.po @@ -1,15 +1,15 @@ # # Translators: # Stefano Karapetsas <[email protected]>, 2018 -# abuyop <[email protected]>, 2020 +# abuyop <[email protected]>, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" -"Last-Translator: abuyop <[email protected]>, 2020\n" -"Language-Team: Malay (https://www.transifex.com/mate/teams/13566/ms/)\n" +"Last-Translator: abuyop <[email protected]>, 2021\n" +"Language-Team: Malay (https://app.transifex.com/mate/teams/13566/ms/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -37,8 +37,8 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" -msgstr "<year>2015-2020</year> <holder>Pojek Dokumentasi MATE</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" +msgstr "<year>2015-2021</year> <holder>Projek Dokumentasi MATE</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:32 diff --git a/drivemount/help/nan/nan.po b/drivemount/help/nan/nan.po new file mode 100644 index 00000000..2159c5ef --- /dev/null +++ b/drivemount/help/nan/nan.po @@ -0,0 +1,498 @@ +# +# Translators: +# Tan, Kian-ting, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" +"PO-Revision-Date: 2018-09-27 15:11+0000\n" +"Last-Translator: Tan, Kian-ting, 2023\n" +"Language-Team: Chinese (Min Nan) (https://app.transifex.com/mate/teams/13566/nan/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nan\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. Put one translator per line, in the form NAME <EMAIL>, YEAR1, YEAR2 +msgctxt "_" +msgid "translator-credits" +msgstr "Tan Kian-ting <[email protected]>, 2023" + +#. (itstool) path: articleinfo/title +#: C/index.docbook:22 +msgid "Disk Mounter Manual" +msgstr "" + +#. (itstool) path: abstract/para +#: C/index.docbook:24 +msgid "" +"The Disk Mounter applet enables you to quickly mount or unmount various " +"types of drives and file systems from a panel." +msgstr "" + +#. (itstool) path: articleinfo/copyright +#: C/index.docbook:28 +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" +msgstr "" + +#. (itstool) path: articleinfo/copyright +#: C/index.docbook:32 +msgid "<year>2005</year> <holder>Trent Lloyd</holder>" +msgstr "" + +#. (itstool) path: articleinfo/copyright +#: C/index.docbook:36 +msgid "<year>2004</year> <holder>Sun Microsystems</holder>" +msgstr "" + +#. (itstool) path: articleinfo/copyright +#: C/index.docbook:40 +msgid "<year>2002</year> <holder>John Fleck</holder>" +msgstr "" + +#. (itstool) path: articleinfo/copyright +#: C/index.docbook:44 +msgid "<year>2000</year> <holder>Dan Mueth</holder>" +msgstr "" + +#. (itstool) path: publisher/publishername +#. (itstool) path: revdescription/para +#: C/index.docbook:57 C/index.docbook:125 +msgid "MATE Documentation Project" +msgstr "" + +#. (itstool) path: publisher/publishername +#. (itstool) path: revdescription/para +#: C/index.docbook:60 C/index.docbook:133 C/index.docbook:141 +#: C/index.docbook:151 C/index.docbook:161 +msgid "GNOME Documentation Project" +msgstr "" + +#. (itstool) path: authorgroup/author +#: C/index.docbook:66 +msgid "" +"<firstname>MATE Documentation Team</firstname> <surname/> <affiliation> " +"<orgname>MATE Desktop</orgname> </affiliation>" +msgstr "" + +#. (itstool) path: authorgroup/author +#: C/index.docbook:73 +msgid "" +"<firstname>Trent</firstname> <surname>Lloyd</surname> <affiliation> " +"<orgname>GNOME Documentation Project</orgname> " +"<address><email>[email protected]</email></address> </affiliation>" +msgstr "" + +#. (itstool) path: authorgroup/author +#: C/index.docbook:81 +msgid "" +"<firstname>Sun</firstname> <surname>GNOME Documentation Team</surname> " +"<affiliation><orgname>Sun Microsystems</orgname></affiliation>" +msgstr "" + +#. (itstool) path: authorgroup/author +#: C/index.docbook:86 +msgid "" +"<firstname>John </firstname> <surname> Fleck</surname> <affiliation> " +"<orgname>GNOME Documentation Project</orgname> <address> " +"<email>[email protected]</email> </address> </affiliation>" +msgstr "" + +#. (itstool) path: authorgroup/author +#: C/index.docbook:94 +msgid "" +"<firstname>Dan </firstname> <surname> Mueth</surname> <affiliation> " +"<orgname>GNOME Documentation Project</orgname> <address> " +"<email>[email protected]</email> </address> </affiliation>" +msgstr "" + +#. (itstool) path: revdescription/para +#: C/index.docbook:124 +msgid "MATE Documentation Team" +msgstr "" + +#. (itstool) path: revhistory/revision +#: C/index.docbook:120 +msgid "" +"<revnumber>Disk Mounter Applet Manual V2.12</revnumber> <date>July " +"2015</date> <_:revdescription-1/>" +msgstr "" + +#. (itstool) path: revdescription/para +#: C/index.docbook:132 +msgid "Trent Lloyd" +msgstr "" + +#. (itstool) path: revhistory/revision +#: C/index.docbook:128 +msgid "" +"<revnumber>Disk Mounter Applet Manual V2.11</revnumber> <date>July " +"2015</date> <_:revdescription-1/>" +msgstr "" + +#. (itstool) path: revdescription/para +#: C/index.docbook:140 +msgid "Sun GNOME Documentation Team" +msgstr "" + +#. (itstool) path: revhistory/revision +#: C/index.docbook:136 +msgid "" +"<revnumber>Disk Mounter Applet Manual V2.10</revnumber> <date>February " +"2004</date> <_:revdescription-1/>" +msgstr "" + +#. (itstool) path: revdescription/para +#: C/index.docbook:148 +msgid "John Fleck <email>[email protected]</email>" +msgstr "" + +#. (itstool) path: revhistory/revision +#: C/index.docbook:144 +msgid "" +"<revnumber>Disk Mounter Applet Manual V2.0</revnumber> <date>March " +"2002</date> <_:revdescription-1/>" +msgstr "" + +#. (itstool) path: revdescription/para +#: C/index.docbook:158 +msgid "Dan Mueth <email>[email protected]</email>" +msgstr "" + +#. (itstool) path: revhistory/revision +#: C/index.docbook:154 +msgid "" +"<revnumber>Drive Mount Applet Manual</revnumber> <date>April 2000</date> " +"<_:revdescription-1/>" +msgstr "" + +#. (itstool) path: articleinfo/releaseinfo +#: C/index.docbook:166 +msgid "This manual describes version 1.10.2 of Disk Mounter." +msgstr "" + +#. (itstool) path: legalnotice/title +#: C/index.docbook:169 +msgid "Feedback" +msgstr "" + +#. (itstool) path: legalnotice/para +#: C/index.docbook:170 +msgid "" +"To report a bug or make a suggestion regarding the <application>Disk " +"Mounter</application> or this manual, follow the directions in the <ulink " +"url=\"help:mate-user-guide/feedback\" type=\"help\">MATE Feedback " +"Page</ulink>." +msgstr "" + +#. (itstool) path: article/indexterm +#: C/index.docbook:178 +msgid "<primary>Disk Mounter</primary>" +msgstr "" + +#. (itstool) path: sect1/title +#: C/index.docbook:185 +msgid "Introduction" +msgstr "" + +#. (itstool) path: figure/title +#: C/index.docbook:188 +msgid "Disk Mounter" +msgstr "" + +#. (itstool) path: imageobject/imagedata +#. This is a reference to an external file such as an image or video. When +#. the file changes, the md5 hash will change to let you know you need to +#. update your localized copy. The msgstr is not used at all. Set it to +#. whatever you like once you have updated your copy of the file. +#: C/index.docbook:192 +msgctxt "_" +msgid "" +"external ref='figures/drivemount-applet_example.png' " +"md5='8c212ac1173b8716b962165890dddc28'" +msgstr "" + +#. (itstool) path: screenshot/mediaobject +#: C/index.docbook:190 +msgid "" +"<imageobject><imagedata fileref=\"figures/drivemount-applet_example.png\" " +"format=\"PNG\"/> </imageobject> <textobject> <phrase>The Disk Mounter " +"applet.</phrase> </textobject>" +msgstr "" + +#. (itstool) path: sect1/para +#: C/index.docbook:201 +msgid "" +"The <application>Disk Mounter</application> enables you to quickly mount and" +" unmount various types of drives and file systems." +msgstr "" + +#. (itstool) path: sect1/para +#: C/index.docbook:204 +msgid "" +"For the <application>Disk Mounter</application> to work properly, your " +"system administrator must configure your system appropriately. Refer to the " +"<ulink url=\"man:fstab\" " +"type=\"man\"><citerefentry><refentrytitle>fstab</refentrytitle><manvolnum>5</manvolnum></citerefentry></ulink>" +" for more information about the necessary system administration tasks." +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:209 +msgid "To Add Disk Mounter to a Panel" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:210 +msgid "" +"To add <application>Disk Mounter</application> to a panel, perform the " +"following steps:" +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:216 +msgid "Right-click on the panel." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:221 +msgid "Choose <guimenuitem>Add to Panel</guimenuitem>." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:226 +msgid "" +"Scroll down the list of items in the <guilabel>Add to Panel</guilabel> " +"dialog, then select <guilabel>Disk Mounter</guilabel>." +msgstr "" + +#. (itstool) path: listitem/para +#: C/index.docbook:232 +msgid "Click <guibutton>Add</guibutton>." +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:240 +msgid "Manually Mounting and Unmounting File Systems" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:241 +msgid "" +"Many file systems on Linux and other Unix-like systems must be manually " +"mounted and unmounted." +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:244 +msgid "" +"When a file system is mounted, you can read and write to the file system. " +"When you finish working with a file system, you should unmount the file " +"system." +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:247 +msgid "" +"You must unmount removable drives, such as floppy disks and Zip disks, " +"before you remove the media, because Linux and other Unix-like systems do " +"not always write the changes immediately. Such systems typically buffer the " +"changes to the disk, to improve the speed of the system." +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:250 +msgid "" +"Partitions on fixed drives, such as your hard drive, are typically mounted " +"automatically when your computer boots, and unmounted when your computer " +"shuts down. Removable media must be mounted and unmounted manually, for " +"example by using the <application>Disk Mounter</application>." +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:253 +msgid "" +"Some systems may also automatically mount some removable media (such as USB " +"and IEEE1394 disks), these devices may also come up in the <application>Disk" +" Mounter</application> so that you can unmount them when you are finished, " +"and provide a visual indication that they are present." +msgstr "" + +#. (itstool) path: sect1/title +#: C/index.docbook:262 +msgid "Usage" +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:265 +msgid "To Display the Name and Mount Status of a Drive" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:266 +msgid "" +"To display the name and mount status of a drive, move the mouse pointer to " +"the drive icon in the panel. A tooltip displays the name and mount status of" +" the drive." +msgstr "" + +#. (itstool) path: imageobject/imagedata +#. This is a reference to an external file such as an image or video. When +#. the file changes, the md5 hash will change to let you know you need to +#. update your localized copy. The msgstr is not used at all. Set it to +#. whatever you like once you have updated your copy of the file. +#: C/index.docbook:270 +msgctxt "_" +msgid "" +"external ref='figures/drivemount-applet_status.png' " +"md5='a150e5b8efeee5c397591acbda957f1d'" +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:275 +msgid "To Mount, Unmount or Eject a Drive" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:276 +msgid "" +"To mount drive, click on the drive icon in the panel and then select the " +"<guimenuitem>Mount Drive</guimenuitem> option." +msgstr "" + +#. (itstool) path: imageobject/imagedata +#. This is a reference to an external file such as an image or video. When +#. the file changes, the md5 hash will change to let you know you need to +#. update your localized copy. The msgstr is not used at all. Set it to +#. whatever you like once you have updated your copy of the file. +#: C/index.docbook:280 +msgctxt "_" +msgid "" +"external ref='figures/drivemount-applet_mount.png' " +"md5='d9ed1ad7dd9a94891d7bf943d42b79cf'" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:282 +msgid "" +"To unmount a drive, click on the drive icon in the panel and then select the" +" <guimenuitem>Unmount Drive</guimenuitem> option, or if the device is a CD-" +"ROM Drive, it may be labeled <guimenuitem>Eject Drive</guimenuitem>" +msgstr "" + +#. (itstool) path: imageobject/imagedata +#. This is a reference to an external file such as an image or video. When +#. the file changes, the md5 hash will change to let you know you need to +#. update your localized copy. The msgstr is not used at all. Set it to +#. whatever you like once you have updated your copy of the file. +#: C/index.docbook:286 +msgctxt "_" +msgid "" +"external ref='figures/drivemount-applet_eject.png' " +"md5='784afdef2d482b1b70ad2d44562205de'" +msgstr "" + +#. (itstool) path: sect2/title +#: C/index.docbook:291 +msgid "To Browse the Contents of a Drive" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:292 +msgid "" +"To use a file manager to browse the contents of a drive, click on the drive " +"icon in the panel, then choose <guimenuitem>Open Drive</guimenuitem>." +msgstr "" + +#. (itstool) path: imageobject/imagedata +#. This is a reference to an external file such as an image or video. When +#. the file changes, the md5 hash will change to let you know you need to +#. update your localized copy. The msgstr is not used at all. Set it to +#. whatever you like once you have updated your copy of the file. +#: C/index.docbook:296 +msgctxt "_" +msgid "" +"external ref='figures/drivemount-applet_open.png' " +"md5='3140016491c9d55772b1c62e4893e9e7'" +msgstr "" + +#. (itstool) path: sect2/para +#: C/index.docbook:298 +msgid "You can only browse the contents of a mounted drive." +msgstr "" + +#. (itstool) path: para/ulink +#: C/legal.xml:9 +msgid "link" +msgstr "連結" + +#. (itstool) path: legalnotice/para +#: C/legal.xml:2 +msgid "" +"Permission is granted to copy, distribute and/or modify this document under " +"the terms of the GNU Free Documentation License (GFDL), Version 1.1 or any " +"later version published by the Free Software Foundation with no Invariant " +"Sections, no Front-Cover Texts, and no Back-Cover Texts. You can find a copy" +" of the GFDL at this <_:ulink-1/> or in the file COPYING-DOCS distributed " +"with this manual." +msgstr "" + +#. (itstool) path: legalnotice/para +#: C/legal.xml:12 +msgid "" +"This manual is part of a collection of MATE manuals distributed under the " +"GFDL. If you want to distribute this manual separately from the collection, " +"you can do so by adding a copy of the license to the manual, as described in" +" section 6 of the license." +msgstr "" + +#. (itstool) path: legalnotice/para +#: C/legal.xml:19 +msgid "" +"Many of the names used by companies to distinguish their products and " +"services are claimed as trademarks. Where those names appear in any MATE " +"documentation, and the members of the MATE Documentation Project are made " +"aware of those trademarks, then the names are in capital letters or initial " +"capital letters." +msgstr "" + +#. (itstool) path: listitem/para +#: C/legal.xml:35 +msgid "" +"DOCUMENT IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, " +"EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT " +"THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS " +"MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE " +"RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR " +"MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR " +"MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL " +"WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY " +"SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN " +"ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED VERSION " +"OF THE DOCUMENT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER; AND" +msgstr "" + +#. (itstool) path: listitem/para +#: C/legal.xml:55 +msgid "" +"UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING" +" NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY " +"CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE " +"DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON " +"FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF " +"ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, " +"WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES" +" OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED " +"VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE" +" POSSIBILITY OF SUCH DAMAGES." +msgstr "" + +#. (itstool) path: legalnotice/para +#: C/legal.xml:28 +msgid "" +"DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS " +"OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: " +"<_:orderedlist-1/>" +msgstr "" diff --git a/drivemount/help/nb/nb.po b/drivemount/help/nb/nb.po index 55087746..9736c326 100644 --- a/drivemount/help/nb/nb.po +++ b/drivemount/help/nb/nb.po @@ -3,15 +3,16 @@ # Stefano Karapetsas <[email protected]>, 2018 # Allan Nordhøy <[email protected]>, 2018 # Imre Kristoffer Eilertsen <[email protected]>, 2018 -# Kjell Cato Heskjestad <[email protected]>, 2019 +# Kaci Heskjestad, 2019 +# Jan Sherdahl, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" -"Last-Translator: Kjell Cato Heskjestad <[email protected]>, 2019\n" -"Language-Team: Norwegian Bokmål (https://www.transifex.com/mate/teams/13566/nb/)\n" +"Last-Translator: Jan Sherdahl, 2021\n" +"Language-Team: Norwegian Bokmål (https://app.transifex.com/mate/teams/13566/nb/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -47,7 +48,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -74,14 +75,14 @@ msgstr "" #. (itstool) path: revdescription/para #: C/index.docbook:57 C/index.docbook:125 msgid "MATE Documentation Project" -msgstr "" +msgstr "MATE dokumentasjonsprosjekt" #. (itstool) path: publisher/publishername #. (itstool) path: revdescription/para #: C/index.docbook:60 C/index.docbook:133 C/index.docbook:141 #: C/index.docbook:151 C/index.docbook:161 msgid "GNOME Documentation Project" -msgstr "" +msgstr "GNOME dokumentasjonsprosjekt" #. (itstool) path: authorgroup/author #: C/index.docbook:66 @@ -267,7 +268,7 @@ msgstr "" #. (itstool) path: listitem/para #: C/index.docbook:216 msgid "Right-click on the panel." -msgstr "" +msgstr "Høyreklikk på panelet." #. (itstool) path: listitem/para #: C/index.docbook:221 @@ -284,7 +285,7 @@ msgstr "" #. (itstool) path: listitem/para #: C/index.docbook:232 msgid "Click <guibutton>Add</guibutton>." -msgstr "" +msgstr "Klikk <guibutton>Legg til</guibutton>." #. (itstool) path: sect2/title #: C/index.docbook:240 diff --git a/drivemount/help/nds/nds.po b/drivemount/help/nds/nds.po index 04896356..75c64e03 100644 --- a/drivemount/help/nds/nds.po +++ b/drivemount/help/nds/nds.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Low German (https://www.transifex.com/mate/teams/13566/nds/)\n" +"Language-Team: Low German (https://app.transifex.com/mate/teams/13566/nds/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -37,7 +37,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright diff --git a/drivemount/help/ne/ne.po b/drivemount/help/ne/ne.po index f5227b1d..dd45b4a7 100644 --- a/drivemount/help/ne/ne.po +++ b/drivemount/help/ne/ne.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" "Last-Translator: chautari <[email protected]>, 2018\n" -"Language-Team: Nepali (https://www.transifex.com/mate/teams/13566/ne/)\n" +"Language-Team: Nepali (https://app.transifex.com/mate/teams/13566/ne/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -37,7 +37,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright diff --git a/drivemount/help/nl/nl.po b/drivemount/help/nl/nl.po index b48a9f83..d92f2ff8 100644 --- a/drivemount/help/nl/nl.po +++ b/drivemount/help/nl/nl.po @@ -3,15 +3,16 @@ # Stefano Karapetsas <[email protected]>, 2018 # Pjotr <[email protected]>, 2018 # dragnadh, 2018 -# René Devers <[email protected]>, 2018 +# b9b0d258fa591da5350b6e67cf68cd68_9fecbb4 <28506b9ff23f99a34b566250ce31bbad_250479>, 2018 +# kaasknak, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" -"Last-Translator: René Devers <[email protected]>, 2018\n" -"Language-Team: Dutch (https://www.transifex.com/mate/teams/13566/nl/)\n" +"Last-Translator: kaasknak, 2021\n" +"Language-Team: Dutch (https://app.transifex.com/mate/teams/13566/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -48,7 +49,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -477,6 +478,11 @@ msgid "" "aware of those trademarks, then the names are in capital letters or initial " "capital letters." msgstr "" +"Vele van de namen zoals gebruikt bij bedrijven om hun producten en services " +"te onderscheiden zijn geclaimd als handelsmerken. Wanneer deze namen " +"voorkomen in enige MATE documentatie, en de leden van het MATE Documentatie " +"Project hiervan bewust zijn gemaakt, dan zullen deze namen in hoofdletters " +"zijn of beginnen met hoofdletters." #. (itstool) path: listitem/para #: C/legal.xml:35 @@ -493,6 +499,18 @@ msgid "" "ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED VERSION " "OF THE DOCUMENT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER; AND" msgstr "" +"HET DOCUMENT IS AANGEBODEN OP EEN \"ZOALS HET IS\" BASIS, ZONDER ENIGE VORM " +"VAN GARANTIE, ZOWEL UITGESPROKEN ALS GEÏMPLICEERD, INCLUSIEF, ZONDER " +"BEPERKINGEN, GARANTIES DAT HET DOCUMENT OF DE AANGEPASTE VERSIE VAN HET " +"DOCUMENT VRIJ VERHANDELBARE GEBREKEN OF GESCHIKT IS VOOR EEN BEPAALD DOEL " +"IS, OF GEEN INBREUK MAAKT. HET VOLLEDIGE RISICO BETREFFEND DE KWALITEIT, " +"ACCURAATHEID, EN PRESTATIES VAN HET DOCUMENT OF DE AANGEPASTE VERSIE VAN HET" +" DOCUMENT LIGT BIJ U. INDIEN HET DOCUMENT DEFECT BLIJKT TE ZIJN IN ENIGE " +"VORM, U (NIET DE INITIËLE SCHRIJVER, AUTEUR OF ENIGE BIJDRAGER) ZAL DE " +"KOSTEN KOSTEN VOOR ENIGE NODIGE SERVICE, REPARATIE OF CORRECTIE OP ZICH " +"NEMEN. DEZE DISCLAIMER BETREFT DE GARANTIE IS EEN ESSENTIEEL ONDERDEEL VAN " +"DEZE LICENTIE. GEEN ENKEL GEBRUIK VAN DIT DOCUMENT OF AANGEPASTE VERSIE VAN " +"HET DOCUMENT IS TOEGESTAAN ALS VOLGT ZONDER DEZE DISCLAIMER; EN" #. (itstool) path: listitem/para #: C/legal.xml:55 @@ -508,6 +526,17 @@ msgid "" "VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE" " POSSIBILITY OF SUCH DAMAGES." msgstr "" +"ONDER GEEN ENKELE OMSTANDIGHEDEN EN ONDER GEEN JURIDISCHE THEORIE, ZIJ HET " +"WETTELIJK (INCLUSIEF NALATIGHEID), CONTRACT, OF ANDERZIJDS ZAL DE AUTEUR, " +"INITIËLE AUTEUR, ENIGE BIJDRAGER VAN HET DOCUMENT OF DE AANPASTE VERSIE VAN " +"HET DOCUMENT, NOCH ENIGE LEVERANCIER VAN EEN VAN DEZE PARTIJEN, " +"AANSPRAKELIJK GEHOUDEN WORDEN DOOR ENIG PERSOON VOOR ENIGE DIRECTE, " +"INDIRECTE, SPECIALE, INCIDENTELE, OF GEVOLG SCHADE IN ELKE VORM INCLUSIEF, " +"ZONDER BEPERKING, SCHADE DOOR VERLIES VAN GOEDE WIL, WERK ONDERBREKING, " +"COMPUTER FALEN OF STORING, OF ENIGE ANDERE VORM VAN SCHADE OF VERLIES ALS " +"GEVOLGEN VAN HET GEBRUIKT VAN HET DOCUMENT EN DE AANGEPASTE VERSIES VAN HET " +"DOCUMENT, ZELFS ALS ZO EEN PARTIJ GEÏNFORMEERD ZOU ZIJN OVER DE MOGELIJKHEID" +" VAN ZULKE SCHADES." #. (itstool) path: legalnotice/para #: C/legal.xml:28 @@ -516,3 +545,6 @@ msgid "" "OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: " "<_:orderedlist-1/>" msgstr "" +"HET DOCUMENT EEN AANGEPASTE VERSIES VAN HET DOCUMENT WORDEN AANGEBODEN ONDER" +" DE VOORWAARDEN VAN DE GNU FREE DOCUMENTATION LICENTIE MET HET BEGRIP DAT: " +"<_:orderedlist-1/>" diff --git a/drivemount/help/nn/nn.po b/drivemount/help/nn/nn.po index 17def043..97dbd731 100644 --- a/drivemount/help/nn/nn.po +++ b/drivemount/help/nn/nn.po @@ -7,10 +7,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" "Last-Translator: Andrew Rabbitt <[email protected]>, 2020\n" -"Language-Team: Norwegian Nynorsk (https://www.transifex.com/mate/teams/13566/nn/)\n" +"Language-Team: Norwegian Nynorsk (https://app.transifex.com/mate/teams/13566/nn/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -38,8 +38,8 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" -msgstr "<year>2015-2020</year> <holder>MATE Dokumentasjonsprosjekt</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" +msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:32 diff --git a/drivemount/help/nso/nso.po b/drivemount/help/nso/nso.po index f6008822..a051bd90 100644 --- a/drivemount/help/nso/nso.po +++ b/drivemount/help/nso/nso.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Northern Sotho (https://www.transifex.com/mate/teams/13566/nso/)\n" +"Language-Team: Northern Sotho (https://app.transifex.com/mate/teams/13566/nso/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -36,7 +36,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright diff --git a/drivemount/help/oc/oc.po b/drivemount/help/oc/oc.po index 88af39d1..52bd7276 100644 --- a/drivemount/help/oc/oc.po +++ b/drivemount/help/oc/oc.po @@ -2,16 +2,15 @@ # Translators: # Stefano Karapetsas <[email protected]>, 2018 # Wolfgang Ulbrich <[email protected]>, 2018 -# 48c2de07903ce5a77a8e90265f95c4c2_8909374 <837c8d0ab97b27e737893c19f79bd4de_348476>, 2018 -# Quentin PAGÈS, 2020 +# Quentin PAGÈS, 2023 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" -"Last-Translator: Quentin PAGÈS, 2020\n" -"Language-Team: Occitan (post 1500) (https://www.transifex.com/mate/teams/13566/oc/)\n" +"Last-Translator: Quentin PAGÈS, 2023\n" +"Language-Team: Occitan (post 1500) (https://app.transifex.com/mate/teams/13566/oc/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -23,12 +22,12 @@ msgctxt "_" msgid "translator-credits" msgstr "" "Yannig Marchegay (Kokoyaya) <[email protected]> & Cédric Valmary " -"(totenoc.eu) <[email protected]>" +"(totenoc.eu) <[email protected]>, Quentin PAGÈS" #. (itstool) path: articleinfo/title #: C/index.docbook:22 msgid "Disk Mounter Manual" -msgstr "" +msgstr "Manual montador de disques" #. (itstool) path: abstract/para #: C/index.docbook:24 @@ -36,11 +35,13 @@ msgid "" "The Disk Mounter applet enables you to quickly mount or unmount various " "types of drives and file systems from a panel." msgstr "" +"L’applet del montador de disques vos permet de montar e desmontar mantun " +"tipe de lector o sistèma de fichièr a partir del panèl." #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" -msgstr "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" +msgstr "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:32 @@ -199,7 +200,7 @@ msgstr "" #. (itstool) path: articleinfo/releaseinfo #: C/index.docbook:166 msgid "This manual describes version 1.10.2 of Disk Mounter." -msgstr "" +msgstr "Aqueste manual descriu la version 1.10.2 del montador de disques." #. (itstool) path: legalnotice/title #: C/index.docbook:169 @@ -214,11 +215,15 @@ msgid "" "url=\"help:mate-user-guide/feedback\" type=\"help\">MATE Feedback " "Page</ulink>." msgstr "" +"Per senhalar una avaria o per formular una suggestion a prepaus de " +"l’aplicacion <application>Montador de disques</application> o aqueste " +"manual, seguissètz las instruccions dins la <ulink url=\"help:mate-user-" +"guide/feedback\" type=\"help\">pagina de comentaris de MATE</ulink>." #. (itstool) path: article/indexterm #: C/index.docbook:178 msgid "<primary>Disk Mounter</primary>" -msgstr "" +msgstr "<primary>Montador de disques</primary>" #. (itstool) path: sect1/title #: C/index.docbook:185 @@ -228,7 +233,7 @@ msgstr "Introduccion" #. (itstool) path: figure/title #: C/index.docbook:188 msgid "Disk Mounter" -msgstr "Montador de discs" +msgstr "Montador de disques" #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -251,6 +256,9 @@ msgid "" "format=\"PNG\"/> </imageobject> <textobject> <phrase>The Disk Mounter " "applet.</phrase> </textobject>" msgstr "" +"<imageobject><imagedata fileref=\"figures/drivemount-applet_example.png\" " +"format=\"PNG\"/></imageobject><textobject><phrase>Applet del Montador de " +"disques.</phrase></textobject>" #. (itstool) path: sect1/para #: C/index.docbook:201 @@ -272,7 +280,7 @@ msgstr "" #. (itstool) path: sect2/title #: C/index.docbook:209 msgid "To Add Disk Mounter to a Panel" -msgstr "" +msgstr "Per apondre lo Montador de disques al panèl" #. (itstool) path: sect2/para #: C/index.docbook:210 @@ -476,6 +484,13 @@ msgid "" " of the GFDL at this <_:ulink-1/> or in the file COPYING-DOCS distributed " "with this manual." msgstr "" +"Autorizacion vos es donada de copiar, distribuir e/o modificar aqueste " +"document segon los tèrmes de la Licéncia GNU Free Documentation License " +"(GFDL), Version 1.1 o ulteriora publicada per la Free Software Foundation " +"sens seccion inalterabla, sens tèxt de primièra pagina de cubèrta ni tèxt de" +" darrièra pagina de cubèrta. Trobaretz un exemplari de la GFDL en seguissent" +" aqueste <_:ulink-1/> o dins lo fichièr COPYING-DOCS provesit amb lo present" +" manual." #. (itstool) path: legalnotice/para #: C/legal.xml:12 @@ -485,6 +500,11 @@ msgid "" "you can do so by adding a copy of the license to the manual, as described in" " section 6 of the license." msgstr "" +"Aqueste manual fa part de la colleccion de manuals de MATE distribuits jols " +"tèrmes de la licéncia de documentacion liura GNU. Se volètz distribuir " +"aqueste document a despart de la colleccion, o podètz far en ajustant un " +"exemplar de la licéncia al manual, coma indicat a la seccion 6 de la " +"licéncia." #. (itstool) path: legalnotice/para #: C/legal.xml:19 @@ -495,6 +515,11 @@ msgid "" "aware of those trademarks, then the names are in capital letters or initial " "capital letters." msgstr "" +"La màger part dels noms utilizats per las entrepresas per distinguir lors " +"produches e servicis son de marcas depausadas. Quand aqueles noms apareisson" +" dins la documentacion MATE e que los membres del projècte de Documentacion " +"MATE son informats de l’existéncia d’aquelas marcas depausadas, siá aqueles " +"noms entièrs, siá lor primièra letra es en majuscula." #. (itstool) path: listitem/para #: C/legal.xml:35 @@ -511,6 +536,19 @@ msgid "" "ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED VERSION " "OF THE DOCUMENT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER; AND" msgstr "" +"LO DOCUMENT ES PROVESIT « TAL COMA ES » SENS CAP DE GARANTIDA DE QUIN TIPE " +"QUE SIÁ, EXPLICITA O IMPLICADA, AQUÒ INCLUTZ, SENS CAP DE LIMIT, LAS " +"GARANTIDAS QUE LO DOCUMENT O UNA VERSION MODIFICADA NON AJA PAS CAP DE " +"DEFAUT, QUE SIÁ COMERCIABLE, QUE SIÁ ADAPTAT PER UN USATGE PARTICULAR O QUE " +"ENFRANGA PAS LA LEI. TOT LO RISC RESPÈCTE A LA QUALITAT, L’EXACTITUD O LAS " +"QUALITATS TECNICAS DEL DOCUMENT O DE SAS VERSIONS MODIFICADAS ES VÒSTRE. SE " +"PER CAS LO DOCUMENT O UNA VERSION MODIFICADA S’AVERÈSSE DEFECTUÓS AL " +"RESPÈCTE DE QUIN ASPÈCTE QUE SIÁ, VOSAUTRES (NON PAS LO REDACTOR INICIAL, " +"L’AUTOR O QUIN CONTRIBUIDOR QUE SIÁ) ASSUMISSÈTZ LO CÒST DE TOTA MANTENENÇA," +" REPARACION O CORRECCION NECESSÀRIA. AQUESTA DESCARGA DE GARANTIDA " +"CONSTITUÍS UNA PART ESSENCIALA D’AQUESTA LICÉNCIA. CAP D’UTILIZACION " +"D’AQUESTE DOCUMENT O VERSION MODIFICADA ES AUTORIZADA LEVAT JOS AQUESTA " +"DESCARGA DE GARANTIDA E" #. (itstool) path: listitem/para #: C/legal.xml:55 @@ -526,6 +564,16 @@ msgid "" "VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE" " POSSIBILITY OF SUCH DAMAGES." msgstr "" +"EN CAP DE CIRCONSTÀNCIA E JOS CAP D’INTERPRETACION LEGALA, QUE SIÁ DE " +"RESPONSABILITAT CIVILA (NEGLIGÉNCIA INCLUSA), CONTRACTUALA O AUTRA, L’AUTOR," +" LO REDACTOR INICIAL, TOT CONTRIBUIDOR E TOT DISTRIBUIDOR D’AQUESTE DOCUMENT" +" O DE SA VERSION MODIFICADA NI CAP DE PROVESIDOR D’AQUESTES PARTS SERÀN PAS " +"RESPONSABLES AL RESPÈCTE DE QUIN DAMATGE DIRÈCTE, INDIRÈCTE, ESPECIAL O " +"ACCIDENTAL QUE SIÁ DE TOT TIPE E TANBEN, SENS LIMITACION, LOS DAMATGES " +"LIGATS A LA PÈRDA DE CLIENTÈLA, LAS INTERRUPCIONS DE TRABALH, ALS " +"DEFALHIMENTS E DISFONCIONAMENTS INFORMATICS O TOTA AUTRA PÈRDA LIGADA A " +"L’UTILIZACION DEL DOCUMENT E DE SAS VERSIONS MODIFICADAS, ATAL METEIS " +"S’AQUESTES PART ÈRAN AVISATS DE LA POSSIBILITAT D’AQUESTES DAMATGES." #. (itstool) path: legalnotice/para #: C/legal.xml:28 @@ -535,4 +583,5 @@ msgid "" "<_:orderedlist-1/>" msgstr "" "LOS DOCUMENTS E LAS VERSIONS MODIFICADAS D’AQUESTE DOCUMENT SON FORNITS JOLS" -" TÈRMES DE LA LICÉNCIA DE DOCUMENTACION LIURA GNU ESTANT QUE :" +" TÈRMES DE LA LICÉNCIA DE DOCUMENTACION LIURA GNU ESTANT QUE : " +"<_:orderedlist-1/>" diff --git a/drivemount/help/or/or.po b/drivemount/help/or/or.po index 782ad07b..a10baea3 100644 --- a/drivemount/help/or/or.po +++ b/drivemount/help/or/or.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Oriya (https://www.transifex.com/mate/teams/13566/or/)\n" +"Language-Team: Odia (https://app.transifex.com/mate/teams/13566/or/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -34,7 +34,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright diff --git a/drivemount/help/pa/pa.po b/drivemount/help/pa/pa.po index bdea8e9b..56512706 100644 --- a/drivemount/help/pa/pa.po +++ b/drivemount/help/pa/pa.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" "Last-Translator: Wolfgang Ulbrich <[email protected]>, 2018\n" -"Language-Team: Panjabi (Punjabi) (https://www.transifex.com/mate/teams/13566/pa/)\n" +"Language-Team: Panjabi (Punjabi) (https://app.transifex.com/mate/teams/13566/pa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -39,7 +39,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright diff --git a/drivemount/help/pl/pl.po b/drivemount/help/pl/pl.po index 6f783272..51ff610f 100644 --- a/drivemount/help/pl/pl.po +++ b/drivemount/help/pl/pl.po @@ -3,21 +3,22 @@ # Piotr Drąg <[email protected]>, 2018 # Piotr Strębski <[email protected]>, 2018 # Stefano Karapetsas <[email protected]>, 2018 -# pietrasagh <[email protected]>, 2018 +# pietrasagh <[email protected]>, 2018 # Adam Czabara <[email protected]>, 2018 # Dominik Adrian Grzywak, 2018 # Przemek P <[email protected]>, 2019 # Marcin GTriderXC <[email protected]>, 2019 # Jan Bońkowski <[email protected]>, 2019 -# Daniel Tokarzewski <[email protected]>, 2020 +# Szymon Blaut <[email protected]>, 2021 +# Daniel Tokarzewski <[email protected]>, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" -"Last-Translator: Daniel Tokarzewski <[email protected]>, 2020\n" -"Language-Team: Polish (https://www.transifex.com/mate/teams/13566/pl/)\n" +"Last-Translator: Daniel Tokarzewski <[email protected]>, 2021\n" +"Language-Team: Polish (https://app.transifex.com/mate/teams/13566/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -47,8 +48,8 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" -msgstr "<year>2015-2020</year><holder>Projekt Dokumentacji MATE</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" +msgstr "<year>2015-2021</year> <holder>dokumentacja projektu MATE</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:32 @@ -501,6 +502,18 @@ msgid "" "ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED VERSION " "OF THE DOCUMENT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER; AND" msgstr "" +"DOKUMENT JEST DOSTARCZANY W STANIE „TAK JAK JEST”, BEZ JAKIEGOKOLWIEK " +"WYRAŻENIA, DOMNIEMANIA GWARANCJI, W TYM MIĘDZY INNYMI GWARANCJI, ŻE " +"DOKUMENT LUB ZMODYFIKOWANA WERSJA DOKUMENTU JEST WOLNA OD WAD HANDLOWYCH LUB" +" DO OKREŚLONEGO CELU -NARUSZENIE. CAŁKOWITE RYZYKO DOTYCZĄCE JAKOŚCI, " +"DOKŁADNOŚCI I WYDAJNOŚCI DOKUMENTU LUB ZMODYFIKOWANEJ WERSJI DOKUMENTU " +"SPOCZYWA NA UŻYTKOWNIKU. JEŻELI JAKIKOLWIEK DOKUMENT LUB ZMODYFIKOWANA " +"WERSJA OKAŻE SIĘ WADLIWA POD JAKIMKOLWIEK WZGLĘGEM, UŻYTKOWNIK (NIE WSTĘPNY " +"PISARZ, AUTOR CZY ŻADEN WSPÓŁPRACOWNIK) PONOSI KOSZTY WSZELKICH NIEZBĘDNYCH " +"SERWISÓW, NAPRAW LUB POPRAWEK. NINIEJSZE WYŁĄCZENIE GWARANCJI STANOWI " +"ISTOTNĄ CZĘŚĆ LICENCJI. ZGODNIE Z NINIEJSZYM WYŁĄCZENIEM ODPOWIEDZIALNOŚCI " +"NIE JEST ZEZWOLONE NA KORZYSTANIE Z JAKICHKOLWIEK DOKUMENTÓW LUB " +"ZMODYFIKOWANYCH WERSJI DOKUMENTU; ORAZ " #. (itstool) path: listitem/para #: C/legal.xml:55 @@ -516,6 +529,16 @@ msgid "" "VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE" " POSSIBILITY OF SUCH DAMAGES." msgstr "" +"W ŻADNYM PRZYPADKU I W ŻADNEJ TEORII PRAWNEJ, CZY W DZIAŁANIU CZYNNYM (W TYM" +" ZANIEDBANIA), UMOWY LUB W INNY SPOSÓB, AUTOR, PISARZ WSTĘPNY, " +"WSPÓŁPRACOWNIK ANI DYSTRYBUTOR DOKUMENTU LUB ZMODYFIKOWANA WERSJA DOKUMENTU " +"TAKICH STRON NIE PONOSI ODPOWIEDZIALNOŚCI WOBEC JAKICHKOLWIEK OSÓB ZA " +"JAKIEKOLWIEK BEZPOŚREDNIE, POŚREDNIE, SZCZEGÓLNE, PRZYPADKOWE LUB WTÓRNE " +"SZKODY JAKIEGOKOLWIEK CHARAKTERU, W TYM MIĘDZY INNYMI USZKODZENIA ZA UTRATĘ " +"WŁAŚCIWOŚCI, PRZERWY W PRACY, AWARIE LUB INNE USZKODZENIA KOMPUTERA LUB " +"STRATY WYNIKAJĄCE Z KORZYSTANIA Z DOKUMENTU I ZMODYFIKOWANYCH WERSJI " +"DOKUMENTU, NAWET JEŚLI STRONA ZOSTAŁA POINFORMOWANA O MOŻLIWOŚCI WYSTĄPIENIA" +" TAKICH SZKÓD." #. (itstool) path: legalnotice/para #: C/legal.xml:28 @@ -524,3 +547,6 @@ msgid "" "OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: " "<_:orderedlist-1/>" msgstr "" +"DOKUMENT I ZMODYFIKOWANE WERSJE DOKUMENTU SĄ DOSTARCZANE NA WARUNKACH " +"LICENCJI WOLNEJ DOKUMENTACJI GNU Z DALSZYM ZROZUMIENIEM, " +"ŻE:<_:orderedlist-1/>" diff --git a/drivemount/help/ps/ps.po b/drivemount/help/ps/ps.po index 22d755c8..ccd6eb6e 100644 --- a/drivemount/help/ps/ps.po +++ b/drivemount/help/ps/ps.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Pushto (https://www.transifex.com/mate/teams/13566/ps/)\n" +"Language-Team: Pashto (https://app.transifex.com/mate/teams/13566/ps/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -36,7 +36,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright diff --git a/drivemount/help/pt/pt.po b/drivemount/help/pt/pt.po index aa33d468..d5b274e9 100644 --- a/drivemount/help/pt/pt.po +++ b/drivemount/help/pt/pt.po @@ -1,24 +1,24 @@ # # Translators: # Carlos Moreira, 2018 -# Manuela Silva <[email protected]>, 2018 +# Manuela Silva <[email protected]>, 2018 # Manel Tinoco <[email protected]>, 2018 # Rui <[email protected]>, 2018 -# José Vieira <[email protected]>, 2020 # Hugo Carvalho <[email protected]>, 2020 +# José Vieira <[email protected]>, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" -"Last-Translator: Hugo Carvalho <[email protected]>, 2020\n" -"Language-Team: Portuguese (https://www.transifex.com/mate/teams/13566/pt/)\n" +"Last-Translator: José Vieira <[email protected]>, 2021\n" +"Language-Team: Portuguese (https://app.transifex.com/mate/teams/13566/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: pt\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #. Put one translator per line, in the form NAME <EMAIL>, YEAR1, YEAR2 msgctxt "_" @@ -41,9 +41,9 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" -"<year>2015-2020</year> <holder>Projecto de Documentação do MATE</holder>" +"<year>2015-2021</year> <holder> Projecto de Documentação do MATE</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:32 diff --git a/drivemount/help/pt_BR/pt_BR.po b/drivemount/help/pt_BR/pt_BR.po index 4830545d..54c4c18e 100644 --- a/drivemount/help/pt_BR/pt_BR.po +++ b/drivemount/help/pt_BR/pt_BR.po @@ -7,21 +7,24 @@ # b36c7cf4cf669a51ae00d04c19629819, 2018 # Italo Penaforte <[email protected]>, 2018 # Alceu Nogueira <[email protected]>, 2018 -# Robert Antoni Buj Gelonch <[email protected]>, 2019 -# George Silva <[email protected]>, 2020 +# Robert Antoni Buj i Gelonch <[email protected]>, 2019 +# George Silva <[email protected]>, 2019 +# gustavo s, 2021 +# Luciano Luck, 2022 +# Gersonzao <[email protected]>, 2023 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" -"Last-Translator: George Silva <[email protected]>, 2020\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/mate/teams/13566/pt_BR/)\n" +"Last-Translator: Gersonzao <[email protected]>, 2023\n" +"Language-Team: Portuguese (Brazil) (https://app.transifex.com/mate/teams/13566/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: pt_BR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #. Put one translator per line, in the form NAME <EMAIL>, YEAR1, YEAR2 msgctxt "_" @@ -53,7 +56,7 @@ msgstr "" #. (itstool) path: articleinfo/title #: C/index.docbook:22 msgid "Disk Mounter Manual" -msgstr "" +msgstr "Manual do Montador de disco" #. (itstool) path: abstract/para #: C/index.docbook:24 @@ -64,8 +67,9 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" -msgstr "<year>2015-2020</year> <holder>MATE Projeto de documentação</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" +msgstr "" +"<year>2015-2021</year> <holder> Projecto de Documentação do MATE</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:32 @@ -214,7 +218,7 @@ msgstr "" #. (itstool) path: articleinfo/releaseinfo #: C/index.docbook:166 msgid "This manual describes version 1.10.2 of Disk Mounter." -msgstr "" +msgstr "Esse manual descreve a versão 1.10.2 do Montador de disco." #. (itstool) path: legalnotice/title #: C/index.docbook:169 @@ -233,7 +237,7 @@ msgstr "" #. (itstool) path: article/indexterm #: C/index.docbook:178 msgid "<primary>Disk Mounter</primary>" -msgstr "" +msgstr "<primary>Montador de Discos</primary>" #. (itstool) path: sect1/title #: C/index.docbook:185 @@ -287,7 +291,7 @@ msgstr "" #. (itstool) path: sect2/title #: C/index.docbook:209 msgid "To Add Disk Mounter to a Panel" -msgstr "" +msgstr "Adicionar Montador de disco para um painel" #. (itstool) path: sect2/para #: C/index.docbook:210 @@ -321,7 +325,7 @@ msgstr "Click <guibutton>Adicionar</guibutton>." #. (itstool) path: sect2/title #: C/index.docbook:240 msgid "Manually Mounting and Unmounting File Systems" -msgstr "" +msgstr "Montar e Desmontar Arquivos de Sistemas Manualmente" #. (itstool) path: sect2/para #: C/index.docbook:241 @@ -329,6 +333,8 @@ msgid "" "Many file systems on Linux and other Unix-like systems must be manually " "mounted and unmounted." msgstr "" +"Muitos sistemas de arquivos no Linux e em outros sistemas Unix-like devem " +"ser manualmente montados e desmontados." #. (itstool) path: sect2/para #: C/index.docbook:244 @@ -337,6 +343,9 @@ msgid "" "When you finish working with a file system, you should unmount the file " "system." msgstr "" +"Quando um sistema de arquivos é montado, você pode ler e escrever no sistema" +" de arquivos. Quando terminar o trabalho no sistema de arquivos, você deve " +"desmontar o sistema de arquivos." #. (itstool) path: sect2/para #: C/index.docbook:247 @@ -373,7 +382,7 @@ msgstr "Uso" #. (itstool) path: sect2/title #: C/index.docbook:265 msgid "To Display the Name and Mount Status of a Drive" -msgstr "" +msgstr "Para Mostrar o Nome e o Status de Montagem de um Drive" #. (itstool) path: sect2/para #: C/index.docbook:266 @@ -400,7 +409,7 @@ msgstr "" #. (itstool) path: sect2/title #: C/index.docbook:275 msgid "To Mount, Unmount or Eject a Drive" -msgstr "" +msgstr "Para Montar, Desmontar ou ejetar um Drive" #. (itstool) path: sect2/para #: C/index.docbook:276 @@ -448,7 +457,7 @@ msgstr "" #. (itstool) path: sect2/title #: C/index.docbook:291 msgid "To Browse the Contents of a Drive" -msgstr "" +msgstr "Para Navegar o Conteúdo de um Drive" #. (itstool) path: sect2/para #: C/index.docbook:292 diff --git a/drivemount/help/ro/ro.po b/drivemount/help/ro/ro.po index e79705e3..775c20a4 100644 --- a/drivemount/help/ro/ro.po +++ b/drivemount/help/ro/ro.po @@ -2,14 +2,15 @@ # Translators: # Stefano Karapetsas <[email protected]>, 2018 # Daniel <[email protected]>, 2018 +# sidro <[email protected]>, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" -"Last-Translator: Daniel <[email protected]>, 2018\n" -"Language-Team: Romanian (https://www.transifex.com/mate/teams/13566/ro/)\n" +"Last-Translator: sidro <[email protected]>, 2021\n" +"Language-Team: Romanian (https://app.transifex.com/mate/teams/13566/ro/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -35,7 +36,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -112,7 +113,7 @@ msgstr "" #. (itstool) path: revdescription/para #: C/index.docbook:124 msgid "MATE Documentation Team" -msgstr "" +msgstr "Echipa de documentare MATE" #. (itstool) path: revhistory/revision #: C/index.docbook:120 diff --git a/drivemount/help/ru/ru.po b/drivemount/help/ru/ru.po index 7ad3d74f..b051b9d7 100644 --- a/drivemount/help/ru/ru.po +++ b/drivemount/help/ru/ru.po @@ -4,18 +4,19 @@ # Дмитрий Михирев, 2018 # AlexL <[email protected]>, 2018 # Wolfgang Ulbrich <[email protected]>, 2018 -# Alex Putz, 2018 +# Alex Puts, 2018 # Александр Кураченко <[email protected]>, 2019 -# Olesya Gerasimenko <[email protected]>, 2020 # Aleksey Kabanov <[email protected]>, 2020 +# Иван Л. <[email protected]>, 2021 +# Sergej A. <[email protected]>, 2022 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" -"Last-Translator: Aleksey Kabanov <[email protected]>, 2020\n" -"Language-Team: Russian (https://www.transifex.com/mate/teams/13566/ru/)\n" +"Last-Translator: Sergej A. <[email protected]>, 2022\n" +"Language-Team: Russian (https://app.transifex.com/mate/teams/13566/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -61,7 +62,7 @@ msgstr "" #. (itstool) path: articleinfo/title #: C/index.docbook:22 msgid "Disk Mounter Manual" -msgstr "" +msgstr "Руководство по «Подключению диска» " #. (itstool) path: abstract/para #: C/index.docbook:24 @@ -69,16 +70,18 @@ msgid "" "The Disk Mounter applet enables you to quickly mount or unmount various " "types of drives and file systems from a panel." msgstr "" +"Апплет «Подключение диска» позволяет быстро подключать или отключать " +"различные типы устройств и файловых систем с панели. " #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" -msgstr "<year>2015—2020</year> <holder>Проект документирования MATE</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" +msgstr "<year>2015-2021</year> <holder>Проект документирования MATE</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:32 msgid "<year>2005</year> <holder>Trent Lloyd</holder>" -msgstr "" +msgstr "<year>2005</year> <holder>Trent Lloyd</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:36 @@ -88,12 +91,12 @@ msgstr "<year>2004</year> <holder>Sun Microsystems</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:40 msgid "<year>2002</year> <holder>John Fleck</holder>" -msgstr "" +msgstr "<year>2002</year> <holder>John Fleck</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:44 msgid "<year>2000</year> <holder>Dan Mueth</holder>" -msgstr "" +msgstr "<year>2000</year><holder>Дэн Мует </holder>" #. (itstool) path: publisher/publishername #. (itstool) path: revdescription/para @@ -114,6 +117,8 @@ msgid "" "<firstname>MATE Documentation Team</firstname> <surname/> <affiliation> " "<orgname>MATE Desktop</orgname> </affiliation>" msgstr "" +"<firstname>Команда документирования MATE</firstname> <surname/> " +"<affiliation> <orgname>Рабочий стол MATE</orgname> </affiliation>" #. (itstool) path: authorgroup/author #: C/index.docbook:73 @@ -122,6 +127,9 @@ msgid "" "<orgname>GNOME Documentation Project</orgname> " "<address><email>[email protected]</email></address> </affiliation>" msgstr "" +"<firstname>Trent</firstname> <surname>Lloyd</surname> <affiliation> " +"<orgname>Проект документирования GNOME</orgname> " +"<address><email>[email protected]</email></address> </affiliation>" #. (itstool) path: authorgroup/author #: C/index.docbook:81 @@ -139,6 +147,9 @@ msgid "" "<orgname>GNOME Documentation Project</orgname> <address> " "<email>[email protected]</email> </address> </affiliation>" msgstr "" +"<firstname>John </firstname> <surname> Fleck</surname> <affiliation> " +"<orgname>Проект документирования GNOME</orgname> <address> " +"<email>[email protected]</email> </address> </affiliation>" #. (itstool) path: authorgroup/author #: C/index.docbook:94 @@ -147,6 +158,9 @@ msgid "" "<orgname>GNOME Documentation Project</orgname> <address> " "<email>[email protected]</email> </address> </affiliation>" msgstr "" +"<firstname>Dan </firstname> <surname> Mueth</surname> <affiliation> " +"<orgname>Проект документирования GNOME</orgname> <address> " +"<email>[email protected]</email> </address> </affiliation>" #. (itstool) path: revdescription/para #: C/index.docbook:124 @@ -159,11 +173,13 @@ msgid "" "<revnumber>Disk Mounter Applet Manual V2.12</revnumber> <date>July " "2015</date> <_:revdescription-1/>" msgstr "" +"<revnumber>Руководство по апплету «Подключение диска» V2.12</revnumber> " +"<date>Июль 2015</date> <_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:132 msgid "Trent Lloyd" -msgstr "" +msgstr "Trent Lloyd" #. (itstool) path: revhistory/revision #: C/index.docbook:128 @@ -171,6 +187,8 @@ msgid "" "<revnumber>Disk Mounter Applet Manual V2.11</revnumber> <date>July " "2015</date> <_:revdescription-1/>" msgstr "" +"<revnumber>Руководство по апплету «Подключение диска» V2.11</revnumber> " +"<date>Июль 2015</date> <_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:140 @@ -183,11 +201,13 @@ msgid "" "<revnumber>Disk Mounter Applet Manual V2.10</revnumber> <date>February " "2004</date> <_:revdescription-1/>" msgstr "" +"<revnumber>Руководство по апплету «Подключение диска» V2.10</revnumber> " +"<date>Февраль 2004</date> <_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:148 msgid "John Fleck <email>[email protected]</email>" -msgstr "" +msgstr "John Fleck <email>[email protected]</email>" #. (itstool) path: revhistory/revision #: C/index.docbook:144 @@ -195,11 +215,13 @@ msgid "" "<revnumber>Disk Mounter Applet Manual V2.0</revnumber> <date>March " "2002</date> <_:revdescription-1/>" msgstr "" +"<revnumber>Руководство по апплету «Подключение диска» V2.0</revnumber> " +"<date>Март 2002</date> <_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:158 msgid "Dan Mueth <email>[email protected]</email>" -msgstr "" +msgstr "Dan Mueth <email>[email protected]</email>" #. (itstool) path: revhistory/revision #: C/index.docbook:154 @@ -207,11 +229,14 @@ msgid "" "<revnumber>Drive Mount Applet Manual</revnumber> <date>April 2000</date> " "<_:revdescription-1/>" msgstr "" +"<revnumber>Руководство по апплету «Подключение устройства»</revnumber> " +"<date>Апрель 2000</date> <_:revdescription-1/>" #. (itstool) path: articleinfo/releaseinfo #: C/index.docbook:166 msgid "This manual describes version 1.10.2 of Disk Mounter." msgstr "" +"В этом руководстве описывается версия 1.10.2 апплета «Подключение диска»." #. (itstool) path: legalnotice/title #: C/index.docbook:169 @@ -226,11 +251,15 @@ msgid "" "url=\"help:mate-user-guide/feedback\" type=\"help\">MATE Feedback " "Page</ulink>." msgstr "" +"Чтобы сообщить об ошибке или внести предложение относительно приложения " +"<application>Подключение диска</application> или этого руководства, следуйте" +" инструкциям на <ulink url=\"help:mate-user-guide/feedback\" " +"type=\"help\">странице обратной связи MATE</ulink>." #. (itstool) path: article/indexterm #: C/index.docbook:178 msgid "<primary>Disk Mounter</primary>" -msgstr "" +msgstr "<primary>Подключение диска</primary>" #. (itstool) path: sect1/title #: C/index.docbook:185 @@ -253,6 +282,8 @@ msgid "" "external ref='figures/drivemount-applet_example.png' " "md5='8c212ac1173b8716b962165890dddc28'" msgstr "" +"external ref='figures/drivemount-applet_example.png' " +"md5='8c212ac1173b8716b962165890dddc28'" #. (itstool) path: screenshot/mediaobject #: C/index.docbook:190 @@ -261,6 +292,9 @@ msgid "" "format=\"PNG\"/> </imageobject> <textobject> <phrase>The Disk Mounter " "applet.</phrase> </textobject>" msgstr "" +"<imageobject><imagedata fileref=\"figures/drivemount-applet_example.png\" " +"format=\"PNG\"/> </imageobject> <textobject> <phrase>Апплет «Подключение " +"диска».</phrase> </textobject>" #. (itstool) path: sect1/para #: C/index.docbook:201 @@ -268,6 +302,8 @@ msgid "" "The <application>Disk Mounter</application> enables you to quickly mount and" " unmount various types of drives and file systems." msgstr "" +"Апплет <application>Подключение диска</application> позволяет быстро " +"подключать и отключать различные типы устройств и файловых систем." #. (itstool) path: sect1/para #: C/index.docbook:204 @@ -278,11 +314,17 @@ msgid "" "type=\"man\"><citerefentry><refentrytitle>fstab</refentrytitle><manvolnum>5</manvolnum></citerefentry></ulink>" " for more information about the necessary system administration tasks." msgstr "" +"Для правильной работы приложения <application>Подключения " +"диска</application>, ваш системный администратор должен соответствующим " +"образом настроить систему. Обратитесь к <ulink url=\"man:fstab\" " +"type=\"man\"><citerefentry><refentrytitle>fstab</refentrytitle><manvolnum>5</manvolnum></citerefentry></ulink>" +" для получения дополнительной информации о необходимых задачах системного " +"администрирования." #. (itstool) path: sect2/title #: C/index.docbook:209 msgid "To Add Disk Mounter to a Panel" -msgstr "" +msgstr "Добавление апплета «Подключение диска» на панель" #. (itstool) path: sect2/para #: C/index.docbook:210 @@ -290,6 +332,8 @@ msgid "" "To add <application>Disk Mounter</application> to a panel, perform the " "following steps:" msgstr "" +"Чтобы добавить апплет <application>Подключение диска</application> на " +"панель, выполните следующие действия:" #. (itstool) path: listitem/para #: C/index.docbook:216 @@ -307,6 +351,8 @@ msgid "" "Scroll down the list of items in the <guilabel>Add to Panel</guilabel> " "dialog, then select <guilabel>Disk Mounter</guilabel>." msgstr "" +"Прокрутите список элементов в диалоговом окне <guilabel>Добавить на " +"панель</guilabel> и выберите <guilabel>Подключение диска</guilabel>." #. (itstool) path: listitem/para #: C/index.docbook:232 @@ -316,7 +362,7 @@ msgstr "Нажмите <guibutton>Добавить</guibutton>." #. (itstool) path: sect2/title #: C/index.docbook:240 msgid "Manually Mounting and Unmounting File Systems" -msgstr "" +msgstr "Ручное подключение и отключение файловых систем" #. (itstool) path: sect2/para #: C/index.docbook:241 @@ -324,6 +370,8 @@ msgid "" "Many file systems on Linux and other Unix-like systems must be manually " "mounted and unmounted." msgstr "" +"Многие файловые системы в Linux и других Unix-подобных системах необходимо " +"подключать и отключать вручную." #. (itstool) path: sect2/para #: C/index.docbook:244 @@ -332,6 +380,9 @@ msgid "" "When you finish working with a file system, you should unmount the file " "system." msgstr "" +"Когда файловая система подключена, вы можете проводить в ней действия чтения" +" и записи. Когда вы закончите работу с файловой системой, то должны её " +"отключить." #. (itstool) path: sect2/para #: C/index.docbook:247 @@ -341,6 +392,10 @@ msgid "" "not always write the changes immediately. Such systems typically buffer the " "changes to the disk, to improve the speed of the system." msgstr "" +"Перед извлечением носителя, вы должны отключить съёмные диски, такие как " +"дискеты и Zip-диски, потому что Linux и другие Unix-подобные системы не " +"всегда сразу записывают на них изменения. Такие системы обычно буферизуют " +"изменения на диске, чтобы повысить производительность системы." #. (itstool) path: sect2/para #: C/index.docbook:250 @@ -350,6 +405,10 @@ msgid "" "shuts down. Removable media must be mounted and unmounted manually, for " "example by using the <application>Disk Mounter</application>." msgstr "" +"Разделы на несъёмных дисках, таких как жесткий диск, обычно подключаются " +"автоматически при загрузке компьютера и отключаются при его выключении. " +"Съёмные носители необходимо подключать и отключать вручную, например, с " +"помощью апплета <application>Подключение диска</application>." #. (itstool) path: sect2/para #: C/index.docbook:253 @@ -359,6 +418,11 @@ msgid "" " Mounter</application> so that you can unmount them when you are finished, " "and provide a visual indication that they are present." msgstr "" +"Некоторые системы также могут автоматически подключать некоторые съёмные " +"носители (например, диски USB и IEEE1394). Эти устройства также могут " +"появляться в апплете <application>Подключение диска</application>, чтобы вы " +"могли отключить их по завершению работы и обеспечить визуальную индикацию их" +" присутствия." #. (itstool) path: sect1/title #: C/index.docbook:262 @@ -368,7 +432,7 @@ msgstr "Использование" #. (itstool) path: sect2/title #: C/index.docbook:265 msgid "To Display the Name and Mount Status of a Drive" -msgstr "" +msgstr "Отображение названия и состояния подключения устройства" #. (itstool) path: sect2/para #: C/index.docbook:266 @@ -377,6 +441,9 @@ msgid "" "the drive icon in the panel. A tooltip displays the name and mount status of" " the drive." msgstr "" +"Чтобы показать название и состояние подключения устройства, наведите " +"указатель мыши на значок устройства на панели. Во всплывающей подсказке " +"будет показано название и состояние подключения устройства." #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -389,11 +456,13 @@ msgid "" "external ref='figures/drivemount-applet_status.png' " "md5='a150e5b8efeee5c397591acbda957f1d'" msgstr "" +"external ref='figures/drivemount-applet_status.png' " +"md5='a150e5b8efeee5c397591acbda957f1d'" #. (itstool) path: sect2/title #: C/index.docbook:275 msgid "To Mount, Unmount or Eject a Drive" -msgstr "" +msgstr "Подключение, отключение и извлечение устройства" #. (itstool) path: sect2/para #: C/index.docbook:276 @@ -401,6 +470,8 @@ msgid "" "To mount drive, click on the drive icon in the panel and then select the " "<guimenuitem>Mount Drive</guimenuitem> option." msgstr "" +"Чтобы подключить устройство, щёлкните значок устройства на панели и выберите" +" пункт <guimenuitem>Подключить устройство</guimenuitem>." #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -413,6 +484,8 @@ msgid "" "external ref='figures/drivemount-applet_mount.png' " "md5='d9ed1ad7dd9a94891d7bf943d42b79cf'" msgstr "" +"external ref='figures/drivemount-applet_mount.png' " +"md5='d9ed1ad7dd9a94891d7bf943d42b79cf'" #. (itstool) path: sect2/para #: C/index.docbook:282 @@ -421,6 +494,10 @@ msgid "" " <guimenuitem>Unmount Drive</guimenuitem> option, or if the device is a CD-" "ROM Drive, it may be labeled <guimenuitem>Eject Drive</guimenuitem>" msgstr "" +"Чтобы отключить устройство, щёлкните на значок устройства на панели и " +"выберите пункт <guimenuitem>Отключить устройство</guimenuitem>, или, если " +"устройство является дисководом для компакт-дисков, к нему можно применить " +"действие <guimenuitem>Извлечь устройство</guimenuitem>" #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -433,11 +510,13 @@ msgid "" "external ref='figures/drivemount-applet_eject.png' " "md5='784afdef2d482b1b70ad2d44562205de'" msgstr "" +"external ref='figures/drivemount-applet_eject.png' " +"md5='784afdef2d482b1b70ad2d44562205de'" #. (itstool) path: sect2/title #: C/index.docbook:291 msgid "To Browse the Contents of a Drive" -msgstr "" +msgstr "Просмотр содержимого устройства" #. (itstool) path: sect2/para #: C/index.docbook:292 @@ -445,6 +524,9 @@ msgid "" "To use a file manager to browse the contents of a drive, click on the drive " "icon in the panel, then choose <guimenuitem>Open Drive</guimenuitem>." msgstr "" +"Чтобы для просмотра содержимого устройства использовать файловый менеджер, " +"щёлкните значок устройства на панели, затем выберите <guimenuitem>Открыть " +"устройство</guimenuitem>." #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -457,11 +539,13 @@ msgid "" "external ref='figures/drivemount-applet_open.png' " "md5='3140016491c9d55772b1c62e4893e9e7'" msgstr "" +"external ref='figures/drivemount-applet_open.png' " +"md5='3140016491c9d55772b1c62e4893e9e7'" #. (itstool) path: sect2/para #: C/index.docbook:298 msgid "You can only browse the contents of a mounted drive." -msgstr "" +msgstr "Вы можете просматривать только содержимое подключённого устройства." #. (itstool) path: para/ulink #: C/legal.xml:9 diff --git a/drivemount/help/si/si.po b/drivemount/help/si/si.po index d686d96e..a4707d67 100644 --- a/drivemount/help/si/si.po +++ b/drivemount/help/si/si.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Sinhala (https://www.transifex.com/mate/teams/13566/si/)\n" +"Language-Team: Sinhala (https://app.transifex.com/mate/teams/13566/si/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -34,7 +34,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright diff --git a/drivemount/help/sk/sk.po b/drivemount/help/sk/sk.po index ff2fb922..12e31ac6 100644 --- a/drivemount/help/sk/sk.po +++ b/drivemount/help/sk/sk.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" "Last-Translator: Ján Ďanovský <[email protected]>, 2020\n" -"Language-Team: Slovak (https://www.transifex.com/mate/teams/13566/sk/)\n" +"Language-Team: Slovak (https://app.transifex.com/mate/teams/13566/sk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -42,7 +42,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright diff --git a/drivemount/help/sl/sl.po b/drivemount/help/sl/sl.po index 8ebc3a8d..2bfb0e98 100644 --- a/drivemount/help/sl/sl.po +++ b/drivemount/help/sl/sl.po @@ -2,17 +2,17 @@ # Translators: # Stefano Karapetsas <[email protected]>, 2018 # Damir Jerovšek <[email protected]>, 2018 -# Damir Mevkić <[email protected]>, 2019 +# Damir Mevkić 52K <[email protected]>, 2019 # Helena S <[email protected]>, 2020 # Arnold Marko <[email protected]>, 2020 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" "Last-Translator: Arnold Marko <[email protected]>, 2020\n" -"Language-Team: Slovenian (https://www.transifex.com/mate/teams/13566/sl/)\n" +"Language-Team: Slovenian (https://app.transifex.com/mate/teams/13566/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -38,8 +38,8 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" -msgstr "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" +msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:32 diff --git a/drivemount/help/sq/sq.po b/drivemount/help/sq/sq.po index 4e9d5c2b..264240c0 100644 --- a/drivemount/help/sq/sq.po +++ b/drivemount/help/sq/sq.po @@ -3,15 +3,15 @@ # Stefano Karapetsas <[email protected]>, 2018 # Alban <[email protected]>, 2018 # Indrit Bashkimi <[email protected]>, 2018 -# Ardit Dani <[email protected]>, 2019 +# Ardit Dani <[email protected]>, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" -"Last-Translator: Ardit Dani <[email protected]>, 2019\n" -"Language-Team: Albanian (https://www.transifex.com/mate/teams/13566/sq/)\n" +"Last-Translator: Ardit Dani <[email protected]>, 2021\n" +"Language-Team: Albanian (https://app.transifex.com/mate/teams/13566/sq/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -40,7 +40,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -453,6 +453,10 @@ msgid "" "you can do so by adding a copy of the license to the manual, as described in" " section 6 of the license." msgstr "" +"Ky manual është pjesë e një koleksioni të manualeve të MATE të shpërndara " +"nën GFDL. Nëse dëshironi ta shpërndani këtë manual veçmas nga koleksioni, " +"mund ta bëni duke shtuar një kopje të licencës në manual, siç përshkruhet në" +" seksionin 6 të licencës." #. (itstool) path: legalnotice/para #: C/legal.xml:19 diff --git a/drivemount/help/sr/sr.po b/drivemount/help/sr/sr.po index 8cf115d3..d78a5c08 100644 --- a/drivemount/help/sr/sr.po +++ b/drivemount/help/sr/sr.po @@ -1,15 +1,15 @@ # # Translators: # Stefano Karapetsas <[email protected]>, 2018 -# Мирослав Николић <[email protected]>, 2020 +# Мирослав Николић <[email protected]>, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" -"Last-Translator: Мирослав Николић <[email protected]>, 2020\n" -"Language-Team: Serbian (https://www.transifex.com/mate/teams/13566/sr/)\n" +"Last-Translator: Мирослав Николић <[email protected]>, 2021\n" +"Language-Team: Serbian (https://app.transifex.com/mate/teams/13566/sr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -24,7 +24,7 @@ msgstr "Мирослав Николић <[email protected]>" #. (itstool) path: articleinfo/title #: C/index.docbook:22 msgid "Disk Mounter Manual" -msgstr "" +msgstr "Упутство програма за качење дискова" #. (itstool) path: abstract/para #: C/index.docbook:24 @@ -32,32 +32,34 @@ msgid "" "The Disk Mounter applet enables you to quickly mount or unmount various " "types of drives and file systems from a panel." msgstr "" +"Програмче качења диска вам омогућава да са панела брзо прикачите или " +"откачите разне врсте уређаја и система датотека." #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" -"<year>2015-2020</year> <holder>Пројекат Мејтове документације</holder>" +"<year>2015-2021</year> <holder>Пројекат Мејтове документације</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:32 msgid "<year>2005</year> <holder>Trent Lloyd</holder>" -msgstr "" +msgstr "<year>2005</year> <holder>Трент Лојд</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:36 msgid "<year>2004</year> <holder>Sun Microsystems</holder>" -msgstr "" +msgstr "<year>2004</year> <holder>Sun Microsystems</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:40 msgid "<year>2002</year> <holder>John Fleck</holder>" -msgstr "" +msgstr "<year>2002</year> <holder>Џон Флек</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:44 msgid "<year>2000</year> <holder>Dan Mueth</holder>" -msgstr "" +msgstr "<year>2000</year> <holder>Дан Мует</holder>" #. (itstool) path: publisher/publishername #. (itstool) path: revdescription/para @@ -88,6 +90,9 @@ msgid "" "<orgname>GNOME Documentation Project</orgname> " "<address><email>[email protected]</email></address> </affiliation>" msgstr "" +"<firstname>Трент</firstname> <surname>Лојд</surname> <affiliation> " +"<orgname>Пројекат Гномове документације</orgname> " +"<address><email>[email protected]</email></address> </affiliation>" #. (itstool) path: authorgroup/author #: C/index.docbook:81 @@ -95,6 +100,8 @@ msgid "" "<firstname>Sun</firstname> <surname>GNOME Documentation Team</surname> " "<affiliation><orgname>Sun Microsystems</orgname></affiliation>" msgstr "" +"<firstname>Сан</firstname> <surname>Тим Гномове документације</surname> " +"<affiliation><orgname>Sun Microsystems</orgname></affiliation>" #. (itstool) path: authorgroup/author #: C/index.docbook:86 @@ -103,6 +110,9 @@ msgid "" "<orgname>GNOME Documentation Project</orgname> <address> " "<email>[email protected]</email> </address> </affiliation>" msgstr "" +"<firstname>Џон </firstname> <surname> Флек</surname> <affiliation> " +"<orgname>Пројекат Гномове документације</orgname> <address> " +"<email>[email protected]</email> </address> </affiliation>" #. (itstool) path: authorgroup/author #: C/index.docbook:94 @@ -111,6 +121,9 @@ msgid "" "<orgname>GNOME Documentation Project</orgname> <address> " "<email>[email protected]</email> </address> </affiliation>" msgstr "" +"<firstname>Дан </firstname> <surname> Мует</surname> <affiliation> " +"<orgname>Пројекат Гномове документације</orgname> <address> " +"<email>[email protected]</email> </address> </affiliation>" #. (itstool) path: revdescription/para #: C/index.docbook:124 @@ -123,11 +136,13 @@ msgid "" "<revnumber>Disk Mounter Applet Manual V2.12</revnumber> <date>July " "2015</date> <_:revdescription-1/>" msgstr "" +"<revnumber>Упутство програмчета за качење диска V2.12</revnumber> <date>Јул " +"2015.</date> <_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:132 msgid "Trent Lloyd" -msgstr "" +msgstr "Трент Лојд" #. (itstool) path: revhistory/revision #: C/index.docbook:128 @@ -135,11 +150,13 @@ msgid "" "<revnumber>Disk Mounter Applet Manual V2.11</revnumber> <date>July " "2015</date> <_:revdescription-1/>" msgstr "" +"<revnumber>Упутство програмчета за качење диска V2.11</revnumber> <date>Јул " +"2015.</date> <_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:140 msgid "Sun GNOME Documentation Team" -msgstr "" +msgstr "Тим Sun Гномове документације" #. (itstool) path: revhistory/revision #: C/index.docbook:136 @@ -147,11 +164,13 @@ msgid "" "<revnumber>Disk Mounter Applet Manual V2.10</revnumber> <date>February " "2004</date> <_:revdescription-1/>" msgstr "" +"<revnumber>Упутство програмчета за качење диска V2.10</revnumber> " +"<date>Фебруар 2004.</date> <_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:148 msgid "John Fleck <email>[email protected]</email>" -msgstr "" +msgstr "Џон Флек <email>[email protected]</email>" #. (itstool) path: revhistory/revision #: C/index.docbook:144 @@ -159,11 +178,13 @@ msgid "" "<revnumber>Disk Mounter Applet Manual V2.0</revnumber> <date>March " "2002</date> <_:revdescription-1/>" msgstr "" +"<revnumber>Упутство програмчета за качење диска V2.0</revnumber> <date>Март " +"2002.</date> <_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:158 msgid "Dan Mueth <email>[email protected]</email>" -msgstr "" +msgstr "Дан Мует <email>[email protected]</email>" #. (itstool) path: revhistory/revision #: C/index.docbook:154 @@ -171,11 +192,13 @@ msgid "" "<revnumber>Drive Mount Applet Manual</revnumber> <date>April 2000</date> " "<_:revdescription-1/>" msgstr "" +"<revnumber>Упутство програмчета за качење уређаја</revnumber> <date>Април " +"2000.</date> <_:revdescription-1/>" #. (itstool) path: articleinfo/releaseinfo #: C/index.docbook:166 msgid "This manual describes version 1.10.2 of Disk Mounter." -msgstr "" +msgstr "Ово упутство описује издање 1.10.2 Програмчета качења диска." #. (itstool) path: legalnotice/title #: C/index.docbook:169 @@ -190,11 +213,15 @@ msgid "" "url=\"help:mate-user-guide/feedback\" type=\"help\">MATE Feedback " "Page</ulink>." msgstr "" +"Да бисте пријавили грешку или дали предлог у вези програма " +"<application>Качење диска</application> или овог упутства, пратите смернице " +"на <ulink url=\"help:mate-user-guide/feedback\" type=\"help\">Мејтовој " +"страници за примедбе</ulink>." #. (itstool) path: article/indexterm #: C/index.docbook:178 msgid "<primary>Disk Mounter</primary>" -msgstr "" +msgstr "<primary>Качење диска</primary>" #. (itstool) path: sect1/title #: C/index.docbook:185 @@ -217,6 +244,8 @@ msgid "" "external ref='figures/drivemount-applet_example.png' " "md5='8c212ac1173b8716b962165890dddc28'" msgstr "" +"external ref='figures/drivemount-applet_example.png' " +"md5='8c212ac1173b8716b962165890dddc28'" #. (itstool) path: screenshot/mediaobject #: C/index.docbook:190 @@ -225,6 +254,9 @@ msgid "" "format=\"PNG\"/> </imageobject> <textobject> <phrase>The Disk Mounter " "applet.</phrase> </textobject>" msgstr "" +"<imageobject><imagedata fileref=\"figures/drivemount-applet_example.png\" " +"format=\"PNG\"/> </imageobject> <textobject> <phrase>Програмче за качење " +"диска.</phrase> </textobject>" #. (itstool) path: sect1/para #: C/index.docbook:201 @@ -232,6 +264,8 @@ msgid "" "The <application>Disk Mounter</application> enables you to quickly mount and" " unmount various types of drives and file systems." msgstr "" +"<application>Качење диска</application> вам омогућава да брзо прикачите или " +"откачите разне врсте уређаја и система датотека." #. (itstool) path: sect1/para #: C/index.docbook:204 @@ -242,11 +276,16 @@ msgid "" "type=\"man\"><citerefentry><refentrytitle>fstab</refentrytitle><manvolnum>5</manvolnum></citerefentry></ulink>" " for more information about the necessary system administration tasks." msgstr "" +"Да би <application>Качење диска</application> исправно радио, ваш " +"администратор система мора одговарајуће да подеси ваш систем. Погледајте " +"<ulink url=\"man:fstab\" " +"type=\"man\"><citerefentry><refentrytitle>„fstab“</refentrytitle><manvolnum>5</manvolnum></citerefentry></ulink>" +" за више информација о неопходним задацима администрације система." #. (itstool) path: sect2/title #: C/index.docbook:209 msgid "To Add Disk Mounter to a Panel" -msgstr "" +msgstr "Додавање програма „Качење диска“ на панел" #. (itstool) path: sect2/para #: C/index.docbook:210 @@ -254,11 +293,12 @@ msgid "" "To add <application>Disk Mounter</application> to a panel, perform the " "following steps:" msgstr "" +"Да додате <application>Качење диска</application> на панел, урадите следеће:" #. (itstool) path: listitem/para #: C/index.docbook:216 msgid "Right-click on the panel." -msgstr "" +msgstr "Кликните десним тастером миша на панел." #. (itstool) path: listitem/para #: C/index.docbook:221 @@ -271,6 +311,8 @@ msgid "" "Scroll down the list of items in the <guilabel>Add to Panel</guilabel> " "dialog, then select <guilabel>Disk Mounter</guilabel>." msgstr "" +"Премакните на доле списак ставки у прозорчету <guilabel>Додај на " +"панел</guilabel>, затим изаберите <guilabel>Качење диска</guilabel>." #. (itstool) path: listitem/para #: C/index.docbook:232 @@ -280,7 +322,7 @@ msgstr "Кликните <guibutton>Додај</guibutton>." #. (itstool) path: sect2/title #: C/index.docbook:240 msgid "Manually Mounting and Unmounting File Systems" -msgstr "" +msgstr "Ручно качење и откачињање система датотека" #. (itstool) path: sect2/para #: C/index.docbook:241 @@ -288,6 +330,8 @@ msgid "" "Many file systems on Linux and other Unix-like systems must be manually " "mounted and unmounted." msgstr "" +"Многи системи датотека на Линуксу и другим Јуниксу сличним системима морају " +"бити ручно прикачени и откачени." #. (itstool) path: sect2/para #: C/index.docbook:244 @@ -296,6 +340,9 @@ msgid "" "When you finish working with a file system, you should unmount the file " "system." msgstr "" +"Када је систем датотека прикачен, можете да читате и пишете на систем " +"датотека. Када завршите рад са системом датотека, требало би да откачите " +"систем датотека." #. (itstool) path: sect2/para #: C/index.docbook:247 @@ -305,6 +352,10 @@ msgid "" "not always write the changes immediately. Such systems typically buffer the " "changes to the disk, to improve the speed of the system." msgstr "" +"Морате да откачите уклоњиве уређаје, као што су флопи дискете и Зип дискови," +" пре него што уклоните медиј, јер Линукс и други Јуниксу слични системи не " +"записују измене одмах. Такви системи обично привремено смештају измене на " +"диск, да би побољшали брзину система." #. (itstool) path: sect2/para #: C/index.docbook:250 @@ -314,6 +365,10 @@ msgid "" "shuts down. Removable media must be mounted and unmounted manually, for " "example by using the <application>Disk Mounter</application>." msgstr "" +"Партиције на неуклоњивим уређајима, као што је чврсти диск, су обично " +"прикачене аутоматски приликом подизања система рачунара, и откачене приликом" +" гашења рачунара. Уклоњиви медији морају бити ручно прикачени и откачени, на" +" пример коришћењем програмчета <application>Качење диска</application>." #. (itstool) path: sect2/para #: C/index.docbook:253 @@ -323,6 +378,10 @@ msgid "" " Mounter</application> so that you can unmount them when you are finished, " "and provide a visual indication that they are present." msgstr "" +"Неки системи могу такође аутоматски да прикаче неке уклоњиве медије (као што" +" су УСБ и IEEE1394 дискови), ови уређаји могу такође да се појаве у програму" +" <application>за качење дискова</application> тако да можете да их откачите " +"када завршите, и обезбеђује видљиву индикацију да су присутни." #. (itstool) path: sect1/title #: C/index.docbook:262 @@ -332,7 +391,7 @@ msgstr "Употреба" #. (itstool) path: sect2/title #: C/index.docbook:265 msgid "To Display the Name and Mount Status of a Drive" -msgstr "" +msgstr "Приказивање назива и стања качења уређаја" #. (itstool) path: sect2/para #: C/index.docbook:266 @@ -341,6 +400,9 @@ msgid "" "the drive icon in the panel. A tooltip displays the name and mount status of" " the drive." msgstr "" +"Да прикажете назив и стање прикачености уређаја, померите показивач миша до " +"иконице уређаја на панелу. Облачић ће приказати назив и стање прикачености " +"уређаја." #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -353,11 +415,13 @@ msgid "" "external ref='figures/drivemount-applet_status.png' " "md5='a150e5b8efeee5c397591acbda957f1d'" msgstr "" +"external ref='figures/drivemount-applet_status.png' " +"md5='a150e5b8efeee5c397591acbda957f1d'" #. (itstool) path: sect2/title #: C/index.docbook:275 msgid "To Mount, Unmount or Eject a Drive" -msgstr "" +msgstr "Качење, откачињање или избацивање уређаја" #. (itstool) path: sect2/para #: C/index.docbook:276 @@ -365,6 +429,8 @@ msgid "" "To mount drive, click on the drive icon in the panel and then select the " "<guimenuitem>Mount Drive</guimenuitem> option." msgstr "" +"Да прикачите уређај, кликните на иконицу уређаја на панелу и затим изаберите" +" опцију <guimenuitem>Прикачи уређај</guimenuitem>." #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -377,6 +443,8 @@ msgid "" "external ref='figures/drivemount-applet_mount.png' " "md5='d9ed1ad7dd9a94891d7bf943d42b79cf'" msgstr "" +"external ref='figures/drivemount-applet_mount.png' " +"md5='d9ed1ad7dd9a94891d7bf943d42b79cf'" #. (itstool) path: sect2/para #: C/index.docbook:282 @@ -385,6 +453,9 @@ msgid "" " <guimenuitem>Unmount Drive</guimenuitem> option, or if the device is a CD-" "ROM Drive, it may be labeled <guimenuitem>Eject Drive</guimenuitem>" msgstr "" +"Да откачите уређај, кликните на иконицу уређаја на панелу и затим изаберите " +"опцију <guimenuitem>Откачи уређај</guimenuitem>, или ако је уређај читач ЦД " +"дискова, може имати натпис <guimenuitem>Избаци уређај</guimenuitem>" #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -397,11 +468,13 @@ msgid "" "external ref='figures/drivemount-applet_eject.png' " "md5='784afdef2d482b1b70ad2d44562205de'" msgstr "" +"external ref='figures/drivemount-applet_eject.png' " +"md5='784afdef2d482b1b70ad2d44562205de'" #. (itstool) path: sect2/title #: C/index.docbook:291 msgid "To Browse the Contents of a Drive" -msgstr "" +msgstr "Разгледање садржаја уређаја" #. (itstool) path: sect2/para #: C/index.docbook:292 @@ -409,6 +482,9 @@ msgid "" "To use a file manager to browse the contents of a drive, click on the drive " "icon in the panel, then choose <guimenuitem>Open Drive</guimenuitem>." msgstr "" +"Да користите управника датотека за разгледање садржаја уређаја, кликните на " +"иконицу уређаја на панелу, затим изаберите <guimenuitem>Отвори " +"уређај</guimenuitem>." #. (itstool) path: imageobject/imagedata #. This is a reference to an external file such as an image or video. When @@ -421,11 +497,13 @@ msgid "" "external ref='figures/drivemount-applet_open.png' " "md5='3140016491c9d55772b1c62e4893e9e7'" msgstr "" +"external ref='figures/drivemount-applet_open.png' " +"md5='3140016491c9d55772b1c62e4893e9e7'" #. (itstool) path: sect2/para #: C/index.docbook:298 msgid "You can only browse the contents of a mounted drive." -msgstr "" +msgstr "Можете да разгледате само садржај прикаченог уређаја." #. (itstool) path: para/ulink #: C/legal.xml:9 @@ -442,6 +520,12 @@ msgid "" " of the GFDL at this <_:ulink-1/> or in the file COPYING-DOCS distributed " "with this manual." msgstr "" +"Дозвољено је умножавање, расподела, вршење измена овог документа под " +"условима Гну-ове Лиценце Слободне Документације (ГЛСД), верзије 1.1 или било" +" које касније верзије без непромењивих одељака, текста на насловној и " +"последњој страни, а коју је објавила Задужбина Слободног Софтвера. Примерак " +"ГЛСД можете пронаћи на овој <_:ulink-1/> или у датотеци „COPYING-DOCS“ која " +"је приложена уз ово упутство." #. (itstool) path: legalnotice/para #: C/legal.xml:12 @@ -451,6 +535,10 @@ msgid "" "you can do so by adding a copy of the license to the manual, as described in" " section 6 of the license." msgstr "" +"Ово упутство је део скупа Мејтових докумената објављених под GFDL. Уколико " +"желите да расподељујете ово упутство одвојено од скупа, то можете урадити " +"додавањем примерка лиценце документу, како је описано у одељку 6 саме " +"лиценце." #. (itstool) path: legalnotice/para #: C/legal.xml:19 @@ -461,6 +549,11 @@ msgid "" "aware of those trademarks, then the names are in capital letters or initial " "capital letters." msgstr "" +"Многи називи које компаније користе у циљу препознатљивости својих производа" +" и услуга представљају робне марке. Када (уколико) се такви називи " +"појављују(спомињу) у било којем Мејтовом документу, а чланови Мејтовог " +"документационог пројекта имају сазнања о томе, тада су називи исписани " +"великим словима или са великим почетним словима." #. (itstool) path: listitem/para #: C/legal.xml:35 @@ -477,6 +570,18 @@ msgid "" "ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED VERSION " "OF THE DOCUMENT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER; AND" msgstr "" +"ДОКУМЕНТ ЈЕ ДОСТУПАН СА СВИМ СВОЈИМ ДОБРИМ И ЛОШИМ СТРАНАМА БЕЗ БИЛО КАКВОГ " +"ЈАМСТВА, БИЛО ОНО ИЗРЕЧЕНО ИЛИ НЕ, УКЉУЧУЈУЋИ БЕЗ ОГРАНИЧЕЊА, ЈАМСТВО ДА ЈЕ " +"ОВАЈ ДОКУМЕНТ ИЛИ ЊЕГОВА ИЗМЕЊЕНА ВЕРЗИЈА БЕЗ НЕДОСТАТАКА, СПРЕМАН ЗА " +"ТРЖИШТЕ, СВРСИСХОДАН И НЕ НАРУШАВА ЗАКОНСКЕ НОРМЕ. ЦЕЛОКУПАН РИЗИК КОЈИ СЕ " +"ОДНОСИ НА КВАЛИТЕТ, ТАЧНОСТ И ДОМЕТ (УЧИНАК) ДОКУМЕНТА ИЛИ ЊЕГОВЕ ИЗМЕЊЕНЕ " +"ВЕРЗИЈЕ СНОСИ КОРИСНИК. УКОЛИКО СЕ У БИЛО КОЈЕМ ДОКУМЕНТУ ИЛИ ЊЕГОВОЈ " +"ИЗМЕЊЕНОЈ ВЕРЗИЈИ ПОЈАВИ НЕДОСТАТАК (ГРЕШКА) БИЛО КОЈЕ ВРСТЕ, КОРИСНИК (А НЕ" +" АУТОР ИЗВОРНЕ ВЕРЗИЈЕ, БИЛО КОЈИ ДРУГИ АУТОР ИЛИ САРАДНИК) СНОСИ СВЕ " +"ТРОШКОВЕ НЕОПХОДНОГ СЕРВИСИРАЊА, ПОПРАВКЕ ИЛИ ИСПРАВКЕ. ОВО ОГРАНИЧЕЊЕ " +"ЈАМСТВА ПРЕДСТАВЉА САСТАВНИ ДЕО ОВЕ ДОЗВОЛЕ. УПОТРЕБА БИЛО КОЈЕГ ДОКУМЕНТА " +"ИЛИ ЊЕГОВЕ ИЗМЕЊЕНЕ ВЕРЗИЈЕ НИЈЕ ДОЗВОЉЕНА ОСИМ ПОД УСЛОВИМА ОВОГ ОГРАНИЧЕЊА" +" ЈАМСТВА." #. (itstool) path: listitem/para #: C/legal.xml:55 @@ -492,6 +597,15 @@ msgid "" "VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE" " POSSIBILITY OF SUCH DAMAGES." msgstr "" +"НИ ПОД КАКВИМ ОКОЛНОСТИМА ИЛИ ЗАКОНУ, БИЛО ЗБОГ КРШЕЊА (ИЛИ НЕМАРА) УГОВОРА," +" ИЛИ НА БИЛО КОЈИ ДРУГИ НАЧИН, АУТОР (ПРВОБИТНЕ ВЕРЗИЈЕ), САРАДНИК ИЛИ " +"ИСПОРУЧИВАЛАЦ ДОКУМЕНТА ИЛИ ЊЕГОВЕ ИЗМЕЊЕНЕ ВЕРЗИЈЕ, НИТИ ДОБАВЉАЧ БИЛО КОЈЕ" +" ОД НАВЕДЕНИХ СТРАНА НЕЋЕ СНОСИТИ МАТЕРИЈАЛНУ ОДГОВОРНОСТ ЗА НАСТАЛА " +"ДИРЕКТНА, ИНДИРЕКТНА, ПОСЕБНА, СЛУЧАЈНА ИЛИ ТИМЕ НАСТАЛА ОШТЕЋЕЊА БИЛО КОЈЕ " +"ВРСТЕ УКЉУЧУЈУЋИ, БЕЗ ОГРАНИЧЕЊА, ШТЕТУ НАНЕСЕНУ УГЛЕДУ ФИРМЕ, ПРЕСТАНКУ " +"ПРОИЗВОДЊЕ, ОТКАЗИВАЊЕ РАДА РАЧУНАРА ИЛИ КВАРА КАО И ЗА СВЕ ОСТАЛЕ ШТЕТЕ ИЛИ" +" ГУБИТКЕ НАСТАЛЕ УСЛЕД КОРИШЋЕЊА ДОКУМЕНТА И ЊЕГОВИХ ИЗМЕЊЕНИХ ВЕРЗИЈА ЧАК И" +" АКО ЈЕ ОШТЕЋЕНА СТРАНА БИЛА ОБАВЕШТЕНА О МОГУЋНОСТИ НАСТАНКА ТЕ ШТЕТЕ." #. (itstool) path: legalnotice/para #: C/legal.xml:28 @@ -500,3 +614,5 @@ msgid "" "OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: " "<_:orderedlist-1/>" msgstr "" +"OVAJ DOKUMENT I NJEGOVE IZMENJENE VERZIJE SU DOSTUPNE POD USLOVIMA GNU-OVE " +"SLOBODNE DOKUMENTACIONE DOZVOLE UZ DODATNU SAGLASNOST DA: <_:orderedlist-1/>" diff --git a/drivemount/help/sr@latin/[email protected] b/drivemount/help/sr@latin/[email protected] index c128328d..32d8666c 100644 --- a/drivemount/help/sr@latin/[email protected] +++ b/drivemount/help/sr@latin/[email protected] @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" "Last-Translator: Ivan Pejić <[email protected]>, 2018\n" -"Language-Team: Serbian (Latin) (https://www.transifex.com/mate/teams/13566/sr@latin/)\n" +"Language-Team: Serbian (Latin) (https://app.transifex.com/mate/teams/13566/sr@latin/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -38,7 +38,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright diff --git a/drivemount/help/sv/sv.po b/drivemount/help/sv/sv.po index fd750eeb..560b6592 100644 --- a/drivemount/help/sv/sv.po +++ b/drivemount/help/sv/sv.po @@ -1,20 +1,20 @@ # # Translators: -# Kristoffer Grundström <[email protected]>, 2018 # Stefano Karapetsas <[email protected]>, 2018 # Wolfgang Ulbrich <[email protected]>, 2018 # Daniel Gullbransen, 2018 # crash <[email protected]>, 2019 # eckeman <[email protected]>, 2020 -# Luna Jernberg <[email protected]>, 2020 +# Luna Jernberg <[email protected]>, 2020 +# Kristoffer Grundström <[email protected]>, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" -"Last-Translator: Luna Jernberg <[email protected]>, 2020\n" -"Language-Team: Swedish (https://www.transifex.com/mate/teams/13566/sv/)\n" +"Last-Translator: Kristoffer Grundström <[email protected]>, 2021\n" +"Language-Team: Swedish (https://app.transifex.com/mate/teams/13566/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -40,7 +40,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -219,6 +219,8 @@ msgid "" "external ref='figures/drivemount-applet_example.png' " "md5='8c212ac1173b8716b962165890dddc28'" msgstr "" +"external ref='figures/drivemount-applet_example.png' " +"md5='8c212ac1173b8716b962165890dddc28'" #. (itstool) path: screenshot/mediaobject #: C/index.docbook:190 @@ -260,12 +262,12 @@ msgstr "" #. (itstool) path: listitem/para #: C/index.docbook:216 msgid "Right-click on the panel." -msgstr "" +msgstr "Högerklicka på panelen." #. (itstool) path: listitem/para #: C/index.docbook:221 msgid "Choose <guimenuitem>Add to Panel</guimenuitem>." -msgstr "" +msgstr "Välj <guimenuitem>Lägg till i panelen</guimenuitem>." #. (itstool) path: listitem/para #: C/index.docbook:226 @@ -277,7 +279,7 @@ msgstr "" #. (itstool) path: listitem/para #: C/index.docbook:232 msgid "Click <guibutton>Add</guibutton>." -msgstr "" +msgstr "Klicka på <guibutton>Lägg till</guibutton>." #. (itstool) path: sect2/title #: C/index.docbook:240 @@ -355,6 +357,8 @@ msgid "" "external ref='figures/drivemount-applet_status.png' " "md5='a150e5b8efeee5c397591acbda957f1d'" msgstr "" +"external ref='figures/drivemount-applet_status.png' " +"md5='a150e5b8efeee5c397591acbda957f1d'" #. (itstool) path: sect2/title #: C/index.docbook:275 @@ -379,6 +383,8 @@ msgid "" "external ref='figures/drivemount-applet_mount.png' " "md5='d9ed1ad7dd9a94891d7bf943d42b79cf'" msgstr "" +"external ref='figures/drivemount-applet_mount.png' " +"md5='d9ed1ad7dd9a94891d7bf943d42b79cf'" #. (itstool) path: sect2/para #: C/index.docbook:282 @@ -399,6 +405,8 @@ msgid "" "external ref='figures/drivemount-applet_eject.png' " "md5='784afdef2d482b1b70ad2d44562205de'" msgstr "" +"external ref='figures/drivemount-applet_eject.png' " +"md5='784afdef2d482b1b70ad2d44562205de'" #. (itstool) path: sect2/title #: C/index.docbook:291 @@ -423,6 +431,8 @@ msgid "" "external ref='figures/drivemount-applet_open.png' " "md5='3140016491c9d55772b1c62e4893e9e7'" msgstr "" +"external ref='figures/drivemount-applet_open.png' " +"md5='3140016491c9d55772b1c62e4893e9e7'" #. (itstool) path: sect2/para #: C/index.docbook:298 diff --git a/drivemount/help/ta/ta.po b/drivemount/help/ta/ta.po index 59f9b6bc..647a0aca 100644 --- a/drivemount/help/ta/ta.po +++ b/drivemount/help/ta/ta.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Tamil (https://www.transifex.com/mate/teams/13566/ta/)\n" +"Language-Team: Tamil (https://app.transifex.com/mate/teams/13566/ta/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -37,7 +37,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright diff --git a/drivemount/help/te/te.po b/drivemount/help/te/te.po index 9c519d85..aaeed7d7 100644 --- a/drivemount/help/te/te.po +++ b/drivemount/help/te/te.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Telugu (https://www.transifex.com/mate/teams/13566/te/)\n" +"Language-Team: Telugu (https://app.transifex.com/mate/teams/13566/te/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -35,7 +35,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright diff --git a/drivemount/help/th/th.po b/drivemount/help/th/th.po index 6e332f44..061875dd 100644 --- a/drivemount/help/th/th.po +++ b/drivemount/help/th/th.po @@ -7,10 +7,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" "Last-Translator: Akom <[email protected]>, 2018\n" -"Language-Team: Thai (https://www.transifex.com/mate/teams/13566/th/)\n" +"Language-Team: Thai (https://app.transifex.com/mate/teams/13566/th/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -36,7 +36,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright diff --git a/drivemount/help/tr/tr.po b/drivemount/help/tr/tr.po index 4a2dd293..d43f0016 100644 --- a/drivemount/help/tr/tr.po +++ b/drivemount/help/tr/tr.po @@ -1,17 +1,21 @@ # # Translators: # Stefano Karapetsas <[email protected]>, 2018 +# Butterfly <[email protected]>, 2018 # mauron, 2018 # 0d1bdb3b9a0d4e8f77bc854af8bf3dfc_e6913f4, 2019 -# Butterfly <[email protected]>, 2020 +# hilalis <[email protected]>, 2020 +# Gurbuzguven <[email protected]>, 2021 +# Hüseyin Güç <[email protected]>, 2022 +# Wolfgang Ulbrich <[email protected]>, 2023 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" -"Last-Translator: Butterfly <[email protected]>, 2020\n" -"Language-Team: Turkish (https://www.transifex.com/mate/teams/13566/tr/)\n" +"Last-Translator: Wolfgang Ulbrich <[email protected]>, 2023\n" +"Language-Team: Turkish (https://app.transifex.com/mate/teams/13566/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -36,7 +40,7 @@ msgstr "" #. (itstool) path: articleinfo/title #: C/index.docbook:22 msgid "Disk Mounter Manual" -msgstr "" +msgstr "Disk Bağlayıcı Kılavuzu" #. (itstool) path: abstract/para #: C/index.docbook:24 @@ -44,16 +48,18 @@ msgid "" "The Disk Mounter applet enables you to quickly mount or unmount various " "types of drives and file systems from a panel." msgstr "" +"Disk Mounter uygulaması, çeşitli sürücü türlerini ve dosya sistemlerini bir panelden hızlı bir şekilde bağlamanızı veya ayırmanızı sağlar.\n" +" " #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" -msgstr "<year>2015-2020</year> <holder>MATE tBelgelendirme Projesi</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" +msgstr "<year>2015-2021</year><holder>MATE Belgelendirme Projesi</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:32 msgid "<year>2005</year> <holder>Trent Lloyd</holder>" -msgstr "" +msgstr "<year>2005</year> <holder>Trent Lloyd</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:36 @@ -63,7 +69,7 @@ msgstr "<year>2004</year> <holder>Sun Microsystems</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:40 msgid "<year>2002</year> <holder>John Fleck</holder>" -msgstr "" +msgstr "<year>2002</year> <holder>John Fleck</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:44 @@ -99,6 +105,9 @@ msgid "" "<orgname>GNOME Documentation Project</orgname> " "<address><email>[email protected]</email></address> </affiliation>" msgstr "" +"<firstname>Trent</firstname> <surname>Lloyd</surname> <affiliation> " +"<orgname>GNOME Documentation Project</orgname> " +"<address><email>[email protected]</email></address> </affiliation>" #. (itstool) path: authorgroup/author #: C/index.docbook:81 @@ -116,6 +125,9 @@ msgid "" "<orgname>GNOME Documentation Project</orgname> <address> " "<email>[email protected]</email> </address> </affiliation>" msgstr "" +"<firstname>John </firstname> <surname> Fleck</surname> <affiliation> " +"<orgname>GNOME Documentation Project</orgname> <address> " +"<email>[email protected]</email> </address> </affiliation>" #. (itstool) path: authorgroup/author #: C/index.docbook:94 @@ -136,11 +148,13 @@ msgid "" "<revnumber>Disk Mounter Applet Manual V2.12</revnumber> <date>July " "2015</date> <_:revdescription-1/>" msgstr "" +"<revnumber>Disk Bağlayıcı Uygulaması Kılavuzu V2.12</revnumber> <date>Temmuz" +" 2015</date> <_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:132 msgid "Trent Lloyd" -msgstr "" +msgstr "Trent Lloyd" #. (itstool) path: revhistory/revision #: C/index.docbook:128 @@ -148,6 +162,8 @@ msgid "" "<revnumber>Disk Mounter Applet Manual V2.11</revnumber> <date>July " "2015</date> <_:revdescription-1/>" msgstr "" +"<revnumber>Disk Bağlayıcı Uygulaması Kılavuzu V2.11</revnumber> <date>Temmuz" +" 2015</date> <_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:140 @@ -160,11 +176,13 @@ msgid "" "<revnumber>Disk Mounter Applet Manual V2.10</revnumber> <date>February " "2004</date> <_:revdescription-1/>" msgstr "" +"<revnumber>Disk Bağlayıcı Uygulaması Kılavuzu V2.10</revnumber> <date>Temmuz" +" 2015</date> <_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:148 msgid "John Fleck <email>[email protected]</email>" -msgstr "" +msgstr "John Fleck <email>[email protected]</email>" #. (itstool) path: revhistory/revision #: C/index.docbook:144 @@ -172,11 +190,13 @@ msgid "" "<revnumber>Disk Mounter Applet Manual V2.0</revnumber> <date>March " "2002</date> <_:revdescription-1/>" msgstr "" +"<revnumber>Disk Bağlayıcı Uygulaması Kılavuzu V2.0</revnumber> <date>Mart " +"2002</date> <_:revdescription-1/>" #. (itstool) path: revdescription/para #: C/index.docbook:158 msgid "Dan Mueth <email>[email protected]</email>" -msgstr "" +msgstr "Dan Mueth <email>[email protected]</email>" #. (itstool) path: revhistory/revision #: C/index.docbook:154 @@ -184,11 +204,13 @@ msgid "" "<revnumber>Drive Mount Applet Manual</revnumber> <date>April 2000</date> " "<_:revdescription-1/>" msgstr "" +"<revnumber>Disk Bağlayıcı Uygulaması Kılavuzu</revnumber> <date>Nisan " +"2000</date> <_:revdescription-1/>" #. (itstool) path: articleinfo/releaseinfo #: C/index.docbook:166 msgid "This manual describes version 1.10.2 of Disk Mounter." -msgstr "" +msgstr "Bu kılavuz, Disk Mounter'ın 1.10.2 sürümünü açıklar." #. (itstool) path: legalnotice/title #: C/index.docbook:169 @@ -259,7 +281,7 @@ msgstr "" #. (itstool) path: sect2/title #: C/index.docbook:209 msgid "To Add Disk Mounter to a Panel" -msgstr "" +msgstr "Disk Bağlayıcısını Panele Eklemek İçin" #. (itstool) path: sect2/para #: C/index.docbook:210 @@ -293,7 +315,7 @@ msgstr "<guibutton>Ekle</guibutton> düğmesine tıklayın." #. (itstool) path: sect2/title #: C/index.docbook:240 msgid "Manually Mounting and Unmounting File Systems" -msgstr "" +msgstr "Dosya Sistemlerini Elle Bağlama ve Ayrıma" #. (itstool) path: sect2/para #: C/index.docbook:241 @@ -301,6 +323,8 @@ msgid "" "Many file systems on Linux and other Unix-like systems must be manually " "mounted and unmounted." msgstr "" +"Linux ve Unix benzeri sistemlerdeki birçok dosya sistemi elle bağlanmalı ve " +"ayrılmalıdır." #. (itstool) path: sect2/para #: C/index.docbook:244 @@ -309,6 +333,9 @@ msgid "" "When you finish working with a file system, you should unmount the file " "system." msgstr "" +"Bir dosya sistemi bağlandığında, dosya sistemini okuyabilir ve " +"yazabilirsiniz. Bir dosya sistemiyle çalışmayı bitirdiğinizde, dosya " +"sisteminin bağlantısını kesmeniz gerekir." #. (itstool) path: sect2/para #: C/index.docbook:247 @@ -318,6 +345,10 @@ msgid "" "not always write the changes immediately. Such systems typically buffer the " "changes to the disk, to improve the speed of the system." msgstr "" +"Linux ve Unix benzeri sistemler yapılan değişiklikleri hemen yazmadığından, " +"ortamı çıkarmadan önce disketler ve Zip diskler gibi çıkarılabilir " +"sürücülerin bağlantısını kesmeniz gerekir. Bu tür sistemler, sistemin hızını" +" artırmak için genellikle değişiklikleri arabelleğe alır." #. (itstool) path: sect2/para #: C/index.docbook:250 @@ -345,7 +376,7 @@ msgstr "Kullanım" #. (itstool) path: sect2/title #: C/index.docbook:265 msgid "To Display the Name and Mount Status of a Drive" -msgstr "" +msgstr "Bir Sürücünün Adını ve Bağlanma Durumunu Görüntülemek İçin" #. (itstool) path: sect2/para #: C/index.docbook:266 @@ -370,7 +401,7 @@ msgstr "" #. (itstool) path: sect2/title #: C/index.docbook:275 msgid "To Mount, Unmount or Eject a Drive" -msgstr "" +msgstr "Bir Diski Bağlamak, Bağlantısını Kaldırmak veya Çıkarmak İçin" #. (itstool) path: sect2/para #: C/index.docbook:276 @@ -414,7 +445,7 @@ msgstr "" #. (itstool) path: sect2/title #: C/index.docbook:291 msgid "To Browse the Contents of a Drive" -msgstr "" +msgstr "Diskin İçeriklerini Görüntülemek İçin" #. (itstool) path: sect2/para #: C/index.docbook:292 @@ -438,7 +469,7 @@ msgstr "" #. (itstool) path: sect2/para #: C/index.docbook:298 msgid "You can only browse the contents of a mounted drive." -msgstr "" +msgstr "Yalnızca bağlı bir sürücünün içeriğine göz atabilirsiniz." #. (itstool) path: para/ulink #: C/legal.xml:9 diff --git a/drivemount/help/ug/ug.po b/drivemount/help/ug/ug.po index fd1e3032..f03d6721 100644 --- a/drivemount/help/ug/ug.po +++ b/drivemount/help/ug/ug.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Uyghur (https://www.transifex.com/mate/teams/13566/ug/)\n" +"Language-Team: Uyghur (https://app.transifex.com/mate/teams/13566/ug/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -43,7 +43,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright diff --git a/drivemount/help/uk/uk.po b/drivemount/help/uk/uk.po index c31505ba..23ef4fe9 100644 --- a/drivemount/help/uk/uk.po +++ b/drivemount/help/uk/uk.po @@ -3,14 +3,15 @@ # Stefano Karapetsas <[email protected]>, 2018 # Wolfgang Ulbrich <[email protected]>, 2018 # Микола Ткач <[email protected]>, 2018 +# Sergiy <[email protected]>, 2022 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" -"Last-Translator: Микола Ткач <[email protected]>, 2018\n" -"Language-Team: Ukrainian (https://www.transifex.com/mate/teams/13566/uk/)\n" +"Last-Translator: Sergiy <[email protected]>, 2022\n" +"Language-Team: Ukrainian (https://app.transifex.com/mate/teams/13566/uk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -41,8 +42,8 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" -msgstr "" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" +msgstr "<year>2015-2021</year> <holder>Проект документування MATE</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:32 diff --git a/drivemount/help/ur/ur.po b/drivemount/help/ur/ur.po index 466c070f..40877836 100644 --- a/drivemount/help/ur/ur.po +++ b/drivemount/help/ur/ur.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" "Last-Translator: mauron, 2018\n" -"Language-Team: Urdu (https://www.transifex.com/mate/teams/13566/ur/)\n" +"Language-Team: Urdu (https://app.transifex.com/mate/teams/13566/ur/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -40,7 +40,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright diff --git a/drivemount/help/uz/uz.po b/drivemount/help/uz/uz.po index 2b088381..04a92936 100644 --- a/drivemount/help/uz/uz.po +++ b/drivemount/help/uz/uz.po @@ -1,15 +1,15 @@ # # Translators: # Stefano Karapetsas <[email protected]>, 2018 -# muzaffar habibullayev <[email protected]>, 2018 +# Muzaffar Habibullayev <[email protected]>, 2018 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" -"Last-Translator: muzaffar habibullayev <[email protected]>, 2018\n" -"Language-Team: Uzbek (https://www.transifex.com/mate/teams/13566/uz/)\n" +"Last-Translator: Muzaffar Habibullayev <[email protected]>, 2018\n" +"Language-Team: Uzbek (https://app.transifex.com/mate/teams/13566/uz/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -35,7 +35,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright diff --git a/drivemount/help/vi/vi.po b/drivemount/help/vi/vi.po index faee0855..30783f5b 100644 --- a/drivemount/help/vi/vi.po +++ b/drivemount/help/vi/vi.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" "Last-Translator: Duy Truong Nguyen <[email protected]>, 2018\n" -"Language-Team: Vietnamese (https://www.transifex.com/mate/teams/13566/vi/)\n" +"Language-Team: Vietnamese (https://app.transifex.com/mate/teams/13566/vi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -35,7 +35,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright diff --git a/drivemount/help/wa/wa.po b/drivemount/help/wa/wa.po index 249474ae..0103bc66 100644 --- a/drivemount/help/wa/wa.po +++ b/drivemount/help/wa/wa.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Walloon (https://www.transifex.com/mate/teams/13566/wa/)\n" +"Language-Team: Walloon (https://app.transifex.com/mate/teams/13566/wa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -34,7 +34,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright diff --git a/drivemount/help/xh/xh.po b/drivemount/help/xh/xh.po index d61d1d4f..cff742b4 100644 --- a/drivemount/help/xh/xh.po +++ b/drivemount/help/xh/xh.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Xhosa (https://www.transifex.com/mate/teams/13566/xh/)\n" +"Language-Team: Xhosa (https://app.transifex.com/mate/teams/13566/xh/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -34,7 +34,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright diff --git a/drivemount/help/yo/yo.po b/drivemount/help/yo/yo.po index fc7837c9..a452bca5 100644 --- a/drivemount/help/yo/yo.po +++ b/drivemount/help/yo/yo.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Yoruba (https://www.transifex.com/mate/teams/13566/yo/)\n" +"Language-Team: Yoruba (https://app.transifex.com/mate/teams/13566/yo/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -34,7 +34,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright diff --git a/drivemount/help/zh-Hans/zh-Hans.po b/drivemount/help/zh-Hans/zh-Hans.po index 1ba7f55d..ac9ee4a0 100644 --- a/drivemount/help/zh-Hans/zh-Hans.po +++ b/drivemount/help/zh-Hans/zh-Hans.po @@ -1,14 +1,15 @@ # # Translators: # Xiaoyuan Chen <[email protected]>, 2018 +# 敏超 马 <[email protected]>, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" -"Last-Translator: Xiaoyuan Chen <[email protected]>, 2018\n" -"Language-Team: Chinese Simplified (https://www.transifex.com/mate/teams/13566/zh-Hans/)\n" +"Last-Translator: 敏超 马 <[email protected]>, 2021\n" +"Language-Team: Chinese Simplified (https://app.transifex.com/mate/teams/13566/zh-Hans/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -34,7 +35,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright @@ -61,14 +62,14 @@ msgstr "" #. (itstool) path: revdescription/para #: C/index.docbook:57 C/index.docbook:125 msgid "MATE Documentation Project" -msgstr "" +msgstr "MATE 文档项目" #. (itstool) path: publisher/publishername #. (itstool) path: revdescription/para #: C/index.docbook:60 C/index.docbook:133 C/index.docbook:141 #: C/index.docbook:151 C/index.docbook:161 msgid "GNOME Documentation Project" -msgstr "" +msgstr "GNOME 文档项目" #. (itstool) path: authorgroup/author #: C/index.docbook:66 diff --git a/drivemount/help/zh_CN/zh_CN.po b/drivemount/help/zh_CN/zh_CN.po index 343688b2..1ab4a013 100644 --- a/drivemount/help/zh_CN/zh_CN.po +++ b/drivemount/help/zh_CN/zh_CN.po @@ -6,16 +6,16 @@ # biqiu-ssw <[email protected]>, 2018 # CNAmira <[email protected]>, 2018 # zhineng404 <[email protected]>, 2019 -# liulitchi <[email protected]>, 2019 -# 邢家朋 <[email protected]>, 2020 +# liu lizhi <[email protected]>, 2019 +# OkayPJ <[email protected]>, 2021 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" -"Last-Translator: 邢家朋 <[email protected]>, 2020\n" -"Language-Team: Chinese (China) (https://www.transifex.com/mate/teams/13566/zh_CN/)\n" +"Last-Translator: OkayPJ <[email protected]>, 2021\n" +"Language-Team: Chinese (China) (https://app.transifex.com/mate/teams/13566/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -52,8 +52,8 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" -msgstr "<year>2015-2020</year> <holder>MATE 文档项目</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" +msgstr "<year>2015-2021</year> <holder>MATE 文档团队</holder>" #. (itstool) path: articleinfo/copyright #: C/index.docbook:32 diff --git a/drivemount/help/zh_HK/zh_HK.po b/drivemount/help/zh_HK/zh_HK.po index 83579ba3..86baa065 100644 --- a/drivemount/help/zh_HK/zh_HK.po +++ b/drivemount/help/zh_HK/zh_HK.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Chinese (Hong Kong) (https://www.transifex.com/mate/teams/13566/zh_HK/)\n" +"Language-Team: Chinese (Hong Kong) (https://app.transifex.com/mate/teams/13566/zh_HK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -37,7 +37,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright diff --git a/drivemount/help/zh_TW/zh_TW.po b/drivemount/help/zh_TW/zh_TW.po index 3e1817ea..6e7e8d02 100644 --- a/drivemount/help/zh_TW/zh_TW.po +++ b/drivemount/help/zh_TW/zh_TW.po @@ -4,16 +4,16 @@ # Stefano Karapetsas <[email protected]>, 2018 # 趙惟倫 <[email protected]>, 2018 # lin feather <[email protected]>, 2018 -# byStarTW (pan93412) <[email protected]>, 2018 +# pan93412 <[email protected]>, 2018 # 黃柏諺 <[email protected]>, 2019 # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" "Last-Translator: 黃柏諺 <[email protected]>, 2019\n" -"Language-Team: Chinese (Taiwan) (https://www.transifex.com/mate/teams/13566/zh_TW/)\n" +"Language-Team: Chinese (Taiwan) (https://app.transifex.com/mate/teams/13566/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -45,7 +45,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright diff --git a/drivemount/help/zu/zu.po b/drivemount/help/zu/zu.po index 2812a641..2ac6431d 100644 --- a/drivemount/help/zu/zu.po +++ b/drivemount/help/zu/zu.po @@ -5,10 +5,10 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-01-10 17:58+0100\n" +"POT-Creation-Date: 2021-01-16 12:31+0100\n" "PO-Revision-Date: 2018-09-27 15:11+0000\n" "Last-Translator: Stefano Karapetsas <[email protected]>, 2018\n" -"Language-Team: Zulu (https://www.transifex.com/mate/teams/13566/zu/)\n" +"Language-Team: Zulu (https://app.transifex.com/mate/teams/13566/zu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -36,7 +36,7 @@ msgstr "" #. (itstool) path: articleinfo/copyright #: C/index.docbook:28 -msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>" +msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>" msgstr "" #. (itstool) path: articleinfo/copyright diff --git a/drivemount/src/Makefile.am b/drivemount/src/Makefile.am new file mode 100644 index 00000000..855e48e2 --- /dev/null +++ b/drivemount/src/Makefile.am @@ -0,0 +1,53 @@ +NULL = + +AM_CPPFLAGS = \ + -I. \ + -I$(srcdir) \ + -DDRIVEMOUNT_RESOURCE_PATH=\""/org/mate/mate-applets/drivemount/"\" \ + ${WARN_CFLAGS} \ + $(MATE_APPLETS4_CFLAGS) \ + $(MATE_DESKTOP_CFLAGS) \ + $(NULL) + +BUILT_SOURCES = \ + drivemount-resources.c \ + drivemount-resources.h \ + $(NULL) +APPLET_SOURCES = \ + drivemount.c \ + drive-list.c \ + drive-list.h \ + drive-button.c \ + drive-button.h \ + $(NULL) + +APPLET_LIBS = $(MATE_APPLETS4_LIBS) + +if ENABLE_IN_PROCESS +pkglib_LTLIBRARIES = libmate-drivemount-applet.la +nodist_libmate_drivemount_applet_la_SOURCES = $(BUILT_SOURCES) +libmate_drivemount_applet_la_SOURCES = $(APPLET_SOURCES) +libmate_drivemount_applet_la_CFLAGS = $(AM_CFLAGS) +libmate_drivemount_applet_la_LDFLAGS = -module -avoid-version +libmate_drivemount_applet_la_LIBADD = $(APPLET_LIBS) \ + $(MATE_DESKTOP_LIBS) +else !ENABLE_IN_PROCESS +libexec_PROGRAMS = mate-drivemount-applet +nodist_mate_drivemount_applet_SOURCES = $(BUILT_SOURCES) +mate_drivemount_applet_SOURCES = $(APPLET_SOURCES) +mate_drivemount_applet_CFLAGS = $(AM_CFLAGS) +mate_drivemount_applet_LDADD = $(APPLET_LIBS) \ + $(MATE_DESKTOP_LIBS) +endif !ENABLE_IN_PROCESS + +drivemount-resources.c: ../data/drivemount-resources.gresource.xml $(shell $(GLIB_COMPILE_RESOURCES) --sourcedir=$(srcdir)/../data/ --generate-dependencies $(srcdir)/../data/drivemount-resources.gresource.xml) + $(AM_V_GEN)$(GLIB_COMPILE_RESOURCES) --target=$@ --sourcedir=$(srcdir)/../data/ --generate --c-name drivemount $< + +drivemount-resources.h: ../data/drivemount-resources.gresource.xml $(shell $(GLIB_COMPILE_RESOURCES) --sourcedir=$(srcdir)/../data/ --generate-dependencies $(srcdir)/../data/drivemount-resources.gresource.xml) + $(AM_V_GEN)$(GLIB_COMPILE_RESOURCES) --target=$@ --sourcedir=$(srcdir)/../data/ --generate --c-name drivemount $< + +CLEANFILES = \ + $(BUILT_SOURCES) \ + $(NULL) + +-include $(top_srcdir)/git.mk diff --git a/drivemount/src/drive-button.c b/drivemount/src/drive-button.c new file mode 100644 index 00000000..d33600f0 --- /dev/null +++ b/drivemount/src/drive-button.c @@ -0,0 +1,988 @@ +/* -*- mode: C; c-basic-offset: 4 -*- + * Drive Mount Applet + * Copyright (c) 2004 Canonical Ltd + * Copyright 2008 Pierre Ossman + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + * + * Author: + * James Henstridge <[email protected]> + */ + +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif + +#include <gio/gio.h> +#include "drive-button.h" +#include <glib/gi18n.h> +#include <gdk/gdkkeysyms.h> +#include <gio/gdesktopappinfo.h> + +#include <libmate-desktop/mate-image-menu-item.h> + +#include <string.h> + +enum { + CMD_NONE, + CMD_MOUNT_OR_PLAY, + CMD_UNMOUNT, + CMD_EJECT +}; + +/* type registration boilerplate code */ +G_DEFINE_TYPE (DriveButton, drive_button, GTK_TYPE_BUTTON) + +static void drive_button_set_volume (DriveButton *self, + GVolume *volume); +static void drive_button_set_mount (DriveButton *self, + GMount *mount); +static void drive_button_reset_popup (DriveButton *self); +static void drive_button_ensure_popup (DriveButton *self); + +static void drive_button_dispose (GObject *object); +#if 0 +static void drive_button_unrealize (GtkWidget *widget); +#endif /* 0 */ +static gboolean drive_button_button_press (GtkWidget *widget, + GdkEventButton *event); +static gboolean drive_button_key_press (GtkWidget *widget, + GdkEventKey *event); +static void drive_button_theme_change (GtkIconTheme *icon_theme, + gpointer data); + +static void +drive_button_class_init (DriveButtonClass *class) +{ + G_OBJECT_CLASS (class)->dispose = drive_button_dispose; + GTK_WIDGET_CLASS (class)->button_press_event = drive_button_button_press; + GTK_WIDGET_CLASS (class)->key_press_event = drive_button_key_press; + + GtkCssProvider *provider; + + provider = gtk_css_provider_new (); + + gtk_css_provider_load_from_data (provider, + "#drive-button {\n" + " border-width: 0px;\n" + " padding: 0px;\n" + " margin: 0px;\n" + "}", + -1, NULL); + + gtk_style_context_add_provider_for_screen (gdk_screen_get_default (), + GTK_STYLE_PROVIDER (provider), + GTK_STYLE_PROVIDER_PRIORITY_APPLICATION); + g_object_unref (provider); +} + +static void +drive_button_init (DriveButton *self) +{ + GtkWidget *image; + + image = gtk_image_new (); + gtk_container_add (GTK_CONTAINER (self), image); + gtk_widget_show (image); + + self->volume = NULL; + self->mount = NULL; + self->icon_size = 24; + self->update_tag = 0; + + self->popup_menu = NULL; + + gtk_widget_set_name (GTK_WIDGET (self), "drive-button"); +} + +GtkWidget * +drive_button_new (GVolume *volume) +{ + DriveButton *self; + + self = g_object_new (DRIVE_TYPE_BUTTON, NULL); + if (volume != NULL) { + drive_button_set_volume (self, volume); + + g_signal_connect (gtk_icon_theme_get_default (), "changed", + G_CALLBACK (drive_button_theme_change), + self); + } + + return (GtkWidget *)self; +} + +GtkWidget * +drive_button_new_from_mount (GMount *mount) +{ + DriveButton *self; + + self = g_object_new (DRIVE_TYPE_BUTTON, NULL); + drive_button_set_mount (self, mount); + + g_signal_connect (gtk_icon_theme_get_default (), "changed", + G_CALLBACK (drive_button_theme_change), + self); + + return (GtkWidget *)self; +} + +static void +drive_button_dispose (GObject *object) +{ + DriveButton *self = DRIVE_BUTTON (object); + + drive_button_set_volume (self, NULL); + + if (self->update_tag) + g_source_remove (self->update_tag); + self->update_tag = 0; + + drive_button_reset_popup (self); + + if (G_OBJECT_CLASS (drive_button_parent_class)->dispose) + (* G_OBJECT_CLASS (drive_button_parent_class)->dispose) (object); +} + +static gboolean +drive_button_button_press (GtkWidget *widget, + GdkEventButton *event) +{ + DriveButton *self = DRIVE_BUTTON (widget); + + /* don't consume non-button1 presses */ + if (event->button == 1) { + drive_button_ensure_popup (self); + if (self->popup_menu) { + gtk_menu_popup_at_widget (GTK_MENU (self->popup_menu), + widget, + GDK_GRAVITY_SOUTH_WEST, + GDK_GRAVITY_NORTH_WEST, + (const GdkEvent*) event); + } + return TRUE; + } + return FALSE; +} + +static gboolean +drive_button_key_press (GtkWidget *widget, + GdkEventKey *event) +{ + DriveButton *self = DRIVE_BUTTON (widget); + + switch (event->keyval) { + case GDK_KEY_KP_Space: + case GDK_KEY_space: + case GDK_KEY_KP_Enter: + case GDK_KEY_Return: + drive_button_ensure_popup (self); + if (self->popup_menu) { + gtk_menu_popup_at_widget (GTK_MENU (self->popup_menu), + widget, + GDK_GRAVITY_SOUTH_WEST, + GDK_GRAVITY_NORTH_WEST, + (const GdkEvent*) event); + } + return TRUE; + } + return FALSE; +} + +static void +drive_button_theme_change (GtkIconTheme *icon_theme, + gpointer data) +{ + drive_button_queue_update (data); +} + +static void +drive_button_set_volume (DriveButton *self, + GVolume *volume) +{ + g_return_if_fail (DRIVE_IS_BUTTON (self)); + + if (self->volume) { + g_object_unref (self->volume); + } + self->volume = NULL; + if (self->mount) { + g_object_unref (self->mount); + } + self->mount = NULL; + + if (volume) { + self->volume = g_object_ref (volume); + } + drive_button_queue_update (self); +} + +static void +drive_button_set_mount (DriveButton *self, + GMount *mount) +{ + g_return_if_fail (DRIVE_IS_BUTTON (self)); + + if (self->volume) { + g_object_unref (self->volume); + } + self->volume = NULL; + if (self->mount) { + g_object_unref (self->mount); + } + self->mount = NULL; + + if (mount) { + self->mount = g_object_ref (mount); + } + drive_button_queue_update (self); +} + +static gboolean +drive_button_update (gpointer user_data) +{ + DriveButton *self; + GdkScreen *screen; + GtkIconTheme *icon_theme; + GtkIconInfo *icon_info; + GIcon *icon; + int width, height, scale; + cairo_t *cr; + cairo_surface_t *surface = NULL; + cairo_surface_t *tmp_surface = NULL; + GtkRequisition button_req, image_req; + char *display_name, *tip; + + g_return_val_if_fail (DRIVE_IS_BUTTON (user_data), FALSE); + self = DRIVE_BUTTON (user_data); + self->update_tag = 0; + + /* base the icon size on the desired button size */ + drive_button_reset_popup (self); + scale = gtk_widget_get_scale_factor (GTK_WIDGET (self)); + gtk_widget_get_preferred_size (GTK_WIDGET (self), NULL, &button_req); + gtk_widget_get_preferred_size (gtk_bin_get_child (GTK_BIN (self)), NULL, &image_req); + width = (self->icon_size - (button_req.width - image_req.width)) / scale; + height = (self->icon_size - (button_req.height - image_req.height)) / scale; + + /* if no volume or mount, display general image */ + if (!self->volume && !self->mount) + { + gtk_widget_set_tooltip_text (GTK_WIDGET (self), _("nothing to mount")); + screen = gtk_widget_get_screen (GTK_WIDGET (self)); + icon_theme = gtk_icon_theme_get_for_screen (screen); //m + // note - other good icon would be emblem-unreadable + icon_info = gtk_icon_theme_lookup_icon_for_scale (icon_theme, "media-floppy", + MIN (width, height), scale, + GTK_ICON_LOOKUP_USE_BUILTIN); + if (icon_info) { + surface = gtk_icon_info_load_surface (icon_info, NULL, NULL); + g_object_unref (icon_info); + } + + if (!surface) + return FALSE; + + if (gtk_bin_get_child (GTK_BIN (self)) != NULL) + gtk_image_set_from_surface (GTK_IMAGE (gtk_bin_get_child (GTK_BIN (self))), surface); + + return FALSE; + } + + gboolean is_mounted = FALSE; + + if (self->volume) + { + GMount *mount; + + display_name = g_volume_get_name (self->volume); + mount = g_volume_get_mount (self->volume); + + if (mount) + { + is_mounted = TRUE; + tip = g_strdup_printf ("%s\n%s", display_name, _("(mounted)")); + icon = g_mount_get_icon (mount); + g_object_unref (mount); + } + else + { + is_mounted = FALSE; + tip = g_strdup_printf ("%s\n%s", display_name, _("(not mounted)")); + icon = g_volume_get_icon (self->volume); + } + } else + { + is_mounted = TRUE; + display_name = g_mount_get_name (self->mount); + tip = g_strdup_printf ("%s\n%s", display_name, _("(mounted)")); + icon = g_mount_get_icon (self->mount); + } + + gtk_widget_set_tooltip_text (GTK_WIDGET (self), tip); + g_free (tip); + g_free (display_name); + + screen = gtk_widget_get_screen (GTK_WIDGET (self)); + icon_theme = gtk_icon_theme_get_for_screen (screen); + icon_info = gtk_icon_theme_lookup_by_gicon_for_scale (icon_theme, icon, + MIN (width, height), scale, + GTK_ICON_LOOKUP_USE_BUILTIN); + if (icon_info) + { + surface = gtk_icon_info_load_surface (icon_info, NULL, NULL); + g_object_unref (icon_info); + } + + g_object_unref (icon); + + if (!surface) + return FALSE; + + // create a new surface because icon image can be shared by system + tmp_surface = cairo_surface_create_similar (surface, + cairo_surface_get_content (surface), + cairo_image_surface_get_width (surface) / scale, + cairo_image_surface_get_height (surface) / scale); + + // if mounted, change icon + if (is_mounted) + { + int icon_width, icon_height, rowstride, n_channels, x, y; + guchar *pixels, *p; + gboolean has_alpha; + + has_alpha = cairo_surface_get_content (tmp_surface) != CAIRO_CONTENT_COLOR; + n_channels = 3; + if (has_alpha) + n_channels++; + + icon_width = cairo_image_surface_get_width (tmp_surface); + icon_height = cairo_image_surface_get_height (tmp_surface); + + rowstride = cairo_image_surface_get_stride (tmp_surface); + pixels = cairo_image_surface_get_data (tmp_surface); + + GdkRGBA color; + GSettings *settings; + settings = g_settings_new ("org.mate.drivemount"); + gchar *color_string = g_settings_get_string (settings, "drivemount-checkmark-color"); + if (!color_string) + color_string = g_strdup ("#00ff00"); + gdk_rgba_parse (&color, color_string); + g_free (color_string); + g_object_unref (settings); + + guchar red = (guchar) (color.red * 255.0); + guchar green = (guchar) (color.green * 255.0); + guchar blue = (guchar) (color.blue * 255.0); + + int y_start = (int) (0.65 * (gdouble) icon_height); + int x_start = (int) (1.65 * (gdouble) icon_height); + + for (y = y_start; y < icon_height; y++) + for (x = x_start - y; x < icon_width; x++) + { + p = pixels + y * rowstride + x * n_channels; + p[0] = red; + p[1] = green; + p[2] = blue; + if (has_alpha) + p[3] = 255; + } + } + + cr = cairo_create (tmp_surface); + cairo_set_operator (cr, CAIRO_OPERATOR_OVERLAY); + cairo_set_source_surface (cr, surface, 0, 0); + cairo_paint (cr); + + gtk_image_set_from_surface (GTK_IMAGE (gtk_bin_get_child (GTK_BIN (self))), tmp_surface); + + cairo_surface_destroy (surface); + cairo_surface_destroy (tmp_surface); + + gtk_widget_get_preferred_size (GTK_WIDGET (self), NULL, &button_req); + + return FALSE; +} + +void +drive_button_queue_update (DriveButton *self) +{ + if (!self->update_tag) { + self->update_tag = g_idle_add (drive_button_update, self); + } +} + +void +drive_button_set_size (DriveButton *self, + int icon_size) +{ + g_return_if_fail (DRIVE_IS_BUTTON (self)); + + if (self->icon_size != icon_size) { + self->icon_size = icon_size; + drive_button_queue_update (self); + } +} + +void +drive_button_redraw (gpointer key, + gpointer value, + gpointer user_data) +{ + DriveButton *button = value; + drive_button_queue_update (button); +} + +int +drive_button_compare (DriveButton *button, + DriveButton *other_button) +{ + /* sort drives before driveless volumes volumes */ + if (button->volume) { + if (other_button->volume) { + int cmp; + gchar *str1, *str2; + + str1 = g_volume_get_name (button->volume); + str2 = g_volume_get_name (other_button->volume); + cmp = g_utf8_collate (str1, str2); + g_free (str2); + g_free (str1); + + return cmp; + } else { + return -1; + } + } else { + if (other_button->volume) { + return 1; + } else { + int cmp; + gchar *str1, *str2; + + str1 = g_mount_get_name (button->mount); + str2 = g_mount_get_name (other_button->mount); + cmp = g_utf8_collate (str1, str2); + g_free (str2); + g_free (str1); + + return cmp; + } + } +} + +static void +drive_button_reset_popup (DriveButton *self) +{ + if (self->popup_menu) + gtk_widget_destroy (GTK_WIDGET (self->popup_menu)); + self->popup_menu = NULL; +} + +#if 0 +static void +popup_menu_detach (GtkWidget *attach_widget, GtkMenu *menu) +{ + DRIVE_BUTTON (attach_widget)->popup_menu = NULL; +} +#endif /* 0 */ + +static char * +escape_underscores (const char *str) +{ + char *new_str; + int i, j, count; + + /* count up how many underscores are in the string */ + count = 0; + for (i = 0; str[i] != '\0'; i++) { + if (str[i] == '_') + count++; + } + /* copy to new string, doubling up underscores */ + new_str = g_new (char, i + count + 1); + for (i = j = 0; str[i] != '\0'; i++, j++) { + new_str[j] = str[i]; + if (str[i] == '_') + new_str[++j] = '_'; + } + new_str[j] = '\0'; + return new_str; +} +static GtkWidget * +create_menu_item (DriveButton *self, + const gchar *icon_name, + const gchar *label, + GCallback callback, + gboolean sensitive) +{ + GtkWidget *item, *image; + + item = mate_image_menu_item_new_with_mnemonic (label); + if (icon_name) { + image = gtk_image_new_from_icon_name (icon_name, GTK_ICON_SIZE_MENU); + mate_image_menu_item_set_image (MATE_IMAGE_MENU_ITEM (item), image); + gtk_widget_show (image); + } + if (callback) + g_signal_connect_object (item, "activate", + callback, self, + G_CONNECT_SWAPPED); + gtk_widget_set_sensitive (item, sensitive); + gtk_widget_show (item); + return item; +} + +static void +open_drive (DriveButton *self, + GtkWidget *item) +{ + GdkScreen *screen; + GtkWidget *dialog; + GError *error = NULL; + GFile *file = NULL; + GList *files = NULL; + GdkAppLaunchContext *launch_context; + GAppInfo *app_info; + + if (self->volume) { + GMount *mount; + + mount = g_volume_get_mount (self->volume); + if (mount) { + file = g_mount_get_root (mount); + g_object_unref (mount); + } + } else if (self->mount) { + file = g_mount_get_root (self->mount); + } else + g_return_if_reached (); + + app_info = g_app_info_get_default_for_type ("inode/directory", FALSE); + if (!app_info) + app_info = G_APP_INFO (g_desktop_app_info_new ("caja.desktop")); + + if (app_info) { + GdkDisplay *display = gtk_widget_get_display (item); + launch_context = gdk_display_get_app_launch_context (display); + screen = gtk_widget_get_screen (GTK_WIDGET (self)); + gdk_app_launch_context_set_screen (launch_context, screen); + files = g_list_prepend (files, file); + g_app_info_launch (app_info, + files, + G_APP_LAUNCH_CONTEXT (launch_context), + &error); + + g_object_unref (launch_context); + g_list_free (files); + } + + if (!app_info || error) { + dialog = gtk_message_dialog_new (GTK_WINDOW (gtk_widget_get_toplevel (GTK_WIDGET (self))), + GTK_DIALOG_DESTROY_WITH_PARENT, + GTK_MESSAGE_ERROR, + GTK_BUTTONS_OK, + _("Cannot execute Caja")); + if (error) + gtk_message_dialog_format_secondary_text (GTK_MESSAGE_DIALOG (dialog), "%s", error->message); + else + gtk_message_dialog_format_secondary_text (GTK_MESSAGE_DIALOG (dialog), "Could not find Caja"); + + g_signal_connect (dialog, "response", + G_CALLBACK (gtk_widget_destroy), + NULL); + + gtk_widget_show (dialog); + g_error_free (error); + } + + g_object_unref (file); +} + +/* copied from mate-volume-manager/src/manager.c maybe there is a better way than + * duplicating this code? */ + +/* + * gvm_run_command - run the given command, replacing %d with the device node + * and %m with the given path + */ +static void +gvm_run_command (const char *device, + const char *command, + const char *path) +{ + char *argv[4]; + gchar *new_command; + GError *error = NULL; + GString *exec = g_string_new (NULL); + char *p, *q; + + /* perform s/%d/device/ and s/%m/path/ */ + new_command = g_strdup (command); + q = new_command; + p = new_command; + while ((p = strchr (p, '%')) != NULL) { + if (*(p + 1) == 'd') { + *p = '\0'; + g_string_append (exec, q); + g_string_append (exec, device); + q = p + 2; + p = p + 2; + } else if (*(p + 1) == 'm') { + *p = '\0'; + g_string_append (exec, q); + g_string_append (exec, path); + q = p + 2; + p = p + 2; + } else { + /* Ignore anything else. */ + p++; + } + } + g_string_append (exec, q); + + argv[0] = "/bin/sh"; + argv[1] = "-c"; + argv[2] = exec->str; + argv[3] = NULL; + + g_spawn_async (g_get_home_dir (), argv, NULL, 0, NULL, NULL, + NULL, &error); + if (error) { + g_warning ("failed to exec %s: %s\n", exec->str, error->message); + g_error_free (error); + } + + g_string_free (exec, TRUE); + g_free (new_command); +} + +/* + * gvm_check_dvd_only - is this a Video DVD? + * + * Returns TRUE if this was a Video DVD and FALSE otherwise. + * (the original in gvm was also running the autoplay action, + * I removed that code, so I renamed from gvm_check_dvd to + * gvm_check_dvd_only) + */ +static gboolean +gvm_check_dvd_only (const char *udi, + const char *device, + const char *mount_point) +{ + char *path; + gboolean retval; + + path = g_build_path (G_DIR_SEPARATOR_S, mount_point, "video_ts", NULL); + retval = g_file_test (path, G_FILE_TEST_IS_DIR); + g_free (path); + + /* try the other name, if needed */ + if (retval == FALSE) { + path = g_build_path (G_DIR_SEPARATOR_S, mount_point, + "VIDEO_TS", NULL); + retval = g_file_test (path, G_FILE_TEST_IS_DIR); + g_free (path); + } + + return retval; +} +/* END copied from mate-volume-manager/src/manager.c */ + +static gboolean +check_dvd_video (DriveButton *self) +{ + GFile *file; + char *udi, *device_path, *mount_path; + gboolean result; + GMount *mount; + + if (!self->volume) + return FALSE; + + mount = g_volume_get_mount (self->volume); + if (!mount) + return FALSE; + + file = g_mount_get_root (mount); + g_object_unref (mount); + + if (!file) + return FALSE; + + mount_path = g_file_get_path (file); + + g_object_unref (file); + + device_path = g_volume_get_identifier (self->volume, + G_VOLUME_IDENTIFIER_KIND_UNIX_DEVICE); + udi = g_volume_get_identifier (self->volume, + G_VOLUME_IDENTIFIER_KIND_HAL_UDI); + + result = gvm_check_dvd_only (udi, device_path, mount_path); + + g_free (device_path); + g_free (udi); + g_free (mount_path); + + return result; +} + +static gboolean +check_audio_cd (DriveButton *self) +{ + GFile *file; + char *activation_uri; + GMount *mount; + + if (!self->volume) + return FALSE; + + mount = g_volume_get_mount (self->volume); + if (!mount) + return FALSE; + + file = g_mount_get_root (mount); + g_object_unref (mount); + + if (!file) + return FALSE; + + activation_uri = g_file_get_uri (file); + + g_object_unref (file); + + /* we have an audioCD if the activation URI starts by 'cdda://' */ + gboolean result = (strncmp ("cdda://", activation_uri, 7) == 0); + g_free (activation_uri); + return result; +} + +static void +run_command (DriveButton *self, + const char *command) +{ + GFile *file; + char *mount_path, *device_path; + GMount *mount; + + if (!self->volume) + return; + + mount = g_volume_get_mount (self->volume); + if (!mount) + return; + + file = g_mount_get_root (mount); + g_object_unref (mount); + + g_assert (file); + + mount_path = g_file_get_path (file); + + g_object_unref (file); + + device_path = g_volume_get_identifier (self->volume, + G_VOLUME_IDENTIFIER_KIND_UNIX_DEVICE); + + gvm_run_command (device_path, command, mount_path); + + g_free (mount_path); + g_free (device_path); +} + +static void dummy_async_ready_callback (GObject *source_object, + GAsyncResult *res, + gpointer user_data) +{ + /* do nothing */ +} + +static void +mount_drive (DriveButton *self, + GtkWidget *item) +{ + if (self->volume) { + GMountOperation *mount_op = gtk_mount_operation_new (NULL); + g_volume_mount (self->volume, G_MOUNT_MOUNT_NONE, + mount_op, NULL, dummy_async_ready_callback, NULL); + g_object_unref (mount_op); + } else { + g_return_if_reached (); + } +} + +static void +unmount_drive (DriveButton *self, + GtkWidget *item) +{ + if (self->volume) { + GMount *mount; + + mount = g_volume_get_mount (self->volume); + if (mount) { + g_mount_unmount_with_operation (mount, G_MOUNT_UNMOUNT_NONE, + NULL, NULL, dummy_async_ready_callback, NULL); + g_object_unref (mount); + } + } else if (self->mount) { + g_mount_unmount_with_operation (self->mount, G_MOUNT_UNMOUNT_NONE, + NULL, NULL, dummy_async_ready_callback, NULL); + } else { + g_return_if_reached (); + } +} + +static void eject_finish (DriveButton *self, + GAsyncResult *res, + gpointer user_data) +{ + /* Do nothing. We shouldn't need this according to the GIO + * docs, but the applet crashes without it using glib 2.18.0 */ +} + +static void +eject_drive (DriveButton *self, + GtkWidget *item) +{ + if (self->volume) { + g_volume_eject_with_operation (self->volume, G_MOUNT_UNMOUNT_NONE, + NULL, NULL, + (GAsyncReadyCallback) eject_finish, + NULL); + } else if (self->mount) { + g_mount_eject_with_operation (self->mount, G_MOUNT_UNMOUNT_NONE, + NULL, NULL, + (GAsyncReadyCallback) eject_finish, + NULL); + } else { + g_return_if_reached (); + } +} +static void +play_autoplay_media (DriveButton *self, + const char *dflt) +{ + run_command (self, dflt); +} + +static void +play_dvd (DriveButton *self, + GtkWidget *item) +{ + /* FIXME add an option to set this */ + play_autoplay_media (self, "totem %d"); +} + +static void +play_cda (DriveButton *self, + GtkWidget *item) +{ + /* FIXME add an option to set this */ + play_autoplay_media (self, "sound-juicer -d %d"); +} + +static void +drive_button_ensure_popup (DriveButton *self) +{ + char *display_name, *tmp, *label; + GtkWidget *item; + gboolean mounted, ejectable; + + if (self->popup_menu) return; + + mounted = FALSE; + + if (self->volume) { + GMount *mount = NULL; + + display_name = g_volume_get_name (self->volume); + ejectable = g_volume_can_eject (self->volume); + + mount = g_volume_get_mount (self->volume); + if (mount) { + mounted = TRUE; + g_object_unref (mount); + } + } else { + if (!G_IS_MOUNT (self->volume)) + return; + else { + display_name = g_mount_get_name (self->mount); + ejectable = g_mount_can_eject (self->mount); + mounted = TRUE; + } + } + + self->popup_menu = gtk_menu_new (); + + /* make sure the display name doesn't look like a mnemonic */ + tmp = escape_underscores (display_name ? display_name : "(none)"); + g_free (display_name); + display_name = tmp; + + if (check_dvd_video (self)) { + item = create_menu_item (self, "media-playback-start", + _("_Play DVD"), G_CALLBACK (play_dvd), + TRUE); + } else if (check_audio_cd (self)) { + item = create_menu_item (self, "media-playback-start", + _("_Play CD"), G_CALLBACK (play_cda), + TRUE); + } else { + label = g_strdup_printf (_("_Open %s"), display_name); + item = create_menu_item (self, "document-open", label, + G_CALLBACK (open_drive), mounted); + g_free (label); + } + gtk_container_add (GTK_CONTAINER (self->popup_menu), item); + + if (mounted) { + label = g_strdup_printf (_("Un_mount %s"), display_name); + item = create_menu_item (self, NULL, label, + G_CALLBACK (unmount_drive), TRUE); + g_free (label); + gtk_container_add (GTK_CONTAINER (self->popup_menu), item); + } else { + label = g_strdup_printf (_("_Mount %s"), display_name); + item = create_menu_item (self, NULL, label, + G_CALLBACK (mount_drive), TRUE); + g_free (label); + gtk_container_add (GTK_CONTAINER (self->popup_menu), item); + } + + if (ejectable) { + label = g_strdup_printf (_("_Eject %s"), display_name); + item = create_menu_item (self, "media-eject", label, + G_CALLBACK (eject_drive), TRUE); + g_free (label); + gtk_container_add (GTK_CONTAINER (self->popup_menu), item); + } + + /*Set up custom theme and transparency support */ + GtkWidget *toplevel = gtk_widget_get_toplevel (self->popup_menu); + /* Fix any failures of compiz/other wm's to communicate with gtk for transparency */ + GdkScreen *screen2 = gtk_widget_get_screen (GTK_WIDGET (toplevel)); + GdkVisual *visual = gdk_screen_get_rgba_visual (screen2); + gtk_widget_set_visual (GTK_WIDGET (toplevel), visual); + /*set menu and it's toplevel window to follow panel theme */ + GtkStyleContext *context; + context = gtk_widget_get_style_context (GTK_WIDGET (toplevel)); + gtk_style_context_add_class (context,"gnome-panel-menu-bar"); + gtk_style_context_add_class (context,"mate-panel-menu-bar"); +} diff --git a/drivemount/drive-button.h b/drivemount/src/drive-button.h index 010e65a0..fdab2f16 100644 --- a/drivemount/drive-button.h +++ b/drivemount/src/drive-button.h @@ -59,10 +59,10 @@ GtkWidget *drive_button_new (GVolume *volume); GtkWidget *drive_button_new_from_mount (GMount *mount); void drive_button_queue_update (DriveButton *button); void drive_button_set_size (DriveButton *button, - int icon_size); + int icon_size); int drive_button_compare (DriveButton *button, - DriveButton *other_button); + DriveButton *other_button); void drive_button_redraw (gpointer key, gpointer value, gpointer user_data); diff --git a/drivemount/src/drive-list.c b/drivemount/src/drive-list.c new file mode 100644 index 00000000..21d5ee5c --- /dev/null +++ b/drivemount/src/drive-list.c @@ -0,0 +1,521 @@ +/* -*- mode: C; c-basic-offset: 4 -*- + * Drive Mount Applet + * Copyright (c) 2004 Canonical Ltd + * Copyright 2008 Pierre Ossman + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + * + * Author: + * James Henstridge <[email protected]> + */ + +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif + +#include <gio/gio.h> +#include "drive-list.h" +#include "drive-button.h" +#include <glib/gi18n.h> + +G_DEFINE_TYPE (DriveList, drive_list, GTK_TYPE_GRID); + +static GVolumeMonitor *volume_monitor = NULL; + +static void drive_list_finalize (GObject *object); +static void drive_list_dispose (GObject *object); +static void drive_list_add (GtkContainer *container, GtkWidget *child); +static void drive_list_remove (GtkContainer *container, GtkWidget *child); + +static void mount_added (GVolumeMonitor *monitor, GMount *mount, DriveList *self); +static void mount_changed (GVolumeMonitor *monitor, GMount *mount, DriveList *self); +static void mount_removed (GVolumeMonitor *monitor, GMount *mount, DriveList *self); +static void volume_added (GVolumeMonitor *monitor, GVolume *volume, DriveList *self); +static void volume_changed (GVolumeMonitor *monitor, GVolume *volume, DriveList *self); +static void volume_removed (GVolumeMonitor *monitor, GVolume *volume, DriveList *self); +static void add_volume (DriveList *self, GVolume *volume); +static void remove_volume (DriveList *self, GVolume *volume); +static void add_mount (DriveList *self, GMount *mount); +static void remove_mount (DriveList *self, GMount *mount); +static void queue_relayout (DriveList *self); + +static void +drive_list_class_init (DriveListClass *class) +{ + G_OBJECT_CLASS (class)->finalize = drive_list_finalize; + G_OBJECT_CLASS (class)->dispose = drive_list_dispose; + GTK_CONTAINER_CLASS (class)->add = drive_list_add; + GTK_CONTAINER_CLASS (class)->remove = drive_list_remove; +} + +static void +drive_list_init (DriveList *self) +{ + GList *volumes, *mounts, *tmp; + + gtk_grid_set_column_homogeneous (GTK_GRID (self), TRUE); + gtk_grid_set_row_homogeneous (GTK_GRID (self), TRUE); + + self->volumes = g_hash_table_new (NULL, NULL); + self->mounts = g_hash_table_new (NULL, NULL); + self->orientation = GTK_ORIENTATION_HORIZONTAL; + self->layout_tag = 0; + self->settings = g_settings_new ("org.mate.drivemount"); + self->icon_size = 24; + self->relief = GTK_RELIEF_NORMAL; + + g_signal_connect (self->settings, + "changed::drivemount-checkmark-color", + G_CALLBACK (settings_color_changed), + self); + + /* listen for drive connects/disconnects, and add + * currently connected drives. */ + self->count = 0; + if (!volume_monitor) + volume_monitor = g_volume_monitor_get (); + + g_signal_connect_object (volume_monitor, "mount-added", + G_CALLBACK (mount_added), self, 0); + g_signal_connect_object (volume_monitor, "mount-changed", + G_CALLBACK (mount_changed), self, 0); + g_signal_connect_object (volume_monitor, "mount-removed", + G_CALLBACK (mount_removed), self, 0); + g_signal_connect_object (volume_monitor, "volume-added", + G_CALLBACK (volume_added), self, 0); + g_signal_connect_object (volume_monitor, "volume-changed", + G_CALLBACK (volume_changed), self, 0); + g_signal_connect_object (volume_monitor, "volume-removed", + G_CALLBACK (volume_removed), self, 0); + volumes = g_volume_monitor_get_volumes (volume_monitor); + for (tmp = volumes; tmp != NULL; tmp = tmp->next) { + GVolume *volume = tmp->data; + add_volume (self, volume); + g_object_unref (volume); + self->count++; + } + g_list_free (volumes); + + mounts = g_volume_monitor_get_mounts (volume_monitor); + for (tmp = mounts; tmp != NULL; tmp = tmp->next) { + GMount *mount = tmp->data; + add_mount (self, mount); + g_object_unref (mount); + self->count++; + } + self->dummy = drive_button_new (NULL); + gtk_button_set_relief (GTK_BUTTON (self->dummy), self->relief); + drive_button_set_size (DRIVE_BUTTON (self->dummy), self->icon_size); + + if (self->count == 0) { + gtk_container_add (GTK_CONTAINER (self), self->dummy); + queue_relayout (self); + drive_button_queue_update (DRIVE_BUTTON (self->dummy)); + } + g_list_free (mounts); +} + +GtkWidget * +drive_list_new (void) +{ + return g_object_new (DRIVE_TYPE_LIST, NULL); +} + +static void +drive_list_finalize (GObject *object) +{ + DriveList *self = DRIVE_LIST (object); + + g_hash_table_destroy (self->volumes); + g_hash_table_destroy (self->mounts); + g_object_unref (self->settings); + + if (G_OBJECT_CLASS (drive_list_parent_class)->finalize) + (* G_OBJECT_CLASS (drive_list_parent_class)->finalize) (object); +} + +static void +drive_list_dispose (GObject *object) +{ + DriveList *self = DRIVE_LIST (object); + + g_signal_handlers_disconnect_by_func (volume_monitor, + G_CALLBACK (mount_added), self); + g_signal_handlers_disconnect_by_func (volume_monitor, + G_CALLBACK (mount_changed), self); + g_signal_handlers_disconnect_by_func (volume_monitor, + G_CALLBACK (mount_removed), self); + g_signal_handlers_disconnect_by_func (volume_monitor, + G_CALLBACK (volume_added), self); + g_signal_handlers_disconnect_by_func (volume_monitor, + G_CALLBACK (volume_changed), self); + g_signal_handlers_disconnect_by_func (volume_monitor, + G_CALLBACK (volume_removed), self); + + if (self->layout_tag) + g_source_remove (self->layout_tag); + self->layout_tag = 0; + + if (G_OBJECT_CLASS (drive_list_parent_class)->dispose) + (* G_OBJECT_CLASS (drive_list_parent_class)->dispose) (object); +} + +static void +drive_list_add (GtkContainer *container, + GtkWidget *child) +{ + DriveList *self; + DriveButton *button; + + g_return_if_fail (DRIVE_IS_LIST (container)); + g_return_if_fail (DRIVE_IS_BUTTON (child)); + + if (GTK_CONTAINER_CLASS (drive_list_parent_class)->add) + (* GTK_CONTAINER_CLASS (drive_list_parent_class)->add) (container, child); + + self = DRIVE_LIST (container); + button = DRIVE_BUTTON (child); + if (button->volume) + g_hash_table_insert (self->volumes, button->volume, button); + else + g_hash_table_insert (self->mounts, button->mount, button); +} + +static void +drive_list_remove (GtkContainer *container, + GtkWidget *child) +{ + DriveList *self; + DriveButton *button; + + g_return_if_fail (DRIVE_IS_LIST (container)); + g_return_if_fail (DRIVE_IS_BUTTON (child)); + + self = DRIVE_LIST (container); + button = DRIVE_BUTTON (child); + if (button->volume) + g_hash_table_remove (self->volumes, button->volume); + else + g_hash_table_remove (self->mounts, button->mount); + + if (GTK_CONTAINER_CLASS (drive_list_parent_class)->remove) + (* GTK_CONTAINER_CLASS (drive_list_parent_class)->remove) (container, child); +} + +static void +list_buttons (gpointer key, + gpointer value, + gpointer user_data) +{ + GtkWidget *button = value; + GList **sorted_buttons = user_data; + + *sorted_buttons = g_list_insert_sorted (*sorted_buttons, button, + (GCompareFunc)drive_button_compare); +} + +static gboolean +relayout_buttons (gpointer data) +{ + DriveList *self = DRIVE_LIST (data); + GList *sorted_buttons = NULL, *tmp; + int i = 0; + + self->layout_tag = 0; + if ( self->count > 0 ) { + g_hash_table_foreach (self->volumes, list_buttons, &sorted_buttons); + g_hash_table_foreach (self->mounts, list_buttons, &sorted_buttons); + + /* position buttons in the table according to their sorted order */ + for (tmp = sorted_buttons, i = 0; tmp != NULL; tmp = tmp->next, i++) { + GtkWidget *button = tmp->data; + + if (self->orientation == GTK_ORIENTATION_HORIZONTAL) { + gtk_container_child_set (GTK_CONTAINER (self), button, + "left-attach", i + 1, "top-attach", 0, + "width", 1, "height", 1, + NULL); + } + else { + gtk_container_child_set (GTK_CONTAINER (self), button, + "left-attach", 0, "top-attach", i + 1, + "width", 1, "height", 1, + NULL); + } + } + } + else { + gtk_widget_show (self->dummy); + if (self->orientation == GTK_ORIENTATION_HORIZONTAL) { + gtk_container_child_set (GTK_CONTAINER (self), self->dummy, + "left-attach", i + 1, "top-attach", 0, + "width", 1, "height", 1, + NULL); + } + else { + gtk_container_child_set (GTK_CONTAINER (self), self->dummy, + "left-attach", 0, "top-attach", i + 1, + "width", 1, "height", 1, + NULL); + } + } + return FALSE; +} + +static void +queue_relayout (DriveList *self) +{ + if (!self->layout_tag) { + self->layout_tag = g_idle_add (relayout_buttons, self); + } +} + +static void +mount_added (GVolumeMonitor *monitor, + GMount *mount, + DriveList *self) +{ + add_mount (self, mount); + self->count++; + if (self->count == 1) + gtk_container_remove (GTK_CONTAINER (self), g_object_ref (self->dummy)); + + mount_changed (monitor, mount, self); +} + +static void +mount_changed (GVolumeMonitor *monitor, + GMount *mount, + DriveList *self) +{ + GVolume *volume; + DriveButton *button = NULL;; + + volume = g_mount_get_volume (mount); + if (volume) { + button = g_hash_table_lookup (self->volumes, volume); + g_object_unref (volume); + } else { + button = g_hash_table_lookup (self->mounts, mount); + } + if (button) + drive_button_queue_update (button); +} + +static void +mount_removed (GVolumeMonitor *monitor, + GMount *mount, + DriveList *self) +{ + remove_mount (self, mount); + mount_changed (monitor, mount, self); + self->count--; + if (self->count == 0) { + gtk_container_add (GTK_CONTAINER (self), self->dummy); + queue_relayout (self); + } +} + +static void +volume_added (GVolumeMonitor *monitor, + GVolume *volume, + DriveList *self) +{ + add_volume (self, volume); + self->count++; + if (self->count == 1) + gtk_container_remove (GTK_CONTAINER (self), g_object_ref (self->dummy)); +} + +static void +volume_changed (GVolumeMonitor *monitor, + GVolume *volume, + DriveList *self) +{ + DriveButton *button = NULL;; + + button = g_hash_table_lookup (self->volumes, volume); + if (button) + drive_button_queue_update (button); +} + +static void +volume_removed (GVolumeMonitor *monitor, + GVolume *volume, + DriveList *self) +{ + remove_volume (self, volume); + self->count--; + if (self->count == 0) { + gtk_container_add (GTK_CONTAINER (self), self->dummy); + queue_relayout (self); + } +} + +static void +add_volume (DriveList *self, + GVolume *volume) +{ + GtkWidget *button; + + /* if the volume has already been added, return */ + if (g_hash_table_lookup (self->volumes, volume) != NULL) + return; + + button = drive_button_new (volume); + gtk_button_set_relief (GTK_BUTTON (button), self->relief); + drive_button_set_size (DRIVE_BUTTON (button), self->icon_size); + gtk_container_add (GTK_CONTAINER (self), button); + gtk_widget_show (button); + queue_relayout (self); +} + +static void +remove_volume (DriveList *self, + GVolume *volume) +{ + GtkWidget *button; + + /* if the volume has already been added, return */ + button = g_hash_table_lookup (self->volumes, volume); + if (button) { + gtk_container_remove (GTK_CONTAINER (self), button); + queue_relayout (self); + } +} + +static void +add_mount (DriveList *self, + GMount *mount) +{ + GtkWidget *button; + GVolume *volume; + + /* ignore mounts reported as shadowed */ + if (g_mount_is_shadowed (mount)) { + return; + } + + /* ignore mounts attached to a volume */ + volume = g_mount_get_volume (mount); + if (volume) { + g_object_unref (volume); + return; + } + + /* if the mount has already been added, return */ + if (g_hash_table_lookup (self->mounts, mount) != NULL) + return; + + button = drive_button_new_from_mount (mount); + gtk_button_set_relief (GTK_BUTTON (button), self->relief); + drive_button_set_size (DRIVE_BUTTON (button), self->icon_size); + gtk_container_add (GTK_CONTAINER (self), button); + gtk_widget_show (button); + queue_relayout (self); +} + +static void +remove_mount (DriveList *self, + GMount *mount) +{ + GtkWidget *button; + + /* if the mount has already been added, return */ + button = g_hash_table_lookup (self->mounts, mount); + if (button) { + gtk_container_remove (GTK_CONTAINER (self), button); + queue_relayout (self); + } +} + +void +drive_list_set_orientation (DriveList *self, + GtkOrientation orientation) +{ + g_return_if_fail (DRIVE_IS_LIST (self)); + + if (orientation != self->orientation) { + self->orientation = orientation; + queue_relayout (self); + } +} + +static void +set_icon_size (gpointer key, + gpointer value, + gpointer user_data) +{ + DriveButton *button = value; + DriveList *self = user_data; + + drive_button_set_size (button, self->icon_size); +} + +void +drive_list_set_panel_size (DriveList *self, + int panel_size) +{ + g_return_if_fail (DRIVE_IS_LIST (self)); + + if (self->icon_size != panel_size) { + self->icon_size = panel_size; + g_hash_table_foreach (self->volumes, set_icon_size, self); + g_hash_table_foreach (self->mounts, set_icon_size, self); + } +} + +void +drive_list_redraw (DriveList *self) +{ + g_hash_table_foreach (self->volumes, drive_button_redraw, self); + g_hash_table_foreach (self->mounts, drive_button_redraw, self); +} + +void +settings_color_changed (GSettings *settings, + gchar *key, + DriveList *drive_list) +{ + g_return_if_fail (DRIVE_IS_LIST (drive_list)); + drive_list_redraw (drive_list); +} + +static void +set_button_relief (gpointer key, + gpointer value, + gpointer user_data) +{ + GtkButton *button = value; + DriveList *self = user_data; + + gtk_button_set_relief (button, self->relief); +} + +void +drive_list_set_transparent (DriveList *self, + gboolean transparent) +{ + GtkReliefStyle relief; + + relief = transparent ? GTK_RELIEF_NONE : GTK_RELIEF_NORMAL; + + if (relief == self->relief) + return; + + self->relief = relief; + g_hash_table_foreach (self->volumes, set_button_relief, self); + g_hash_table_foreach (self->mounts, set_button_relief, self); +} diff --git a/drivemount/drive-list.h b/drivemount/src/drive-list.h index 96eb189a..e2da7333 100644 --- a/drivemount/drive-list.h +++ b/drivemount/src/drive-list.h @@ -62,11 +62,11 @@ struct _DriveListClass GType drive_list_get_type (void); GtkWidget *drive_list_new (void); void drive_list_set_orientation (DriveList *list, - GtkOrientation orientation); + GtkOrientation orientation); void drive_list_set_panel_size (DriveList *list, - int panel_size); + int panel_size); void drive_list_set_transparent (DriveList *self, - gboolean transparent); + gboolean transparent); void drive_list_redraw (DriveList *self); void settings_color_changed (GSettings *settings, gchar *key, DriveList *drive_list); diff --git a/drivemount/src/drivemount.c b/drivemount/src/drivemount.c new file mode 100644 index 00000000..408c7645 --- /dev/null +++ b/drivemount/src/drivemount.c @@ -0,0 +1,231 @@ +/* -*- mode: C; c-basic-offset: 4 -*- + * Drive Mount Applet + * Copyright (c) 2004 Canonical Ltd + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + * + * Author: + * James Henstridge <[email protected]> + */ + +#ifdef HAVE_CONFIG_H +# include <config.h> +#endif + +#include <string.h> + +#include <glib/gi18n.h> +#include <gtk/gtk.h> +#include <mate-panel-applet.h> + +#include "drive-list.h" + +static const char drivemount_iid[] = "DriveMountApplet"; +static const char factory_iid[] = "DriveMountAppletFactory"; + +static void +change_orient (MatePanelApplet *applet, + MatePanelAppletOrient o, + DriveList *drive_list) +{ + GtkOrientation orientation; + + switch (o) { + case MATE_PANEL_APPLET_ORIENT_LEFT: + case MATE_PANEL_APPLET_ORIENT_RIGHT: + orientation = GTK_ORIENTATION_VERTICAL; + break; + case MATE_PANEL_APPLET_ORIENT_UP: + case MATE_PANEL_APPLET_ORIENT_DOWN: + default: + orientation = GTK_ORIENTATION_HORIZONTAL; + } + drive_list_set_orientation (drive_list, orientation); +} + +static void +size_allocate (MatePanelApplet *applet, + GdkRectangle *allocation, + DriveList *drive_list) +{ + int size; + + switch (mate_panel_applet_get_orient (applet)) { + case MATE_PANEL_APPLET_ORIENT_LEFT: + case MATE_PANEL_APPLET_ORIENT_RIGHT: + size = allocation->width; + break; + case MATE_PANEL_APPLET_ORIENT_UP: + case MATE_PANEL_APPLET_ORIENT_DOWN: + default: + size = allocation->height; + } + drive_list_set_panel_size (drive_list, size); +} + +static void +change_background (MatePanelApplet *applet, + MatePanelAppletBackgroundType type, + GdkColor *colour, + cairo_pattern_t *pattern, + DriveList *drivelist) +{ + switch (type) { + case PANEL_NO_BACKGROUND: + drive_list_set_transparent (drivelist, FALSE); + break; + case PANEL_COLOR_BACKGROUND: + case PANEL_PIXMAP_BACKGROUND: + drive_list_set_transparent (drivelist, TRUE); + } +} + +static void +display_about_dialog (GtkAction *action, + DriveList *drive_list) +{ + const gchar *authors[] = { + "James Henstridge <[email protected]>", + NULL + }; + + const gchar *documenters[] = { + "Dan Mueth <[email protected]>", + "John Fleck <[email protected]>", + N_("MATE Documentation Team"), + NULL + }; + +#ifdef ENABLE_NLS + const char **p; + for (p = documenters; *p; ++p) + *p = _(*p); +#endif + + gtk_show_about_dialog (NULL, + "title", _("About Disk Mounter"), + "version", VERSION, + "copyright", _("Copyright \xC2\xA9 2004 Canonical Ltd\n" + "Copyright \xc2\xa9 2012-2021 MATE developers"), + "comments", _("Applet for mounting and unmounting block volumes."), + "authors", authors, + "documenters", documenters, + "translator-credits", _("translator-credits"), + "logo_icon_name", "media-floppy", + NULL); +} + +static void +display_help (GtkAction *action, + DriveList *drive_list) +{ + GdkScreen *screen; + GError *error = NULL; + + screen = gtk_widget_get_screen (GTK_WIDGET (drive_list)); + + gtk_show_uri_on_window (NULL, + "help:mate-drivemount", + gtk_get_current_event_time (), + &error); + + if (error) { + GtkWidget *dialog; + + dialog = gtk_message_dialog_new (NULL, + GTK_DIALOG_MODAL, + GTK_MESSAGE_ERROR, + GTK_BUTTONS_OK, + _("There was an error displaying help: %s"), + error->message); + g_signal_connect (dialog, "response", + G_CALLBACK (gtk_widget_destroy), NULL); + gtk_window_set_resizable (GTK_WINDOW (dialog), FALSE); + gtk_window_set_screen (GTK_WINDOW (dialog), screen); + gtk_widget_show (dialog); + g_error_free (error); + } +} + +static const GtkActionEntry applet_menu_actions[] = { + { "Help", "help-browser", N_("_Help"), + NULL, NULL, + G_CALLBACK (display_help) }, + { "About", "help-about", N_("_About"), + NULL, NULL, + G_CALLBACK (display_about_dialog) } +}; + +static gboolean +applet_factory (MatePanelApplet *applet, + const char *iid, + gpointer user_data) +{ + gboolean ret = FALSE; + GtkWidget *drive_list; + AtkObject *ao; + GtkActionGroup *action_group; + + if (!strcmp (iid, drivemount_iid)) { +#ifndef ENABLE_IN_PROCESS + g_set_application_name (_("Disk Mounter")); +#endif + + gtk_window_set_default_icon_name ("media-floppy"); + + mate_panel_applet_set_flags (applet, MATE_PANEL_APPLET_EXPAND_MINOR); + + drive_list = drive_list_new (); + + gtk_container_add (GTK_CONTAINER (applet), drive_list); + + g_signal_connect_object (applet, "change-orient", + G_CALLBACK (change_orient), drive_list, 0); + g_signal_connect_object (applet, "size-allocate", + G_CALLBACK (size_allocate), drive_list, 0); + g_signal_connect (applet, "change-background", + G_CALLBACK (change_background), drive_list); + + /* set initial state */ + change_orient (applet, + mate_panel_applet_get_orient (applet), + DRIVE_LIST (drive_list)); + + action_group = gtk_action_group_new ("DriveMount Applet Actions"); + gtk_action_group_set_translation_domain (action_group, GETTEXT_PACKAGE); + gtk_action_group_add_actions (action_group, + applet_menu_actions, + G_N_ELEMENTS (applet_menu_actions), + drive_list); + mate_panel_applet_setup_menu_from_resource (applet, + DRIVEMOUNT_RESOURCE_PATH "drivemount-applet-menu.xml", + action_group); + g_object_unref (action_group); + + ao = gtk_widget_get_accessible (GTK_WIDGET (applet)); + atk_object_set_name (ao, _("Disk Mounter")); + + gtk_widget_show_all (GTK_WIDGET (applet)); + + ret = TRUE; + } + + return ret; +} + +PANEL_APPLET_FACTORY (factory_iid, + PANEL_TYPE_APPLET, + "Drive-Mount-Applet", + applet_factory, NULL) |