From 9516bdbda58b537c5fc807c587f4c85935cb3adb Mon Sep 17 00:00:00 2001 From: CentOS Sources Date: Oct 30 2018 05:29:08 +0000 Subject: import nautilus-3.26.3.1-2.el7 --- diff --git a/.gitignore b/.gitignore index edf7b1f..42332d4 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1 @@ -SOURCES/nautilus-3.22.3.tar.xz +SOURCES/nautilus-3.26.3.1.tar.xz diff --git a/.nautilus.metadata b/.nautilus.metadata index 0204667..6ad7213 100644 --- a/.nautilus.metadata +++ b/.nautilus.metadata @@ -1 +1 @@ -b3ba6c79d90ca6c875503a33b635f598ff7790e4 SOURCES/nautilus-3.22.3.tar.xz +fe2da20b4a487b4959ca840bb477e254086f4035 SOURCES/nautilus-3.26.3.1.tar.xz diff --git a/SOURCES/0001-Meson-Make-sure-__GNU_SOURCE-is-set.patch b/SOURCES/0001-Meson-Make-sure-__GNU_SOURCE-is-set.patch new file mode 100644 index 0000000..968129d --- /dev/null +++ b/SOURCES/0001-Meson-Make-sure-__GNU_SOURCE-is-set.patch @@ -0,0 +1,50 @@ +From 0cc6b39e0447560668370832e10090f6f9068473 Mon Sep 17 00:00:00 2001 +From: Carlos Soriano +Date: Fri, 8 Jun 2018 19:03:09 +0200 +Subject: [PATCH] Meson: Make sure __GNU_SOURCE is set + +Otherwise the build fails in some systems like RHEL. +--- + meson.build | 3 +++ + src/nautilus-file.c | 4 ++++ + 2 files changed, 7 insertions(+) + +diff --git a/meson.build b/meson.build +index e3e6875d7..db648eb50 100644 +--- a/meson.build ++++ b/meson.build +@@ -5,6 +5,7 @@ project ('nautilus', 'c', + license: 'GPL3+') + + add_global_arguments ('-Wno-deprecated-declarations', language:'c') ++add_project_arguments('-D_GNU_SOURCE', language: 'c') + + bindir = get_option ('bindir') + datadir = get_option ('datadir') +@@ -80,6 +81,8 @@ if get_option ('enable-selinux') + conf.set10 ('HAVE_SELINUX', true) + endif + ++conf.set10('_GNU_SOURCE', true) ++ + tracker_sparql = dependency ('tracker-sparql-2.0', required: false) + if not tracker_sparql.found() + tracker_sparql = dependency ('tracker-sparql-1.0') +diff --git a/src/nautilus-file.c b/src/nautilus-file.c +index 053158cb6..1968bf277 100644 +--- a/src/nautilus-file.c ++++ b/src/nautilus-file.c +@@ -19,6 +19,10 @@ + * Author: Darin Adler + */ + ++#ifndef _GNU_SOURCE ++# define _GNU_SOURCE 1 ++#endif ++ + #include + #include "nautilus-file.h" + +-- +2.17.1 + diff --git a/SOURCES/0001-file-Make-sure-we-include-necessary-headers.patch b/SOURCES/0001-file-Make-sure-we-include-necessary-headers.patch new file mode 100644 index 0000000..6d71bdb --- /dev/null +++ b/SOURCES/0001-file-Make-sure-we-include-necessary-headers.patch @@ -0,0 +1,29 @@ +From 408e968d8a3382284909ffe66c0d5a62c9e5f1c0 Mon Sep 17 00:00:00 2001 +From: Carlos Soriano +Date: Fri, 8 Jun 2018 17:22:23 +0200 +Subject: [PATCH 1/2] file: Make sure we include necessary headers + +setpwent is used but we didn't include the necessary headers. + +It was building in Fedora because some other header included it, +but that's not the case in RHEL. +--- + src/nautilus-file.c | 2 ++ + 1 file changed, 2 insertions(+) + +diff --git a/src/nautilus-file.c b/src/nautilus-file.c +index cff660f1f..053158cb6 100644 +--- a/src/nautilus-file.c ++++ b/src/nautilus-file.c +@@ -55,6 +55,8 @@ + #include + #include + #include ++#include ++#include + #include + #include + #include +-- +2.17.1 + diff --git a/SOURCES/0001-general-remove-gnome-autoar.patch b/SOURCES/0001-general-remove-gnome-autoar.patch index 625c31e..0be1bff 100644 --- a/SOURCES/0001-general-remove-gnome-autoar.patch +++ b/SOURCES/0001-general-remove-gnome-autoar.patch @@ -1,47 +1,50 @@ -From 889ca37501afaca5945f41fcd67bd9f0a4b6c19d Mon Sep 17 00:00:00 2001 +From c5fbd2427753add9f05cc87d0f25789cce37b2e2 Mon Sep 17 00:00:00 2001 From: Carlos Soriano -Date: Fri, 3 Mar 2017 19:52:06 +0100 -Subject: [PATCH] general: remove gnome-autoar +Date: Wed, 6 Jun 2018 14:59:39 +0200 +Subject: [PATCH] Remove autoar --- - configure.ac | 2 - - po/POTFILES.in | 2 - - src/Makefile.am | 2 - - src/nautilus-compress-dialog-controller.c | 339 -------------- - src/nautilus-compress-dialog-controller.h | 36 -- - src/nautilus-file-operations.c | 753 ------------------------------ - src/nautilus-file-operations.h | 16 - - src/nautilus-file-undo-operations.c | 319 ------------- - src/nautilus-file-undo-operations.h | 58 --- - src/nautilus-file.c | 38 +- - src/nautilus-files-view.c | 616 +----------------------- - src/nautilus-mime-actions.c | 23 +- - 12 files changed, 36 insertions(+), 2168 deletions(-) + meson.build | 2 - + po/POTFILES.in | 4 +- + src/meson.build | 5 +- + src/nautilus-compress-dialog-controller.c | 339 -------- + src/nautilus-compress-dialog-controller.h | 36 - + src/nautilus-file-operations.c | 857 ------------------- + src/nautilus-file-operations.h | 14 - + src/nautilus-file-undo-operations.c | 320 ------- + src/nautilus-file-undo-operations.h | 58 -- + src/nautilus-file.c | 38 +- + src/nautilus-files-view.c | 636 +------------- + src/nautilus-mime-actions.c | 28 - + src/resources/nautilus.gresource.xml | 1 - + src/resources/ui/nautilus-compress-dialog.ui | 186 ---- + 14 files changed, 37 insertions(+), 2487 deletions(-) delete mode 100644 src/nautilus-compress-dialog-controller.c delete mode 100644 src/nautilus-compress-dialog-controller.h + delete mode 100644 src/resources/ui/nautilus-compress-dialog.ui -diff --git a/configure.ac b/configure.ac -index 83c7c7d84..acd095bb9 100644 ---- a/configure.ac -+++ b/configure.ac -@@ -11,7 +11,6 @@ m4_define(exif_minver, 0.6.20) - m4_define(exempi_minver, 2.1.0) - m4_define(notify_minver, 0.7.0) - m4_define(schemas_minver, 3.8.0) --m4_define(autoar_minver, 0.1) +diff --git a/meson.build b/meson.build +index 6256193cc..7a450292d 100644 +--- a/meson.build ++++ b/meson.build +@@ -29,7 +29,6 @@ exif_ver = '>=0.6.20' + exempi_ver = '>=2.1.0' + notify_ver = '0.7.0' + schemas_ver = '>=3.8.0' +-autoar_ver = '>=0.2.1' + selinux_ver = '>=2.0' - dnl 1. If the library code has changed at all since last release, then increment revision. - dnl 2. If any interfaces have been added, then increment current and set revision to 0. -@@ -269,7 +268,6 @@ dnl base libs - PKG_CHECK_MODULES(BASE, [ - gtk+-3.0 >= gtk_minver - glib-2.0 >= glib_minver -- gnome-autoar-0 >= autoar_minver - ]) + cc = meson.get_compiler ('c') +@@ -39,7 +38,6 @@ i18n = import ('i18n') - dnl common libs (eel, nautilus) + glib = dependency ('glib-2.0', version: glib_ver) + gtk = dependency ('gtk+-3.0', version: gtk_ver) +-autoar = dependency ('gnome-autoar-0', version: autoar_ver) + + gail = dependency ('gail-3.0') + gnome_desktop = dependency ('gnome-desktop-3.0', version: gnome_desktop_ver) diff --git a/po/POTFILES.in b/po/POTFILES.in -index 8647562f0..6530f6ed4 100644 +index 277a7ff0a..fbc896866 100644 --- a/po/POTFILES.in +++ b/po/POTFILES.in @@ -32,7 +32,6 @@ src/nautilus-canvas-view-container.c @@ -60,19 +63,41 @@ index 8647562f0..6530f6ed4 100644 src/resources/ui/nautilus-create-folder-dialog.ui src/resources/ui/nautilus-files-view-context-menus.ui src/resources/ui/nautilus-folder-is-empty.ui -diff --git a/src/Makefile.am b/src/Makefile.am -index 562af23f8..2ece291bd 100644 ---- a/src/Makefile.am -+++ b/src/Makefile.am -@@ -257,8 +257,6 @@ nautilus_no_main_sources = \ - nautilus-rename-file-popover-controller.h \ - nautilus-new-folder-dialog-controller.c \ - nautilus-new-folder-dialog-controller.h \ -- nautilus-compress-dialog-controller.c \ -- nautilus-compress-dialog-controller.h \ - nautilus-operations-ui-manager.c \ - nautilus-operations-ui-manager.h \ - nautilus-file-operations.c \ +@@ -100,4 +98,4 @@ src/resources/ui/nautilus-window.ui + src/gtk/nautilusgtkplacesview.c + src/gtk/nautilusgtkplacesviewrow.c + src/gtk/nautilusgtkplacesviewrow.ui +-src/gtk/nautilusgtkplacesview.ui ++src/gtk/nautilusgtkplacesview.ui +\ No newline at end of file +diff --git a/src/meson.build b/src/meson.build +index cc08345d8..e83190d25 100644 +--- a/src/meson.build ++++ b/src/meson.build +@@ -176,8 +176,6 @@ libnautilus_sources = [ + 'nautilus-rename-file-popover-controller.h', + 'nautilus-new-folder-dialog-controller.c', + 'nautilus-new-folder-dialog-controller.h', +- 'nautilus-compress-dialog-controller.c', +- 'nautilus-compress-dialog-controller.h', + 'nautilus-operations-ui-manager.c', + 'nautilus-operations-ui-manager.h', + 'nautilus-file-operations.c', +@@ -264,7 +262,6 @@ libnautilus_sources = [ + + nautilus_deps = [glib, + gtk, +- autoar, + xml, + gsettings_desktop_schemas, + libgd_dep, +@@ -312,4 +309,4 @@ test ('nautilus', nautilus, args: ['--check', '--g-fatal-warnings']) + nautilus_autorun_software = executable ('nautilus-autorun-software', + 'nautilus-autorun-software.c', + dependencies: libnautilus_dep, +- install: true) ++ install: true) +\ No newline at end of file diff --git a/src/nautilus-compress-dialog-controller.c b/src/nautilus-compress-dialog-controller.c deleted file mode 100644 index 3937181a8..000000000 @@ -461,7 +486,7 @@ index bb89413f1..000000000 - -#endif /* NAUTILUS_COMPRESS_DIALOG_CONTROLLER_H */ diff --git a/src/nautilus-file-operations.c b/src/nautilus-file-operations.c -index fd35faf3f..728a80df8 100644 +index 546acf835..5bcb4e357 100644 --- a/src/nautilus-file-operations.c +++ b/src/nautilus-file-operations.c @@ -160,7 +160,6 @@ typedef enum @@ -513,31 +538,31 @@ index fd35faf3f..728a80df8 100644 #define SECONDS_NEEDED_FOR_RELIABLE_TRANSFER_RATE 8 #define NSEC_PER_MICROSEC 1000 #define PROGRESS_NOTIFY_INTERVAL 100 * NSEC_PER_MICROSEC -@@ -3083,12 +3048,6 @@ report_preparing_count_progress (CommonJob *job, - source_info->num_files); - } - break; +@@ -3037,12 +3002,6 @@ report_preparing_count_progress (CommonJob *job, + source_info->num_files); + } + break; - - case OP_KIND_COMPRESS: -- s = f (ngettext ("Preparing to compress %'d file", -- "Preparing to compress %'d files", -- source_info->num_files), -- source_info->num_files); +- s = g_strdup_printf (ngettext ("Preparing to compress %'d file", +- "Preparing to compress %'d files", +- source_info->num_files), +- source_info->num_files); } nautilus_progress_info_take_details (job->progress, s); -@@ -3135,9 +3094,6 @@ get_scan_primary (OpKind kind) - { - return f (_("Error while moving files to trash.")); - } +@@ -3089,9 +3048,6 @@ get_scan_primary (OpKind kind) + { + return g_strdup (_("Error while moving files to trash.")); + } - - case OP_KIND_COMPRESS: -- return f (_("Error while compressing files.")); +- return g_strdup (_("Error while compressing files.")); } } -@@ -8141,715 +8097,6 @@ nautilus_file_mark_desktop_file_trusted (GFile *file, - g_object_unref (task); +@@ -8034,819 +7990,6 @@ nautilus_file_mark_desktop_file_executable (GFile *file, + g_task_run_in_thread (task, mark_desktop_file_executable_task_thread_func); } -static void @@ -611,11 +636,16 @@ index fd35faf3f..728a80df8 100644 - gdouble archive_decompress_progress; - guint64 job_completed_size; - gdouble job_progress; +- g_autofree gchar *basename = NULL; +- g_autofree gchar *formatted_size_job_completed_size = NULL; +- g_autofree gchar *formatted_size_total_compressed_size = NULL; - - source_file = autoar_extractor_get_source_file (extractor); - +- basename = get_basename (source_file); - nautilus_progress_info_take_status (common->progress, -- f (_("Extracting “%B”"), source_file)); +- g_strdup_printf (_("Extracting “%s”"), +- basename)); - - archive_total_decompressed_size = autoar_extractor_get_total_size (extractor); - @@ -648,30 +678,39 @@ index fd35faf3f..728a80df8 100644 - transfer_rate; - } - +- formatted_size_job_completed_size = g_format_size (job_completed_size); +- formatted_size_total_compressed_size = g_format_size (extract_job->total_compressed_size); - if (elapsed < SECONDS_NEEDED_FOR_RELIABLE_TRANSFER_RATE || - transfer_rate == 0) - { -- /* To translators: %S will expand to a size like "2 bytes" or +- /* To translators: %s will expand to a size like "2 bytes" or - * "3 MB", so something like "4 kb / 4 MB" - */ -- details = f (_("%S / %S"), job_completed_size, extract_job->total_compressed_size); +- details = g_strdup_printf (_("%s / %s"), formatted_size_job_completed_size, +- formatted_size_total_compressed_size); - } - else - { -- /* To translators: %S will expand to a size like "2 bytes" or -- * "3 MB", %T to a time duration like "2 minutes". So the whole +- g_autofree gchar *formatted_time = NULL; +- g_autofree gchar *formatted_size_transfer_rate = NULL; +- +- formatted_time = get_formatted_time (remaining_time); +- formatted_size_transfer_rate = g_format_size ((goffset) transfer_rate); +- /* To translators: %s will expand to a size like "2 bytes" or +- * "3 MB", %s to a time duration like "2 minutes". So the whole - * thing will be something like - * "2 kb / 4 MB -- 2 hours left (4kb/sec)" - * - * The singular/plural form will be used depending on the -- * remaining time (i.e. the %T argument). +- * remaining time (i.e. the %s argument). - */ -- details = f (ngettext ("%S / %S \xE2\x80\x94 %T left (%S/sec)", -- "%S / %S \xE2\x80\x94 %T left (%S/sec)", -- seconds_count_format_time_units (remaining_time)), -- job_completed_size, extract_job->total_compressed_size, -- remaining_time, -- (goffset) transfer_rate); +- details = g_strdup_printf (ngettext ("%s / %s \xE2\x80\x94 %s left (%s/sec)", +- "%s / %s \xE2\x80\x94 %s left (%s/sec)", +- seconds_count_format_time_units (remaining_time)), +- formatted_size_job_completed_size, +- formatted_size_total_compressed_size, +- formatted_time, +- formatted_size_transfer_rate); - } - - nautilus_progress_info_take_details (common->progress, details); @@ -695,6 +734,7 @@ index fd35faf3f..728a80df8 100644 - ExtractJob *extract_job = user_data; - GFile *source_file; - gint response_id; +- g_autofree gchar *basename = NULL; - - source_file = autoar_extractor_get_source_file (extractor); - @@ -706,13 +746,14 @@ index fd35faf3f..728a80df8 100644 - return; - } - +- basename = get_basename (source_file); - nautilus_progress_info_take_status (extract_job->common.progress, -- f (_("Error extracting “%B”"), -- source_file)); +- g_strdup_printf (_("Error extracting “%s”"), +- basename)); - - response_id = run_warning ((CommonJob *) extract_job, -- f (_("There was an error while extracting “%B”."), -- source_file), +- g_strdup_printf (_("There was an error while extracting “%s”."), +- basename), - g_strdup (error->message), - NULL, - FALSE, @@ -739,38 +780,89 @@ index fd35faf3f..728a80df8 100644 -} - -static void +-extract_job_on_scanned (AutoarExtractor *extractor, +- guint total_files, +- gpointer user_data) +-{ +- guint64 total_size; +- ExtractJob *extract_job; +- GFile *source_file; +- g_autofree gchar *basename; +- GFileInfo *fsinfo; +- guint64 free_size; +- +- extract_job = user_data; +- total_size = autoar_extractor_get_total_size (extractor); +- source_file = autoar_extractor_get_source_file (extractor); +- basename = get_basename (source_file); +- +- fsinfo = g_file_query_filesystem_info (source_file, +- G_FILE_ATTRIBUTE_FILESYSTEM_FREE "," +- G_FILE_ATTRIBUTE_FILESYSTEM_READONLY, +- extract_job->common.cancellable, +- NULL); +- free_size = g_file_info_get_attribute_uint64 (fsinfo, +- G_FILE_ATTRIBUTE_FILESYSTEM_FREE); +- +- /* FIXME: G_MAXUINT64 is the value used by autoar when the file size cannot +- * be determined. Ideally an API should be used instead. +- */ +- if (total_size != G_MAXUINT64 && total_size > free_size ) +- { +- nautilus_progress_info_take_status (extract_job->common.progress, +- g_strdup_printf (_("Error extracting “%s”"), +- basename)); +- run_error (&extract_job->common, +- g_strdup_printf (_("Not enough free space to extract %s"),basename), +- NULL, +- NULL, +- FALSE, +- CANCEL, +- NULL); +- +- abort_job ((CommonJob *) extract_job); +- } +-} +- +-static void -report_extract_final_progress (ExtractJob *extract_job, - gint total_files) -{ - char *status; +- g_autofree gchar *basename_dest = NULL; +- g_autofree gchar *formatted_size = NULL; - - nautilus_progress_info_set_destination (extract_job->common.progress, - extract_job->destination_directory); +- basename_dest = get_basename (extract_job->destination_directory); - - if (total_files == 1) - { - GFile *source_file; +- g_autofree gchar * basename = NULL; - - source_file = G_FILE (extract_job->source_files->data); -- status = f (_("Extracted “%B” to “%B”"), -- source_file, -- extract_job->destination_directory); +- basename = get_basename (source_file); +- status = g_strdup_printf (_("Extracted “%s” to “%s”"), +- basename, +- basename_dest); - } - else - { -- status = f (ngettext ("Extracted %'d file to “%B”", -- "Extracted %'d files to “%B”", -- total_files), -- total_files, -- extract_job->destination_directory); +- status = g_strdup_printf (ngettext ("Extracted %'d file to “%s”", +- "Extracted %'d files to “%s”", +- total_files), +- total_files, +- basename_dest); - } - - nautilus_progress_info_take_status (extract_job->common.progress, - status); +- formatted_size = g_format_size (extract_job->total_compressed_size); - nautilus_progress_info_take_details (extract_job->common.progress, -- f (_("%S / %S"), -- extract_job->total_compressed_size, -- extract_job->total_compressed_size)); +- g_strdup_printf (_("%s / %s"), +- formatted_size, +- formatted_size)); -} - -static void @@ -832,7 +924,9 @@ index fd35faf3f..728a80df8 100644 - - autoar_extractor_set_notify_interval (extractor, - PROGRESS_NOTIFY_INTERVAL); -- +- g_signal_connect (extractor, "scanned", +- G_CALLBACK (extract_job_on_scanned), +- extract_job); - g_signal_connect (extractor, "error", - G_CALLBACK (extract_job_on_error), - extract_job); @@ -967,24 +1061,27 @@ index fd35faf3f..728a80df8 100644 - double elapsed; - double transfer_rate; - int remaining_time; +- g_autofree gchar *basename_output_file = NULL; - - files_left = compress_job->total_files - completed_files; -- +- basename_output_file = get_basename (compress_job->output_file); - if (compress_job->total_files == 1) - { -- status = f (_("Compressing “%B” into “%B”"), -- G_FILE (compress_job->source_files->data), -- compress_job->output_file); +- g_autofree gchar *basename_data = NULL; +- +- basename_data = get_basename (G_FILE (compress_job->source_files->data)); +- status = g_strdup_printf (_("Compressing “%s” into “%s”"), +- basename_data, +- basename_output_file); - } - else - { -- status = f (ngettext ("Compressing %'d file into “%B”", -- "Compressing %'d files into “%B”", -- compress_job->total_files), -- compress_job->total_files, -- compress_job->output_file); +- status = g_strdup_printf (ngettext ("Compressing %'d file into “%s”", +- "Compressing %'d files into “%s”", +- compress_job->total_files), +- compress_job->total_files, +- basename_output_file); - } -- - nautilus_progress_info_take_status (common->progress, status); - - elapsed = g_timer_elapsed (common->time, NULL); @@ -1011,65 +1108,88 @@ index fd35faf3f..728a80df8 100644 - { - if (compress_job->total_files == 1) - { -- /* To translators: %S will expand to a size like "2 bytes" or "3 MB", so something like "4 kb / 4 MB" */ -- details = f (_("%S / %S"), completed_size, compress_job->total_size); +- g_autofree gchar *formatted_size_completed_size = NULL; +- g_autofree gchar *formatted_size_total_size = NULL; +- +- formatted_size_completed_size = g_format_size (completed_size); +- formatted_size_total_size = g_format_size (compress_job->total_size); +- /* To translators: %s will expand to a size like "2 bytes" or "3 MB", so something like "4 kb / 4 MB" */ +- details = g_strdup_printf (_("%s / %s"), formatted_size_completed_size, +- formatted_size_total_size); - } - else - { -- details = f (_("%'d / %'d"), -- files_left > 0 ? completed_files + 1 : completed_files, -- compress_job->total_files); +- details = g_strdup_printf (_("%'d / %'d"), +- files_left > 0 ? completed_files + 1 : completed_files, +- compress_job->total_files); - } - } - else - { - if (compress_job->total_files == 1) - { +- g_autofree gchar *formatted_size_completed_size = NULL; +- g_autofree gchar *formatted_size_total_size = NULL; +- +- formatted_size_completed_size = g_format_size (completed_size); +- formatted_size_total_size = g_format_size (compress_job->total_size); +- - if (files_left > 0) - { -- /* To translators: %S will expand to a size like "2 bytes" or "3 MB", %T to a time duration like +- g_autofree gchar *formatted_time = NULL; +- g_autofree gchar *formatted_size_transfer_rate = NULL; +- +- formatted_time = get_formatted_time (remaining_time); +- formatted_size_transfer_rate = g_format_size ((goffset) transfer_rate); +- /* To translators: %s will expand to a size like "2 bytes" or "3 MB", %s to a time duration like - * "2 minutes". So the whole thing will be something like "2 kb / 4 MB -- 2 hours left (4kb/sec)" - * -- * The singular/plural form will be used depending on the remaining time (i.e. the %T argument). +- * The singular/plural form will be used depending on the remaining time (i.e. the %s argument). - */ -- details = f (ngettext ("%S / %S \xE2\x80\x94 %T left (%S/sec)", -- "%S / %S \xE2\x80\x94 %T left (%S/sec)", -- seconds_count_format_time_units (remaining_time)), -- completed_size, compress_job->total_size, -- remaining_time, -- (goffset) transfer_rate); +- details = g_strdup_printf (ngettext ("%s / %s \xE2\x80\x94 %s left (%s/sec)", +- "%s / %s \xE2\x80\x94 %s left (%s/sec)", +- seconds_count_format_time_units (remaining_time)), +- formatted_size_completed_size, +- formatted_size_total_size, +- formatted_time, +- formatted_size_transfer_rate); - } - else - { -- /* To translators: %S will expand to a size like "2 bytes" or "3 MB". */ -- details = f (_("%S / %S"), -- completed_size, -- compress_job->total_size); +- /* To translators: %s will expand to a size like "2 bytes" or "3 MB". */ +- details = g_strdup_printf (_("%s / %s"), +- formatted_size_completed_size, +- formatted_size_total_size); - } - } - else - { - if (files_left > 0) - { -- /* To translators: %T will expand to a time duration like "2 minutes". +- g_autofree gchar *formatted_time = NULL; +- g_autofree gchar *formatted_size = NULL; +- +- formatted_time = get_formatted_time (remaining_time); +- formatted_size = g_format_size ((goffset) transfer_rate); +- /* To translators: %s will expand to a time duration like "2 minutes". - * So the whole thing will be something like "1 / 5 -- 2 hours left (4kb/sec)" - * -- * The singular/plural form will be used depending on the remaining time (i.e. the %T argument). +- * The singular/plural form will be used depending on the remaining time (i.e. the %s argument). - */ -- details = f (ngettext ("%'d / %'d \xE2\x80\x94 %T left (%S/sec)", -- "%'d / %'d \xE2\x80\x94 %T left (%S/sec)", -- seconds_count_format_time_units (remaining_time)), -- completed_files + 1, compress_job->total_files, -- remaining_time, -- (goffset) transfer_rate); +- details = g_strdup_printf (ngettext ("%'d / %'d \xE2\x80\x94 %s left (%s/sec)", +- "%'d / %'d \xE2\x80\x94 %s left (%s/sec)", +- seconds_count_format_time_units (remaining_time)), +- completed_files + 1, compress_job->total_files, +- formatted_time, +- formatted_size); - } - else - { - /* To translators: %'d is the number of files completed for the operation, - * so it will be something like 2/14. */ -- details = f (_("%'d / %'d"), -- completed_files, -- compress_job->total_files); +- details = g_strdup_printf (_("%'d / %'d"), +- completed_files, +- compress_job->total_files); - } - } - } @@ -1096,22 +1216,26 @@ index fd35faf3f..728a80df8 100644 -{ - CompressJob *compress_job = user_data; - char *status; +- g_autofree gchar *basename_output_file = NULL; - +- basename_output_file = get_basename (compress_job->output_file); - if (compress_job->total_files == 1) - { -- status = f (_("Error compressing “%B” into “%B”"), -- G_FILE (compress_job->source_files->data), -- compress_job->output_file); +- g_autofree gchar *basename_data = NULL; +- +- basename_data = get_basename (G_FILE (compress_job->source_files->data)); +- status = g_strdup_printf (_("Error compressing “%s” into “%s”"), +- basename_data, +- basename_output_file); - } - else - { -- status = f (ngettext ("Error compressing %'d file into “%B”", -- "Error compressing %'d files into “%B”", -- compress_job->total_files), -- compress_job->total_files, -- compress_job->output_file); +- status = g_strdup_printf (ngettext ("Error compressing %'d file into “%s”", +- "Error compressing %'d files into “%s”", +- compress_job->total_files), +- compress_job->total_files, +- basename_output_file); - } -- - nautilus_progress_info_take_status (compress_job->common.progress, - status); - @@ -1133,20 +1257,25 @@ index fd35faf3f..728a80df8 100644 - CompressJob *compress_job = user_data; - g_autoptr (GFile) destination_directory = NULL; - char *status; +- g_autofree gchar *basename_output_file = NULL; - +- basename_output_file = get_basename (compress_job->output_file); - if (compress_job->total_files == 1) - { -- status = f (_("Compressed “%B” into “%B”"), -- G_FILE (compress_job->source_files->data), -- compress_job->output_file); +- g_autofree gchar *basename_data = NULL; +- +- basename_data = get_basename (G_FILE (compress_job->source_files->data)); +- status = g_strdup_printf (_("Compressed “%s” into “%s”"), +- basename_data, +- basename_output_file); - } - else - { -- status = f (ngettext ("Compressed %'d file into “%B”", -- "Compressed %'d files into “%B”", -- compress_job->total_files), -- compress_job->total_files, -- compress_job->output_file); +- status = g_strdup_printf (ngettext ("Compressed %'d file into “%s”", +- "Compressed %'d files into “%s”", +- compress_job->total_files), +- compress_job->total_files, +- basename_output_file); - } - - nautilus_progress_info_take_status (compress_job->common.progress, @@ -1253,7 +1382,7 @@ index fd35faf3f..728a80df8 100644 void diff --git a/src/nautilus-file-operations.h b/src/nautilus-file-operations.h -index 31b782dba..7b8e7ad68 100644 +index a479ee6e0..4d3c4547e 100644 --- a/src/nautilus-file-operations.h +++ b/src/nautilus-file-operations.h @@ -26,7 +26,6 @@ @@ -1264,19 +1393,10 @@ index 31b782dba..7b8e7ad68 100644 #define SECONDS_NEEDED_FOR_APROXIMATE_TRANSFER_RATE 1 -@@ -46,8 +45,6 @@ typedef void (* NautilusMountCallback) (GVolume *volume, - gboolean success, - GObject *callback_data_object); - typedef void (* NautilusUnmountCallback) (gpointer callback_data); --typedef void (* NautilusExtractCallback) (GList *outputs, -- gpointer callback_data); - - /* FIXME: int copy_action should be an enum */ - -@@ -151,18 +148,5 @@ void nautilus_file_mark_desktop_file_trusted (GFile *file, - gboolean interactive, - NautilusOpCallback done_callback, - gpointer done_callback_data); +@@ -151,18 +150,5 @@ void nautilus_file_mark_desktop_file_executable (GFile *file, + gboolean interactive, + NautilusOpCallback done_callback, + gpointer done_callback_data); -void nautilus_file_operations_extract_files (GList *files, - GFile *destination_directory, - GtkWindow *parent_window, @@ -1293,13 +1413,14 @@ index 31b782dba..7b8e7ad68 100644 #endif /* NAUTILUS_FILE_OPERATIONS_H */ diff --git a/src/nautilus-file-undo-operations.c b/src/nautilus-file-undo-operations.c -index 8005b92b6..2223d91f5 100644 +index e833d0578..956cd9b55 100644 --- a/src/nautilus-file-undo-operations.c +++ b/src/nautilus-file-undo-operations.c -@@ -2037,322 +2037,3 @@ nautilus_file_undo_info_ownership_new (NautilusFileUndoOp op_type, +@@ -2032,323 +2032,3 @@ nautilus_file_undo_info_ownership_new (NautilusFileUndoOp op_type, + return NAUTILUS_FILE_UNDO_INFO (retval); } - +- -/* extract */ -G_DEFINE_TYPE (NautilusFileUndoInfoExtract, nautilus_file_undo_info_extract, NAUTILUS_TYPE_FILE_UNDO_INFO) - @@ -1349,7 +1470,7 @@ index 8005b92b6..2223d91f5 100644 - output = self->priv->outputs->data; - name = g_file_get_parse_name (output); - -- *undo_description = g_strdup_printf (_("Delete '%s'"), name); +- *undo_description = g_strdup_printf (_("Delete “%s”"), name); - } - else - { @@ -1367,7 +1488,7 @@ index 8005b92b6..2223d91f5 100644 - source = self->priv->sources->data; - name = g_file_get_parse_name (source); - -- *redo_description = g_strdup_printf (_("Extract '%s'"), name); +- *redo_description = g_strdup_printf (_("Extract “%s”"), name); - } - else - { @@ -1511,7 +1632,7 @@ index 8005b92b6..2223d91f5 100644 - gint sources_count; - - output_name = g_file_get_parse_name (self->priv->output); -- *undo_description = g_strdup_printf (_("Delete '%s'"), output_name); +- *undo_description = g_strdup_printf (_("Delete “%s”"), output_name); - - sources_count = g_list_length (self->priv->sources); - if (sources_count == 1) @@ -1522,7 +1643,7 @@ index 8005b92b6..2223d91f5 100644 - source = self->priv->sources->data; - source_name = g_file_get_parse_name (source); - -- *redo_description = g_strdup_printf (_("Compress '%s'"), source_name); +- *redo_description = g_strdup_printf (_("Compress “%s”"), source_name); - } - else - { @@ -1701,7 +1822,7 @@ index 630443f10..8a153c32d 100644 - #endif /* __NAUTILUS_FILE_UNDO_OPERATIONS_H__ */ diff --git a/src/nautilus-file.c b/src/nautilus-file.c -index bb7948da0..d7df1d9fc 100644 +index 1657edcde..cff660f1f 100644 --- a/src/nautilus-file.c +++ b/src/nautilus-file.c @@ -51,7 +51,6 @@ @@ -1712,7 +1833,7 @@ index bb7948da0..d7df1d9fc 100644 #include #include #include -@@ -8169,11 +8168,38 @@ real_is_special_link (NautilusFile *file) +@@ -8262,11 +8261,38 @@ real_is_special_link (NautilusFile *file) gboolean nautilus_file_is_archive (NautilusFile *file) { @@ -1757,10 +1878,10 @@ index bb7948da0..d7df1d9fc 100644 diff --git a/src/nautilus-files-view.c b/src/nautilus-files-view.c -index 721682f4b..7caee9b5b 100644 +index 8784f63f8..90fcca9d6 100644 --- a/src/nautilus-files-view.c +++ b/src/nautilus-files-view.c -@@ -58,7 +58,6 @@ +@@ -48,7 +48,6 @@ #include #include #include @@ -1768,7 +1889,7 @@ index 721682f4b..7caee9b5b 100644 #include #include #include -@@ -85,7 +84,6 @@ +@@ -75,7 +74,6 @@ #include "nautilus-file-name-widget-controller.h" #include "nautilus-rename-file-popover-controller.h" #include "nautilus-new-folder-dialog-controller.h" @@ -1776,7 +1897,7 @@ index 721682f4b..7caee9b5b 100644 #include "nautilus-global-preferences.h" #include "nautilus-link.h" #include "nautilus-metadata.h" -@@ -182,7 +180,6 @@ struct NautilusFilesViewDetails +@@ -171,7 +169,6 @@ typedef struct NautilusRenameFilePopoverController *rename_file_controller; NautilusNewFolderDialogController *new_folder_controller; @@ -1784,7 +1905,7 @@ index 721682f4b..7caee9b5b 100644 gboolean supports_zooming; -@@ -319,12 +316,6 @@ static void nautilus_files_view_select_file (NautilusFilesView *view, +@@ -310,12 +307,6 @@ static void nautilus_files_view_select_file (NautilusFilesView *view, static void update_templates_directory (NautilusFilesView *view); @@ -1797,31 +1918,36 @@ index 721682f4b..7caee9b5b 100644 static void nautilus_files_view_check_empty_states (NautilusFilesView *view); static gboolean nautilus_files_view_is_searching (NautilusView *view); -@@ -697,16 +688,6 @@ nautilus_files_view_supports_creating_files (NautilusFilesView *view) +@@ -749,15 +740,6 @@ nautilus_files_view_supports_creating_files (NautilusFilesView *view) + && !showing_recent_directory (view); } - static gboolean +-static gboolean -nautilus_files_view_supports_extract_here (NautilusFilesView *view) -{ - g_return_val_if_fail (NAUTILUS_IS_FILES_VIEW (view), FALSE); - - return nautilus_files_view_supports_creating_files (view) -- && !nautilus_directory_is_remote (view->details->model) - && !nautilus_view_is_searching (NAUTILUS_VIEW (view)); -} - --static gboolean + static gboolean nautilus_files_view_is_empty (NautilusFilesView *view) { - g_return_val_if_fail (NAUTILUS_IS_FILES_VIEW (view), FALSE); -@@ -1143,44 +1124,17 @@ nautilus_files_view_activate_files (NautilusFilesView *view, - NautilusWindowOpenFlags flags, +@@ -1209,8 +1191,6 @@ nautilus_files_view_activate_files (NautilusFilesView *view, gboolean confirm_multiple) { + NautilusFilesViewPrivate *priv; - GList *files_to_extract; - GList *files_to_activate; char *path; + if (files == NULL) +@@ -1219,41 +1199,15 @@ nautilus_files_view_activate_files (NautilusFilesView *view, + } + + priv = nautilus_files_view_get_instance_private (view); +- - files_to_extract = nautilus_file_list_filter (files, - &files_to_activate, - (NautilusFileFilterFunc) nautilus_mime_file_extracts, @@ -1847,7 +1973,7 @@ index 721682f4b..7caee9b5b 100644 - path = get_view_directory (view); nautilus_mime_activate_files (nautilus_files_view_get_containing_window (view), - view->details->slot, + priv->slot, - files_to_activate, + files, path, @@ -1859,44 +1985,8 @@ index 721682f4b..7caee9b5b 100644 - g_list_free (files_to_activate); } - static void -@@ -1190,35 +1144,6 @@ nautilus_files_view_activate_file (NautilusFilesView *view, - { - char *path; - -- if (nautilus_mime_file_extracts (file)) -- { -- GList *files = NULL; -- -- files = g_list_prepend (files, file); -- -- if (nautilus_files_view_supports_extract_here (view)) -- { -- g_autoptr (GFile) location = NULL; -- g_autoptr (GFile) parent = NULL; -- -- location = nautilus_file_get_location (file); -- /* Get a parent from a random file. We assume all files has a common parent. -- * But don't assume the parent is the view location, since that's not the -- * case in list view when expand-folder setting is set -- */ -- parent = g_file_get_parent (location); -- extract_files (view, files, parent); -- } -- else -- { -- extract_files_to_chosen_location (view, files); -- } -- -- g_list_free (files); -- -- return; -- } -- - path = get_view_directory (view); - nautilus_mime_activate_file (nautilus_files_view_get_containing_window (view), - view->details->slot, -@@ -1990,215 +1915,6 @@ nautilus_files_view_new_folder_dialog_new (NautilusFilesView *view, + void +@@ -2085,232 +2039,6 @@ nautilus_files_view_new_folder_dialog_new (NautilusFilesView *view, nautilus_directory_unref (containing_directory); } @@ -1913,6 +2003,7 @@ index 721682f4b..7caee9b5b 100644 -{ - CompressData *data; - NautilusFilesView *view; +- NautilusFilesViewPrivate *priv; - NautilusFile *file; - - data = user_data; @@ -1923,6 +2014,8 @@ index 721682f4b..7caee9b5b 100644 - goto out; - } - +- priv = nautilus_files_view_get_instance_private (view); +- - g_signal_handlers_disconnect_by_func (view, - G_CALLBACK (track_newly_added_locations), - data->added_locations); @@ -1942,7 +2035,7 @@ index 721682f4b..7caee9b5b 100644 - } - else - { -- g_hash_table_insert (view->details->pending_reveal, +- g_hash_table_insert (priv->pending_reveal, - file, - GUINT_TO_POINTER (TRUE)); - } @@ -1973,10 +2066,12 @@ index 721682f4b..7caee9b5b 100644 - g_autoptr (GFile) output = NULL; - g_autoptr (GFile) parent = NULL; - NautilusCompressionFormat compression_format; +- NautilusFilesViewPrivate *priv; - AutoarFormat format; - AutoarFilter filter; - - view = NAUTILUS_FILES_VIEW (user_data); +- priv = nautilus_files_view_get_instance_private (view); - - selection = nautilus_files_view_get_selection_for_file_transfer (view); - @@ -2003,7 +2098,7 @@ index 721682f4b..7caee9b5b 100644 - (gpointer *) &data->view); - - g_signal_connect_data (view, -- "add-file", +- "add-files", - G_CALLBACK (track_newly_added_locations), - data->added_locations, - NULL, @@ -2048,7 +2143,7 @@ index 721682f4b..7caee9b5b 100644 - - nautilus_file_list_free (selection); - g_list_free_full (source_files, g_object_unref); -- g_clear_object (&view->details->compress_controller); +- g_clear_object (&priv->compress_controller); -} - -static void @@ -2056,10 +2151,12 @@ index 721682f4b..7caee9b5b 100644 - gpointer user_data) -{ - NautilusFilesView *view; +- NautilusFilesViewPrivate *priv; - - view = NAUTILUS_FILES_VIEW (user_data); +- priv = nautilus_files_view_get_instance_private (view); - -- g_clear_object (&view->details->compress_controller); +- g_clear_object (&priv->compress_controller); -} - - @@ -2067,10 +2164,13 @@ index 721682f4b..7caee9b5b 100644 -nautilus_files_view_compress_dialog_new (NautilusFilesView *view) -{ - NautilusDirectory *containing_directory; +- NautilusFilesViewPrivate *priv; - GList *selection; - g_autofree char *common_prefix = NULL; - -- if (view->details->compress_controller != NULL) +- priv = nautilus_files_view_get_instance_private (view); +- +- if (priv->compress_controller != NULL) - { - return; - } @@ -2085,7 +2185,14 @@ index 721682f4b..7caee9b5b 100644 - - display_name = nautilus_file_get_display_name (selection->data); - -- common_prefix = eel_filename_strip_extension (display_name); +- if (nautilus_file_is_directory (selection->data)) +- { +- common_prefix = g_steal_pointer (&display_name); +- } +- else +- { +- common_prefix = eel_filename_strip_extension (display_name); +- } - } - else - { @@ -2093,15 +2200,15 @@ index 721682f4b..7caee9b5b 100644 - MIN_COMMON_FILENAME_PREFIX_LENGTH); - } - -- view->details->compress_controller = nautilus_compress_dialog_controller_new (nautilus_files_view_get_containing_window (view), -- containing_directory, -- common_prefix); +- priv->compress_controller = nautilus_compress_dialog_controller_new (nautilus_files_view_get_containing_window (view), +- containing_directory, +- common_prefix); - -- g_signal_connect (view->details->compress_controller, +- g_signal_connect (priv->compress_controller, - "name-accepted", - (GCallback) compress_dialog_controller_on_name_accepted, - view); -- g_signal_connect (view->details->compress_controller, +- g_signal_connect (priv->compress_controller, - "cancelled", - (GCallback) compress_dialog_controller_on_cancelled, - view); @@ -2112,15 +2219,15 @@ index 721682f4b..7caee9b5b 100644 static void nautilus_files_view_new_folder (NautilusFilesView *directory_view, gboolean with_selection) -@@ -3061,7 +2777,6 @@ nautilus_files_view_finalize (GObject *object) - g_clear_object (&view->details->toolbar_menu_sections->extended_section); - g_clear_object (&view->details->rename_file_controller); - g_clear_object (&view->details->new_folder_controller); -- g_clear_object (&view->details->compress_controller); - g_free (view->details->toolbar_menu_sections); +@@ -3236,7 +2964,6 @@ nautilus_files_view_finalize (GObject *object) + g_clear_object (&priv->toolbar_menu_sections->extended_section); + g_clear_object (&priv->rename_file_controller); + g_clear_object (&priv->new_folder_controller); +- g_clear_object (&priv->compress_controller); + g_free (priv->toolbar_menu_sections); - g_hash_table_destroy (view->details->non_ready_files); -@@ -5964,273 +5679,6 @@ action_rename (GSimpleAction *action, + g_hash_table_destroy (priv->non_ready_files); +@@ -6303,296 +6030,6 @@ action_rename (GSimpleAction *action, real_action_rename (NAUTILUS_FILES_VIEW (user_data)); } @@ -2134,6 +2241,7 @@ index 721682f4b..7caee9b5b 100644 -extract_done (GList *outputs, - gpointer user_data) -{ +- NautilusFilesViewPrivate *priv; - ExtractData *data; - GList *l; - gboolean all_files_acknowledged; @@ -2145,6 +2253,8 @@ index 721682f4b..7caee9b5b 100644 - goto out; - } - +- priv = nautilus_files_view_get_instance_private (data->view); +- - g_signal_handlers_disconnect_by_func (data->view, - G_CALLBACK (track_newly_added_locations), - data->added_locations); @@ -2186,7 +2296,7 @@ index 721682f4b..7caee9b5b 100644 - acknowledged = g_hash_table_contains (data->added_locations, - l->data); - -- g_hash_table_insert (data->view->details->pending_reveal, +- g_hash_table_insert (priv->pending_reveal, - nautilus_file_get (l->data), - GUINT_TO_POINTER (acknowledged)); - } @@ -2243,7 +2353,7 @@ index 721682f4b..7caee9b5b 100644 - (gpointer *) &data->view); - - g_signal_connect_data (view, -- "add-file", +- "add-files", - G_CALLBACK (track_newly_added_locations), - data->added_locations, - NULL, @@ -2300,10 +2410,13 @@ index 721682f4b..7caee9b5b 100644 -extract_files_to_chosen_location (NautilusFilesView *view, - GList *files) -{ +- NautilusFilesViewPrivate *priv; - ExtractToData *data; - GtkWidget *dialog; - g_autofree char *uri = NULL; - +- priv = nautilus_files_view_get_instance_private (view); +- - if (files == NULL) - { - return; @@ -2325,7 +2438,24 @@ index 721682f4b..7caee9b5b 100644 - gtk_window_set_destroy_with_parent (GTK_WINDOW (dialog), TRUE); - gtk_window_set_modal (GTK_WINDOW (dialog), TRUE); - -- uri = nautilus_directory_get_uri (view->details->model); +- /* The file chooser will not be able to display the search directory, +- * so we need to get the base directory of the search if we are, in fact, +- * in search. +- */ +- if (nautilus_view_is_searching (NAUTILUS_VIEW (view))) +- { +- NautilusSearchDirectory *search_directory; +- NautilusDirectory *directory; +- +- search_directory = NAUTILUS_SEARCH_DIRECTORY (priv->model); +- directory = nautilus_search_directory_get_base_model (search_directory); +- uri = nautilus_directory_get_uri (directory); +- } +- else +- { +- uri = nautilus_directory_get_uri (priv->model); +- } +- - gtk_file_chooser_set_current_folder_uri (GTK_FILE_CHOOSER (dialog), uri); - - data->view = view; @@ -2394,7 +2524,7 @@ index 721682f4b..7caee9b5b 100644 #define BG_KEY_PRIMARY_COLOR "primary-color" #define BG_KEY_SECONDARY_COLOR "secondary-color" #define BG_KEY_COLOR_TYPE "color-shading-type" -@@ -6691,9 +6139,6 @@ const GActionEntry view_entries[] = +@@ -7052,9 +6489,6 @@ const GActionEntry view_entries[] = { "restore-from-trash", action_restore_from_trash}, { "paste-into", action_paste_files_into }, { "rename", action_rename}, @@ -2404,7 +2534,7 @@ index 721682f4b..7caee9b5b 100644 { "properties", action_properties}, { "set-as-wallpaper", action_set_as_wallpaper }, { "mount-volume", action_mount_volume }, -@@ -6997,23 +6442,6 @@ all_in_trash (GList *files) +@@ -7363,40 +6797,6 @@ all_in_trash (GList *files) return TRUE; } @@ -2425,69 +2555,66 @@ index 721682f4b..7caee9b5b 100644 - return TRUE; -} - +-static gboolean +-nautilus_handles_all_files_to_extract (GList *files) +-{ +- NautilusFile *file; +- GList *l; +- +- for (l = files; l != NULL; l = l->next) +- { +- file = l->data; +- if (!nautilus_mime_file_extracts (file)) +- { +- return FALSE; +- } +- } +- return TRUE; +-} +- GActionGroup * nautilus_files_view_get_action_group (NautilusFilesView *view) { -@@ -7040,8 +6468,6 @@ real_update_actions_state (NautilusFilesView *view) +@@ -7429,9 +6829,6 @@ real_update_actions_state (NautilusFilesView *view) gboolean can_trash_files; gboolean can_copy_files; gboolean can_paste_files_into; - gboolean can_extract_files; +- gboolean handles_all_files_to_extract; - gboolean can_extract_here; gboolean item_opens_in_view; gboolean is_read_only; GAction *action; -@@ -7054,7 +6480,6 @@ real_update_actions_state (NautilusFilesView *view) - gboolean show_detect_media; - gboolean settings_show_delete_permanently; - gboolean settings_show_create_link; -- gboolean settings_automatic_decompression; - GDriveStartStopType start_stop_type; - - view_action_group = view->details->view_action_group; -@@ -7088,15 +6513,10 @@ real_update_actions_state (NautilusFilesView *view) +@@ -7480,10 +6877,6 @@ real_update_actions_state (NautilusFilesView *view) can_paste_files_into = (!selection_contains_recent && selection_count == 1 && can_paste_into_file (NAUTILUS_FILE (selection->data))); - can_extract_files = selection_count != 0 && - can_extract_all (selection); - can_extract_here = nautilus_files_view_supports_extract_here (view); +- handles_all_files_to_extract = nautilus_handles_all_files_to_extract (selection); settings_show_delete_permanently = g_settings_get_boolean (nautilus_preferences, NAUTILUS_PREFERENCES_SHOW_DELETE_PERMANENTLY); settings_show_create_link = g_settings_get_boolean (nautilus_preferences, - NAUTILUS_PREFERENCES_SHOW_CREATE_LINK); -- settings_automatic_decompression = g_settings_get_boolean (nautilus_preferences, -- NAUTILUS_PREFERENCES_AUTOMATIC_DECOMPRESSION); - - /* Right click actions */ - /* Selection menu actions */ -@@ -7132,25 +6552,6 @@ real_update_actions_state (NautilusFilesView *view) - } +@@ -7519,17 +6912,6 @@ real_update_actions_state (NautilusFilesView *view) action = g_action_map_lookup_action (G_ACTION_MAP (view_action_group), -- "extract-here"); + "extract-here"); - g_simple_action_set_enabled (G_SIMPLE_ACTION (action), - can_extract_files && -- !settings_automatic_decompression && +- !handles_all_files_to_extract && - can_extract_here); - - action = g_action_map_lookup_action (G_ACTION_MAP (view_action_group), - "extract-to"); - g_simple_action_set_enabled (G_SIMPLE_ACTION (action), - can_extract_files && -- (!settings_automatic_decompression || +- (!handles_all_files_to_extract || - can_extract_here)); -- -- action = g_action_map_lookup_action (G_ACTION_MAP (view_action_group), -- "compress"); -- g_simple_action_set_enabled (G_SIMPLE_ACTION (action), -- can_create_files && can_copy_files); -- -- action = g_action_map_lookup_action (G_ACTION_MAP (view_action_group), - "open-item-location"); - g_simple_action_set_enabled (G_SIMPLE_ACTION (action), -@@ -7417,7 +6818,6 @@ update_selection_menu (NautilusFilesView *view) + action = g_action_map_lookup_action (G_ACTION_MAP (view_action_group), + "compress"); +@@ -7804,7 +7186,6 @@ update_selection_menu (NautilusFilesView *view) gint selection_count; gboolean show_app; gboolean show_run; @@ -2495,7 +2622,7 @@ index 721682f4b..7caee9b5b 100644 gboolean item_opens_in_view; gchar *item_label; GAppInfo *app; -@@ -7455,17 +6855,13 @@ update_selection_menu (NautilusFilesView *view) +@@ -7844,18 +7225,13 @@ update_selection_menu (NautilusFilesView *view) g_free (item_label); /* Open With menu item */ @@ -2511,10 +2638,11 @@ index 721682f4b..7caee9b5b 100644 - { - show_extract = FALSE; - } - +- if (!nautilus_mime_file_opens_in_external_app (file)) { -@@ -7482,7 +6878,7 @@ update_selection_menu (NautilusFilesView *view) + show_app = FALSE; +@@ -7871,7 +7247,7 @@ update_selection_menu (NautilusFilesView *view) item_opens_in_view = FALSE; } @@ -2523,7 +2651,7 @@ index 721682f4b..7caee9b5b 100644 { break; } -@@ -7515,12 +6911,6 @@ update_selection_menu (NautilusFilesView *view) +@@ -7904,12 +7280,6 @@ update_selection_menu (NautilusFilesView *view) { item_label = g_strdup (_("Run")); } @@ -2537,10 +2665,10 @@ index 721682f4b..7caee9b5b 100644 { item_label = g_strdup (_("Open")); diff --git a/src/nautilus-mime-actions.c b/src/nautilus-mime-actions.c -index 3f7033baa..796dabbe1 100644 +index 882716054..7a4029cbb 100644 --- a/src/nautilus-mime-actions.c +++ b/src/nautilus-mime-actions.c -@@ -54,7 +54,6 @@ typedef enum +@@ -56,7 +56,6 @@ typedef enum ACTIVATION_ACTION_LAUNCH_IN_TERMINAL, ACTIVATION_ACTION_OPEN_IN_VIEW, ACTIVATION_ACTION_OPEN_IN_APPLICATION, @@ -2548,56 +2676,258 @@ index 3f7033baa..796dabbe1 100644 ACTIVATION_ACTION_DO_NOTHING, } ActivationAction; -@@ -716,14 +715,6 @@ get_activation_action (NautilusFile *file) +@@ -715,20 +714,6 @@ get_activation_action (NautilusFile *file) { ActivationAction action; char *activation_uri; -- gboolean can_extract; -- can_extract = g_settings_get_boolean (nautilus_preferences, -- NAUTILUS_PREFERENCES_AUTOMATIC_DECOMPRESSION); +- gboolean handles_extract = FALSE; +- g_autoptr (GAppInfo) app_info = NULL; +- const gchar* app_id; - -- if (can_extract && nautilus_file_is_archive (file)) +- app_info = nautilus_mime_get_default_application_for_file (file); +- if (app_info != NULL) +- { +- app_id = g_app_info_get_id (app_info); +- handles_extract = g_strcmp0 (app_id, NAUTILUS_DESKTOP_ID) == 0; +- } +- if (handles_extract && nautilus_file_is_archive (file)) - { - return ACTIVATION_ACTION_EXTRACT; - } if (nautilus_file_is_nautilus_link (file)) { -@@ -772,12 +763,6 @@ get_activation_action (NautilusFile *file) +@@ -776,12 +761,6 @@ get_activation_action (NautilusFile *file) + return action; } - gboolean +-gboolean -nautilus_mime_file_extracts (NautilusFile *file) -{ - return get_activation_action (file) == ACTIVATION_ACTION_EXTRACT; -} - --gboolean + gboolean nautilus_mime_file_launches (NautilusFile *file) { - ActivationAction activation_action; -@@ -1712,13 +1697,6 @@ activate_files (ActivateParameters *parameters) - } - break; +@@ -1673,13 +1652,6 @@ activate_files (ActivateParameters *parameters) + } + break; - case ACTIVATION_ACTION_EXTRACT: -- { -- /* Extraction of files should be handled in the view */ -- g_assert_not_reached (); -- } -- break; +- { +- /* Extraction of files should be handled in the view */ +- g_assert_not_reached (); +- } +- break; - case ACTIVATION_ACTION_ASK: - { - g_assert_not_reached (); -@@ -2475,6 +2453,7 @@ nautilus_mime_activate_files (GtkWindow *parent_window, - } - - -+ g_print ("number of files %d\n", g_list_length (parameters->locations)); - for (l = parameters->locations; l != NULL; l = next) - { - location = l->data; + { + g_assert_not_reached (); +diff --git a/src/resources/nautilus.gresource.xml b/src/resources/nautilus.gresource.xml +index 3dd60ba6d..90e07f319 100644 +--- a/src/resources/nautilus.gresource.xml ++++ b/src/resources/nautilus.gresource.xml +@@ -9,7 +9,6 @@ + ui/nautilus-toolbar-menu.ui + ui/nautilus-toolbar-view-menu.ui + ui/nautilus-create-folder-dialog.ui +- ui/nautilus-compress-dialog.ui + ui/nautilus-rename-file-popover.ui + ui/nautilus-files-view-context-menus.ui + ui/nautilus-progress-info-widget.ui +diff --git a/src/resources/ui/nautilus-compress-dialog.ui b/src/resources/ui/nautilus-compress-dialog.ui +deleted file mode 100644 +index 526e9eed2..000000000 +--- a/src/resources/ui/nautilus-compress-dialog.ui ++++ /dev/null +@@ -1,186 +0,0 @@ +- +- +- +- +- Create Archive +- False +- True +- center-on-parent +- True +- dialog +- 1 +- +- +- vertical +- 18 +- 12 +- 18 +- 18 +- 6 +- +- +- Archive name +- True +- 0 +- +- +- False +- True +- 1 +- +- +- +- +- True +- True +- +- +- False +- True +- 2 +- +- +- +- +- +- +- 4 +- 4 +- True +- 0 +- +- +- +- +- False +- True +- 3 +- +- +- +- +- horizontal +- True +- 0 +- +- +- .zip +- True +- +- +- +- True +- True +- 0 +- +- +- +- +- .tar.xz +- zip_radio_button +- True +- +- +- +- True +- True +- 1 +- +- +- +- +- .7z +- zip_radio_button +- True +- +- +- +- True +- True +- 2 +- +- +- +- +- False +- True +- 4 +- +- +- +- +- True +- False +- True +- +- +- True +- Compatible with all operating systems. +- 0 +- +- +- +- zip-description-label +- +- +- +- +- True +- Smaller archives but Linux and Mac only. +- 0 +- +- +- +- tar-xz-description-label +- +- +- +- +- True +- Smaller archives but must be installed on Windows and Mac. +- 0 +- +- +- +- seven-zip-description-label +- +- +- +- +- False +- True +- 5 +- +- +- +- +- +- +- Cancel +- True +- True +- True +- +- +- +- +- Create +- True +- True +- True +- True +- False +- +- +- +- activate_button +- cancel_button +- +- +- -- -2.12.0 +2.17.1 diff --git a/SOURCES/0001-meson-Request-c11-when-possible.patch b/SOURCES/0001-meson-Request-c11-when-possible.patch new file mode 100644 index 0000000..053c1a3 --- /dev/null +++ b/SOURCES/0001-meson-Request-c11-when-possible.patch @@ -0,0 +1,22 @@ +From 6b58c14e82f80c2318513dae8f2646a18d5b60d3 Mon Sep 17 00:00:00 2001 +From: Carlos Soriano +Date: Fri, 8 Jun 2018 17:22:08 +0200 +Subject: [PATCH 1/2] meson: Request c11 when possible + +--- + meson.build | 1 + + 1 file changed, 1 insertion(+) + +diff --git a/meson.build b/meson.build +index 7a450292d..e3e6875d7 100644 +--- a/meson.build ++++ b/meson.build +@@ -1,4 +1,5 @@ + project ('nautilus', 'c', ++ default_options: ['c_std=c11'], + version: '3.26.3.1', + meson_version: '>=0.40.0', + license: 'GPL3+') +-- +2.17.1 + diff --git a/SOURCES/0001-meson-Use-python2-for-postinstall.patch b/SOURCES/0001-meson-Use-python2-for-postinstall.patch new file mode 100644 index 0000000..ce866ac --- /dev/null +++ b/SOURCES/0001-meson-Use-python2-for-postinstall.patch @@ -0,0 +1,46 @@ +From 268b8d7343591b9c1cb379f6e65f061a4da461e8 Mon Sep 17 00:00:00 2001 +From: Carlos Soriano +Date: Fri, 8 Jun 2018 19:53:02 +0200 +Subject: [PATCH] meson: Use python2 for postinstall + +RHEL 7 doesn't have python3... +--- + build-aux/meson/postinstall.py | 8 ++++---- + 1 file changed, 4 insertions(+), 4 deletions(-) + +diff --git a/build-aux/meson/postinstall.py b/build-aux/meson/postinstall.py +index 81afb18b7..04c6464d7 100755 +--- a/build-aux/meson/postinstall.py ++++ b/build-aux/meson/postinstall.py +@@ -1,4 +1,4 @@ +-#!/usr/bin/env python3 ++#!/usr/bin/env python2 + + import os + import subprocess +@@ -8,19 +8,19 @@ datadir = os.path.join(prefix, 'share') + + # Packaging tools define DESTDIR and this isn't needed for them + if 'DESTDIR' not in os.environ: +- print('Updating icon cache...') ++ print 'Updating icon cache...' + icon_cache_dir = os.path.join(datadir, 'icons', 'hicolor') + if not os.path.exists(icon_cache_dir): + os.makedirs(icon_cache_dir) + subprocess.call(['gtk-update-icon-cache', '-qtf', icon_cache_dir]) + +- print('Updating desktop database...') ++ print 'Updating desktop database...' + desktop_database_dir = os.path.join(datadir, 'applications') + if not os.path.exists(desktop_database_dir): + os.makedirs(desktop_database_dir) + subprocess.call(['update-desktop-database', '-q', desktop_database_dir]) + +- print('Compiling GSettings schemas...') ++ print 'Compiling GSettings schemas...' + schemas_dir = os.path.join(datadir, 'glib-2.0', 'schemas') + if not os.path.exists(schemas_dir): + os.makedirs(schemas_dir) +-- +2.17.1 + diff --git a/SOURCES/0001-mime-actions-use-file-metadata-for-trusting-desktop-.patch b/SOURCES/0001-mime-actions-use-file-metadata-for-trusting-desktop-.patch deleted file mode 100644 index a179f2b..0000000 --- a/SOURCES/0001-mime-actions-use-file-metadata-for-trusting-desktop-.patch +++ /dev/null @@ -1,1061 +0,0 @@ -From 0161c384f53630d36b88d0b4bd6cd1402b736ae9 Mon Sep 17 00:00:00 2001 -From: Carlos Soriano -Date: Thu, 2 Nov 2017 16:30:30 +0100 -Subject: [PATCH] mime-actions: use file metadata for trusting desktop files - -Currently we only trust desktop files that have the executable bit -set, and don't replace the displayed icon or the displayed name until -it's trusted, which prevents for running random programs by a malicious -desktop file. - -However, the executable permission is preserved if the desktop file -comes from a compressed file. - -To prevent this, add a metadata::trusted metadata to the file once the -user acknowledges the file as trusted. This adds metadata to the file, -which cannot be added unless it has access to the computer. - -Also remove the SHEBANG "trusted" content we were putting inside the -desktop file, since that doesn't add more security since it can come -with the file itself. - -https://bugzilla.gnome.org/show_bug.cgi?id=777991 ---- - po/be.po | 4 ++ - po/ca.po | 4 ++ - po/cs.po | 4 ++ - po/da.po | 4 ++ - po/de.po | 4 ++ - po/el.po | 4 ++ - po/en_GB.po | 4 ++ - po/eo.po | 4 ++ - po/es.po | 4 ++ - po/eu.po | 4 ++ - po/fi.po | 4 ++ - po/fr.po | 4 ++ - po/fur.po | 4 ++ - po/gl.po | 4 ++ - po/hr.po | 4 ++ - po/hu.po | 4 ++ - po/id.po | 4 ++ - po/is.po | 4 ++ - po/it.po | 4 ++ - po/kk.po | 4 ++ - po/ko.po | 4 ++ - po/lt.po | 4 ++ - po/lv.po | 4 ++ - po/ml.po | 4 ++ - po/nb.po | 4 ++ - po/ne.po | 4 ++ - po/nl.po | 4 ++ - po/pa.po | 4 ++ - po/pl.po | 4 ++ - po/pt_BR.po | 4 ++ - po/ru.po | 4 ++ - po/sk.po | 4 ++ - po/sl.po | 4 ++ - po/sr.po | 4 ++ - po/sr@latin.po | 4 ++ - po/sv.po | 4 ++ - po/tr.po | 4 ++ - po/uk.po | 4 ++ - po/vi.po | 4 ++ - po/zh_TW.po | 4 ++ - src/nautilus-directory-async.c | 7 +- - src/nautilus-file-operations.c | 152 ++++++++--------------------------------- - src/nautilus-file-operations.h | 10 +-- - src/nautilus-metadata.c | 1 + - src/nautilus-metadata.h | 2 + - src/nautilus-mime-actions.c | 46 ++++++++----- - 46 files changed, 232 insertions(+), 146 deletions(-) - -diff --git a/po/be.po b/po/be.po -index 960cd898b..bcec36f07 100644 ---- a/po/be.po -+++ b/po/be.po -@@ -3693,6 +3693,10 @@ msgstr "_Усё роўна запусціць" - msgid "Mark as _Trusted" - msgstr "_Зрабіць давераным" - -+#: src/nautilus-mime-actions.c:1514 -+msgid "Trust and _Launch" -+msgstr "Даверыцца і _запусціць" -+ - #: ../src/nautilus-mime-actions.c:1792 - #, c-format - msgid "This will open %d separate application." -diff --git a/po/ca.po b/po/ca.po -index 594c5063e..14813cb99 100644 ---- a/po/ca.po -+++ b/po/ca.po -@@ -3607,6 +3607,10 @@ msgstr "_Executa de totes maneres" - msgid "Mark as _Trusted" - msgstr "Marca com de _confiança" - -+#: src/nautilus-mime-actions.c:1514 -+msgid "Trust and _Launch" -+msgstr "Confia i _executa" -+ - #: ../src/nautilus-mime-actions.c:1905 - #, c-format - msgid "This will open %d separate application." -diff --git a/po/cs.po b/po/cs.po -index fae4fc51b..b2946f93b 100644 ---- a/po/cs.po -+++ b/po/cs.po -@@ -3661,6 +3661,10 @@ msgstr "_Přesto spustit" - msgid "Mark as _Trusted" - msgstr "Označit jako _důveryhodný" - -+#: src/nautilus-mime-actions.c:1514 -+msgid "Trust and _Launch" -+msgstr "Důvěřovat a _spustit" -+ - #: src/nautilus-mime-actions.c:1905 - #, c-format - msgid "This will open %d separate application." -diff --git a/po/da.po b/po/da.po -index 5453105a5..834e69b32 100644 ---- a/po/da.po -+++ b/po/da.po -@@ -3632,6 +3632,10 @@ msgstr "_Start alligevel" - msgid "Mark as _Trusted" - msgstr "Markér som _betroet" - -+#: src/nautilus-mime-actions.c:1514 -+msgid "Trust and _Launch" -+msgstr "Hav tillid til og _kør" -+ - #: src/nautilus-mime-actions.c:1905 - #, c-format - msgid "This will open %d separate application." -diff --git a/po/de.po b/po/de.po -index 661d352c7..77fd67a1e 100644 ---- a/po/de.po -+++ b/po/de.po -@@ -3698,6 +3698,10 @@ msgstr "_Trotzdem starten" - msgid "Mark as _Trusted" - msgstr "Als _vertrauenswürdig markieren" - -+#: src/nautilus-mime-actions.c:1514 -+msgid "Trust and _Launch" -+msgstr "Vertrauen und _starten" -+ - #: src/nautilus-mime-actions.c:1905 - #, c-format - msgid "This will open %d separate application." -diff --git a/po/el.po b/po/el.po -index 6f02e0cf8..31644c76e 100644 ---- a/po/el.po -+++ b/po/el.po -@@ -3756,6 +3756,10 @@ msgstr "_Εκκίνηση οπωσδήποτε" - msgid "Mark as _Trusted" - msgstr "Σημείωση ως έ_μπιστου" - -+#: src/nautilus-mime-actions.c:1612 -+msgid "Trust and _Launch" -+msgstr "Έμπιστο και ε_κκίνηση" -+ - #: src/nautilus-mime-actions.c:1905 - #, c-format - msgid "This will open %d separate application." -diff --git a/po/en_GB.po b/po/en_GB.po -index f1810aa4c..6ff33095d 100644 ---- a/po/en_GB.po -+++ b/po/en_GB.po -@@ -3585,6 +3585,10 @@ msgstr "_Launch Anyway" - msgid "Mark as _Trusted" - msgstr "Mark as _Trusted" - -+#: src/nautilus-mime-actions.c:1514 -+msgid "Trust and _Launch" -+msgstr "Trust and _Launch" -+ - #: src/nautilus-mime-actions.c:1905 - #, c-format - msgid "This will open %d separate application." -diff --git a/po/eo.po b/po/eo.po -index 7faf9ef78..6969239ab 100644 ---- a/po/eo.po -+++ b/po/eo.po -@@ -3662,6 +3662,10 @@ msgstr "_Lanĉi ĉiukaze" - msgid "Mark as _Trusted" - msgstr "Marki kiel kon_trolita" - -+#: src/nautilus-mime-actions.c:1507 -+msgid "Trust and _Launch" -+msgstr "" -+ - #: ../src/nautilus-mime-actions.c:1793 - #, c-format - msgid "This will open %d separate application." -diff --git a/po/es.po b/po/es.po -index 3c194b551..adfb0ea47 100644 ---- a/po/es.po -+++ b/po/es.po -@@ -3983,6 +3983,10 @@ msgstr "_Lanzar de todas formas" - msgid "Mark as _Trusted" - msgstr "Marcar como de con_fianza" - -+#: src/nautilus-mime-actions.c:1514 -+msgid "Trust and _Launch" -+msgstr "Confiar y _ejecutar" -+ - #: src/nautilus-mime-actions.c:1905 - #, c-format - msgid "This will open %d separate application." -diff --git a/po/eu.po b/po/eu.po -index ccaf0e3b7..35c93e871 100644 ---- a/po/eu.po -+++ b/po/eu.po -@@ -3651,6 +3651,10 @@ msgstr "_Abiarazi dena den" - msgid "Mark as _Trusted" - msgstr "Markatu _fidagarri gisa" - -+#: src/nautilus-mime-actions.c:1612 -+msgid "Trust and _Launch" -+msgstr "Fidatu eta _abiarazi" -+ - #: src/nautilus-mime-actions.c:1905 - #, c-format - msgid "This will open %d separate application." -diff --git a/po/fi.po b/po/fi.po -index 19d62bfe1..ee9f1eee0 100644 ---- a/po/fi.po -+++ b/po/fi.po -@@ -3670,6 +3670,10 @@ msgstr "_Käynnistä silti" - msgid "Mark as _Trusted" - msgstr "Merkitse luo_tetuksi" - -+#: src/nautilus-mime-actions.c:1514 -+msgid "Trust and _Launch" -+msgstr "Luota ja k_äynnistä" -+ - #: src/nautilus-mime-actions.c:1905 - #, c-format - msgid "This will open %d separate application." -diff --git a/po/fr.po b/po/fr.po -index ec8d46321..342df517e 100644 ---- a/po/fr.po -+++ b/po/fr.po -@@ -3653,6 +3653,10 @@ msgstr "_Lancer quand même" - msgid "Mark as _Trusted" - msgstr "Marquer comme _fiable" - -+#: src/nautilus-mime-actions.c:1514 -+msgid "Trust and _Launch" -+msgstr "Faire confiance et _lancer" -+ - #: src/nautilus-mime-actions.c:1905 - #, c-format - msgid "This will open %d separate application." -diff --git a/po/fur.po b/po/fur.po -index f205aecda..b31ca5300 100644 ---- a/po/fur.po -+++ b/po/fur.po -@@ -3599,6 +3599,10 @@ msgstr "_Invie distès" - msgid "Mark as _Trusted" - msgstr "Segne come _fidât" - -+#: src/nautilus-mime-actions.c:1514 -+msgid "Trust and _Launch" -+msgstr "Fiditi e _invie" -+ - #: src/nautilus-mime-actions.c:1905 - #, c-format - msgid "This will open %d separate application." -diff --git a/po/gl.po b/po/gl.po -index a7f22470d..b0cc6732b 100644 ---- a/po/gl.po -+++ b/po/gl.po -@@ -3623,6 +3623,10 @@ msgstr "_Iniciar de todos os xeitos" - msgid "Mark as _Trusted" - msgstr "Marcar como _confiábel" - -+#: src/nautilus-mime-actions.c:1514 -+msgid "Trust and _Launch" -+msgstr "Confiar e _iniciar" -+ - #: src/nautilus-mime-actions.c:1905 - #, c-format - msgid "This will open %d separate application." -diff --git a/po/hr.po b/po/hr.po -index 58f7af9e3..82317069c 100644 ---- a/po/hr.po -+++ b/po/hr.po -@@ -3631,6 +3631,10 @@ msgstr "_Svejedno pokreni" - msgid "Mark as _Trusted" - msgstr "Označi kao _pouzdano" - -+#: src/nautilus-mime-actions.c:1514 -+msgid "Trust and _Launch" -+msgstr "Vjeruj i _pokreni" -+ - #: src/nautilus-mime-actions.c:1905 - #, c-format - msgid "This will open %d separate application." -diff --git a/po/hu.po b/po/hu.po -index 34537c84b..3ae5baa0b 100644 ---- a/po/hu.po -+++ b/po/hu.po -@@ -3568,6 +3568,10 @@ msgstr "_Indítás mindenképp" - msgid "Mark as _Trusted" - msgstr "_Megjelölés megbízhatóként" - -+#: src/nautilus-mime-actions.c:1507 -+msgid "Trust and _Launch" -+msgstr "Megbízható, elin_dítom" -+ - #: src/nautilus-mime-actions.c:1905 - #, c-format - msgid "This will open %d separate application." -diff --git a/po/id.po b/po/id.po -index ec53ee1e2..1ab509777 100644 ---- a/po/id.po -+++ b/po/id.po -@@ -3326,6 +3326,10 @@ msgstr "Tetap _Luncurkan" - msgid "Mark as _Trusted" - msgstr "_Tandai Dipercaya" - -+#: src/nautilus-mime-actions.c:1514 -+msgid "Trust and _Launch" -+msgstr "Percayai dan _Luncurkan" -+ - #: src/nautilus-mime-actions.c:1704 - #, c-format - msgid "This will open %d separate application." -diff --git a/po/is.po b/po/is.po -index 3ed48efca..864835f05 100644 ---- a/po/is.po -+++ b/po/is.po -@@ -3603,6 +3603,10 @@ msgstr "_Ræsa samt" - msgid "Mark as _Trusted" - msgstr "_Treysta" - -+#: src/nautilus-mime-actions.c:1612 -+msgid "Trust and _Launch" -+msgstr "Tre_ysta og ræsa" -+ - #: src/nautilus-mime-actions.c:1905 - #, c-format - msgid "This will open %d separate application." -diff --git a/po/it.po b/po/it.po -index 18c8e0a6b..001cea3e3 100644 ---- a/po/it.po -+++ b/po/it.po -@@ -3670,6 +3670,10 @@ msgstr "_Lancia comunque" - msgid "Mark as _Trusted" - msgstr "Contrassegna come _fidato" - -+#: src/nautilus-mime-actions.c:1514 -+msgid "Trust and _Launch" -+msgstr "Dai fiducia e _lancia" -+ - #: src/nautilus-mime-actions.c:1905 - #, c-format - msgid "This will open %d separate application." -diff --git a/po/kk.po b/po/kk.po -index 57e3c6c07..c21c2ba70 100644 ---- a/po/kk.po -+++ b/po/kk.po -@@ -3488,6 +3488,10 @@ msgstr "Сон_да да жөнелту" - msgid "Mark as _Trusted" - msgstr "Сені_мді ретінде белгілеу" - -+#: src/nautilus-mime-actions.c:1514 -+msgid "Trust and _Launch" -+msgstr "Сену және жөне_лту" -+ - #: src/nautilus-mime-actions.c:1905 - #, c-format - msgid "This will open %d separate application." -diff --git a/po/ko.po b/po/ko.po -index e1b0f2dad..b0e29bf2d 100644 ---- a/po/ko.po -+++ b/po/ko.po -@@ -3471,6 +3471,10 @@ msgstr "그래도 실행(_L)" - msgid "Mark as _Trusted" - msgstr "신뢰한다고 표시(_T)" - -+#: src/nautilus-mime-actions.c:1514 -+msgid "Trust and _Launch" -+msgstr "신뢰하고 실행(_L)" -+ - #: src/nautilus-mime-actions.c:1905 - #, c-format - msgid "This will open %d separate application." -diff --git a/po/lt.po b/po/lt.po -index 7af4fc3b6..a705c7ab6 100644 ---- a/po/lt.po -+++ b/po/lt.po -@@ -3652,6 +3652,10 @@ msgstr "_Vis tiek paleisti" - msgid "Mark as _Trusted" - msgstr "Pažymėti kaip _patikimą" - -+#: src/nautilus-mime-actions.c:1514 -+msgid "Trust and _Launch" -+msgstr "Pasitikėti ir _paleisti" -+ - #: src/nautilus-mime-actions.c:1905 - #, c-format - msgid "This will open %d separate application." -diff --git a/po/lv.po b/po/lv.po -index 78a0109c5..7d38c1c36 100644 ---- a/po/lv.po -+++ b/po/lv.po -@@ -3646,6 +3646,10 @@ msgstr "_Palaist jebkurā gadījumā" - msgid "Mark as _Trusted" - msgstr "Atzīmēt kā _uzticamu" - -+#: src/nautilus-mime-actions.c:1514 -+msgid "Trust and _Launch" -+msgstr "Uzticēties un pa_laist" -+ - #: src/nautilus-mime-actions.c:1905 - #, c-format - msgid "This will open %d separate application." -diff --git a/po/ml.po b/po/ml.po -index cc970147c..f5891c3df 100644 ---- a/po/ml.po -+++ b/po/ml.po -@@ -3644,6 +3644,10 @@ msgstr "എങ്ങനെയാണേലും _ലഭ്യമാക്കു - msgid "Mark as _Trusted" - msgstr "_വിശ്വസനീയമായി അടയാളപ്പെടുത്തുക" - -+#: src/nautilus-mime-actions.c:1507 -+msgid "Trust and _Launch" -+msgstr "" -+ - #: ../src/nautilus-mime-actions.c:1793 - #, c-format - msgid "This will open %d separate application." -diff --git a/po/nb.po b/po/nb.po -index d61e5963b..74ebef57f 100644 ---- a/po/nb.po -+++ b/po/nb.po -@@ -3543,6 +3543,10 @@ msgstr "Start _likevel" - msgid "Mark as _Trusted" - msgstr "Merk med _tillit" - -+#: src/nautilus-mime-actions.c:1507 -+msgid "Trust and _Launch" -+msgstr "Etabler tillit og _start" -+ - #: ../src/nautilus-mime-actions.c:1905 - #, c-format - msgid "This will open %d separate application." -diff --git a/po/ne.po b/po/ne.po -index 11f193847..a4a260cf2 100644 ---- a/po/ne.po -+++ b/po/ne.po -@@ -3700,6 +3700,10 @@ msgstr "जसरी पनि बचत गर्नुहोस्" - msgid "Mark as _Trusted" - msgstr "महत्वपूर्णको रूपमा चिन्ह लगाउनुहोस्" - -+#, fuzzy -+msgid "Trust and _Launch" -+msgstr "विश्वास" -+ - #: ../src/nautilus-mime-actions.c:1792 - #, fuzzy, c-format - msgid "This will open %d separate application." -diff --git a/po/nl.po b/po/nl.po -index 7552e34c7..f0f8416d6 100644 ---- a/po/nl.po -+++ b/po/nl.po -@@ -3660,6 +3660,10 @@ msgstr "_Toch uitvoeren" - msgid "Mark as _Trusted" - msgstr "Als _vertrouwd markeren" - -+#: src/nautilus-mime-actions.c:1514 -+msgid "Trust and _Launch" -+msgstr "Vertrouwen en _uitvoeren" -+ - #: src/nautilus-mime-actions.c:1905 - #, c-format - msgid "This will open %d separate application." -diff --git a/po/pa.po b/po/pa.po -index efab77ce1..b00ddc2fb 100644 ---- a/po/pa.po -+++ b/po/pa.po -@@ -3674,6 +3674,10 @@ msgstr "ਕਿਵੇਂ ਵੀ ਚਲਾਓ(_L)" - msgid "Mark as _Trusted" - msgstr "ਭਰੋਸੇਯੋਗ ਬਣਾਓ(_T)" - -+#: src/nautilus-mime-actions.c:1612 -+msgid "Trust and _Launch" -+msgstr "ਭਰੋਸਾ ਕਰੋ ਅਤੇ ਚਲਾਓ(_L)" -+ - #: src/nautilus-mime-actions.c:1870 - #, c-format - msgid "This will open %d separate application." -diff --git a/po/pl.po b/po/pl.po -index a121659c1..b1a0b8df5 100644 ---- a/po/pl.po -+++ b/po/pl.po -@@ -3658,6 +3658,10 @@ msgstr "_Uruchom mimo to" - msgid "Mark as _Trusted" - msgstr "_Oznacz jako zaufany" - -+#: src/nautilus-mime-actions.c:1514 -+msgid "Trust and _Launch" -+msgstr "Oznacz jako zaufany i _uruchom" -+ - #: src/nautilus-mime-actions.c:1905 - #, c-format - msgid "This will open %d separate application." -diff --git a/po/pt_BR.po b/po/pt_BR.po -index d08dc5928..3f5f91929 100644 ---- a/po/pt_BR.po -+++ b/po/pt_BR.po -@@ -3630,6 +3630,10 @@ msgstr "_Lançar mesmo assim" - msgid "Mark as _Trusted" - msgstr "Marcar como _confiável" - -+#: src/nautilus-mime-actions.c:1514 -+msgid "Trust and _Launch" -+msgstr "Confiar e _iniciar" -+ - #: src/nautilus-mime-actions.c:1905 - #, c-format - msgid "This will open %d separate application." -diff --git a/po/ru.po b/po/ru.po -index 9dba7fd88..8d9ee1875 100644 ---- a/po/ru.po -+++ b/po/ru.po -@@ -3650,6 +3650,10 @@ msgstr "_Запустить всё равно" - msgid "Mark as _Trusted" - msgstr "_Считать проверенным" - -+#: src/nautilus-mime-actions.c:1514 -+msgid "Trust and _Launch" -+msgstr "Доверить и запустить" -+ - #: src/nautilus-mime-actions.c:1905 - #, c-format - msgid "This will open %d separate application." -diff --git a/po/sk.po b/po/sk.po -index 3c1b812bd..7555353dc 100644 ---- a/po/sk.po -+++ b/po/sk.po -@@ -3716,6 +3716,10 @@ msgstr "_Aj tak spustiť" - msgid "Mark as _Trusted" - msgstr "Označiť ako _dôveryhodné" - -+#: src/nautilus-mime-actions.c:1514 -+msgid "Trust and _Launch" -+msgstr "Dôverovať a _spustiť" -+ - #: src/nautilus-mime-actions.c:1905 - #, c-format - msgid "This will open %d separate application." -diff --git a/po/sl.po b/po/sl.po -index bd2495910..a6c52cd72 100644 ---- a/po/sl.po -+++ b/po/sl.po -@@ -3757,6 +3757,10 @@ msgstr "_Vseeno zaženi" - msgid "Mark as _Trusted" - msgstr "Označi kot _zaupanja vredno" - -+#: src/nautilus-mime-actions.c:1514 -+msgid "Trust and _Launch" -+msgstr "Zaupaj in _zaženi" -+ - #: ../src/nautilus-mime-actions.c:1713 - #, c-format - msgid "This will open %d separate application." -diff --git a/po/sr.po b/po/sr.po -index 1d006d0b3..f31eb31db 100644 ---- a/po/sr.po -+++ b/po/sr.po -@@ -3725,6 +3725,10 @@ msgstr "_Ипак покрени" - msgid "Mark as _Trusted" - msgstr "_Означи као поверљиво" - -+#: src/nautilus-mime-actions.c:1514 -+msgid "Trust and _Launch" -+msgstr "Веруј и _покрени" -+ - #: src/nautilus-mime-actions.c:1905 - #, c-format - msgid "This will open %d separate application." -diff --git a/po/sr@latin.po b/po/sr@latin.po -index 1cd7559cc..7aa8d3023 100644 ---- a/po/sr@latin.po -+++ b/po/sr@latin.po -@@ -3725,6 +3725,10 @@ msgstr "_Ipak pokreni" - msgid "Mark as _Trusted" - msgstr "_Označi kao poverljivo" - -+#: src/nautilus-mime-actions.c:1514 -+msgid "Trust and _Launch" -+msgstr "Veruj i _pokreni" -+ - #: src/nautilus-mime-actions.c:1905 - #, c-format - msgid "This will open %d separate application." -diff --git a/po/sv.po b/po/sv.po -index 68de06638..05730d44c 100644 ---- a/po/sv.po -+++ b/po/sv.po -@@ -3596,6 +3596,10 @@ msgstr "Starta _ändå" - msgid "Mark as _Trusted" - msgstr "Markera som _pålitlig" - -+#: src/nautilus-mime-actions.c:1612 -+msgid "Trust and _Launch" -+msgstr "Lita på och _kör" -+ - #: src/nautilus-mime-actions.c:1905 - #, c-format - msgid "This will open %d separate application." -diff --git a/po/tr.po b/po/tr.po -index 0c3c5a78d..77284c48c 100644 ---- a/po/tr.po -+++ b/po/tr.po -@@ -3612,6 +3612,10 @@ msgstr "_Yine de Başlat" - msgid "Mark as _Trusted" - msgstr "Güvenilir _Olarak İşaretle" - -+#: src/nautilus-mime-actions.c:1514 -+msgid "Trust and _Launch" -+msgstr "Güven ve _Başlat" -+ - #: ../src/nautilus-mime-actions.c:1704 - #, c-format - msgid "This will open %d separate application." -diff --git a/po/uk.po b/po/uk.po -index 42a90213d..458006d8d 100644 ---- a/po/uk.po -+++ b/po/uk.po -@@ -3706,6 +3706,10 @@ msgstr "Однаково _Запустити " - msgid "Mark as _Trusted" - msgstr "Вважати _перевіреним" - -+#: src/nautilus-mime-actions.c:1612 -+msgid "Trust and _Launch" -+msgstr "Довіритись і _запустити" -+ - #: src/nautilus-mime-actions.c:1905 - #, c-format - msgid "This will open %d separate application." -diff --git a/po/vi.po b/po/vi.po -index 5de71c79a..0442dd124 100644 ---- a/po/vi.po -+++ b/po/vi.po -@@ -3507,6 +3507,10 @@ msgstr "_Chạy bằng mọi giá" - msgid "Mark as _Trusted" - msgstr "Đánh dấu là đáng _tin" - -+#: src/nautilus-mime-actions.c:1514 -+msgid "Trust and _Launch" -+msgstr "Tin và Khởi chạ_y" -+ - #: src/nautilus-mime-actions.c:1905 - #, c-format - msgid "This will open %d separate application." -diff --git a/po/zh_TW.po b/po/zh_TW.po -index 69810ce25..0bddf2fc8 100644 ---- a/po/zh_TW.po -+++ b/po/zh_TW.po -@@ -3427,6 +3427,10 @@ msgstr "強制啟動(_L)" - msgid "Mark as _Trusted" - msgstr "標記成受信任的(_T)" - -+#: src/nautilus-mime-actions.c:1514 -+msgid "Trust and _Launch" -+msgstr "信任並啟動(_L)" -+ - #: src/nautilus-mime-actions.c:1905 - #, c-format - msgid "This will open %d separate application." -diff --git a/src/nautilus-directory-async.c b/src/nautilus-directory-async.c -index e8a10cd3b..b02e3de87 100644 ---- a/src/nautilus-directory-async.c -+++ b/src/nautilus-directory-async.c -@@ -30,6 +30,7 @@ - #include "nautilus-global-preferences.h" - #include "nautilus-link.h" - #include "nautilus-profile.h" -+#include "nautilus-metadata.h" - #include - #include - #include -@@ -3580,13 +3581,17 @@ is_link_trusted (NautilusFile *file, - { - GFile *location; - gboolean res; -+ g_autofree gchar* trusted = NULL; - - if (!is_launcher) - { - return TRUE; - } - -- if (nautilus_file_can_execute (file)) -+ trusted = nautilus_file_get_metadata (file, -+ NAUTILUS_METADATA_KEY_DESKTOP_FILE_TRUSTED, -+ NULL); -+ if (nautilus_file_can_execute (file) && trusted != NULL) - { - return TRUE; - } -diff --git a/src/nautilus-file-operations.c b/src/nautilus-file-operations.c -index 728a80df8..3b55854f4 100644 ---- a/src/nautilus-file-operations.c -+++ b/src/nautilus-file-operations.c -@@ -200,10 +200,10 @@ typedef struct - #define COPY_FORCE _("Copy _Anyway") - - static void --mark_desktop_file_trusted (CommonJob *common, -- GCancellable *cancellable, -- GFile *file, -- gboolean interactive); -+mark_desktop_file_executable (CommonJob *common, -+ GCancellable *cancellable, -+ GFile *file, -+ gboolean interactive); - - static gboolean - is_all_button_text (const char *button_text) -@@ -5246,10 +5246,10 @@ retry: - g_file_equal (copy_job->desktop_location, dest_dir) && - is_trusted_desktop_file (src, job->cancellable)) - { -- mark_desktop_file_trusted (job, -- job->cancellable, -- dest, -- FALSE); -+ mark_desktop_file_executable (job, -+ job->cancellable, -+ dest, -+ FALSE); - } - - if (job->undo_info != NULL) -@@ -7843,9 +7843,9 @@ nautilus_file_operations_empty_trash (GtkWidget *parent_view) - } - - static void --mark_trusted_task_done (GObject *source_object, -- GAsyncResult *res, -- gpointer user_data) -+mark_desktop_file_executable_task_done (GObject *source_object, -+ GAsyncResult *res, -+ gpointer user_data) - { - MarkTrustedJob *job = user_data; - -@@ -7863,13 +7863,11 @@ mark_trusted_task_done (GObject *source_object, - #define TRUSTED_SHEBANG "#!/usr/bin/env xdg-open\n" - - static void --mark_desktop_file_trusted (CommonJob *common, -- GCancellable *cancellable, -- GFile *file, -- gboolean interactive) -+mark_desktop_file_executable (CommonJob *common, -+ GCancellable *cancellable, -+ GFile *file, -+ gboolean interactive) - { -- char *contents, *new_contents; -- gsize length, new_length; - GError *error; - guint32 current_perms, new_perms; - int response; -@@ -7877,96 +7875,6 @@ mark_desktop_file_trusted (CommonJob *common, - - retry: - error = NULL; -- if (!g_file_load_contents (file, -- cancellable, -- &contents, &length, -- NULL, &error)) -- { -- if (interactive) -- { -- response = run_error (common, -- g_strdup (_("Unable to mark launcher trusted (executable)")), -- error->message, -- NULL, -- FALSE, -- CANCEL, RETRY, -- NULL); -- } -- else -- { -- response = 0; -- } -- -- -- if (response == 0 || response == GTK_RESPONSE_DELETE_EVENT) -- { -- abort_job (common); -- } -- else if (response == 1) -- { -- goto retry; -- } -- else -- { -- g_assert_not_reached (); -- } -- -- goto out; -- } -- -- if (!g_str_has_prefix (contents, "#!")) -- { -- new_length = length + strlen (TRUSTED_SHEBANG); -- new_contents = g_malloc (new_length); -- -- strcpy (new_contents, TRUSTED_SHEBANG); -- memcpy (new_contents + strlen (TRUSTED_SHEBANG), -- contents, length); -- -- if (!g_file_replace_contents (file, -- new_contents, -- new_length, -- NULL, -- FALSE, 0, -- NULL, cancellable, &error)) -- { -- g_free (contents); -- g_free (new_contents); -- -- if (interactive) -- { -- response = run_error (common, -- g_strdup (_("Unable to mark launcher trusted (executable)")), -- error->message, -- NULL, -- FALSE, -- CANCEL, RETRY, -- NULL); -- } -- else -- { -- response = 0; -- } -- -- if (response == 0 || response == GTK_RESPONSE_DELETE_EVENT) -- { -- abort_job (common); -- } -- else if (response == 1) -- { -- goto retry; -- } -- else -- { -- g_assert_not_reached (); -- } -- -- goto out; -- } -- g_free (new_contents); -- } -- g_free (contents); -- - info = g_file_query_info (file, - G_FILE_ATTRIBUTE_STANDARD_TYPE "," - G_FILE_ATTRIBUTE_UNIX_MODE, -@@ -8057,10 +7965,10 @@ out: - } - - static void --mark_trusted_task_thread_func (GTask *task, -- gpointer source_object, -- gpointer task_data, -- GCancellable *cancellable) -+mark_desktop_file_executable_task_thread_func (GTask *task, -+ gpointer source_object, -+ gpointer task_data, -+ GCancellable *cancellable) - { - MarkTrustedJob *job = task_data; - CommonJob *common; -@@ -8069,18 +7977,18 @@ mark_trusted_task_thread_func (GTask *task, - - nautilus_progress_info_start (job->common.progress); - -- mark_desktop_file_trusted (common, -- cancellable, -- job->file, -- job->interactive); -+ mark_desktop_file_executable (common, -+ cancellable, -+ job->file, -+ job->interactive); - } - - void --nautilus_file_mark_desktop_file_trusted (GFile *file, -- GtkWindow *parent_window, -- gboolean interactive, -- NautilusOpCallback done_callback, -- gpointer done_callback_data) -+nautilus_file_mark_desktop_file_executable (GFile *file, -+ GtkWindow *parent_window, -+ gboolean interactive, -+ NautilusOpCallback done_callback, -+ gpointer done_callback_data) - { - GTask *task; - MarkTrustedJob *job; -@@ -8091,9 +7999,9 @@ nautilus_file_mark_desktop_file_trusted (GFile *file, - job->done_callback = done_callback; - job->done_callback_data = done_callback_data; - -- task = g_task_new (NULL, NULL, mark_trusted_task_done, job); -+ task = g_task_new (NULL, NULL, mark_desktop_file_executable_task_done, job); - g_task_set_task_data (task, job, NULL); -- g_task_run_in_thread (task, mark_trusted_task_thread_func); -+ g_task_run_in_thread (task, mark_desktop_file_executable_task_thread_func); - g_object_unref (task); - } - -diff --git a/src/nautilus-file-operations.h b/src/nautilus-file-operations.h -index 7b8e7ad68..630474a74 100644 ---- a/src/nautilus-file-operations.h -+++ b/src/nautilus-file-operations.h -@@ -143,10 +143,10 @@ void nautilus_file_operations_link (GList *files, - GtkWindow *parent_window, - NautilusCopyCallback done_callback, - gpointer done_callback_data); --void nautilus_file_mark_desktop_file_trusted (GFile *file, -- GtkWindow *parent_window, -- gboolean interactive, -- NautilusOpCallback done_callback, -- gpointer done_callback_data); -+void nautilus_file_mark_desktop_file_executable (GFile *file, -+ GtkWindow *parent_window, -+ gboolean interactive, -+ NautilusOpCallback done_callback, -+ gpointer done_callback_data); - - #endif /* NAUTILUS_FILE_OPERATIONS_H */ -diff --git a/src/nautilus-metadata.c b/src/nautilus-metadata.c -index 8316426f9..bee04e7ca 100644 ---- a/src/nautilus-metadata.c -+++ b/src/nautilus-metadata.c -@@ -51,6 +51,7 @@ static char *used_metadata_names[] = - NAUTILUS_METADATA_KEY_CUSTOM_ICON_NAME, - NAUTILUS_METADATA_KEY_SCREEN, - NAUTILUS_METADATA_KEY_EMBLEMS, -+ NAUTILUS_METADATA_KEY_DESKTOP_FILE_TRUSTED, - NULL - }; - -diff --git a/src/nautilus-metadata.h b/src/nautilus-metadata.h -index 7a734af31..c4a303ec5 100644 ---- a/src/nautilus-metadata.h -+++ b/src/nautilus-metadata.h -@@ -67,6 +67,8 @@ - #define NAUTILUS_METADATA_KEY_SCREEN "screen" - #define NAUTILUS_METADATA_KEY_EMBLEMS "emblems" - -+#define NAUTILUS_METADATA_KEY_DESKTOP_FILE_TRUSTED "trusted" -+ - guint nautilus_metadata_get_id (const char *metadata); - - #endif /* NAUTILUS_METADATA_H */ -diff --git a/src/nautilus-mime-actions.c b/src/nautilus-mime-actions.c -index 796dabbe1..66d7fbd67 100644 ---- a/src/nautilus-mime-actions.c -+++ b/src/nautilus-mime-actions.c -@@ -42,6 +42,7 @@ - #include "nautilus-program-choosing.h" - #include "nautilus-global-preferences.h" - #include "nautilus-signaller.h" -+#include "nautilus-metadata.h" - - #define DEBUG_FLAG NAUTILUS_DEBUG_MIME - #include "nautilus-debug.h" -@@ -220,7 +221,6 @@ struct - #define RESPONSE_RUN 1000 - #define RESPONSE_DISPLAY 1001 - #define RESPONSE_RUN_IN_TERMINAL 1002 --#define RESPONSE_MARK_TRUSTED 1003 - - #define SILENT_WINDOW_OPEN_LIMIT 5 - #define SILENT_OPEN_LIMIT 5 -@@ -1502,24 +1502,35 @@ untrusted_launcher_response_callback (GtkDialog *dialog, - - switch (response_id) - { -- case RESPONSE_RUN: -+ case GTK_RESPONSE_OK: - { -+ file = nautilus_file_get_location (parameters->file); -+ -+ /* We need to do this in order to prevent malicious desktop files -+ * with the executable bit already set. -+ * See https://bugzilla.gnome.org/show_bug.cgi?id=777991 -+ */ -+ nautilus_file_set_metadata (parameters->file, NAUTILUS_METADATA_KEY_DESKTOP_FILE_TRUSTED, -+ NULL, -+ "yes"); -+ -+ nautilus_file_mark_desktop_file_executable (file, -+ parameters->parent_window, -+ TRUE, -+ NULL, NULL); -+ -+ /* Need to force a reload of the attributes so is_trusted is marked -+ * correctly. Not sure why the general monitor doesn't fire in this -+ * case when setting the metadata -+ */ -+ nautilus_file_invalidate_all_attributes (parameters->file); -+ - screen = gtk_widget_get_screen (GTK_WIDGET (parameters->parent_window)); - uri = nautilus_file_get_uri (parameters->file); - DEBUG ("Launching untrusted launcher %s", uri); - nautilus_launch_desktop_file (screen, uri, NULL, - parameters->parent_window); - g_free (uri); -- } -- break; -- -- case RESPONSE_MARK_TRUSTED: -- { -- file = nautilus_file_get_location (parameters->file); -- nautilus_file_mark_desktop_file_trusted (file, -- parameters->parent_window, -- TRUE, -- NULL, NULL); - g_object_unref (file); - } - break; -@@ -1571,21 +1582,20 @@ activate_desktop_file (ActivateParameters *parameters, - GTK_MESSAGE_WARNING, - GTK_BUTTONS_NONE, - NULL); -+ - g_object_set (dialog, - "text", primary, - "secondary-text", secondary, - NULL); - gtk_dialog_add_button (GTK_DIALOG (dialog), -- _("_Launch Anyway"), RESPONSE_RUN); -+ _("_Cancel"), GTK_RESPONSE_CANCEL); -+ -+ gtk_dialog_set_default_response (GTK_DIALOG (dialog), GTK_RESPONSE_CANCEL); - if (nautilus_file_can_set_permissions (file)) - { - gtk_dialog_add_button (GTK_DIALOG (dialog), -- _("Mark as _Trusted"), RESPONSE_MARK_TRUSTED); -+ _("Trust and _Launch"), GTK_RESPONSE_OK); - } -- gtk_dialog_add_button (GTK_DIALOG (dialog), -- _("_Cancel"), GTK_RESPONSE_CANCEL); -- gtk_dialog_set_default_response (GTK_DIALOG (dialog), GTK_RESPONSE_CANCEL); -- - g_signal_connect (dialog, "response", - G_CALLBACK (untrusted_launcher_response_callback), - parameters_desktop); --- -2.14.3 - diff --git a/SOURCES/0001-translation-Add-Japanese.patch b/SOURCES/0001-translation-Add-Japanese.patch deleted file mode 100644 index 6be7461..0000000 --- a/SOURCES/0001-translation-Add-Japanese.patch +++ /dev/null @@ -1,7362 +0,0 @@ -From db7be70130a382416f425365b46df9757c8ece3e Mon Sep 17 00:00:00 2001 -From: Carlos Soriano -Date: Mon, 29 May 2017 10:58:25 +0200 -Subject: [PATCH] translation: Add japanese - ---- - po/ja.po | 4732 ++++++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 2570 insertions(+), 2162 deletions(-) - -diff --git a/po/ja.po b/po/ja.po -index 89cbe16cd..3b9146bb0 100644 ---- a/po/ja.po -+++ b/po/ja.po -@@ -10,760 +10,1304 @@ - # Takayuki KUSANO , 2009-2012. - # Hideki Yamane (Debian-JP) , 2009. - # Jiro Matsuzawa , 2011-2016. --# -+# - # * Merged eel since v2.25.2. - # Copyright (C) 2000-2005,2007,2008 Free Software Foundation, Inc. --# -+# kmoriguc , 2017. #zanata -+# ljanda , 2017. #zanata - msgid "" - msgstr "" --"Project-Id-Version: nautilus master\n" --"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product=nautilus&keywords=I18N+L10N&component=Internationalization (i18n)\n" --"POT-Creation-Date: 2016-03-13 01:47+0000\n" --"PO-Revision-Date: 2016-03-13 15:52+0900\n" --"Last-Translator: Jiro Matsuzawa \n" --"Language-Team: Japanese \n" --"Language: ja\n" -+"Project-Id-Version: nautilus 3.22.3\n" -+"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product=" -+"nautilus\n" -+"POT-Creation-Date: 2017-05-18 10:57+0200\n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -+"PO-Revision-Date: 2017-05-23 01:27+0000\n" -+"Last-Translator: kmoriguc \n" -+"Language-Team: Japanese \n" -+"Language: ja\n" - "Plural-Forms: nplurals=1; plural=0;\n" -+"X-Generator: Zanata 4.1.1\n" -+ -+#: data/nautilus-autorun-software.desktop.in:3 -+msgid "Run Software" -+msgstr "ソフトウェアの実行" -+ -+#. Translators: Do NOT translate or transliterate this text (this is an icon file name)! -+#: data/nautilus-autorun-software.desktop.in:7 -+msgid "application-x-executable" -+msgstr "application-x-executable" - --#: ../data/org.gnome.Nautilus.appdata.xml.in.h:1 -+#: data/org.gnome.Nautilus.appdata.xml.in:6 - msgid "Nautilus" - msgstr "Nautilus" - --#: ../data/org.gnome.Nautilus.appdata.xml.in.h:2 --#: ../data/org.gnome.Nautilus.desktop.in.in.h:2 -+#: data/org.gnome.Nautilus.appdata.xml.in:7 -+#: data/org.gnome.Nautilus.desktop.in:4 - msgid "Access and organize files" - msgstr "ファイルの操作や整理をします" - --#: ../data/org.gnome.Nautilus.appdata.xml.in.h:3 --msgid "Nautilus, also known as Files, is the default file manager of the GNOME desktop. It provides a simple and integrated way of managing your files and browsing your file system." --msgstr "Nautilus (「ファイル」という名称でも知られています) は、GNOME デスクトップで使用されているデフォルトのファイルマネージャーです。ファイルの管理やファイルシステムの閲覧をシンプルかつ統合的に行うことができます。" -- --#: ../data/org.gnome.Nautilus.appdata.xml.in.h:4 --msgid "Nautilus supports all the basic functions of a file manager and more. It can search and manage your files and folders, both locally and on a network, read and write data to and from removable media, run scripts, and launch applications. It has three views: Icon Grid, Icon List, and Tree List. Its functions can be extended with plugins and scripts." --msgstr "Nautilus は、ファイルマネージャーとしての基本機能を完備するだけでなく、便利な機能もたくさんあります。たとえば、ファイルとフォルダーの検索と管理、ローカルおよびネットワーク上でのファイル操作、リムーバルメディアのデータ読み書き、スクリプトの実行アプリケーションの起動などです。三種類の表示モードが利用できます: アイコングリッド、アイコンリスト、そしてツリーリストです。プラグインとスクリプトを利用して機能拡張ができます。" -+#: data/org.gnome.Nautilus.appdata.xml.in:9 -+msgid "" -+"Nautilus, also known as Files, is the default file manager of the GNOME " -+"desktop. It provides a simple and integrated way of managing your files and " -+"browsing your file system." -+msgstr "" -+"Nautilus (「ファイル」という名称でも知られています) は、GNOME " -+"デスクトップで使用されているデフォルトのファイルマネージャーです。ファイルの管理やファイルシステムの閲覧をシンプルかつ統合的に行うことができます。" - --#: ../data/nautilus-autorun-software.desktop.in.in.h:1 --msgid "Run Software" --msgstr "ソフトウェアの実行" -+#: data/org.gnome.Nautilus.appdata.xml.in:13 -+msgid "" -+"Nautilus supports all the basic functions of a file manager and more. It can " -+"search and manage your files and folders, both locally and on a network, " -+"read and write data to and from removable media, run scripts, and launch " -+"applications. It has three views: Icon Grid, Icon List, and Tree List. Its " -+"functions can be extended with plugins and scripts." -+msgstr "" -+"Nautilus " -+"は、ファイルマネージャーとしての基本機能を完備するだけでなく、便利な機能もたくさんあります。たとえば、ファイルとフォルダーの検索と管理、ローカルおよびネットワーク上でのファイル操作、リムーバルメディアのデータ読み書き、スクリプトの実行アプリケーションの起動などです。三種類の表示モードが利用できます:" -+" アイコングリッド、アイコンリスト、そしてツリーリストです。プラグインとスクリプトを利用して機能拡張ができます。" - --#: ../data/org.gnome.Nautilus.desktop.in.in.h:1 --#: ../src/nautilus-mime-actions.c:99 ../src/nautilus-properties-window.c:4198 --#: ../src/nautilus-window.c:2727 -+#: data/org.gnome.Nautilus.desktop.in:3 src/nautilus-mime-actions.c:102 -+#: src/nautilus-properties-window.c:4629 src/nautilus-window.c:2908 - msgid "Files" - msgstr "ファイル" - --#: ../data/org.gnome.Nautilus.desktop.in.in.h:3 -+#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! -+#: data/org.gnome.Nautilus.desktop.in:6 - msgid "folder;manager;explore;disk;filesystem;" --msgstr "folder;manager;explore;disk;filesystem;フォルダー;マネージャー;エクスプローラー;ディスク;ファイルシステム;" -+msgstr "" -+"folder;manager;explore;disk;filesystem;フォルダー;マネージャー;エクスプローラー;ディスク;ファイルシステム;" - --#: ../data/org.gnome.Nautilus.desktop.in.in.h:4 -+#. Translators: Do NOT translate or transliterate this text (this is an icon file name)! -+#: data/org.gnome.Nautilus.desktop.in:9 -+msgid "org.gnome.Nautilus" -+msgstr "org.gnome.Nautilus" -+ -+#: data/org.gnome.Nautilus.desktop.in:24 - msgid "New Window" - msgstr "新しいウィンドウ" - --#: ../data/org.gnome.nautilus.gschema.xml.h:1 -+#: data/org.gnome.nautilus.gschema.xml:80 - msgid "Where to position newly open tabs in browser windows" - msgstr "ブラウザーウィンドウで新しいタブを開く位置" - --#: ../data/org.gnome.nautilus.gschema.xml.h:2 --msgid "If set to \"after-current-tab\", then new tabs are inserted after the current tab. If set to \"end\", then new tabs are appended to the end of the tab list." --msgstr "\"after-current-tab\" にすると、新しいタブが現在フォーカスが当たっているタブの後ろに挿入されるようになります。\"end\" にすると、新しいタブは常に一番最後に追加されます。" -+#: data/org.gnome.nautilus.gschema.xml:81 -+msgid "" -+"If set to \"after-current-tab\", then new tabs are inserted after the " -+"current tab. If set to \"end\", then new tabs are appended to the end of the " -+"tab list." -+msgstr "" -+"\"after-current-tab\" にすると、新しいタブが現在フォーカスが当たっているタブの後ろに挿入されるようになります。\"end\" " -+"にすると、新しいタブは常に一番最後に追加されます。" - --#: ../data/org.gnome.nautilus.gschema.xml.h:3 -+#: data/org.gnome.nautilus.gschema.xml:85 - msgid "Always use the location entry, instead of the pathbar" - msgstr "常に場所エントリを使用する (パスバーは使わない)" - --#: ../data/org.gnome.nautilus.gschema.xml.h:4 --msgid "If set to true, then Nautilus browser windows will always use a textual input entry for the location toolbar, instead of the pathbar." -+#: data/org.gnome.nautilus.gschema.xml:86 -+msgid "" -+"If set to true, then Nautilus browser windows will always use a textual " -+"input entry for the location toolbar, instead of the pathbar." - msgstr "true にすると、Nautilus ブラウザーの場所バーはパスバーのスタイルではなく、キーボードから入力するスタイルを使用します。" - --#: ../data/org.gnome.nautilus.gschema.xml.h:5 -+#: data/org.gnome.nautilus.gschema.xml:90 - msgid "Where to perform recursive search" - msgstr "再帰検索を行う場所" - --#: ../data/org.gnome.nautilus.gschema.xml.h:6 --msgid "In which locations Nautilus should search on subfolders. Available values are 'local-only', 'always', 'never'." -+#: data/org.gnome.nautilus.gschema.xml:91 -+msgid "" -+"In which locations Nautilus should search on subfolders. Available values " -+"are 'local-only', 'always', 'never'." - msgstr "どの場所でサブフォルダー内の検索を行うかの設定です。指定可能な値: 'local-only', 'always', 'never'" - --#: ../data/org.gnome.nautilus.gschema.xml.h:7 -+#: data/org.gnome.nautilus.gschema.xml:95 - msgid "Filter the search dates using either last used or last modified" - msgstr "検索フィルターの日付に最終使用日時か最終更新日時のどちらを指定するか" - --#: ../data/org.gnome.nautilus.gschema.xml.h:8 -+#: data/org.gnome.nautilus.gschema.xml:96 - msgid "Filter the search dates using either last used or last modified." - msgstr "検索フィルターの日付に最終使用日時か最終更新日時のどちらを指定するかの設定です。" - --#: ../data/org.gnome.nautilus.gschema.xml.h:9 -+#: data/org.gnome.nautilus.gschema.xml:100 - msgid "Whether to show a context menu item to delete permanently" - msgstr "ファイルを完全に削除する項目をコンテキストメニューに追加する" - --#: ../data/org.gnome.nautilus.gschema.xml.h:10 --msgid "If set to true, then Nautilus will show a delete permanently context menu item to bypass the Trash." --msgstr "true にすると、ファイルを完全に削除するための項目をコンテキストメニューに追加します。この操作はファイルをゴミ箱へ移動せずに抹消します。" -+#: data/org.gnome.nautilus.gschema.xml:101 -+msgid "" -+"If set to true, then Nautilus will show a delete permanently context menu " -+"item to bypass the Trash." -+msgstr "" -+"true にすると、ファイルを完全に削除するための項目をコンテキストメニューに追加します。この操作はファイルをゴミ箱へ移動せずに抹消します。" - --#: ../data/org.gnome.nautilus.gschema.xml.h:11 --msgid "Whether to show context menu items to create links from copied or selected files" -+#: data/org.gnome.nautilus.gschema.xml:105 -+msgid "" -+"Whether to show context menu items to create links from copied or selected " -+"files" - msgstr "コピーまたは選択したファイルのリンクを作成する項目をコンテキストメニューに追加する" - --#: ../data/org.gnome.nautilus.gschema.xml.h:12 --msgid "If set to true, then Nautilus will show context menu items to create links from the copied or selected files." -+#: data/org.gnome.nautilus.gschema.xml:106 -+msgid "" -+"If set to true, then Nautilus will show context menu items to create links " -+"from the copied or selected files." - msgstr "true にすると、コピーまたは選択したファイルのリンクを作成するための項目をコンテキストメニューに追加します。" - --#: ../data/org.gnome.nautilus.gschema.xml.h:13 --msgid "Whether to ask for confirmation when deleting files, or emptying the Trash" -+#: data/org.gnome.nautilus.gschema.xml:110 -+msgid "" -+"Whether to ask for confirmation when deleting files, or emptying the Trash" - msgstr "ファイルを削除したりゴミ箱へ移動するときに確認する" - --#: ../data/org.gnome.nautilus.gschema.xml.h:14 --msgid "If set to true, then Nautilus will ask for confirmation when you attempt to delete files, or empty the Trash." -+#: data/org.gnome.nautilus.gschema.xml:111 -+msgid "" -+"If set to true, then Nautilus will ask for confirmation when you attempt to " -+"delete files, or empty the Trash." - msgstr "true にすると、ファイルを削除したりゴミ箱に移動するたびに確認ダイアログを表示します。" - --#: ../data/org.gnome.nautilus.gschema.xml.h:15 -+#: data/org.gnome.nautilus.gschema.xml:115 -+msgid "" -+"Whether to extract compressed files instead of opening them in another " -+"application" -+msgstr "圧縮ファイルを別のアプリケーションで開くのではなく、展開するかどうか" -+ -+#: data/org.gnome.nautilus.gschema.xml:116 -+msgid "" -+"If set to true, then Nautilus will automatically extract compressed files " -+"instead of opening them in another application" -+msgstr "true に設定すると、Nautilus は圧縮ファイルを別のアプリケーションで開くのではなく、自動的に展開します" -+ -+#: data/org.gnome.nautilus.gschema.xml:121 - msgid "When to show number of items in a folder" - msgstr "フォルダーの中にあるアイテム数を表示する条件" - --#: ../data/org.gnome.nautilus.gschema.xml.h:16 --msgid "Speed tradeoff for when to show the number of items in a folder. If set to \"always\" then always show item counts, even if the folder is on a remote server. If set to \"local-only\" then only show counts for local file systems. If set to \"never\" then never bother to compute item counts." --msgstr "フォルダーの中にあるアイテムの総数をどういう時に表示するかです。指定内容により処理速度のトレードオフがあります。\"always\" にすると、リモートサーバー上にあるファイルもカウントします。\"local-only\" にすると、ローカルのファイルシステム上にあるファイルのみカウントします。\"never\" にすると、わざわざアイテムの総数をカウントしません。" -+#: data/org.gnome.nautilus.gschema.xml:122 -+msgid "" -+"Speed tradeoff for when to show the number of items in a folder. If set to " -+"\"always\" then always show item counts, even if the folder is on a remote " -+"server. If set to \"local-only\" then only show counts for local file " -+"systems. If set to \"never\" then never bother to compute item counts." -+msgstr "" -+"フォルダーの中にあるアイテムの総数をどういう時に表示するかです。指定内容により処理速度のトレードオフがあります。\"always\" " -+"にすると、リモートサーバー上にあるファイルもカウントします。\"local-only\" " -+"にすると、ローカルのファイルシステム上にあるファイルのみカウントします。\"never\" にすると、わざわざアイテムの総数をカウントしません。" - --#: ../data/org.gnome.nautilus.gschema.xml.h:17 -+#: data/org.gnome.nautilus.gschema.xml:126 - msgid "Type of click used to launch/open files" - msgstr "アイテムを起動したり開いたりする際に使用するクリックの種類" - --#: ../data/org.gnome.nautilus.gschema.xml.h:18 --msgid "Possible values are \"single\" to launch files on a single click, or \"double\" to launch them on a double click." -+#: data/org.gnome.nautilus.gschema.xml:127 -+msgid "" -+"Possible values are \"single\" to launch files on a single click, or " -+"\"double\" to launch them on a double click." - msgstr "シングルクリックでアイテムを起動する場合は \"single\"、ダブルクリックでアイテムを起動する場合は \"double\" です。" - --#: ../data/org.gnome.nautilus.gschema.xml.h:19 -+#: data/org.gnome.nautilus.gschema.xml:131 - msgid "What to do with executable text files when activated" - msgstr "実行型式のテキストファイルをクリックした際の扱い方" - --#: ../data/org.gnome.nautilus.gschema.xml.h:20 --msgid "What to do with executable text files when they are activated (single or double clicked). Possible values are \"launch\" to launch them as programs, \"ask\" to ask what to do via a dialog, and \"display\" to display them as text files." --msgstr "(シングル/ダブルクリックで) 実行型式のテキストファイルをクリックした際にどのように扱うかです。利用可能な値: \"launch\" にするとプログラムとして起動、\"ask\" にするとダイアログ表示、\"display\" にするとテキストファイルとして表示" -+#: data/org.gnome.nautilus.gschema.xml:132 -+msgid "" -+"What to do with executable text files when they are activated (single or " -+"double clicked). Possible values are \"launch\" to launch them as programs, " -+"\"ask\" to ask what to do via a dialog, and \"display\" to display them as " -+"text files." -+msgstr "" -+"(シングル/ダブルクリックで) 実行型式のテキストファイルをクリックした際にどのように扱うかです。利用可能な値: \"launch\" " -+"にするとプログラムとして起動、\"ask\" にするとダイアログ表示、\"display\" にするとテキストファイルとして表示" - --#: ../data/org.gnome.nautilus.gschema.xml.h:21 -+#: data/org.gnome.nautilus.gschema.xml:136 - msgid "Show the package installer for unknown MIME types" - msgstr "MIME 型が不明な場合にパッケージのインストーラーを表示する" - --#: ../data/org.gnome.nautilus.gschema.xml.h:22 --msgid "Whether to show the user a package installer dialog in case an unknown MIME type is opened, in order to search for an application to handle it." --msgstr "未知の MIME 型のファイルを開こうとしたときに、パッケージインストーラーのダイアログを表示するかどうかの設定です。パッケージインストーラーを使ってファイルを扱えるアプリケーションを探すことができます。" -+#: data/org.gnome.nautilus.gschema.xml:137 -+msgid "" -+"Whether to show the user a package installer dialog in case an unknown MIME " -+"type is opened, in order to search for an application to handle it." -+msgstr "" -+"未知の MIME " -+"型のファイルを開こうとしたときに、パッケージインストーラーのダイアログを表示するかどうかの設定です。パッケージインストーラーを使ってファイルを扱えるアプリケーションを探すことができます。" - --#: ../data/org.gnome.nautilus.gschema.xml.h:23 --msgid "Show a warning dialog for the change of the shortcut for move to the Trash" -+#: data/org.gnome.nautilus.gschema.xml:141 -+msgid "" -+"Show a warning dialog for the change of the shortcut for move to the Trash" - msgstr "ゴミ箱へ移動するショートカットの変更についてダイアログで注意を促す" - --#: ../data/org.gnome.nautilus.gschema.xml.h:24 --msgid "Show a warning dialog for the change of the shortcut for move to the Trash from Control + Delete to just Delete." -+#: data/org.gnome.nautilus.gschema.xml:142 -+msgid "" -+"Show a warning dialog for the change of the shortcut for move to the Trash " -+"from Control + Delete to just Delete." - msgstr "ゴミ箱へ移動するショートカットを Ctrl+Delete から Delete のみに変更した場合にダイアログで注意を促します。" - --#: ../data/org.gnome.nautilus.gschema.xml.h:25 -+#: data/org.gnome.nautilus.gschema.xml:146 - msgid "Use extra mouse button events in Nautilus' browser window" - msgstr "Nautilus のブラウザーウィンドウでマウスの特別なボタンを使う" - --#: ../data/org.gnome.nautilus.gschema.xml.h:26 --msgid "For users with mice that have \"Forward\" and \"Back\" buttons, this key will determine if any action is taken inside of Nautilus when either is pressed." --msgstr "「進む」「戻る」ボタンのあるマウスを使う場合、Nautilus 中においてそれらのボタンを押した時に何らかのアクションを実行するかどうか、このキーによって 決定します" -+#: data/org.gnome.nautilus.gschema.xml:147 -+msgid "" -+"For users with mice that have \"Forward\" and \"Back\" buttons, this key " -+"will determine if any action is taken inside of Nautilus when either is " -+"pressed." -+msgstr "" -+"「進む」「戻る」ボタンのあるマウスを使う場合、Nautilus " -+"中においてそれらのボタンを押した時に何らかのアクションを実行するかどうか、このキーによって 決定します" - --#: ../data/org.gnome.nautilus.gschema.xml.h:27 -+#: data/org.gnome.nautilus.gschema.xml:151 - msgid "Mouse button to activate the \"Forward\" command in browser window" - msgstr "ブラウザーウィンドウで「進む」コマンドを実行するマウスのボタン" - --#: ../data/org.gnome.nautilus.gschema.xml.h:28 --msgid "For users with mice that have buttons for \"Forward\" and \"Back\", this key will set which button activates the \"Forward\" command in a browser window. Possible values range between 6 and 14." --msgstr "「進む」「戻る」ボタンのあるボタンを使う場合、ブラウザーウィンドウで「進む」コマンドをどのボタンで実行するかを、このキーで設定します。可能な値は6と14の間です。" -+#: data/org.gnome.nautilus.gschema.xml:152 -+msgid "" -+"For users with mice that have buttons for \"Forward\" and \"Back\", this key " -+"will set which button activates the \"Forward\" command in a browser window. " -+"Possible values range between 6 and 14." -+msgstr "" -+"「進む」「戻る」ボタンのあるボタンを使う場合、ブラウザーウィンドウで「進む」コマンドをどのボタンで実行するかを、このキーで設定します。可能な値は6と14の間です。" - --#: ../data/org.gnome.nautilus.gschema.xml.h:29 -+#: data/org.gnome.nautilus.gschema.xml:156 - msgid "Mouse button to activate the \"Back\" command in browser window" - msgstr "ブラウザーウィンドウで「戻る」コマンドを実行するマウスのボタン" - --#: ../data/org.gnome.nautilus.gschema.xml.h:30 --msgid "For users with mice that have buttons for \"Forward\" and \"Back\", this key will set which button activates the \"Back\" command in a browser window. Possible values range between 6 and 14." --msgstr "「進む」「戻る」ボタンのあるボタンを使う場合、ブラウザーウィンドウで「戻る」コマンドをどのボタンで実行するかを、このキーで設定します。可能な値は6と14の間です。" -+#: data/org.gnome.nautilus.gschema.xml:157 -+msgid "" -+"For users with mice that have buttons for \"Forward\" and \"Back\", this key " -+"will set which button activates the \"Back\" command in a browser window. " -+"Possible values range between 6 and 14." -+msgstr "" -+"「進む」「戻る」ボタンのあるボタンを使う場合、ブラウザーウィンドウで「戻る」コマンドをどのボタンで実行するかを、このキーで設定します。可能な値は6と14の間です。" - --#: ../data/org.gnome.nautilus.gschema.xml.h:31 -+#: data/org.gnome.nautilus.gschema.xml:162 - msgid "When to show thumbnails of files" - msgstr "ファイルのサムネイルをいつ表示するか" - --#: ../data/org.gnome.nautilus.gschema.xml.h:32 --msgid "Speed trade-off for when to show a file as a thumbnail. If set to \"always\" then always thumbnail, even if the folder is on a remote server. If set to \"local-only\" then only show thumbnails for local file systems. If set to \"never\" then never bother to thumbnail files, just use a generic icon. Despite what the name may suggest, this applies to any previewable file type." --msgstr "ファイルのサムネイルをどういう時に表示するかは、処理速度のトレードオフがあります。\"always\" にすると、リモートサーバー上にあるファイルでも常にサムネイル表示します。\"local-only\" にすると、ローカルのファイルシステム上のファイルのみサムネイル表示します。\"never\" にすると、サムネイル表示せずに一般的なアイコン表示になります。ファイル名から推測されるものに関わらず、これはプレビュー可能な種類のファイルに適用されます。" -+#: data/org.gnome.nautilus.gschema.xml:163 -+msgid "" -+"Speed trade-off for when to show a file as a thumbnail. If set to \"always\" " -+"then always thumbnail, even if the folder is on a remote server. If set to " -+"\"local-only\" then only show thumbnails for local file systems. If set to " -+"\"never\" then never bother to thumbnail files, just use a generic icon. " -+"Despite what the name may suggest, this applies to any previewable file type." -+"" -+msgstr "" -+"ファイルのサムネイルをどういう時に表示するかは、処理速度のトレードオフがあります。\"always\" " -+"にすると、リモートサーバー上にあるファイルでも常にサムネイル表示します。\"local-only\" " -+"にすると、ローカルのファイルシステム上のファイルのみサムネイル表示します。\"never\" " -+"にすると、サムネイル表示せずに一般的なアイコン表示になります。ファイル名から推測されるものに関わらず、これはプレビュー可能な種類のファイルに適用されます。" - --#: ../data/org.gnome.nautilus.gschema.xml.h:33 -+#: data/org.gnome.nautilus.gschema.xml:167 - msgid "Maximum image size for thumbnailing" - msgstr "サムネイル表示が可能な画像の最大サイズ" - --#: ../data/org.gnome.nautilus.gschema.xml.h:34 --msgid "Images over this size (in bytes) won't be thumbnailed. The purpose of this setting is to avoid thumbnailing large images that may take a long time to load or use lots of memory." --msgstr "サムネイル表示の際に画像サイズがこのサイズ (バイト単位) を越えるものは表示しません。この設定の意図は表示するまでに時間がかかり、多くのメモリを消費する大きな画像のサムネイル表示を制限するためです。" -- --#: ../data/org.gnome.nautilus.gschema.xml.h:35 --msgid "Show folders first in windows" --msgstr "ウィンドウの中でフォルダーを最初に表示する" -- --#: ../data/org.gnome.nautilus.gschema.xml.h:36 --msgid "If set to true, then Nautilus shows folders prior to showing files in the icon and list views." --msgstr "true にすると、アイコン表示と一覧表示でファイルの前にフォルダーを表示します。" -+#: data/org.gnome.nautilus.gschema.xml:168 -+msgid "" -+"Images over this size (in bytes) won't be thumbnailed. The purpose of this " -+"setting is to avoid thumbnailing large images that may take a long time to " -+"load or use lots of memory." -+msgstr "" -+"サムネイル表示の際に画像サイズがこのサイズ (バイト単位) " -+"を越えるものは表示しません。この設定の意図は表示するまでに時間がかかり、多くのメモリを消費する大きな画像のサムネイル表示を制限するためです。" - --#: ../data/org.gnome.nautilus.gschema.xml.h:37 -+#: data/org.gnome.nautilus.gschema.xml:175 - msgid "Default sort order" - msgstr "デフォルトの並び順" - --#: ../data/org.gnome.nautilus.gschema.xml.h:38 --msgid "The default sort-order for items in the icon view. Possible values are \"name\", \"size\", \"type\" and \"mtime\"." -+#: data/org.gnome.nautilus.gschema.xml:176 -+msgid "" -+"The default sort-order for items in the icon view. Possible values are " -+"\"name\", \"size\", \"type\" and \"mtime\"." - msgstr "アイコン表示でアイテムを並べるデフォルトの順番です。利用可能な値: \"name\", \"size\", \"type\", \"mtime\"" - --#: ../data/org.gnome.nautilus.gschema.xml.h:39 -+#: data/org.gnome.nautilus.gschema.xml:180 - msgid "Reverse sort order in new windows" - msgstr "新しいウィンドウの中で逆順に並べ替える" - --#: ../data/org.gnome.nautilus.gschema.xml.h:40 --msgid "If true, files in new windows will be sorted in reverse order. I.e., if sorted by name, then instead of sorting the files from \"a\" to \"z\", they will be sorted from \"z\" to \"a\"; if sorted by size, instead of being incrementally they will be sorted decrementally." --msgstr "true にすると、ウィンドウに表示されるファイルが逆順に並びます。つまり、名前順の場合は \"a\" 〜 \"z\" でファイルを並べ替えるかわりに、\"z\" 〜 \"a\" の順番で並べます。サイズ順にすると、大きい順のかわりに小さい順で並べます。" -+#: data/org.gnome.nautilus.gschema.xml:181 -+msgid "" -+"If true, files in new windows will be sorted in reverse order. I.e., if " -+"sorted by name, then instead of sorting the files from \"a\" to \"z\", they " -+"will be sorted from \"z\" to \"a\"; if sorted by size, instead of being " -+"incrementally they will be sorted decrementally." -+msgstr "" -+"true にすると、ウィンドウに表示されるファイルが逆順に並びます。つまり、名前順の場合は \"a\" 〜 \"z\" " -+"でファイルを並べ替えるかわりに、\"z\" 〜 \"a\" の順番で並べます。サイズ順にすると、大きい順のかわりに小さい順で並べます。" - --#: ../data/org.gnome.nautilus.gschema.xml.h:41 -+#: data/org.gnome.nautilus.gschema.xml:191 - msgid "Default folder viewer" - msgstr "デフォルトのフォルダー表示形式" - --#: ../data/org.gnome.nautilus.gschema.xml.h:42 --msgid "When a folder is visited this viewer is used unless you have selected another view for that particular folder. Possible values are \"list-view\", and \"icon-view\"." --msgstr "フォルダーを開いたら、特定のフォルダーで別の表示形式を選択していない限り、デフォルトで使用する表示形式です。指定可能な値: \"list-view\", \"icon-view\"" -+#: data/org.gnome.nautilus.gschema.xml:192 -+msgid "" -+"When a folder is visited this viewer is used unless you have selected " -+"another view for that particular folder. Possible values are \"list-view\", " -+"and \"icon-view\"." -+msgstr "" -+"フォルダーを開いたら、特定のフォルダーで別の表示形式を選択していない限り、デフォルトで使用する表示形式です。指定可能な値: \"list-view\", " -+"\"icon-view\"" - --#: ../data/org.gnome.nautilus.gschema.xml.h:43 -+#: data/org.gnome.nautilus.gschema.xml:196 - msgid "Whether to show hidden files" - msgstr "隠しファイルを表示するかどうか" - --#: ../data/org.gnome.nautilus.gschema.xml.h:44 --msgid "This key is deprecated and ignored. The \"show-hidden\" key from \"org.gtk.Settings.FileChooser\" is now used instead." --msgstr "このキーは非推奨であり、無視されます。代わりに \"org.gtk.Settings.FileChooser\" の \"show-hidden\" が使用されます。" -+#: data/org.gnome.nautilus.gschema.xml:197 -+msgid "" -+"This key is deprecated and ignored. The \"show-hidden\" key from \"org.gtk." -+"Settings.FileChooser\" is now used instead." -+msgstr "" -+"このキーは非推奨であり、無視されます。代わりに \"org.gtk.Settings.FileChooser\" の \"show-hidden\" " -+"が使用されます。" - --#: ../data/org.gnome.nautilus.gschema.xml.h:45 -+#: data/org.gnome.nautilus.gschema.xml:201 - msgid "What viewer should be used when searching" - msgstr "検索結果を表示するモード" - --#: ../data/org.gnome.nautilus.gschema.xml.h:46 --msgid "When searching Nautilus will switch to the type of view in this setting." -+#: data/org.gnome.nautilus.gschema.xml:202 -+msgid "" -+"When searching Nautilus will switch to the type of view in this setting." - msgstr "検索結果の表示モードを指定します。" - --#: ../data/org.gnome.nautilus.gschema.xml.h:47 -+#: data/org.gnome.nautilus.gschema.xml:206 - msgid "Bulk rename utility" - msgstr "一括リネームユーティリティ" - --#: ../data/org.gnome.nautilus.gschema.xml.h:48 --msgid "If set, Nautilus will append URIs of selected files and treat the result as a command line for bulk renaming. Bulk rename applications can register themselves in this key by setting the key to a space-separated string of their executable name and any command line options. If the executable name is not set to a full path, it will be searched for in the search path." --msgstr "これが設定されると、一括リネーム対象として選択されたファイル群の各 URI が連結され、リネームアプリケーションのコマンドライン引数として扱われます。一括リネームアプリケーションは、このキーに対して自身を登録することができます。その実行ファイル名と任意のコマンドラインオプションからなるスペース区切り文字列をこのキーに指定します。実行ファイル名がフルパス指定されていない場合は、そのコマンドを検索パスから探します。" -+#: data/org.gnome.nautilus.gschema.xml:207 -+msgid "" -+"If set, Nautilus will append URIs of selected files and treat the result as " -+"a command line for bulk renaming. Bulk rename applications can register " -+"themselves in this key by setting the key to a space-separated string of " -+"their executable name and any command line options. If the executable name " -+"is not set to a full path, it will be searched for in the search path." -+msgstr "" -+"これが設定されると、一括リネーム対象として選択されたファイル群の各 URI " -+"が連結され、リネームアプリケーションのコマンドライン引数として扱われます。一括リネームアプリケーションは、このキーに対して自身を登録することができます。その実行ファイル名と任意のコマンドラインオプションからなるスペース区切り文字列をこのキーに指定します。実行ファイル名がフルパス指定されていない場合は、そのコマンドを検索パスから探します。" - --#: ../data/org.gnome.nautilus.gschema.xml.h:49 --msgid "Whether to open the hovered folder after a timeout when drag and drop operation" -+#: data/org.gnome.nautilus.gschema.xml:211 -+msgid "" -+"Whether to open the hovered folder after a timeout when drag and drop " -+"operation" - msgstr "アイテムをドラッグしてフォルダー上で一定時間待機すると該当のフォルダーを開く" - --#: ../data/org.gnome.nautilus.gschema.xml.h:50 --msgid "If this is set to true, when performing a drag and drop operation the hovered folder will open automatically after a timeout." -+#: data/org.gnome.nautilus.gschema.xml:212 -+msgid "" -+"If this is set to true, when performing a drag and drop operation the " -+"hovered folder will open automatically after a timeout." - msgstr "true にした場合、アイテムをドラッグしてフォルダーの上で一定時間待機すると、該当のフォルダー内に遷移します。" - --#: ../data/org.gnome.nautilus.gschema.xml.h:51 -+#: data/org.gnome.nautilus.gschema.xml:219 -+msgid "Default format for compressing files" -+msgstr "ファイル圧縮時のデフォルト形式" -+ -+#: data/org.gnome.nautilus.gschema.xml:220 -+msgid "The format that will be selected when compressing files." -+msgstr "ファイルを圧縮する際に選択される形式。" -+ -+#: data/org.gnome.nautilus.gschema.xml:227 - msgid "List of possible captions on icons" - msgstr "アイコンの下に表示する見出し" - --#: ../data/org.gnome.nautilus.gschema.xml.h:52 --msgid "A list of captions below an icon in the icon view and the desktop. The actual number of captions shown depends on the zoom level. Some possible values are: \"size\", \"type\", \"date_modified\", \"owner\", \"group\", \"permissions\", and \"mime_type\"." --msgstr "デスクトップとアイコン表示でアイコンの下に表示する見出しの一覧です。実際に表示できる見出しの数はズームレベルに依存します。利用可能な値: \"size\", \"type\", \"date_modified\", \"owner\", \"group\", \"permissions\", \"mime_type\"" -+#: data/org.gnome.nautilus.gschema.xml:228 -+msgid "" -+"A list of captions below an icon in the icon view and the desktop. The " -+"actual number of captions shown depends on the zoom level. Some possible " -+"values are: \"size\", \"type\", \"date_modified\", \"owner\", \"group\", " -+"\"permissions\", and \"mime_type\"." -+msgstr "" -+"デスクトップとアイコン表示でアイコンの下に表示する見出しの一覧です。実際に表示できる見出しの数はズームレベルに依存します。利用可能な値: " -+"\"size\", \"type\", \"date_modified\", \"owner\", \"group\", " -+"\"permissions\", \"mime_type\"" - --#: ../data/org.gnome.nautilus.gschema.xml.h:53 -+#: data/org.gnome.nautilus.gschema.xml:232 - msgid "Default icon zoom level" - msgstr "デフォルトのアイコン表示のズームレベル" - --#: ../data/org.gnome.nautilus.gschema.xml.h:54 -+#: data/org.gnome.nautilus.gschema.xml:233 - msgid "Default zoom level used by the icon view." - msgstr "アイコン表示に適用するデフォルトのズームレベルです。" - --#: ../data/org.gnome.nautilus.gschema.xml.h:55 -+#: data/org.gnome.nautilus.gschema.xml:237 - msgid "Default Thumbnail Icon Size" - msgstr "デフォルトのサムネイルアイコンのサイズ" - --#: ../data/org.gnome.nautilus.gschema.xml.h:56 --msgid "The default size of an icon for a thumbnail in the icon view when using NAUTILUS_ICON_SIZE_STANDARD size." --msgstr "アイコン表示でサムネイルとして表示するアイコンのデフォルトサイズです (NAUTILUS_ICON_SIZE_STANDARD を使用している場合)。" -+#: data/org.gnome.nautilus.gschema.xml:238 -+msgid "" -+"The default size of an icon for a thumbnail in the icon view when using " -+"NAUTILUS_ICON_SIZE_STANDARD size." -+msgstr "" -+"アイコン表示でサムネイルとして表示するアイコンのデフォルトサイズです (NAUTILUS_ICON_SIZE_STANDARD を使用している場合)。" - --#: ../data/org.gnome.nautilus.gschema.xml.h:57 -+#: data/org.gnome.nautilus.gschema.xml:242 -+#: data/org.gnome.nautilus.gschema.xml:313 - msgid "Text Ellipsis Limit" - msgstr "ファイル名を省略する際の上限" - --#: ../data/org.gnome.nautilus.gschema.xml.h:58 --msgid "A string specifying how parts of overlong file names should be replaced by ellipses, depending on the zoom level. Each of the list entries is of the form \"Zoom Level:Integer\". For each specified zoom level, if the given integer is larger than 0, the file name will not exceed the given number of lines. If the integer is 0 or smaller, no limit is imposed on the specified zoom level. A default entry of the form \"Integer\" without any specified zoom level is also allowed. It defines the maximum number of lines for all other zoom levels. Examples: 0 - always display overlong file names; 3 - shorten file names if they exceed three lines; smallest:5,smaller:4,0 - shorten file names if they exceed five lines for zoom level \"smallest\". Shorten file names if they exceed four lines for zoom level \"smaller\". Do not shorten file names for other zoom levels. Available zoom levels: small, standard, large." --msgstr "ズームレベルに応じ、ファイル名の一部を省略記号 (...) で置き換えるべき長さを指定したリストです (すなわち、n 行に収まらないファイル名を省略文字で置き換えて表示するか、それともそのまま複数行にまたがって表示するかを、ズームレベル毎に指定します)。リストの各要素は \"ズームレベル:整数値\" という形式にしてください。それぞれ指定したズームレベルに対して整数値が 0 より大きい場合、ファイル名は指定した行数を超えて表示されることはありません。整数値が 0 以下の場合、そのズームレベルでは無制限で表示されることになります。ズームレベルを指定せずに \"整数値\" の形式で指定することも可能です。この場合、既に指定しているズーム以外のレベルに対してその整数値が表示する際の最大行数になります。例: \"0\" (常にすべてのファイル名を表示する)、\"3\" (3 行を超えて表示されるファイル名を 3 行に収めるように省略記号で置き換える)、\"smallest:5,smaller:4,0\" というリスト (ズームレベルが \"smallest\" の場合には 5 行を超えて表示されるファイル名を 5 行に収めるように省略記号で置き換え、ズームレベルが \"smaller\" の場合には 4 行を超えて表示されるファイル名を 4 行に収めるように省略記号で置き換え、それ以外のズームレベルではすべてのファイル名を表示する); ズームレベルで指定可能な値: small, standard, large" -- --#: ../data/org.gnome.nautilus.gschema.xml.h:59 -+#: data/org.gnome.nautilus.gschema.xml:243 -+msgid "" -+"A string specifying how parts of overlong file names should be replaced by " -+"ellipses, depending on the zoom level. Each of the list entries is of the " -+"form \"Zoom Level:Integer\". For each specified zoom level, if the given " -+"integer is larger than 0, the file name will not exceed the given number of " -+"lines. If the integer is 0 or smaller, no limit is imposed on the specified " -+"zoom level. A default entry of the form \"Integer\" without any specified " -+"zoom level is also allowed. It defines the maximum number of lines for all " -+"other zoom levels. Examples: 0 - always display overlong file names; 3 - " -+"shorten file names if they exceed three lines; smallest:5,smaller:4,0 - " -+"shorten file names if they exceed five lines for zoom level \"smallest\". " -+"Shorten file names if they exceed four lines for zoom level \"smaller\". Do " -+"not shorten file names for other zoom levels. Available zoom levels: small, " -+"standard, large." -+msgstr "" -+"ズームレベルに応じ、ファイル名の一部を省略記号 (...) で置き換えるべき長さを指定したリストです (すなわち、n " -+"行に収まらないファイル名を省略文字で置き換えて表示するか、それともそのまま複数行にまたがって表示するかを、ズームレベル毎に指定します)。リストの各要素は " -+"\"ズームレベル:整数値\" という形式にしてください。それぞれ指定したズームレベルに対して整数値が 0 " -+"より大きい場合、ファイル名は指定した行数を超えて表示されることはありません。整数値が 0 " -+"以下の場合、そのズームレベルでは無制限で表示されることになります。ズームレベルを指定せずに \"整数値\" " -+"の形式で指定することも可能です。この場合、既に指定しているズーム以外のレベルに対してその整数値が表示する際の最大行数になります。例: \"0\" " -+"(常にすべてのファイル名を表示する)、\"3\" (3 行を超えて表示されるファイル名を 3 " -+"行に収めるように省略記号で置き換える)、\"smallest:5,smaller:4,0\" というリスト (ズームレベルが \"smallest\" " -+"の場合には 5 行を超えて表示されるファイル名を 5 行に収めるように省略記号で置き換え、ズームレベルが \"smaller\" の場合には 4 " -+"行を超えて表示されるファイル名を 4 行に収めるように省略記号で置き換え、それ以外のズームレベルではすべてのファイル名を表示する); " -+"ズームレベルで指定可能な値: small, standard, large" -+ -+#: data/org.gnome.nautilus.gschema.xml:250 - msgid "Default list zoom level" - msgstr "デフォルトの一覧表示のズームレベル" - --#: ../data/org.gnome.nautilus.gschema.xml.h:60 -+#: data/org.gnome.nautilus.gschema.xml:251 - msgid "Default zoom level used by the list view." - msgstr "一覧表示に適用するデフォルトのズームレベルです。" - --#: ../data/org.gnome.nautilus.gschema.xml.h:61 -+#: data/org.gnome.nautilus.gschema.xml:255 - msgid "Default list of columns visible in the list view" - msgstr "一覧表示に表示する項目 (デフォルト値)" - --#: ../data/org.gnome.nautilus.gschema.xml.h:62 -+#: data/org.gnome.nautilus.gschema.xml:256 - msgid "Default list of columns visible in the list view." - msgstr "一覧表示にデフォルトで表示する項目のリストです。" - --#: ../data/org.gnome.nautilus.gschema.xml.h:63 -+#: data/org.gnome.nautilus.gschema.xml:260 - msgid "Default column order in the list view" - msgstr "一覧表示の項目に対するデフォルトの順番" - --#: ../data/org.gnome.nautilus.gschema.xml.h:64 -+#: data/org.gnome.nautilus.gschema.xml:261 - msgid "Default column order in the list view." - msgstr "一覧表示の中にある項目に対するデフォルトの順番です。" - --#: ../data/org.gnome.nautilus.gschema.xml.h:65 -+#: data/org.gnome.nautilus.gschema.xml:265 - msgid "Use tree view" - msgstr "ツリービューを使用する" - --#: ../data/org.gnome.nautilus.gschema.xml.h:66 --msgid "Whether a tree should be used for list view navigation instead of a flat list." -+#: data/org.gnome.nautilus.gschema.xml:266 -+msgid "" -+"Whether a tree should be used for list view navigation instead of a flat " -+"list." - msgstr "一覧表示のナビゲーションに、フラットリストではなくツリービューを使用します。" - --#: ../data/org.gnome.nautilus.gschema.xml.h:67 -+#: data/org.gnome.nautilus.gschema.xml:272 - msgctxt "desktop-font" - msgid "''" - msgstr "''" - --#: ../data/org.gnome.nautilus.gschema.xml.h:68 -+#: data/org.gnome.nautilus.gschema.xml:273 - msgid "Desktop font" - msgstr "デスクトップのフォント" - --#: ../data/org.gnome.nautilus.gschema.xml.h:69 -+#: data/org.gnome.nautilus.gschema.xml:274 - msgid "The font description used for the icons on the desktop." - msgstr "デスクトップ上にあるアイコンに使用するフォントの説明です。" - --#: ../data/org.gnome.nautilus.gschema.xml.h:70 -+#: data/org.gnome.nautilus.gschema.xml:278 - msgid "Home icon visible on desktop" - msgstr "デスクトップにホームアイコンを表示する" - --#: ../data/org.gnome.nautilus.gschema.xml.h:71 --msgid "If this is set to true, an icon linking to the home folder will be put on the desktop." -+#: data/org.gnome.nautilus.gschema.xml:279 -+msgid "" -+"If this is set to true, an icon linking to the home folder will be put on " -+"the desktop." - msgstr "true にすると、ホームフォルダーのアイコンをデスクトップに表示します。" - --#: ../data/org.gnome.nautilus.gschema.xml.h:72 -+#: data/org.gnome.nautilus.gschema.xml:283 - msgid "Trash icon visible on desktop" - msgstr "デスクトップにゴミ箱アイコンを表示する" - --#: ../data/org.gnome.nautilus.gschema.xml.h:73 --msgid "If this is set to true, an icon linking to the Trash will be put on the desktop." -+#: data/org.gnome.nautilus.gschema.xml:284 -+msgid "" -+"If this is set to true, an icon linking to the Trash will be put on the " -+"desktop." - msgstr "true にすると、ゴミ箱アイコンをデスクトップに表示します。" - --#: ../data/org.gnome.nautilus.gschema.xml.h:74 -+#: data/org.gnome.nautilus.gschema.xml:288 - msgid "Show mounted volumes on the desktop" - msgstr "デスクトップにマウントしたボリュームを表示する" - --#: ../data/org.gnome.nautilus.gschema.xml.h:75 --msgid "If this is set to true, icons linking to mounted volumes will be put on the desktop." -+#: data/org.gnome.nautilus.gschema.xml:289 -+msgid "" -+"If this is set to true, icons linking to mounted volumes will be put on the " -+"desktop." - msgstr "true にすると、マウント済みのボリュームのアイコンをデスクトップに表示します。" - --#: ../data/org.gnome.nautilus.gschema.xml.h:76 -+#: data/org.gnome.nautilus.gschema.xml:293 - msgid "Network Servers icon visible on the desktop" - msgstr "デスクトップにネットワークサーバーのアイコンを表示する" - --#: ../data/org.gnome.nautilus.gschema.xml.h:77 --msgid "If this is set to true, an icon linking to the Network Servers view will be put on the desktop." -+#: data/org.gnome.nautilus.gschema.xml:294 -+msgid "" -+"If this is set to true, an icon linking to the Network Servers view will be " -+"put on the desktop." - msgstr "true にすると、ネットワークサーバーのアイコンをデスクトップに表示します。" - --#: ../data/org.gnome.nautilus.gschema.xml.h:78 -+#: data/org.gnome.nautilus.gschema.xml:297 - msgctxt "home-icon-name" - msgid "'Home'" - msgstr "'ホーム'" - --#: ../data/org.gnome.nautilus.gschema.xml.h:79 -+#: data/org.gnome.nautilus.gschema.xml:298 - msgid "Desktop home icon name" - msgstr "デスクトップのホームアイコンの名前" - --#: ../data/org.gnome.nautilus.gschema.xml.h:80 --msgid "This name can be set if you want a custom name for the home icon on the desktop." -+#: data/org.gnome.nautilus.gschema.xml:299 -+msgid "" -+"This name can be set if you want a custom name for the home icon on the " -+"desktop." - msgstr "デスクトップのホームアイコンの名前を設定します。" - --#: ../data/org.gnome.nautilus.gschema.xml.h:81 -+#: data/org.gnome.nautilus.gschema.xml:302 - msgctxt "trash-icon-name" - msgid "'Trash'" - msgstr "'ゴミ箱'" - --#: ../data/org.gnome.nautilus.gschema.xml.h:82 -+#: data/org.gnome.nautilus.gschema.xml:303 - msgid "Desktop Trash icon name" - msgstr "デスクトップのゴミ箱アイコンの名前" - --#: ../data/org.gnome.nautilus.gschema.xml.h:83 --msgid "This name can be set if you want a custom name for the Trash icon on the desktop." -+#: data/org.gnome.nautilus.gschema.xml:304 -+msgid "" -+"This name can be set if you want a custom name for the Trash icon on the " -+"desktop." - msgstr "デスクトップのゴミ箱アイコンの名前を設定します。" - --#: ../data/org.gnome.nautilus.gschema.xml.h:84 -+#: data/org.gnome.nautilus.gschema.xml:307 - msgctxt "network-icon-name" - msgid "'Network Servers'" - msgstr "'ネットワーク'" - --#: ../data/org.gnome.nautilus.gschema.xml.h:85 -+#: data/org.gnome.nautilus.gschema.xml:308 - msgid "Network servers icon name" - msgstr "ネットワークサーバーのアイコン名" - --#: ../data/org.gnome.nautilus.gschema.xml.h:86 --msgid "This name can be set if you want a custom name for the network servers icon on the desktop." -+#: data/org.gnome.nautilus.gschema.xml:309 -+msgid "" -+"This name can be set if you want a custom name for the network servers icon " -+"on the desktop." - msgstr "デスクトップのネットワークアイコンの名前を設定します。" - --#: ../data/org.gnome.nautilus.gschema.xml.h:87 --msgid "An integer specifying how parts of overlong file names should be replaced by ellipses on the desktop. If the number is larger than 0, the file name will not exceed the given number of lines. If the number is 0 or smaller, no limit is imposed on the number of displayed lines." --msgstr "デスクトップで、ファイル名の一部を省略記号 (...) で置き換えるべき長さを指定します (すなわち、n 行に収まらないファイル名を省略文字で置き換えて表示するか、それともそのまま複数行にまたがって表示するかを指定します)。ここで指定した整数値が 0 より大きい場合、ファイル名は指定した行数を超えて表示されることはありません。整数値が 0 以下の場合は制限なしで表示されます。" -+#: data/org.gnome.nautilus.gschema.xml:314 -+msgid "" -+"An integer specifying how parts of overlong file names should be replaced by " -+"ellipses on the desktop. If the number is larger than 0, the file name will " -+"not exceed the given number of lines. If the number is 0 or smaller, no " -+"limit is imposed on the number of displayed lines." -+msgstr "" -+"デスクトップで、ファイル名の一部を省略記号 (...) で置き換えるべき長さを指定します (すなわち、n " -+"行に収まらないファイル名を省略文字で置き換えて表示するか、それともそのまま複数行にまたがって表示するかを指定します)。ここで指定した整数値が 0 " -+"より大きい場合、ファイル名は指定した行数を超えて表示されることはありません。整数値が 0 以下の場合は制限なしで表示されます。" - --#: ../data/org.gnome.nautilus.gschema.xml.h:88 -+#: data/org.gnome.nautilus.gschema.xml:318 - msgid "Fade the background on change" - msgstr "背景の変更時にフェード効果を適用" - --#: ../data/org.gnome.nautilus.gschema.xml.h:89 --msgid "If set to true, then Nautilus will use a fade effect to change the desktop background." -+#: data/org.gnome.nautilus.gschema.xml:319 -+msgid "" -+"If set to true, then Nautilus will use a fade effect to change the desktop " -+"background." - msgstr "true にすると、デスクトップの背景を変更するときにフェード効果を適用します。" - --#: ../data/org.gnome.nautilus.gschema.xml.h:90 -+#: data/org.gnome.nautilus.gschema.xml:327 - msgid "The geometry string for a navigation window" - msgstr "ナビゲーションウィンドウの座標を表す文字列" - --#: ../data/org.gnome.nautilus.gschema.xml.h:91 --msgid "A string containing the saved geometry and coordinates string for navigation windows." -+#: data/org.gnome.nautilus.gschema.xml:328 -+msgid "" -+"A string containing the saved geometry and coordinates string for navigation " -+"windows." - msgstr "ナビゲーションウィンドウの大きさと位置を保存する文字列です。" - --#: ../data/org.gnome.nautilus.gschema.xml.h:92 -+#: data/org.gnome.nautilus.gschema.xml:332 - msgid "Whether the navigation window should be maximized" - msgstr "ナビゲーションウィンドウを最大化する" - --#: ../data/org.gnome.nautilus.gschema.xml.h:93 -+#: data/org.gnome.nautilus.gschema.xml:333 - msgid "Whether the navigation window should be maximized by default." - msgstr "ナビゲーションウィンドウをデフォルトで最大化するかどうかです。" - --#: ../data/org.gnome.nautilus.gschema.xml.h:94 -+#: data/org.gnome.nautilus.gschema.xml:337 - msgid "Width of the side pane" - msgstr "サイドペインの幅" - --#: ../data/org.gnome.nautilus.gschema.xml.h:95 -+#: data/org.gnome.nautilus.gschema.xml:338 - msgid "The default width of the side pane in new windows." - msgstr "新しいウィンドウに表示するサイドペインのデフォルトの幅です。" - --#: ../data/org.gnome.nautilus.gschema.xml.h:96 -+#: data/org.gnome.nautilus.gschema.xml:342 - msgid "Show location bar in new windows" - msgstr "新しいウィンドウに場所バーを表示する" - --#: ../data/org.gnome.nautilus.gschema.xml.h:97 --msgid "If set to true, newly opened windows will have the location bar visible." -+#: data/org.gnome.nautilus.gschema.xml:343 -+msgid "" -+"If set to true, newly opened windows will have the location bar visible." - msgstr "true にすると、新規に開いたウィンドウに場所バーが表示されます。" - --#: ../data/org.gnome.nautilus.gschema.xml.h:98 -+#: data/org.gnome.nautilus.gschema.xml:347 - msgid "Show side pane in new windows" - msgstr "新しいウィンドウにサイドペインを表示する" - --#: ../data/org.gnome.nautilus.gschema.xml.h:99 -+#: data/org.gnome.nautilus.gschema.xml:348 - msgid "If set to true, newly opened windows will have the side pane visible." - msgstr "true にすると、新規に開いたウィンドウにサイドペインが表示されます。" - --#: ../eel/eel-canvas.c:1254 ../eel/eel-canvas.c:1255 -+#: eel/eel-canvas.c:1465 eel/eel-canvas.c:1466 - msgid "X" - msgstr "X" - --#: ../eel/eel-canvas.c:1261 ../eel/eel-canvas.c:1262 -+#: eel/eel-canvas.c:1472 eel/eel-canvas.c:1473 - msgid "Y" - msgstr "Y" - --#: ../eel/eel-gtk-extensions.c:326 -+#: eel/eel-gtk-extensions.c:337 - msgid "Show more _details" - msgstr "詳細を表示する(_D)" - - #. Put up the timed wait window. --#: ../eel/eel-stock-dialogs.c:195 --#: ../libnautilus-private/nautilus-file-conflict-dialog.c:558 --#: ../libnautilus-private/nautilus-file-operations.c:182 --#: ../src/nautilus-files-view.c:1082 ../src/nautilus-files-view.c:1556 --#: ../src/nautilus-files-view.c:5274 ../src/nautilus-location-entry.c:270 --#: ../src/nautilus-mime-actions.c:560 ../src/nautilus-mime-actions.c:564 --#: ../src/nautilus-mime-actions.c:635 ../src/nautilus-mime-actions.c:978 --#: ../src/nautilus-mime-actions.c:1488 ../src/nautilus-mime-actions.c:1717 --#: ../src/nautilus-properties-window.c:4189 --#: ../src/nautilus-properties-window.c:5181 --#: ../src/nautilus-search-popover.c:539 -+#. Add buttons -+#: eel/eel-stock-dialogs.c:204 src/nautilus-file-conflict-dialog.c:318 -+#: src/nautilus-file-operations.c:190 src/nautilus-files-view.c:1040 -+#: src/nautilus-files-view.c:1534 src/nautilus-files-view.c:5384 -+#: src/nautilus-location-entry.c:282 src/nautilus-mime-actions.c:569 -+#: src/nautilus-mime-actions.c:573 src/nautilus-mime-actions.c:655 -+#: src/nautilus-mime-actions.c:1039 src/nautilus-mime-actions.c:1586 -+#: src/nautilus-mime-actions.c:1886 src/nautilus-properties-window.c:4620 -+#: src/nautilus-properties-window.c:5719 src/nautilus-search-popover.c:550 -+#: src/resources/ui/nautilus-batch-rename-dialog.ui:12 - msgid "_Cancel" - msgstr "キャンセル(_C)" - --#: ../eel/eel-stock-dialogs.c:204 -+#: eel/eel-stock-dialogs.c:213 - msgid "You can stop this operation by clicking cancel." - msgstr "[キャンセル] をクリックすると、この操作を取り消せます。" - --#: ../eel/eel-vfs-extensions.c:98 -+#: eel/eel-vfs-extensions.c:106 - msgid " (invalid Unicode)" - msgstr " (Unicode が正しくありません)" - --#: ../libnautilus-private/nautilus-bookmark.c:107 --#: ../libnautilus-private/nautilus-file-utilities.c:273 --#: ../src/nautilus-pathbar.c:408 --msgid "Other Locations" --msgstr "他の場所" -+#: nautilus-desktop/nautilus-desktop-application.c:257 -+msgid "Always manage the desktop (ignore the GSettings preference)." -+msgstr "デスクトップを管理する (GSettings の設定を無視する)" -+ -+#: nautilus-desktop/nautilus-desktop-directory-file.c:444 -+#: nautilus-desktop/nautilus-desktop-icon-file.c:158 -+msgid "on the desktop" -+msgstr "デスクトップ上" -+ -+#: nautilus-desktop/nautilus-desktop-icon-file.c:436 -+msgid "Unable to rename desktop icon" -+msgstr "デスクトップのアイコン名を変更できません" - --#: ../libnautilus-private/nautilus-bookmark.c:109 --#: ../libnautilus-private/nautilus-desktop-link.c:129 --#: ../libnautilus-private/nautilus-file-utilities.c:265 --#: ../src/nautilus-list-view.c:1490 ../src/nautilus-pathbar.c:406 --#: ../src/nautilus-shell-search-provider.c:292 -+#: nautilus-desktop/nautilus-desktop-link.c:142 src/nautilus-bookmark.c:116 -+#: src/nautilus-file-utilities.c:304 src/nautilus-list-view.c:1703 -+#: src/nautilus-pathbar.c:429 src/nautilus-shell-search-provider.c:315 - msgid "Home" - msgstr "ホーム" - --#: ../libnautilus-private/nautilus-canvas-container.c:2481 -+#. hardcode "Desktop" -+#: nautilus-desktop/nautilus-desktop-window.c:309 -+#: nautilus-desktop/nautilus-desktop-window.c:488 -+msgid "Desktop" -+msgstr "デスクトップ" -+ -+#: nautilus-sendto-extension/nautilus-nste.c:107 -+#: nautilus-sendto-extension/nautilus-nste.c:114 -+msgid "Send to…" -+msgstr "送る…" -+ -+#: nautilus-sendto-extension/nautilus-nste.c:108 -+msgid "Send file by mail…" -+msgstr "ファイルをメールで送ります…" -+ -+#: nautilus-sendto-extension/nautilus-nste.c:115 -+msgid "Send files by mail…" -+msgstr "ファイルをメールで送ります…" -+ -+#. Some sort of failure occurred. How 'bout we tell the user? -+#: src/nautilus-application.c:175 src/nautilus-window-slot.c:1348 -+msgid "Oops! Something went wrong." -+msgstr "うわっ! 何か問題が発生しました。" -+ -+#: src/nautilus-application.c:178 -+#, c-format -+msgid "" -+"Unable to create a required folder. Please create the following folder, or " -+"set permissions such that it can be created:\n" -+"%s" -+msgstr "必要なフォルダーが作成できません。以下のフォルダーを作成するか、フォルダーを作成できるように適切なパーミッションを設定してください:\n" -+"%s" -+ -+#: src/nautilus-application.c:185 -+#, c-format -+msgid "" -+"Unable to create required folders. Please create the following folders, or " -+"set permissions such that they can be created:\n" -+"%s" -+msgstr "必要なフォルダーを作成できません。以下のフォルダーを作成するか、フォルダーを作成できるように適切なパーミッションを設定してください:\n" -+"%s" -+ -+#: src/nautilus-application.c:629 -+msgid "--check cannot be used with other options." -+msgstr "--check オプションには他のオプションを指定できません。" -+ -+#: src/nautilus-application.c:637 -+msgid "--quit cannot be used with URIs." -+msgstr "--quit オプションには URI を指定できません。" -+ -+#: src/nautilus-application.c:646 -+msgid "--select must be used with at least an URI." -+msgstr "--select オプションにはひとつ以上の URI を指定してください。" -+ -+#: src/nautilus-application.c:760 -+#, c-format -+msgid "There was an error displaying help: \n" -+"%s" -+msgstr "ヘルプを表示する際にエラーが発生しました: \n" -+"%s" -+ -+#: src/nautilus-application.c:883 -+msgid "Perform a quick set of self-check tests." -+msgstr "簡易自己診断テストセットを実行する" -+ -+#: src/nautilus-application.c:892 -+msgid "Create the initial window with the given geometry." -+msgstr "指定した大きさでウィンドウを起動する" -+ -+#: src/nautilus-application.c:892 -+msgid "GEOMETRY" -+msgstr "GEOMETRY" -+ -+#: src/nautilus-application.c:894 -+msgid "Show the version of the program." -+msgstr "バージョンを表示する" -+ -+#: src/nautilus-application.c:896 -+msgid "Always open a new window for browsing specified URIs" -+msgstr "指定した URI を常に新しいウィンドウで開く" -+ -+#: src/nautilus-application.c:898 -+msgid "Only create windows for explicitly specified URIs." -+msgstr "明示的に指定した URI のウィンドウだけを起動する" -+ -+#: src/nautilus-application.c:900 -+msgid "Quit Nautilus." -+msgstr "Nautilus を強制終了する" -+ -+#: src/nautilus-application.c:902 -+msgid "Select specified URI in parent folder." -+msgstr "指定した URI の親フォルダーを選択する" -+ -+#: src/nautilus-application.c:903 -+msgid "[URI...]" -+msgstr "[URI...]" -+ -+#: src/nautilus-autorun-software.c:158 src/nautilus-autorun-software.c:161 -+#, c-format -+msgid "Unable to start the program:\n" -+"%s" -+msgstr "プログラムを起動できません:\n" -+"%s" -+ -+#: src/nautilus-autorun-software.c:164 -+msgid "Unable to locate the program" -+msgstr "プログラムを見つけることができません" -+ -+#: src/nautilus-autorun-software.c:190 -+msgid "Oops! There was a problem running this software." -+msgstr "うわっ! このソフトウェアの実行で問題が発生しました。" -+ -+#: src/nautilus-autorun-software.c:220 -+#, c-format -+msgid "" -+"“%s” contains software intended to be automatically started. Would you like " -+"to run it?" -+msgstr "“%s”には自動的に起動することを意図したソフトウェアが含まれています。実行してみますか?" -+ -+#: src/nautilus-autorun-software.c:224 -+msgid "If you don't trust this location or aren't sure, press Cancel." -+msgstr "もしこの場所が信用できるものではないか、よくわからない時はキャンセルを押してください。" -+ -+#: src/nautilus-autorun-software.c:255 src/nautilus-mime-actions.c:656 -+msgid "_Run" -+msgstr "実行する(_R)" -+ -+#: src/nautilus-batch-rename-dialog.c:821 -+#, c-format -+msgid "“%s” would not be a unique new name." -+msgstr "“%s” は新しい一意の名前ではありません。" -+ -+#: src/nautilus-batch-rename-dialog.c:827 -+#, c-format -+msgid "“%s” would conflict with an existing file." -+msgstr "“%s” は既存ファイルと競合します。" -+ -+#: src/nautilus-batch-rename-dialog.c:2127 -+#, c-format -+msgid "Rename %d Folder" -+msgid_plural "Rename %d Folders" -+msgstr[0] "%d フォルダーの名前を変更" -+ -+#: src/nautilus-batch-rename-dialog.c:2133 -+#, c-format -+msgid "Rename %d File" -+msgid_plural "Rename %d Files" -+msgstr[0] "%d ファイルの名前を変更" -+ -+#: src/nautilus-batch-rename-dialog.h:88 -+#: src/resources/ui/nautilus-batch-rename-dialog.ui:186 -+#: src/resources/ui/nautilus-batch-rename-dialog.ui:488 -+msgid "Original Name (Ascending)" -+msgstr "元の名前 (昇順)" -+ -+#: src/nautilus-batch-rename-dialog.h:93 -+#: src/resources/ui/nautilus-batch-rename-dialog.ui:493 -+msgid "Original Name (Descending)" -+msgstr "元の名前 (降順)" -+ -+#: src/nautilus-batch-rename-dialog.h:98 -+#: src/resources/ui/nautilus-batch-rename-dialog.ui:498 -+msgid "First Modified" -+msgstr "初回更新日時" -+ -+#: src/nautilus-batch-rename-dialog.h:103 -+#: src/resources/ui/nautilus-batch-rename-dialog.ui:503 -+msgid "Last Modified" -+msgstr "最終更新日時" -+ -+#: src/nautilus-batch-rename-dialog.h:108 -+msgid "First Created" -+msgstr "初回作成日時" -+ -+#: src/nautilus-batch-rename-dialog.h:113 -+msgid "Last Created" -+msgstr "最終作成日時" -+ -+#: src/nautilus-batch-rename-dialog.h:122 -+msgid "Camera model" -+msgstr "カメラのモデル" -+ -+#: src/nautilus-batch-rename-dialog.h:129 -+msgid "Creation date" -+msgstr "作成日" -+ -+#: src/nautilus-batch-rename-dialog.h:136 -+msgid "Season number" -+msgstr "シーズン番号" -+ -+#: src/nautilus-batch-rename-dialog.h:143 -+msgid "Episode number" -+msgstr "エピソード番号" -+ -+#: src/nautilus-batch-rename-dialog.h:150 -+msgid "Track number" -+msgstr "トラック番号" -+ -+#: src/nautilus-batch-rename-dialog.h:157 -+msgid "Artist name" -+msgstr "アーチスト名" -+ -+#: src/nautilus-batch-rename-dialog.h:164 -+#: src/nautilus-image-properties-page.c:382 -+#: src/nautilus-image-properties-page.c:384 -+#: src/resources/ui/nautilus-batch-rename-dialog.ui:459 -+msgid "Title" -+msgstr "タイトル" -+ -+#: src/nautilus-batch-rename-dialog.h:171 -+msgid "Album name" -+msgstr "アルバム名" -+ -+#: src/nautilus-batch-rename-dialog.h:178 -+msgid "Original file name" -+msgstr "元のファイル名" -+ -+#: src/nautilus-batch-rename-dialog.h:189 -+msgid "1, 2, 3" -+msgstr "1, 2, 3" -+ -+#: src/nautilus-batch-rename-dialog.h:196 -+msgid "01, 02, 03" -+msgstr "01, 02, 03" -+ -+#: src/nautilus-batch-rename-dialog.h:203 -+msgid "001, 002, 003" -+msgstr "001, 002, 003" -+ -+#: src/nautilus-bookmark.c:112 src/nautilus-file-utilities.c:323 -+#: src/nautilus-pathbar.c:434 -+msgid "Other Locations" -+msgstr "他の場所" -+ -+#: src/nautilus-canvas-container.c:2783 - msgid "The selection rectangle" - msgstr "選択範囲" - --#: ../libnautilus-private/nautilus-column-chooser.c:416 -+#: src/nautilus-canvas-view-container.c:366 -+#: src/resources/ui/nautilus-preferences-window.ui:46 -+msgid "Icon View" -+msgstr "アイコン表示" -+ -+#: src/nautilus-column-chooser.c:436 - msgid "Reset to De_fault" - msgstr "デフォルトに戻す(_F)" - --#: ../libnautilus-private/nautilus-column-chooser.c:418 -+#: src/nautilus-column-chooser.c:438 - msgid "Replace the current List Columns settings with the default settings" - msgstr "一覧に表示する項目の設定をデフォルト設定に戻します" - --#: ../libnautilus-private/nautilus-column-utilities.c:57 --#: ../src/nautilus-list-view.c:1716 --#: ../src/resources/ui/nautilus-rename-file-popover.ui.h:1 -+#: src/nautilus-column-utilities.c:56 src/nautilus-list-view.c:1947 -+#: src/resources/ui/nautilus-rename-file-popover.ui:14 - msgid "Name" - msgstr "名前" - --#: ../libnautilus-private/nautilus-column-utilities.c:58 -+#: src/nautilus-column-utilities.c:57 - msgid "The name and icon of the file." - msgstr "ファイルの名前とアイコン" - --#: ../libnautilus-private/nautilus-column-utilities.c:64 -+#: src/nautilus-column-utilities.c:63 - msgid "Size" - msgstr "サイズ" - --#: ../libnautilus-private/nautilus-column-utilities.c:65 -+#: src/nautilus-column-utilities.c:64 - msgid "The size of the file." - msgstr "ファイルのサイズ" - --#: ../libnautilus-private/nautilus-column-utilities.c:71 -+#: src/nautilus-column-utilities.c:70 - msgid "Type" - msgstr "種類" - --#: ../libnautilus-private/nautilus-column-utilities.c:72 -+#: src/nautilus-column-utilities.c:71 - msgid "The type of the file." - msgstr "ファイルの種類" - --#: ../libnautilus-private/nautilus-column-utilities.c:78 -+#: src/nautilus-column-utilities.c:77 - msgid "Modified" - msgstr "更新日" - --#: ../libnautilus-private/nautilus-column-utilities.c:79 --#: ../libnautilus-private/nautilus-column-utilities.c:137 -+#: src/nautilus-column-utilities.c:78 src/nautilus-column-utilities.c:136 - msgid "The date the file was modified." - msgstr "ファイルが変更された日付" - --#: ../libnautilus-private/nautilus-column-utilities.c:87 -+#: src/nautilus-column-utilities.c:86 - msgid "Accessed" - msgstr "アクセス日時" - --#: ../libnautilus-private/nautilus-column-utilities.c:88 -+#: src/nautilus-column-utilities.c:87 - msgid "The date the file was accessed." - msgstr "ファイルにアクセスした日付" - --#: ../libnautilus-private/nautilus-column-utilities.c:97 -+#: src/nautilus-column-utilities.c:96 - msgid "Owner" - msgstr "所有者" - --#: ../libnautilus-private/nautilus-column-utilities.c:98 -+#: src/nautilus-column-utilities.c:97 - msgid "The owner of the file." - msgstr "ファイルの所有者" - --#: ../libnautilus-private/nautilus-column-utilities.c:105 -+#: src/nautilus-column-utilities.c:104 - msgid "Group" - msgstr "グループ" - --#: ../libnautilus-private/nautilus-column-utilities.c:106 -+#: src/nautilus-column-utilities.c:105 - msgid "The group of the file." - msgstr "ファイルが所属するグループ" - --#: ../libnautilus-private/nautilus-column-utilities.c:113 --#: ../src/nautilus-properties-window.c:4258 -+#: src/nautilus-column-utilities.c:112 src/nautilus-properties-window.c:4689 - msgid "Permissions" - msgstr "アクセス権" - --#: ../libnautilus-private/nautilus-column-utilities.c:114 -+#: src/nautilus-column-utilities.c:113 - msgid "The permissions of the file." - msgstr "ファイルのアクセス権" - --#: ../libnautilus-private/nautilus-column-utilities.c:121 -+#: src/nautilus-column-utilities.c:120 - msgid "MIME Type" - msgstr "MIME 型" - --#: ../libnautilus-private/nautilus-column-utilities.c:122 -+#: src/nautilus-column-utilities.c:121 - msgid "The MIME type of the file." - msgstr "ファイルの MIME 型" - --#: ../libnautilus-private/nautilus-column-utilities.c:129 --#: ../src/nautilus-image-properties-page.c:415 -+#: src/nautilus-column-utilities.c:128 src/nautilus-image-properties-page.c:452 - msgid "Location" - msgstr "場所" - --#: ../libnautilus-private/nautilus-column-utilities.c:130 -+#: src/nautilus-column-utilities.c:129 - msgid "The location of the file." - msgstr "ファイルの場所" - --#: ../libnautilus-private/nautilus-column-utilities.c:136 -+#: src/nautilus-column-utilities.c:135 - msgid "Modified - Time" - msgstr "更新日時" - --#: ../libnautilus-private/nautilus-column-utilities.c:179 -+#: src/nautilus-column-utilities.c:180 - msgid "Trashed On" - msgstr "移動日時" - --#: ../libnautilus-private/nautilus-column-utilities.c:180 -+#: src/nautilus-column-utilities.c:181 - msgid "Date when file was moved to the Trash" - msgstr "ファイルをゴミ箱に移動した日時" - --#: ../libnautilus-private/nautilus-column-utilities.c:187 -+#: src/nautilus-column-utilities.c:188 - msgid "Original Location" - msgstr "元の場所" - --#: ../libnautilus-private/nautilus-column-utilities.c:188 -+#: src/nautilus-column-utilities.c:189 - msgid "Original location of file before moved to the Trash" - msgstr "ファイルがゴミ箱に移動される前にあった場所" - --#: ../libnautilus-private/nautilus-column-utilities.c:205 -+#: src/nautilus-column-utilities.c:207 - msgid "Relevance" - msgstr "関連度" - --#: ../libnautilus-private/nautilus-column-utilities.c:206 -+#: src/nautilus-column-utilities.c:208 - msgid "Relevance rank for search" - msgstr "検索の関連度順" - --#: ../libnautilus-private/nautilus-desktop-directory-file.c:433 --#: ../libnautilus-private/nautilus-desktop-icon-file.c:149 --msgid "on the desktop" --msgstr "デスクトップ上" -+#: src/nautilus-desktop-item-properties.c:442 -+#: src/nautilus-desktop-item-properties.c:454 -+#: src/nautilus-image-properties-page.c:400 -+msgid "Comment" -+msgstr "コメント" -+ -+#: src/nautilus-desktop-item-properties.c:445 -+msgid "URL" -+msgstr "URL" -+ -+#: src/nautilus-desktop-item-properties.c:448 -+#: src/nautilus-desktop-item-properties.c:460 -+#: src/nautilus-image-properties-page.c:391 -+#: src/nautilus-image-properties-page.c:453 -+msgid "Description" -+msgstr "説明" -+ -+#: src/nautilus-desktop-item-properties.c:457 -+msgid "Command" -+msgstr "コマンド" - - #. Translators: this is of the format "hostname (uri-scheme)" --#: ../libnautilus-private/nautilus-directory.c:517 -+#: src/nautilus-directory.c:568 - #, c-format - msgid "%s (%s)" - msgstr "%s (%s)" - --#: ../libnautilus-private/nautilus-dnd.c:747 -+#: src/nautilus-dnd.c:862 - msgid "_Move Here" - msgstr "ここへ移動(_M)" - --#: ../libnautilus-private/nautilus-dnd.c:752 -+#: src/nautilus-dnd.c:867 - msgid "_Copy Here" - msgstr "ここへコピー(_C)" - --#: ../libnautilus-private/nautilus-dnd.c:757 -+#: src/nautilus-dnd.c:872 - msgid "_Link Here" - msgstr "ここへリンクを作る(_L)" - --#: ../libnautilus-private/nautilus-dnd.c:764 --#: ../src/resources/ui/nautilus-create-folder-dialog.ui.h:1 -+#: src/nautilus-dnd.c:879 src/resources/ui/nautilus-create-folder-dialog.ui:63 - msgid "Cancel" - msgstr "キャンセル" - --#: ../libnautilus-private/nautilus-file.c:1235 --#: ../libnautilus-private/nautilus-vfs-file.c:369 --msgid "This file cannot be mounted" --msgstr "このファイルはマウントできません" -+#: src/nautilus-error-reporting.c:72 -+#, c-format -+msgid "" -+"You do not have the permissions necessary to view the contents of “%s”." -+msgstr "“%s”の内容を表示するために必要な権限がありません。" - --#: ../libnautilus-private/nautilus-file.c:1280 --msgid "This file cannot be unmounted" --msgstr "このファイルはアンマウントできません" -+#: src/nautilus-error-reporting.c:79 -+#, c-format -+msgid "“%s” could not be found. Perhaps it has recently been deleted." -+msgstr "“%s”が見つかりませんでした。最近削除されたようです。" - --#: ../libnautilus-private/nautilus-file.c:1314 --msgid "This file cannot be ejected" --msgstr "このファイルは取り出せません" -+#: src/nautilus-error-reporting.c:85 -+#, c-format -+msgid "Sorry, could not display all the contents of “%s”: %s" -+msgstr "“%s”のすべての内容を表示できませんでした: %s" - --#: ../libnautilus-private/nautilus-file.c:1347 --#: ../libnautilus-private/nautilus-vfs-file.c:547 --msgid "This file cannot be started" --msgstr "このファイルは起動できません" -+#: src/nautilus-error-reporting.c:94 -+msgid "This location could not be displayed." -+msgstr "この場所は表示できませんでした。" - --#: ../libnautilus-private/nautilus-file.c:1399 --#: ../libnautilus-private/nautilus-file.c:1430 --msgid "This file cannot be stopped" --msgstr "このファイルは停止できません" -+#: src/nautilus-error-reporting.c:122 -+#, c-format -+msgid "You do not have the permissions necessary to change the group of “%s”." -+msgstr "“%s”のグループを変更するために必要な権限がありません。" - --#: ../libnautilus-private/nautilus-file.c:1846 -+#. fall through -+#: src/nautilus-error-reporting.c:140 - #, c-format --msgid "Slashes are not allowed in filenames" --msgstr "ファイル名にスラッシュは使えません" -+msgid "Sorry, could not change the group of “%s”: %s" -+msgstr "“%s”のグループを変更できませんでした: %s" - --#: ../libnautilus-private/nautilus-file.c:1864 -+#: src/nautilus-error-reporting.c:145 -+msgid "The group could not be changed." -+msgstr "グループを変更できませんでした。" -+ -+#: src/nautilus-error-reporting.c:166 - #, c-format --msgid "File not found" --msgstr "ファイルが見つかりません" -+msgid "Sorry, could not change the owner of “%s”: %s" -+msgstr "“%s”の所有者を変更できませんでした: %s" -+ -+#: src/nautilus-error-reporting.c:168 -+msgid "The owner could not be changed." -+msgstr "所有者を変更できませんでした。" - --#: ../libnautilus-private/nautilus-file.c:1892 -+#: src/nautilus-error-reporting.c:189 - #, c-format --msgid "Toplevel files cannot be renamed" --msgstr "トップレベルのファイル名を変更できません" -+msgid "Sorry, could not change the permissions of “%s”: %s" -+msgstr "“%s”のアクセス権を変更できませんでした: %s" -+ -+#: src/nautilus-error-reporting.c:191 -+msgid "The permissions could not be changed." -+msgstr "アクセス権を変更できませんでした。" - --#: ../libnautilus-private/nautilus-file.c:1915 -+#: src/nautilus-error-reporting.c:230 - #, c-format --msgid "Unable to rename desktop icon" --msgstr "デスクトップのアイコン名を変更できません" -+msgid "" -+"The name “%s” is already used in this location. Please use a different name." -+msgstr "名前“%s”は既にこの場所で使われています。別の名前を使ってください。" -+ -+#: src/nautilus-error-reporting.c:238 -+#, c-format -+msgid "" -+"There is no “%s” in this location. Perhaps it was just moved or deleted?" -+msgstr "この場所に“%s”はありません。おそらく移動したか削除したのではないでしょうか?" -+ -+#: src/nautilus-error-reporting.c:246 -+#, c-format -+msgid "You do not have the permissions necessary to rename “%s”." -+msgstr "“%s”の名前を変更するために必要な権限がありません。" -+ -+#: src/nautilus-error-reporting.c:255 -+#, c-format -+msgid "" -+"The name “%s” is not valid because it contains the character “/”. Please use " -+"a different name." -+msgstr "名前“%s”の中に文字“/”があるのは適切ではありません。別の名前を使ってください。" -+ -+#: src/nautilus-error-reporting.c:261 -+#, c-format -+msgid "The name “%s” is not valid. Please use a different name." -+msgstr "名前“%s”は正しくありません。別の名前を使ってください。" -+ -+#: src/nautilus-error-reporting.c:270 -+#, c-format -+msgid "The name “%s” is too long. Please use a different name." -+msgstr "名前“%s”が長すぎます。別の名前を使ってください。" -+ -+#. fall through -+#: src/nautilus-error-reporting.c:289 -+#, c-format -+msgid "Sorry, could not rename “%s” to “%s”: %s" -+msgstr "“%s”から“%s”へ名前を変更できませんでした: %s" -+ -+#: src/nautilus-error-reporting.c:297 -+msgid "The item could not be renamed." -+msgstr "アイテムの名前を変更できませんでした。" - --#: ../libnautilus-private/nautilus-file.c:1944 -+#: src/nautilus-error-reporting.c:405 - #, c-format -+msgid "Renaming “%s” to “%s”." -+msgstr "“%s”から“%s”に変更中。" -+ -+#: src/nautilus-file.c:1325 src/nautilus-vfs-file.c:411 -+msgid "This file cannot be mounted" -+msgstr "このファイルはマウントできません" -+ -+#: src/nautilus-file.c:1379 -+msgid "This file cannot be unmounted" -+msgstr "このファイルはアンマウントできません" -+ -+#: src/nautilus-file.c:1422 -+msgid "This file cannot be ejected" -+msgstr "このファイルは取り出せません" -+ -+#: src/nautilus-file.c:1463 src/nautilus-vfs-file.c:600 -+msgid "This file cannot be started" -+msgstr "このファイルは起動できません" -+ -+#: src/nautilus-file.c:1522 src/nautilus-file.c:1562 -+msgid "This file cannot be stopped" -+msgstr "このファイルは停止できません" -+ -+#: src/nautilus-file.c:2071 -+msgid "Slashes are not allowed in filenames" -+msgstr "ファイル名にスラッシュは使えません" -+ -+#: src/nautilus-file.c:2115 -+msgid "Toplevel files cannot be renamed" -+msgstr "トップレベルのファイル名を変更できません" -+ -+#: src/nautilus-file.c:2150 - msgid "Probably the content of the file is an invalid desktop file format" - msgstr "おそらくファイルの内容が不正な desktop ファイルフォーマットです" - -+#: src/nautilus-file.c:2202 -+msgid "File not found" -+msgstr "ファイルが見つかりません" -+ - #. Translators: Time in 24h format --#: ../libnautilus-private/nautilus-file.c:4769 -+#: src/nautilus-file.c:5642 - msgid "%H:%M" - msgstr "%H:%M" - - #. Translators: Time in 12h format --#: ../libnautilus-private/nautilus-file.c:4772 -+#: src/nautilus-file.c:5647 - msgid "%l:%M %p" - msgstr "%p%I:%M" - --#: ../libnautilus-private/nautilus-file.c:4779 -+#: src/nautilus-file.c:5656 - #, no-c-format - msgid "Yesterday" - msgstr "昨日" - - #. Translators: this is the word Yesterday followed by - #. * a time in 24h format. i.e. "Yesterday 23:04" --#: ../libnautilus-private/nautilus-file.c:4785 -+#: src/nautilus-file.c:5665 - #, no-c-format - msgid "Yesterday %H:%M" - msgstr "昨日 %H:%M" - - #. Translators: this is the word Yesterday followed by - #. * a time in 12h format. i.e. "Yesterday 9:04 PM" --#: ../libnautilus-private/nautilus-file.c:4790 -+#: src/nautilus-file.c:5672 - #, no-c-format - msgid "Yesterday %l:%M %p" - msgstr "昨日 %p%I:%M" - --#: ../libnautilus-private/nautilus-file.c:4798 -+#: src/nautilus-file.c:5682 - #, no-c-format - msgid "%a" - msgstr "%A" - - #. Translators: this is the name of the week day followed by - #. * a time in 24h format. i.e. "Monday 23:04" --#: ../libnautilus-private/nautilus-file.c:4804 -+#: src/nautilus-file.c:5691 - #, no-c-format - msgid "%a %H:%M" - msgstr "%A %H:%M" - - #. Translators: this is the week day name followed by - #. * a time in 12h format. i.e. "Monday 9:04 PM" --#: ../libnautilus-private/nautilus-file.c:4809 -+#: src/nautilus-file.c:5698 - #, no-c-format - msgid "%a %l:%M %p" - msgstr "%A %p%I:%M" - - #. Translators: this is the day of the month followed - #. * by the abbreviated month name i.e. "3 Feb" --#: ../libnautilus-private/nautilus-file.c:4817 -+#: src/nautilus-file.c:5709 - #, no-c-format - msgid "%-e %b" - msgstr "%-m月%-e日" -@@ -771,7 +1315,7 @@ msgstr "%-m月%-e日" - #. Translators: this is the day of the month followed - #. * by the abbreviated month name followed by a time in - #. * 24h format i.e. "3 Feb 23:04" --#: ../libnautilus-private/nautilus-file.c:4824 -+#: src/nautilus-file.c:5719 - #, no-c-format - msgid "%-e %b %H:%M" - msgstr "%-m月%-e日 %H:%M" -@@ -779,14 +1323,14 @@ msgstr "%-m月%-e日 %H:%M" - #. Translators: this is the day of the month followed - #. * by the abbreviated month name followed by a time in - #. * 12h format i.e. "3 Feb 9:04" --#: ../libnautilus-private/nautilus-file.c:4830 -+#: src/nautilus-file.c:5727 - #, no-c-format - msgid "%-e %b %l:%M %p" - msgstr "%-m月%-e日 %p%I:%M" - - #. Translators: this is the day of the month followed by the abbreviated - #. * month name followed by the year i.e. "3 Feb 2015" --#: ../libnautilus-private/nautilus-file.c:4838 -+#: src/nautilus-file.c:5738 - #, no-c-format - msgid "%-e %b %Y" - msgstr "%Y年%-m月%-e日" -@@ -794,7 +1338,7 @@ msgstr "%Y年%-m月%-e日" - #. Translators: this is the day number followed - #. * by the abbreviated month name followed by the year followed - #. * by a time in 24h format i.e. "3 Feb 2015 23:04" --#: ../libnautilus-private/nautilus-file.c:4845 -+#: src/nautilus-file.c:5748 - #, no-c-format - msgid "%-e %b %Y %H:%M" - msgstr "%Y年%-m月%-e日 %H:%M" -@@ -802,385 +1346,273 @@ msgstr "%Y年%-m月%-e日 %H:%M" - #. Translators: this is the day number followed - #. * by the abbreviated month name followed by the year followed - #. * by a time in 12h format i.e. "3 Feb 2015 9:04 PM" --#: ../libnautilus-private/nautilus-file.c:4851 -+#: src/nautilus-file.c:5756 - #, no-c-format - msgid "%-e %b %Y %l:%M %p" - msgstr "%Y年%-m月%-e日 %p%I:%M" - --#: ../libnautilus-private/nautilus-file.c:4860 -+#: src/nautilus-file.c:5768 - #, no-c-format - msgid "%c" - msgstr "%c" - --#: ../libnautilus-private/nautilus-file.c:5259 --#, c-format -+#: src/nautilus-file.c:6203 - msgid "Not allowed to set permissions" - msgstr "アクセス権は指定できません" - --#: ../libnautilus-private/nautilus-file.c:5554 --#, c-format -+#: src/nautilus-file.c:6526 - msgid "Not allowed to set owner" - msgstr "所有者は指定できません" - --#: ../libnautilus-private/nautilus-file.c:5572 -+#: src/nautilus-file.c:6545 - #, c-format - msgid "Specified owner '%s' doesn't exist" - msgstr "指定した '%s' という所有者は存在しません" - --#: ../libnautilus-private/nautilus-file.c:5836 --#, c-format -+#: src/nautilus-file.c:6830 - msgid "Not allowed to set group" - msgstr "グループは指定できません" - --#: ../libnautilus-private/nautilus-file.c:5854 -+#: src/nautilus-file.c:6849 - #, c-format - msgid "Specified group '%s' doesn't exist" - msgstr "指定した '%s' というグループは存在しません" - - #. Translators: "Me" is used to indicate the file is owned by me (the current user) --#: ../libnautilus-private/nautilus-file.c:5989 -+#: src/nautilus-file.c:6991 - msgid "Me" - msgstr "自分" - --#: ../libnautilus-private/nautilus-file.c:6013 -+#: src/nautilus-file.c:7023 - #, c-format - msgid "%'u item" - msgid_plural "%'u items" - msgstr[0] "%'u個のアイテム" - --#: ../libnautilus-private/nautilus-file.c:6014 -+#: src/nautilus-file.c:7024 - #, c-format - msgid "%'u folder" - msgid_plural "%'u folders" - msgstr[0] "%'u個のフォルダー" - --#: ../libnautilus-private/nautilus-file.c:6015 -+#: src/nautilus-file.c:7025 - #, c-format - msgid "%'u file" - msgid_plural "%'u files" - msgstr[0] "%'u個のファイル" - - #. This means no contents at all were readable --#: ../libnautilus-private/nautilus-file.c:6416 --#: ../libnautilus-private/nautilus-file.c:6432 -+#: src/nautilus-file.c:7485 src/nautilus-file.c:7505 - msgid "? items" - msgstr "?個のアイテム" - - #. This means no contents at all were readable --#: ../libnautilus-private/nautilus-file.c:6422 -+#: src/nautilus-file.c:7493 - msgid "? bytes" - msgstr "?バイト" - --#: ../libnautilus-private/nautilus-file.c:6439 --#: ../libnautilus-private/nautilus-file.c:6520 -+#: src/nautilus-file.c:7513 src/nautilus-file.c:7604 - msgid "Unknown" - msgstr "不明" - - #. Fallback, use for both unknown attributes and attributes - #. * for which we have no more appropriate default. --#. --#: ../libnautilus-private/nautilus-file.c:6453 --#: ../src/nautilus-properties-window.c:1186 -+#. -+#: src/nautilus-file.c:7529 src/nautilus-properties-window.c:1313 - msgid "unknown" - msgstr "不明" - --#: ../libnautilus-private/nautilus-file.c:6484 --#: ../libnautilus-private/nautilus-file.c:6492 --#: ../libnautilus-private/nautilus-file.c:6543 -+#: src/nautilus-file.c:7564 src/nautilus-file.c:7572 src/nautilus-file.c:7630 - msgid "Program" - msgstr "プログラム" - --#: ../libnautilus-private/nautilus-file.c:6485 -+#: src/nautilus-file.c:7565 - msgid "Audio" - msgstr "オーディオ" - --#: ../libnautilus-private/nautilus-file.c:6486 -+#: src/nautilus-file.c:7566 - msgid "Font" - msgstr "フォント" - --#: ../libnautilus-private/nautilus-file.c:6487 --#: ../src/nautilus-image-properties-page.c:769 -+#: src/nautilus-file.c:7567 src/nautilus-image-properties-page.c:832 - msgid "Image" - msgstr "画像" - --#: ../libnautilus-private/nautilus-file.c:6488 -+#: src/nautilus-file.c:7568 - msgid "Archive" - msgstr "アーカイブ" - --#: ../libnautilus-private/nautilus-file.c:6489 -+#: src/nautilus-file.c:7569 - msgid "Markup" - msgstr "マークアップ" - --#: ../libnautilus-private/nautilus-file.c:6490 --#: ../libnautilus-private/nautilus-file.c:6491 -+#: src/nautilus-file.c:7570 src/nautilus-file.c:7571 - msgid "Text" - msgstr "テキスト" - --#: ../libnautilus-private/nautilus-file.c:6493 --#: ../src/nautilus-mime-actions.c:216 -+#: src/nautilus-file.c:7573 src/nautilus-mime-actions.c:201 - msgid "Video" - msgstr "動画" - --#: ../libnautilus-private/nautilus-file.c:6494 -+#: src/nautilus-file.c:7574 - msgid "Contacts" - msgstr "連絡先" - --#: ../libnautilus-private/nautilus-file.c:6495 -+#: src/nautilus-file.c:7575 - msgid "Calendar" - msgstr "カレンダー" - --#: ../libnautilus-private/nautilus-file.c:6496 -+#: src/nautilus-file.c:7576 - msgid "Document" - msgstr "ドキュメント" - --#: ../libnautilus-private/nautilus-file.c:6497 --#: ../src/nautilus-mime-actions.c:186 -+#: src/nautilus-file.c:7577 src/nautilus-mime-actions.c:177 - msgid "Presentation" - msgstr "プレゼンテーション" - --#: ../libnautilus-private/nautilus-file.c:6498 --#: ../src/nautilus-mime-actions.c:195 -+#: src/nautilus-file.c:7578 src/nautilus-mime-actions.c:184 - msgid "Spreadsheet" - msgstr "表計算" - --#: ../libnautilus-private/nautilus-file.c:6545 -+#: src/nautilus-file.c:7632 - msgid "Binary" - msgstr "バイナリ" - --#: ../libnautilus-private/nautilus-file.c:6549 -+#: src/nautilus-file.c:7637 - msgid "Folder" - msgstr "フォルダー" - --#: ../libnautilus-private/nautilus-file.c:6580 -+#: src/nautilus-file.c:7676 - msgid "Link" - msgstr "リンク" - - #. Note to localizers: convert file type string for file - #. * (e.g. "folder", "plain text") to file type for symbolic link - #. * to that kind of file (e.g. "link to folder"). --#. -+#. - #. appended to new link file --#: ../libnautilus-private/nautilus-file.c:6586 --#: ../libnautilus-private/nautilus-file-operations.c:381 --#: ../src/nautilus-files-view-dnd.c:125 -+#: src/nautilus-file.c:7682 src/nautilus-file-operations.c:416 -+#: src/nautilus-files-view-dnd.c:131 - #, c-format - msgid "Link to %s" - msgstr "%sへのリンク" - --#: ../libnautilus-private/nautilus-file.c:6602 --#: ../libnautilus-private/nautilus-file.c:6616 -+#: src/nautilus-file.c:7700 src/nautilus-file.c:7716 - msgid "Link (broken)" - msgstr "リンク切れ" - --#: ../libnautilus-private/nautilus-file-conflict-dialog.c:141 --#, c-format --msgid "Merge folder “%s”?" --msgstr "フォルダー“%s”をマージしますか?" -- --#: ../libnautilus-private/nautilus-file-conflict-dialog.c:145 --msgid "Merging will ask for confirmation before replacing any files in the folder that conflict with the files being copied." --msgstr "マージする際に、コピーするファイルと衝突するフォルダー中のファイルを置き換える時に確認します。" -- --#: ../libnautilus-private/nautilus-file-conflict-dialog.c:150 --#, c-format --msgid "An older folder with the same name already exists in “%s”." --msgstr "同じ名前の古いフォルダーが既に“%s”にあります。" -- --#: ../libnautilus-private/nautilus-file-conflict-dialog.c:154 --#, c-format --msgid "A newer folder with the same name already exists in “%s”." --msgstr "同じ名前の新しいフォルダーが既に“%s”にあります。" -- --#: ../libnautilus-private/nautilus-file-conflict-dialog.c:158 --#, c-format --msgid "Another folder with the same name already exists in “%s”." --msgstr "同じ名前の他のフォルダーが“%s”にあります。" -- --#: ../libnautilus-private/nautilus-file-conflict-dialog.c:163 --msgid "Replacing it will remove all files in the folder." --msgstr "置き換えるとフォルダー中のすべてのファイルが削除されます。" -- --#: ../libnautilus-private/nautilus-file-conflict-dialog.c:165 --#, c-format --msgid "Replace folder “%s”?" --msgstr "フォルダー“%s”を置き換えますか?" -- --#: ../libnautilus-private/nautilus-file-conflict-dialog.c:167 --#, c-format --msgid "A folder with the same name already exists in “%s”." --msgstr "同じ名前のフォルダーが既に“%s”にあります。" -- --#: ../libnautilus-private/nautilus-file-conflict-dialog.c:172 --#, c-format --msgid "Replace file “%s”?" --msgstr "ファイル“%s”を置き換えますか?" -- --#: ../libnautilus-private/nautilus-file-conflict-dialog.c:174 --msgid "Replacing it will overwrite its content." --msgstr "置き換えると内容が上書きされます。" -- --#: ../libnautilus-private/nautilus-file-conflict-dialog.c:178 --#, c-format --msgid "An older file with the same name already exists in “%s”." --msgstr "同じ名前の古いファイルが既に“%s”にあります。" -- --#: ../libnautilus-private/nautilus-file-conflict-dialog.c:182 --#, c-format --msgid "A newer file with the same name already exists in “%s”." --msgstr "同じ名前の新しいファイルが既に“%s”にあります。" -- --#: ../libnautilus-private/nautilus-file-conflict-dialog.c:186 --#, c-format --msgid "Another file with the same name already exists in “%s”." --msgstr "同じ名前の他のファイルが既に“%s”にあります。" -- --#: ../libnautilus-private/nautilus-file-conflict-dialog.c:255 --msgid "Original folder" --msgstr "元のフォルダー" -- --#: ../libnautilus-private/nautilus-file-conflict-dialog.c:256 --#: ../libnautilus-private/nautilus-file-conflict-dialog.c:293 --msgid "Items:" --msgstr "アイテム数:" -- --#: ../libnautilus-private/nautilus-file-conflict-dialog.c:259 --msgid "Original file" --msgstr "元のファイル" -- --#: ../libnautilus-private/nautilus-file-conflict-dialog.c:260 --#: ../libnautilus-private/nautilus-file-conflict-dialog.c:297 --#: ../src/nautilus-properties-window.c:2997 --msgid "Size:" --msgstr "サイズ:" -- --#: ../libnautilus-private/nautilus-file-conflict-dialog.c:264 --#: ../libnautilus-private/nautilus-file-conflict-dialog.c:301 --#: ../src/nautilus-properties-window.c:2979 --msgid "Type:" --msgstr "種類:" -- --#: ../libnautilus-private/nautilus-file-conflict-dialog.c:267 --#: ../libnautilus-private/nautilus-file-conflict-dialog.c:304 --msgid "Last modified:" --msgstr "最終更新日時:" -- --#: ../libnautilus-private/nautilus-file-conflict-dialog.c:292 --msgid "Merge with" --msgstr "マージするフォルダー" -- --#: ../libnautilus-private/nautilus-file-conflict-dialog.c:292 --#: ../libnautilus-private/nautilus-file-conflict-dialog.c:296 --msgid "Replace with" --msgstr "置き換え後のファイル" -- --#: ../libnautilus-private/nautilus-file-conflict-dialog.c:326 --msgid "Merge" --msgstr "マージする" -- - #. Setup the expander for the rename action --#: ../libnautilus-private/nautilus-file-conflict-dialog.c:522 -+#: src/nautilus-file-conflict-dialog.c:285 - msgid "_Select a new name for the destination" - msgstr "別の名前を付けて保存する(_S)" - --#: ../libnautilus-private/nautilus-file-conflict-dialog.c:536 --#: ../libnautilus-private/nautilus-mime-application-chooser.c:317 -+#: src/nautilus-file-conflict-dialog.c:299 -+#: src/nautilus-mime-application-chooser.c:336 - msgid "Reset" - msgstr "リセット" - - #. Setup the checkbox to apply the action to all files --#: ../libnautilus-private/nautilus-file-conflict-dialog.c:548 -+#: src/nautilus-file-conflict-dialog.c:310 - msgid "Apply this action to all files and folders" - msgstr "この操作をすべてのファイルとフォルダーに適用する" - --#: ../libnautilus-private/nautilus-file-conflict-dialog.c:560 --#: ../libnautilus-private/nautilus-file-operations.c:183 -+#: src/nautilus-file-conflict-dialog.c:321 src/nautilus-file-operations.c:191 - msgid "_Skip" - msgstr "スキップする(_S)" - --#: ../libnautilus-private/nautilus-file-conflict-dialog.c:565 -+#: src/nautilus-file-conflict-dialog.c:325 - msgid "Re_name" - msgstr "名前の変更(_N)" - --#: ../libnautilus-private/nautilus-file-conflict-dialog.c:571 -+#: src/nautilus-file-conflict-dialog.c:330 - msgid "Replace" - msgstr "置き換える" - --#: ../libnautilus-private/nautilus-file-conflict-dialog.c:654 --msgid "Merge Folder" --msgstr "フォルダーのマージ" -+#: src/nautilus-file-name-widget-controller.c:106 -+#: src/nautilus-rename-file-popover-controller.c:85 -+msgid "File names cannot contain “/”." -+msgstr "'/' はファイル名に使用できません。" - --#: ../libnautilus-private/nautilus-file-conflict-dialog.c:654 --#: ../libnautilus-private/nautilus-file-conflict-dialog.c:660 --msgid "File and Folder conflict" --msgstr "ファイルとフォルダーの衝突" -+#: src/nautilus-file-name-widget-controller.c:110 -+#: src/nautilus-rename-file-popover-controller.c:96 -+msgid "A file cannot be called “.”." -+msgstr "'.' という名前のファイルは作成できません。" - --#: ../libnautilus-private/nautilus-file-conflict-dialog.c:660 --msgid "File conflict" --msgstr "ファイルの衝突" -+#: src/nautilus-file-name-widget-controller.c:114 -+#: src/nautilus-rename-file-popover-controller.c:107 -+msgid "A file cannot be called “..”." -+msgstr "'..' という名前をファイルに付けられません。" -+ -+#: src/nautilus-file-name-widget-controller.c:136 -+msgid "A folder with that name already exists." -+msgstr "同じ名前のフォルダーが既に存在します。" -+ -+#: src/nautilus-file-name-widget-controller.c:141 -+msgid "A file with that name already exists." -+msgstr "同じ名前のファイルが既に存在します。" - --#: ../libnautilus-private/nautilus-file-operations.c:184 -+#: src/nautilus-file-operations.c:192 - msgid "S_kip All" - msgstr "すべてスキップする(_K)" - --#: ../libnautilus-private/nautilus-file-operations.c:185 -+#: src/nautilus-file-operations.c:193 - msgid "_Retry" - msgstr "再試行する(_R)" - --#: ../libnautilus-private/nautilus-file-operations.c:186 -+#: src/nautilus-file-operations.c:194 - msgid "_Delete" - msgstr "削除(_D)" - --#: ../libnautilus-private/nautilus-file-operations.c:187 -+#: src/nautilus-file-operations.c:195 - msgid "Delete _All" - msgstr "すべて削除する(_A)" - --#: ../libnautilus-private/nautilus-file-operations.c:188 -+#: src/nautilus-file-operations.c:196 - msgid "_Replace" - msgstr "置き換える(_R)" - --#: ../libnautilus-private/nautilus-file-operations.c:189 -+#: src/nautilus-file-operations.c:197 - msgid "Replace _All" - msgstr "すべて置き換える(_A)" - --#: ../libnautilus-private/nautilus-file-operations.c:190 -+#: src/nautilus-file-operations.c:198 - msgid "_Merge" - msgstr "マージする(_M)" - --#: ../libnautilus-private/nautilus-file-operations.c:191 -+#: src/nautilus-file-operations.c:199 - msgid "Merge _All" - msgstr "すべてマージする(_A)" - --#: ../libnautilus-private/nautilus-file-operations.c:192 -+#: src/nautilus-file-operations.c:200 - msgid "Copy _Anyway" - msgstr "とにかくコピーする(_A)" - --#: ../libnautilus-private/nautilus-file-operations.c:282 -+#: src/nautilus-file-operations.c:296 - #, c-format - msgid "%'d second" - msgid_plural "%'d seconds" - msgstr[0] "%'d 秒" - --#: ../libnautilus-private/nautilus-file-operations.c:287 --#: ../libnautilus-private/nautilus-file-operations.c:298 -+#: src/nautilus-file-operations.c:302 src/nautilus-file-operations.c:314 - #, c-format - msgid "%'d minute" - msgid_plural "%'d minutes" - msgstr[0] "%'d 分" - --#: ../libnautilus-private/nautilus-file-operations.c:297 -+#: src/nautilus-file-operations.c:313 - #, c-format - msgid "%'d hour" - msgid_plural "%'d hours" - msgstr[0] "%'d 時間" - --#: ../libnautilus-private/nautilus-file-operations.c:305 -+#: src/nautilus-file-operations.c:321 - #, c-format - msgid "approximately %'d hour" - msgid_plural "approximately %'d hours" - msgstr[0] "およそ %'d 時間" - - #. appended to new link file --#: ../libnautilus-private/nautilus-file-operations.c:385 -+#: src/nautilus-file-operations.c:423 - #, c-format - msgid "Another link to %s" - msgstr "%sへの別のリンク" -@@ -1188,26 +1620,26 @@ msgstr "%sへの別のリンク" - #. Localizers: Feel free to leave out the "st" suffix - #. * if there's no way to do that nicely for a - #. * particular language. --#. --#: ../libnautilus-private/nautilus-file-operations.c:401 -+#. -+#: src/nautilus-file-operations.c:444 - #, c-format - msgid "%'dst link to %s" - msgstr "%'d 番目の%sへのリンク" - - #. appended to new link file --#: ../libnautilus-private/nautilus-file-operations.c:405 -+#: src/nautilus-file-operations.c:451 - #, c-format - msgid "%'dnd link to %s" - msgstr "%'d 番目の%sへのリンク" - - #. appended to new link file --#: ../libnautilus-private/nautilus-file-operations.c:409 -+#: src/nautilus-file-operations.c:458 - #, c-format - msgid "%'drd link to %s" - msgstr "%'d 番目の%sへのリンク" - - #. appended to new link file --#: ../libnautilus-private/nautilus-file-operations.c:413 -+#: src/nautilus-file-operations.c:465 - #, c-format - msgid "%'dth link to %s" - msgstr "%'d 番目の%sへのリンク" -@@ -1215,14 +1647,14 @@ msgstr "%'d 番目の%sへのリンク" - #. Localizers: - #. * Feel free to leave out the st, nd, rd and th suffix or - #. * make some or all of them match. --#. -+#. - #. localizers: tag used to detect the first copy of a file --#: ../libnautilus-private/nautilus-file-operations.c:452 -+#: src/nautilus-file-operations.c:517 - msgid " (copy)" - msgstr " (コピー)" - - #. localizers: tag used to detect the second copy of a file --#: ../libnautilus-private/nautilus-file-operations.c:454 -+#: src/nautilus-file-operations.c:519 - msgid " (another copy)" - msgstr " (別のコピー)" - -@@ -1230,36 +1662,34 @@ msgstr " (別のコピー)" - #. localizers: tag used to detect the x12th copy of a file - #. localizers: tag used to detect the x13th copy of a file - #. localizers: tag used to detect the xxth copy of a file --#: ../libnautilus-private/nautilus-file-operations.c:457 --#: ../libnautilus-private/nautilus-file-operations.c:459 --#: ../libnautilus-private/nautilus-file-operations.c:461 --#: ../libnautilus-private/nautilus-file-operations.c:471 -+#: src/nautilus-file-operations.c:522 src/nautilus-file-operations.c:524 -+#: src/nautilus-file-operations.c:526 src/nautilus-file-operations.c:536 - msgid "th copy)" - msgstr "番目のコピー)" - - #. localizers: tag used to detect the x1st copy of a file --#: ../libnautilus-private/nautilus-file-operations.c:464 -+#: src/nautilus-file-operations.c:529 - msgid "st copy)" - msgstr "番目のコピー)" - - #. localizers: tag used to detect the x2nd copy of a file --#: ../libnautilus-private/nautilus-file-operations.c:466 -+#: src/nautilus-file-operations.c:531 - msgid "nd copy)" - msgstr "番目のコピー)" - - #. localizers: tag used to detect the x3rd copy of a file --#: ../libnautilus-private/nautilus-file-operations.c:468 -+#: src/nautilus-file-operations.c:533 - msgid "rd copy)" - msgstr "番目のコピー)" - - #. localizers: appended to first file copy --#: ../libnautilus-private/nautilus-file-operations.c:485 -+#: src/nautilus-file-operations.c:550 - #, c-format - msgid "%s (copy)%s" - msgstr "%s (コピー)%s" - - #. localizers: appended to second file copy --#: ../libnautilus-private/nautilus-file-operations.c:487 -+#: src/nautilus-file-operations.c:552 - #, c-format - msgid "%s (another copy)%s" - msgstr "%s (別のコピー)%s" -@@ -1268,10 +1698,8 @@ msgstr "%s (別のコピー)%s" - #. localizers: appended to x12th file copy - #. localizers: appended to x13th file copy - #. localizers: appended to xxth file copy --#: ../libnautilus-private/nautilus-file-operations.c:490 --#: ../libnautilus-private/nautilus-file-operations.c:492 --#: ../libnautilus-private/nautilus-file-operations.c:494 --#: ../libnautilus-private/nautilus-file-operations.c:508 -+#: src/nautilus-file-operations.c:555 src/nautilus-file-operations.c:557 -+#: src/nautilus-file-operations.c:559 src/nautilus-file-operations.c:573 - #, c-format - msgid "%s (%'dth copy)%s" - msgstr "%s (%'d 番目のコピー)%s" -@@ -1279,90 +1707,93 @@ msgstr "%s (%'d 番目のコピー)%s" - #. localizers: if in your language there's no difference between 1st, 2nd, 3rd and nth - #. * plurals, you can leave the st, nd, rd suffixes out and just make all the translated - #. * strings look like "%s (copy %'d)%s". --#. -+#. - #. localizers: appended to x1st file copy --#: ../libnautilus-private/nautilus-file-operations.c:502 -+#: src/nautilus-file-operations.c:567 - #, c-format - msgid "%s (%'dst copy)%s" - msgstr "%s (%'d 番目のコピー)%s" - - #. localizers: appended to x2nd file copy --#: ../libnautilus-private/nautilus-file-operations.c:504 -+#: src/nautilus-file-operations.c:569 - #, c-format - msgid "%s (%'dnd copy)%s" - msgstr "%s (%'d 番目のコピー)%s" - - #. localizers: appended to x3rd file copy --#: ../libnautilus-private/nautilus-file-operations.c:506 -+#: src/nautilus-file-operations.c:571 - #, c-format - msgid "%s (%'drd copy)%s" - msgstr "%s (%'d番目のコピー)%s" - - #. localizers: opening parentheses to match the "th copy)" string --#: ../libnautilus-private/nautilus-file-operations.c:607 -+#: src/nautilus-file-operations.c:685 - msgid " (" - msgstr " (" - - #. localizers: opening parentheses of the "th copy)" string --#: ../libnautilus-private/nautilus-file-operations.c:615 -+#: src/nautilus-file-operations.c:695 - #, c-format - msgid " (%'d" - msgstr " (%'d" - --#: ../libnautilus-private/nautilus-file-operations.c:1388 -+#: src/nautilus-file-operations.c:1571 - msgid "Are you sure you want to permanently delete “%B” from the trash?" - msgstr "ゴミ箱から“%B”を完全に削除してもよろしいですか?" - --#: ../libnautilus-private/nautilus-file-operations.c:1391 -+#: src/nautilus-file-operations.c:1576 - #, c-format --msgid "Are you sure you want to permanently delete the %'d selected item from the trash?" --msgid_plural "Are you sure you want to permanently delete the %'d selected items from the trash?" -+msgid "" -+"Are you sure you want to permanently delete the %'d selected item from the " -+"trash?" -+msgid_plural "" -+"Are you sure you want to permanently delete the %'d selected items from the " -+"trash?" - msgstr[0] "選択した %'d 個のアイテムをゴミ箱から完全に削除してもよろしいですか?" - --#: ../libnautilus-private/nautilus-file-operations.c:1401 --#: ../libnautilus-private/nautilus-file-operations.c:1467 -+#: src/nautilus-file-operations.c:1586 src/nautilus-file-operations.c:1658 - msgid "If you delete an item, it will be permanently lost." - msgstr "ここでアイテムを削除すると元に戻すことはできません。" - --#: ../libnautilus-private/nautilus-file-operations.c:1421 -+#: src/nautilus-file-operations.c:1607 - msgid "Empty all items from Trash?" - msgstr "ゴミ箱からすべてのアイテムを削除してもよろしいですか?" - --#: ../libnautilus-private/nautilus-file-operations.c:1425 -+#: src/nautilus-file-operations.c:1611 - msgid "All items in the Trash will be permanently deleted." - msgstr "ここでアイテムを削除すると元に戻すことはできません。" - --#: ../libnautilus-private/nautilus-file-operations.c:1428 --#: ../libnautilus-private/nautilus-file-operations.c:2504 --#: ../src/nautilus-window.c:1301 -+#: src/nautilus-file-operations.c:1614 src/nautilus-file-operations.c:2795 -+#: src/nautilus-window.c:1387 - msgid "Empty _Trash" - msgstr "ゴミ箱を空にする(_T)" - --#: ../libnautilus-private/nautilus-file-operations.c:1455 -+#: src/nautilus-file-operations.c:1644 - msgid "Are you sure you want to permanently delete “%B”?" - msgstr "“%B”を完全に削除してもよろしいですか?" - --#: ../libnautilus-private/nautilus-file-operations.c:1458 -+#: src/nautilus-file-operations.c:1649 - #, c-format - msgid "Are you sure you want to permanently delete the %'d selected item?" --msgid_plural "Are you sure you want to permanently delete the %'d selected items?" -+msgid_plural "" -+"Are you sure you want to permanently delete the %'d selected items?" - msgstr[0] "選択した %'d 個のアイテムを完全に削除してもよろしいですか?" - --#: ../libnautilus-private/nautilus-file-operations.c:1511 -+#: src/nautilus-file-operations.c:1706 - msgid "Deleted “%B”" - msgstr "“%B”を削除しました" - --#: ../libnautilus-private/nautilus-file-operations.c:1513 -+#: src/nautilus-file-operations.c:1710 - msgid "Deleting “%B”" - msgstr "“%B”を削除しています" - --#: ../libnautilus-private/nautilus-file-operations.c:1521 -+#: src/nautilus-file-operations.c:1720 - #, c-format - msgid "Deleted %'d file" - msgid_plural "Deleted %'d files" - msgstr[0] "%'d 個のファイルを削除しました" - --#: ../libnautilus-private/nautilus-file-operations.c:1525 -+#: src/nautilus-file-operations.c:1726 - #, c-format - msgid "Deleting %'d file" - msgid_plural "Deleting %'d files" -@@ -1370,15 +1801,11 @@ msgstr[0] "%'d 個のファイルを削除しています" - - #. To translators: %'d is the number of files completed for the operation, - #. * so it will be something like 2/14. --#: ../libnautilus-private/nautilus-file-operations.c:1547 --#: ../libnautilus-private/nautilus-file-operations.c:1553 --#: ../libnautilus-private/nautilus-file-operations.c:1585 --#: ../libnautilus-private/nautilus-file-operations.c:1943 --#: ../libnautilus-private/nautilus-file-operations.c:1949 --#: ../libnautilus-private/nautilus-file-operations.c:1981 --#: ../libnautilus-private/nautilus-file-operations.c:3329 --#: ../libnautilus-private/nautilus-file-operations.c:3335 --#: ../libnautilus-private/nautilus-file-operations.c:3376 -+#: src/nautilus-file-operations.c:1753 src/nautilus-file-operations.c:1761 -+#: src/nautilus-file-operations.c:1799 src/nautilus-file-operations.c:2128 -+#: src/nautilus-file-operations.c:2136 src/nautilus-file-operations.c:2173 -+#: src/nautilus-file-operations.c:3809 src/nautilus-file-operations.c:3817 -+#: src/nautilus-file-operations.c:3869 - #, c-format - msgid "%'d / %'d" - msgstr "%'d / %'d" -@@ -1387,272 +1814,261 @@ msgstr "%'d / %'d" - #. * So the whole thing will be something like "1 / 5 -- 2 hours left (4 files/sec)" - #. * - #. * The singular/plural form will be used depending on the remaining time (i.e. the %T argument). --#. --#: ../libnautilus-private/nautilus-file-operations.c:1568 --#: ../libnautilus-private/nautilus-file-operations.c:1964 -+#. -+#: src/nautilus-file-operations.c:1779 src/nautilus-file-operations.c:2154 - msgid "%'d / %'d — %T left" - msgid_plural "%'d / %'d — %T left" - msgstr[0] "%'d / %'d — 残り %T" - --#: ../libnautilus-private/nautilus-file-operations.c:1571 --#: ../libnautilus-private/nautilus-file-operations.c:1967 -+#: src/nautilus-file-operations.c:1783 src/nautilus-file-operations.c:2157 - #, c-format - msgid "(%d file/sec)" - msgid_plural "(%d files/sec)" - msgstr[0] "(%d ファイル/秒)" - --#: ../libnautilus-private/nautilus-file-operations.c:1653 --#: ../libnautilus-private/nautilus-file-operations.c:1687 --#: ../libnautilus-private/nautilus-file-operations.c:1726 --#: ../libnautilus-private/nautilus-file-operations.c:1802 --#: ../libnautilus-private/nautilus-file-operations.c:2765 -+#: src/nautilus-file-operations.c:1939 src/nautilus-file-operations.c:3090 - msgid "Error while deleting." - msgstr "削除中にエラーが発生しました。" - --#: ../libnautilus-private/nautilus-file-operations.c:1657 --msgid "Files in the folder “%B” cannot be deleted because you do not have permissions to see them." --msgstr "“%B”というフォルダーの中にあるファイルを参照する権限がないため、これらのファイルを削除できません。" -- --#: ../libnautilus-private/nautilus-file-operations.c:1660 --#: ../libnautilus-private/nautilus-file-operations.c:2824 --#: ../libnautilus-private/nautilus-file-operations.c:4016 --msgid "There was an error getting information about the files in the folder “%B”." --msgstr "“%B”というフォルダーの中にあるファイルの情報を取得する際にエラーが発生しました。" -- --#: ../libnautilus-private/nautilus-file-operations.c:1669 --#: ../libnautilus-private/nautilus-file-operations.c:4025 --msgid "_Skip files" --msgstr "ファイルのスキップ(_S)" -- --#: ../libnautilus-private/nautilus-file-operations.c:1690 --msgid "The folder “%B” cannot be deleted because you do not have permissions to read it." --msgstr "“%B”というフォルダーを参照する権限がないため、このフォルダーを削除できません。" -+#: src/nautilus-file-operations.c:1948 -+msgid "There was an error deleting the folder “%B”." -+msgstr "フォルダー '%B' の削除中にエラーが発生しました。" - --#: ../libnautilus-private/nautilus-file-operations.c:1693 --#: ../libnautilus-private/nautilus-file-operations.c:2863 --#: ../libnautilus-private/nautilus-file-operations.c:4061 --msgid "There was an error reading the folder “%B”." --msgstr "“%B”というフォルダーを読み込んでいる際にエラーが発生しました。" -+#: src/nautilus-file-operations.c:1950 -+msgid "You do not have sufficient permissions to delete the folder “%B”." -+msgstr "フォルダー '%B' の削除に必要なパーミッションがありません。" - --#: ../libnautilus-private/nautilus-file-operations.c:1727 --msgid "Could not remove the folder %B." --msgstr "%B というフォルダーを削除できませんでした。" -+#: src/nautilus-file-operations.c:1956 -+msgid "There was an error deleting the file “%B”." -+msgstr "ファイル '%B' の削除中にエラーが発生しました。" - --#: ../libnautilus-private/nautilus-file-operations.c:1803 --msgid "There was an error deleting %B." --msgstr "%B を削除する際にエラーが発生しました。" -+#: src/nautilus-file-operations.c:1958 -+msgid "You do not have sufficient permissions to delete the file “%B”." -+msgstr "ファイル '%B' の削除に必要なパーミッションがありません。" - --#: ../libnautilus-private/nautilus-file-operations.c:1906 -+#: src/nautilus-file-operations.c:2080 - msgid "Trashing “%B”" - msgstr "“%B”をゴミ箱へ移動しています" - --#: ../libnautilus-private/nautilus-file-operations.c:1908 -+#: src/nautilus-file-operations.c:2084 - msgid "Trashed “%B”" - msgstr "“%B”をゴミ箱へ移動しました" - --#: ../libnautilus-private/nautilus-file-operations.c:1916 -+#: src/nautilus-file-operations.c:2094 - #, c-format - msgid "Trashing %'d file" - msgid_plural "Trashing %'d files" - msgstr[0] "%'d 個のファイルをゴミ箱へ移動しています" - --#: ../libnautilus-private/nautilus-file-operations.c:1920 -+#: src/nautilus-file-operations.c:2100 - #, c-format - msgid "Trashed %'d file" - msgid_plural "Trashed %'d files" - msgstr[0] "%'d 個のファイルをゴミ箱へ移動しました" - - #. Translators: %B is a file name --#: ../libnautilus-private/nautilus-file-operations.c:2043 -+#: src/nautilus-file-operations.c:2242 - msgid "“%B” can't be put in the trash. Do you want to delete it immediately?" - msgstr "“%B”をゴミ箱へ移動できません。今すぐ削除しますか?" - --#: ../libnautilus-private/nautilus-file-operations.c:2049 -+#: src/nautilus-file-operations.c:2251 - msgid "This remote location does not support sending items to the trash." - msgstr "リモートの場所はアイテムをゴミ箱に送り込む機能をサポートしてません。" - --#: ../libnautilus-private/nautilus-file-operations.c:2252 -+#: src/nautilus-file-operations.c:2515 - msgid "Trashing Files" - msgstr "ファイルをゴミ箱へ移動中" - --#: ../libnautilus-private/nautilus-file-operations.c:2254 -+#: src/nautilus-file-operations.c:2519 - msgid "Deleting Files" - msgstr "ファイルを削除中" - --#: ../libnautilus-private/nautilus-file-operations.c:2335 -+#: src/nautilus-file-operations.c:2609 - msgid "Unable to eject %V" - msgstr "%V を取り出せません" - --#: ../libnautilus-private/nautilus-file-operations.c:2337 -+#: src/nautilus-file-operations.c:2613 - msgid "Unable to unmount %V" - msgstr "%V をアンマウントできません" - --#: ../libnautilus-private/nautilus-file-operations.c:2494 -+#: src/nautilus-file-operations.c:2785 - msgid "Do you want to empty the trash before you unmount?" - msgstr "アンマウントする前にゴミ箱を空にしますか?" - --#: ../libnautilus-private/nautilus-file-operations.c:2496 --msgid "In order to regain the free space on this volume the trash must be emptied. All trashed items on the volume will be permanently lost." -+#: src/nautilus-file-operations.c:2787 -+msgid "" -+"In order to regain the free space on this volume the trash must be emptied. " -+"All trashed items on the volume will be permanently lost." - msgstr "このデバイス上の空き領域を増やすにはゴミ箱を空にしなければなりません。空にすると、ゴミ箱の中にあるすべてのアイテムが完全に消去されます。" - --#: ../libnautilus-private/nautilus-file-operations.c:2502 -+#: src/nautilus-file-operations.c:2793 - msgid "Do _not Empty Trash" - msgstr "ゴミ箱を空にしない(_N)" - - #. Translators: %s is a file name formatted for display --#: ../libnautilus-private/nautilus-file-operations.c:2636 --#: ../src/nautilus-files-view.c:5695 -+#: src/nautilus-file-operations.c:2937 src/nautilus-files-view.c:5818 - #, c-format - msgid "Unable to access “%s”" - msgstr "“%s”にアクセスできません" - --#: ../libnautilus-private/nautilus-file-operations.c:2712 -+#: src/nautilus-file-operations.c:3018 - #, c-format - msgid "Preparing to copy %'d file (%S)" - msgid_plural "Preparing to copy %'d files (%S)" - msgstr[0] "%'d 個のファイル (%S) をコピーする準備中です" - --#: ../libnautilus-private/nautilus-file-operations.c:2718 -+#: src/nautilus-file-operations.c:3027 - #, c-format - msgid "Preparing to move %'d file (%S)" - msgid_plural "Preparing to move %'d files (%S)" - msgstr[0] "%'d 個のファイル (%S) を移動する準備中です" - --#: ../libnautilus-private/nautilus-file-operations.c:2724 -+#: src/nautilus-file-operations.c:3036 - #, c-format - msgid "Preparing to delete %'d file (%S)" - msgid_plural "Preparing to delete %'d files (%S)" - msgstr[0] "%'d 個のファイル (%S) を削除する準備中です" - --#: ../libnautilus-private/nautilus-file-operations.c:2730 -+#: src/nautilus-file-operations.c:3045 - #, c-format - msgid "Preparing to trash %'d file" - msgid_plural "Preparing to trash %'d files" - msgstr[0] "%'d 個のファイルをゴミ箱に移動する準備中です" - --#: ../libnautilus-private/nautilus-file-operations.c:2761 --#: ../libnautilus-private/nautilus-file-operations.c:3876 --#: ../libnautilus-private/nautilus-file-operations.c:4008 --#: ../libnautilus-private/nautilus-file-operations.c:4053 -+#: src/nautilus-file-operations.c:3080 src/nautilus-file-operations.c:4437 -+#: src/nautilus-file-operations.c:4603 src/nautilus-file-operations.c:4664 - msgid "Error while copying." - msgstr "コピー中にエラーが発生しました。" - --#: ../libnautilus-private/nautilus-file-operations.c:2763 --#: ../libnautilus-private/nautilus-file-operations.c:4006 --#: ../libnautilus-private/nautilus-file-operations.c:4051 -+#: src/nautilus-file-operations.c:3085 src/nautilus-file-operations.c:4599 -+#: src/nautilus-file-operations.c:4660 - msgid "Error while moving." - msgstr "移動中にエラーが発生しました。" - --#: ../libnautilus-private/nautilus-file-operations.c:2767 -+#: src/nautilus-file-operations.c:3095 - msgid "Error while moving files to trash." - msgstr "ファイルをゴミ箱へ移動する際にエラーが発生しました。" - --#: ../libnautilus-private/nautilus-file-operations.c:2821 --msgid "Files in the folder “%B” cannot be handled because you do not have permissions to see them." -+#: src/nautilus-file-operations.c:3168 -+msgid "" -+"Files in the folder “%B” cannot be handled because you do not have " -+"permissions to see them." - msgstr "“%B”というフォルダーの中にあるファイルを参照する権限がないため、それらのファイルを操作できません。" - --#: ../libnautilus-private/nautilus-file-operations.c:2860 --msgid "The folder “%B” cannot be handled because you do not have permissions to read it." -+#: src/nautilus-file-operations.c:3173 src/nautilus-file-operations.c:4614 -+msgid "" -+"There was an error getting information about the files in the folder “%B”." -+msgstr "“%B”というフォルダーの中にあるファイルの情報を取得する際にエラーが発生しました。" -+ -+#: src/nautilus-file-operations.c:3222 -+msgid "" -+"The folder “%B” cannot be handled because you do not have permissions to " -+"read it." - msgstr "“%B”というフォルダーを参照する権限がないため、そのフォルダーを操作できません。" - --#: ../libnautilus-private/nautilus-file-operations.c:2937 --msgid "The file “%B” cannot be handled because you do not have permissions to read it." -+#: src/nautilus-file-operations.c:3227 src/nautilus-file-operations.c:4675 -+msgid "There was an error reading the folder “%B”." -+msgstr "“%B”というフォルダーを読み込んでいる際にエラーが発生しました。" -+ -+#: src/nautilus-file-operations.c:3328 -+msgid "" -+"The file “%B” cannot be handled because you do not have permissions to read " -+"it." - msgstr "“%B”というファイルを参照する権限がないため、そのファイルを操作できません。" - --#: ../libnautilus-private/nautilus-file-operations.c:2940 -+#: src/nautilus-file-operations.c:3333 - msgid "There was an error getting information about “%B”." - msgstr "“%B”の情報を取得する際にエラーが発生しました。" - --#: ../libnautilus-private/nautilus-file-operations.c:3042 --#: ../libnautilus-private/nautilus-file-operations.c:3090 --#: ../libnautilus-private/nautilus-file-operations.c:3129 --#: ../libnautilus-private/nautilus-file-operations.c:3159 -+#: src/nautilus-file-operations.c:3455 src/nautilus-file-operations.c:3514 -+#: src/nautilus-file-operations.c:3557 src/nautilus-file-operations.c:3595 - msgid "Error while copying to “%B”." - msgstr "“%B”へコピー中にエラーが発生しました。" - --#: ../libnautilus-private/nautilus-file-operations.c:3046 -+#: src/nautilus-file-operations.c:3460 - msgid "You do not have permissions to access the destination folder." - msgstr "転送先のフォルダーにアクセスする権限がありません。" - --#: ../libnautilus-private/nautilus-file-operations.c:3048 -+#: src/nautilus-file-operations.c:3464 - msgid "There was an error getting information about the destination." - msgstr "転送先の情報を取得する際にエラーが発生しました。" - --#: ../libnautilus-private/nautilus-file-operations.c:3091 -+#: src/nautilus-file-operations.c:3515 - msgid "The destination is not a folder." - msgstr "その場所はフォルダーではありません。" - --#: ../libnautilus-private/nautilus-file-operations.c:3130 --msgid "There is not enough space on the destination. Try to remove files to make space." -+#: src/nautilus-file-operations.c:3558 -+msgid "" -+"There is not enough space on the destination. Try to remove files to make " -+"space." - msgstr "転送先に十分な空き容量がありません (容量を増やすためにファイルを削除してみてください)。" - --#: ../libnautilus-private/nautilus-file-operations.c:3132 -+#: src/nautilus-file-operations.c:3560 - #, c-format - msgid "%S more space is required to copy to the destination." - msgstr "転送先にコピーするには、%S 以上の空き容量が必要です。" - --#: ../libnautilus-private/nautilus-file-operations.c:3160 -+#: src/nautilus-file-operations.c:3596 - msgid "The destination is read-only." - msgstr "コピー先は読み込み専用です。" - --#: ../libnautilus-private/nautilus-file-operations.c:3225 -+#: src/nautilus-file-operations.c:3668 - msgid "Moving “%B” to “%B”" - msgstr "“%B”から“%B”へ移動しています" - --#: ../libnautilus-private/nautilus-file-operations.c:3227 -+#: src/nautilus-file-operations.c:3672 - msgid "Moved “%B” to “%B”" - msgstr "“%B”から“%B”へ移動しました" - --#: ../libnautilus-private/nautilus-file-operations.c:3231 -+#: src/nautilus-file-operations.c:3679 - msgid "Copying “%B” to “%B”" - msgstr "“%B”から“%B”へコピーしています" - --#: ../libnautilus-private/nautilus-file-operations.c:3233 -+#: src/nautilus-file-operations.c:3683 - msgid "Copied “%B” to “%B”" - msgstr "“%B”から“%B”へコピーしました" - --#: ../libnautilus-private/nautilus-file-operations.c:3244 -+#: src/nautilus-file-operations.c:3697 - msgid "Duplicating “%B”" - msgstr "“%B”を複製しています" - --#: ../libnautilus-private/nautilus-file-operations.c:3246 -+#: src/nautilus-file-operations.c:3701 - msgid "Duplicated “%B”" - msgstr "“%B”を複製しました" - --#: ../libnautilus-private/nautilus-file-operations.c:3256 -+#: src/nautilus-file-operations.c:3716 - msgid "Moving %'d file to “%B”" - msgid_plural "Moving %'d files to “%B”" - msgstr[0] "%'d 個のファイルを“%B”へ移動しています" - --#: ../libnautilus-private/nautilus-file-operations.c:3260 -+#: src/nautilus-file-operations.c:3722 - msgid "Copying %'d file to “%B”" - msgid_plural "Copying %'d files to “%B”" - msgstr[0] "%'d 個のファイルを“%B”へコピーしています" - --#: ../libnautilus-private/nautilus-file-operations.c:3270 -+#: src/nautilus-file-operations.c:3735 - msgid "Moved %'d file to “%B”" - msgid_plural "Moved %'d files to “%B”" - msgstr[0] "%'d 個のファイルを“%B”へ移動しました" - --#: ../libnautilus-private/nautilus-file-operations.c:3274 -+#: src/nautilus-file-operations.c:3741 - msgid "Copied %'d file to “%B”" - msgid_plural "Copied %'d files to “%B”" - msgstr[0] "%'d 個のファイルを“%B”へコピーしました" - --#: ../libnautilus-private/nautilus-file-operations.c:3288 -+#: src/nautilus-file-operations.c:3758 - msgid "Duplicating %'d file in “%B”" - msgid_plural "Duplicating %'d files in “%B”" - msgstr[0] "%'d 個のファイルを“%B”で複製しています" - --#: ../libnautilus-private/nautilus-file-operations.c:3296 -+#: src/nautilus-file-operations.c:3768 - msgid "Duplicated %'d file in “%B”" - msgid_plural "Duplicated %'d files in “%B”" - msgstr[0] "%'d 個のファイルを“%B”で複製しました" - - #. To translators: %S will expand to a size like "2 bytes" or "3 MB", so something like "4 kb / 4 MB" - #. To translators: %S will expand to a size like "2 bytes" or "3 MB". --#: ../libnautilus-private/nautilus-file-operations.c:3324 --#: ../libnautilus-private/nautilus-file-operations.c:3356 -+#: src/nautilus-file-operations.c:3801 src/nautilus-file-operations.c:3844 - #, c-format - msgid "%S / %S" - msgstr "%S / %S" -@@ -1661,8 +2077,8 @@ msgstr "%S / %S" - #. * "2 minutes". So the whole thing will be something like "2 kb / 4 MB -- 2 hours left (4kb/sec)" - #. * - #. * The singular/plural form will be used depending on the remaining time (i.e. the %T argument). --#. --#: ../libnautilus-private/nautilus-file-operations.c:3348 -+#. -+#: src/nautilus-file-operations.c:3834 - msgid "%S / %S — %T left (%S/sec)" - msgid_plural "%S / %S — %T left (%S/sec)" - msgstr[0] "%S / %S — 残り %T (%S/秒)" -@@ -1671,1701 +2087,1498 @@ msgstr[0] "%S / %S — 残り %T (%S/秒)" - #. * So the whole thing will be something like "1 / 5 -- 2 hours left (4kb/sec)" - #. * - #. * The singular/plural form will be used depending on the remaining time (i.e. the %T argument). --#. --#: ../libnautilus-private/nautilus-file-operations.c:3367 -+#. -+#: src/nautilus-file-operations.c:3858 - msgid "%'d / %'d — %T left (%S/sec)" - msgid_plural "%'d / %'d — %T left (%S/sec)" - msgstr[0] "%'d / %'d — 残り %T (%S/秒)" - --#: ../libnautilus-private/nautilus-file-operations.c:3880 --msgid "The folder “%B” cannot be copied because you do not have permissions to create it in the destination." -+#: src/nautilus-file-operations.c:4442 -+msgid "" -+"The folder “%B” cannot be copied because you do not have permissions to " -+"create it in the destination." - msgstr "“%B”というフォルダーをコピー先に作成する権限がないため、そのフォルダーをコピーできません。" - --#: ../libnautilus-private/nautilus-file-operations.c:3883 -+#: src/nautilus-file-operations.c:4447 - msgid "There was an error creating the folder “%B”." - msgstr "“%B”というフォルダーを作成する際にエラーが発生しました。" - --#: ../libnautilus-private/nautilus-file-operations.c:4013 --msgid "Files in the folder “%B” cannot be copied because you do not have permissions to see them." -+#: src/nautilus-file-operations.c:4609 -+msgid "" -+"Files in the folder “%B” cannot be copied because you do not have " -+"permissions to see them." - msgstr "“%B”というフォルダーの中にあるファイルを参照する権限がないため、それらのファイルをコピーできません。" - --#: ../libnautilus-private/nautilus-file-operations.c:4058 --msgid "The folder “%B” cannot be copied because you do not have permissions to read it." -+#: src/nautilus-file-operations.c:4623 -+msgid "_Skip files" -+msgstr "ファイルのスキップ(_S)" -+ -+#: src/nautilus-file-operations.c:4670 -+msgid "" -+"The folder “%B” cannot be copied because you do not have permissions to read " -+"it." - msgstr "“%B”というフォルダーを参照する権限がないため、そのフォルダーをコピーできません。" - --#: ../libnautilus-private/nautilus-file-operations.c:4103 --#: ../libnautilus-private/nautilus-file-operations.c:4832 --#: ../libnautilus-private/nautilus-file-operations.c:5446 -+#: src/nautilus-file-operations.c:4728 src/nautilus-file-operations.c:5422 -+#: src/nautilus-file-operations.c:6125 - msgid "Error while moving “%B”." - msgstr "“%B”の移動中にエラーが発生しました。" - --#: ../libnautilus-private/nautilus-file-operations.c:4104 -+#: src/nautilus-file-operations.c:4729 - msgid "Could not remove the source folder." - msgstr "転送元のフォルダーを削除できませんでした。" - --#: ../libnautilus-private/nautilus-file-operations.c:4188 --#: ../libnautilus-private/nautilus-file-operations.c:4229 --#: ../libnautilus-private/nautilus-file-operations.c:4834 --#: ../libnautilus-private/nautilus-file-operations.c:4905 -+#: src/nautilus-file-operations.c:4807 src/nautilus-file-operations.c:5426 -+#: src/nautilus-file-operations.c:5506 - msgid "Error while copying “%B”." - msgstr "“%B”のコピー中にエラーが発生しました。" - --#: ../libnautilus-private/nautilus-file-operations.c:4189 -+#: src/nautilus-file-operations.c:4815 - #, c-format --msgid "Could not remove files from the already existing folder %F." --msgstr "既に存在している %F というフォルダーからファイルを削除できませんでした。" -+msgid "Could not remove the already existing folder %F." -+msgstr "既存のフォルダー %F を削除できませんでした。" - --#: ../libnautilus-private/nautilus-file-operations.c:4230 -+#: src/nautilus-file-operations.c:4820 - #, c-format - msgid "Could not remove the already existing file %F." - msgstr "既に存在しているファイル %F を削除できませんでした。" - - #. the run_warning() frees all strings passed in automatically --#: ../libnautilus-private/nautilus-file-operations.c:4577 --#: ../libnautilus-private/nautilus-file-operations.c:5289 -+#: src/nautilus-file-operations.c:5091 src/nautilus-file-operations.c:5933 - msgid "You cannot move a folder into itself." - msgstr "フォルダーを自分自身の中に移動することはできません。" - --#: ../libnautilus-private/nautilus-file-operations.c:4578 --#: ../libnautilus-private/nautilus-file-operations.c:5290 -+#: src/nautilus-file-operations.c:5092 src/nautilus-file-operations.c:5934 - msgid "You cannot copy a folder into itself." - msgstr "フォルダーを自分自身の中にコピーすることはできません。" - --#: ../libnautilus-private/nautilus-file-operations.c:4579 --#: ../libnautilus-private/nautilus-file-operations.c:5291 -+#: src/nautilus-file-operations.c:5093 src/nautilus-file-operations.c:5935 - msgid "The destination folder is inside the source folder." - msgstr "転送先のフォルダーが転送元のフォルダーの中にあります。" - - #. the run_warning() frees all strings passed in automatically --#: ../libnautilus-private/nautilus-file-operations.c:4609 -+#: src/nautilus-file-operations.c:5131 - msgid "You cannot move a file over itself." - msgstr "ファイルを自分自身に移動することはできません。" - --#: ../libnautilus-private/nautilus-file-operations.c:4610 -+#: src/nautilus-file-operations.c:5132 - msgid "You cannot copy a file over itself." - msgstr "ファイルを自分自身にコピーすることはできません。" - --#: ../libnautilus-private/nautilus-file-operations.c:4611 -+#: src/nautilus-file-operations.c:5133 - msgid "The source file would be overwritten by the destination." - msgstr "転送元のファイルが転送先で上書きされます。" - --#: ../libnautilus-private/nautilus-file-operations.c:4836 -+#: src/nautilus-file-operations.c:5428 - #, c-format - msgid "Could not remove the already existing file with the same name in %F." - msgstr "%F の中にある同名のファイルを削除できませんでした。" - --#: ../libnautilus-private/nautilus-file-operations.c:4906 -+#: src/nautilus-file-operations.c:5507 - #, c-format - msgid "There was an error copying the file into %F." - msgstr "ファイルを %F へコピーする際にエラーが発生しました。" - --#: ../libnautilus-private/nautilus-file-operations.c:5135 --#: ../libnautilus-private/nautilus-file-operations.c:5172 -+#: src/nautilus-file-operations.c:5767 src/nautilus-file-operations.c:5805 - msgid "Copying Files" - msgstr "ファイルをコピーしています" - --#: ../libnautilus-private/nautilus-file-operations.c:5199 -+#: src/nautilus-file-operations.c:5835 - msgid "Preparing to move to “%B”" - msgstr "“%B”へ移動する準備中です" - --#: ../libnautilus-private/nautilus-file-operations.c:5203 -+#: src/nautilus-file-operations.c:5839 - #, c-format - msgid "Preparing to move %'d file" - msgid_plural "Preparing to move %'d files" - msgstr[0] "%'d 個のファイルを移動する準備中..." - --#: ../libnautilus-private/nautilus-file-operations.c:5447 -+#: src/nautilus-file-operations.c:6126 - #, c-format - msgid "There was an error moving the file into %F." - msgstr "%F の中にファイルを移動する際にエラーが発生しました。" - --#: ../libnautilus-private/nautilus-file-operations.c:5707 -+#: src/nautilus-file-operations.c:6412 - msgid "Moving Files" - msgstr "ファイルを移動中" - --#: ../libnautilus-private/nautilus-file-operations.c:5741 -+#: src/nautilus-file-operations.c:6452 - msgid "Creating links in “%B”" - msgstr "“%B”でリンクの作成中" - --#: ../libnautilus-private/nautilus-file-operations.c:5745 -+#: src/nautilus-file-operations.c:6456 - #, c-format - msgid "Making link to %'d file" - msgid_plural "Making links to %'d files" - msgstr[0] "%'d 個のファイルへのリンクの作成中" - --#: ../libnautilus-private/nautilus-file-operations.c:5880 -+#: src/nautilus-file-operations.c:6611 - msgid "Error while creating link to %B." - msgstr "%B へリンクの作成中にエラーが発生しました。" - --#: ../libnautilus-private/nautilus-file-operations.c:5882 -+#: src/nautilus-file-operations.c:6614 - msgid "Symbolic links only supported for local files" - msgstr "シンボリックリンクはローカルのファイルのみサポートしています。" - --#: ../libnautilus-private/nautilus-file-operations.c:5885 -+#: src/nautilus-file-operations.c:6619 - msgid "The target doesn't support symbolic links." - msgstr "リンクの作成先はシンボリックリンクをサポートしていません。" - --#: ../libnautilus-private/nautilus-file-operations.c:5888 -+#: src/nautilus-file-operations.c:6624 - #, c-format - msgid "There was an error creating the symlink in %F." - msgstr "%F でシンボリックリンクを作成する際にエラーが発生しました。" - --#: ../libnautilus-private/nautilus-file-operations.c:6214 -+#: src/nautilus-file-operations.c:6978 - msgid "Setting permissions" - msgstr "アクセス権の設定中" - - #. localizers: the initial name of a new folder --#: ../libnautilus-private/nautilus-file-operations.c:6473 -+#: src/nautilus-file-operations.c:7265 - msgid "Untitled Folder" - msgstr "無題のフォルダー" - - #. localizers: the initial name of a new empty document --#: ../libnautilus-private/nautilus-file-operations.c:6485 -+#: src/nautilus-file-operations.c:7281 - msgid "Untitled Document" - msgstr "無題のドキュメント" - --#: ../libnautilus-private/nautilus-file-operations.c:6701 -+#: src/nautilus-file-operations.c:7544 - msgid "Error while creating directory %B." - msgstr "%B というフォルダーの作成中にエラーが発生しました。" - --#: ../libnautilus-private/nautilus-file-operations.c:6703 -+#: src/nautilus-file-operations.c:7548 - msgid "Error while creating file %B." - msgstr "%B というファイルの作成中にエラーが発生しました。" - --#: ../libnautilus-private/nautilus-file-operations.c:6705 -+#: src/nautilus-file-operations.c:7550 - #, c-format - msgid "There was an error creating the directory in %F." - msgstr "%F にフォルダーを作成する際にエラーが発生しました。" - --#: ../libnautilus-private/nautilus-file-operations.c:6965 -+#: src/nautilus-file-operations.c:7837 - msgid "Emptying Trash" - msgstr "ゴミ箱を空にしている" - --#: ../libnautilus-private/nautilus-file-operations.c:7013 --#: ../libnautilus-private/nautilus-file-operations.c:7054 --#: ../libnautilus-private/nautilus-file-operations.c:7089 --#: ../libnautilus-private/nautilus-file-operations.c:7124 -+#: src/nautilus-file-operations.c:7888 src/nautilus-file-operations.c:7939 -+#: src/nautilus-file-operations.c:7982 src/nautilus-file-operations.c:8026 - msgid "Unable to mark launcher trusted (executable)" - msgstr "ランチャー (実行形式) の安全性を確認できません" - --#: ../libnautilus-private/nautilus-file-undo-operations.c:133 --#: ../src/nautilus-window.c:461 ../src/resources/ui/nautilus-window.ui.h:2 --msgid "Undo" --msgstr "元に戻す" -- --#: ../libnautilus-private/nautilus-file-undo-operations.c:136 --msgid "Undo last action" --msgstr "最後のアクションを元に戻す" -- --#: ../libnautilus-private/nautilus-file-undo-operations.c:140 --#: ../src/nautilus-window.c:462 --msgid "Redo" --msgstr "やり直す" -+#: src/nautilus-files-view.c:383 -+msgid "Searching…" -+msgstr "検索中…" - --#: ../libnautilus-private/nautilus-file-undo-operations.c:143 --msgid "Redo last undone action" --msgstr "最後に元に戻したアクションをやり直す" -+#: src/nautilus-files-view.c:383 src/nautilus-image-properties-page.c:766 -+#: src/nautilus-list-model.c:450 src/nautilus-window-slot.c:781 -+msgid "Loading…" -+msgstr "読み込み中…" - --#: ../libnautilus-private/nautilus-file-undo-operations.c:365 --#, c-format --msgid "Move %d item back to '%s'" --msgid_plural "Move %d items back to '%s'" --msgstr[0] "%d 件のアイテムを '%s' へ移動し直します" -+#: src/nautilus-files-view.c:1028 src/nautilus-mime-actions.c:1027 -+#: src/nautilus-mime-actions.c:1882 -+msgid "Are you sure you want to open all files?" -+msgstr "すべてのファイルを開いてもよろしいですか?" - --#: ../libnautilus-private/nautilus-file-undo-operations.c:368 -+#: src/nautilus-files-view.c:1031 - #, c-format --msgid "Move %d item to '%s'" --msgid_plural "Move %d items to '%s'" --msgstr[0] "%d 件のアイテムを '%s' へ移動します" -+msgid "This will open %'d separate tab." -+msgid_plural "This will open %'d separate tabs." -+msgstr[0] "%'d 個のタブを別々に開きます。" - --#: ../libnautilus-private/nautilus-file-undo-operations.c:372 -+#: src/nautilus-files-view.c:1036 - #, c-format --msgid "_Undo Move %d item" --msgid_plural "_Undo Move %d items" --msgstr[0] "元に戻す: %d 件の移動(_U)" -+msgid "This will open %'d separate window." -+msgid_plural "This will open %'d separate windows." -+msgstr[0] "%'d 個のウィンドウを別々に開きます。" - --#: ../libnautilus-private/nautilus-file-undo-operations.c:375 --#, c-format --msgid "_Redo Move %d item" --msgid_plural "_Redo Move %d items" --msgstr[0] "やり直す: %d 件の移動(_R)" -+#: src/nautilus-files-view.c:1040 src/nautilus-location-entry.c:282 -+#: src/nautilus-mime-actions.c:1039 src/nautilus-mime-actions.c:1225 -+#: src/nautilus-mime-actions.c:1886 -+msgid "_OK" -+msgstr "OK(_O)" - --#: ../libnautilus-private/nautilus-file-undo-operations.c:379 --#, c-format --msgid "Move '%s' back to '%s'" --msgstr "'%s' を '%s' へ移動し直します" -+#: src/nautilus-files-view.c:1531 -+msgid "Select Items Matching" -+msgstr "パターンを指定してアイテムを選択" - --#: ../libnautilus-private/nautilus-file-undo-operations.c:380 --#, c-format --msgid "Move '%s' to '%s'" --msgstr "'%s' を '%s' へ移動します" -+#: src/nautilus-files-view.c:1536 src/nautilus-files-view.c:5385 -+msgid "_Select" -+msgstr "選択(_S)" - --#: ../libnautilus-private/nautilus-file-undo-operations.c:382 --msgid "_Undo Move" --msgstr "元に戻す: 移動(_U)" -+#: src/nautilus-files-view.c:1544 -+msgid "_Pattern:" -+msgstr "パターン(_P):" - --#: ../libnautilus-private/nautilus-file-undo-operations.c:383 --msgid "_Redo Move" --msgstr "やり直す: 移動(_R)" -+#: src/nautilus-files-view.c:1550 -+msgid "Examples: " -+msgstr "例: " - --#: ../libnautilus-private/nautilus-file-undo-operations.c:386 --msgid "_Undo Restore from Trash" --msgstr "元に戻す: ゴミ箱から元に戻す(_U)" -+#: src/nautilus-files-view.c:2392 -+msgid "" -+"Nautilus 3.6 deprecated this directory and tried migrating this " -+"configuration to ~/.local/share/nautilus" -+msgstr "" -+"Nautilus 3.6 ではこのディレクトリの使用は非推奨となり、~/.local/share/nautilus への設定内容の移行を試みました。" - --#: ../libnautilus-private/nautilus-file-undo-operations.c:387 -+#: src/nautilus-files-view.c:2871 src/nautilus-files-view.c:2918 -+#, c-format -+msgid "“%s” selected" -+msgstr "“%s”を選択しました" -+ -+#: src/nautilus-files-view.c:2875 -+#, c-format -+msgid "%'d folder selected" -+msgid_plural "%'d folders selected" -+msgstr[0] "%'d 個のフォルダーを選択しました" -+ -+#: src/nautilus-files-view.c:2889 -+#, c-format -+msgid "(containing %'d item)" -+msgid_plural "(containing %'d items)" -+msgstr[0] "(%'d 個のアイテムを含む)" -+ -+#. translators: this is preceded with a string of form 'N folders' (N more than 1) -+#: src/nautilus-files-view.c:2904 -+#, c-format -+msgid "(containing a total of %'d item)" -+msgid_plural "(containing a total of %'d items)" -+msgstr[0] "(合計で %'d 個のアイテムを含む)" -+ -+#: src/nautilus-files-view.c:2923 -+#, c-format -+msgid "%'d item selected" -+msgid_plural "%'d items selected" -+msgstr[0] "%'d 個のアイテムを選択しました" -+ -+#. Folders selected also, use "other" terminology -+#: src/nautilus-files-view.c:2932 -+#, c-format -+msgid "%'d other item selected" -+msgid_plural "%'d other items selected" -+msgstr[0] "他に %'d 個のアイテムを選択しました" -+ -+#. This is marked for translation in case a localiser -+#. * needs to use something other than parentheses. The -+#. * the message in parentheses is the size of the selected items. -+#. -+#: src/nautilus-files-view.c:2947 -+#, c-format -+msgid "(%s)" -+msgstr "(%s)" -+ -+#. This is marked for translation in case a localizer -+#. * needs to change ", " to something else. The comma -+#. * is between the message about the number of folders -+#. * and the number of items in those folders and the -+#. * message about the number of other items and the -+#. * total size of those items. -+#. -+#: src/nautilus-files-view.c:2980 -+#, c-format -+msgid "%s %s, %s %s" -+msgstr "%s %s, %s %s" -+ -+#: src/nautilus-files-view.c:5372 -+msgid "Select Move Destination" -+msgstr "移動する宛先の選択" -+ -+#: src/nautilus-files-view.c:5376 -+msgid "Select Copy Destination" -+msgstr "コピーする宛先の選択" -+ -+#. Translators: %s is a file name formatted for display -+#: src/nautilus-files-view.c:5846 -+#, c-format -+msgid "Unable to remove “%s”" -+msgstr "%s を取り外せません" -+ -+#. Translators: %s is a file name formatted for display -+#: src/nautilus-files-view.c:5874 -+#, c-format -+msgid "Unable to eject “%s”" -+msgstr "“%s”を取り出せません" -+ -+#: src/nautilus-files-view.c:5897 -+msgid "Unable to stop drive" -+msgstr "ドライブを停止できません" -+ -+#. Translators: %s is a file name formatted for display -+#: src/nautilus-files-view.c:6009 -+#, c-format -+msgid "Unable to start “%s”" -+msgstr "“%s”を起動できません" -+ -+#: src/nautilus-files-view.c:6844 -+#, c-format -+msgid "New Folder with Selection (%'d Item)" -+msgid_plural "New Folder with Selection (%'d Items)" -+msgstr[0] "選択アイテム含む新しいフォルダーを作成 (%'d 件)" -+ -+#: src/nautilus-files-view.c:6900 -+#, c-format -+msgid "Open With %s" -+msgstr "%sで開く" -+ -+#: src/nautilus-files-view.c:6912 -+msgid "Run" -+msgstr "実行" -+ -+#: src/nautilus-files-view.c:6916 -+msgid "Open" -+msgstr "開く" -+ -+#: src/nautilus-files-view.c:6973 -+#: src/resources/ui/nautilus-files-view-context-menus.ui:125 -+msgid "_Start" -+msgstr "開始(_S)" -+ -+#: src/nautilus-files-view.c:6979 src/gtk/nautilusgtkplacesview.c:1696 -+msgid "_Connect" -+msgstr "接続する(_C)" -+ -+#: src/nautilus-files-view.c:6985 -+msgid "_Start Multi-disk Drive" -+msgstr "マルチディスク・ドライブを起動(_S)" -+ -+#: src/nautilus-files-view.c:6991 -+msgid "U_nlock Drive" -+msgstr "ドライブのロック解除(_N)" -+ -+#: src/nautilus-files-view.c:7011 -+msgid "Stop Drive" -+msgstr "ドライブを停止する" -+ -+#: src/nautilus-files-view.c:7017 -+msgid "_Safely Remove Drive" -+msgstr "ドライブを安全に取り出す(_S)" -+ -+#: src/nautilus-files-view.c:7023 src/gtk/nautilusgtkplacesview.c:1686 -+msgid "_Disconnect" -+msgstr "切断(_D)" -+ -+#: src/nautilus-files-view.c:7029 -+msgid "_Stop Multi-disk Drive" -+msgstr "マルチディスク・ドライブの停止(_S)" -+ -+#: src/nautilus-files-view.c:7035 -+msgid "_Lock Drive" -+msgstr "ドライブのロック(_L)" -+ -+#: src/nautilus-files-view.c:8601 -+msgid "Content View" -+msgstr "内容表示" -+ -+#: src/nautilus-files-view.c:8602 -+msgid "View of the current folder" -+msgstr "このフォルダーを表示します" -+ -+#: src/nautilus-files-view-dnd.c:179 src/nautilus-files-view-dnd.c:221 -+#: src/nautilus-files-view-dnd.c:327 -+msgid "Drag and drop is not supported." -+msgstr "ドラッグ&ドロップはサポートしていません。" -+ -+#: src/nautilus-files-view-dnd.c:180 -+msgid "Drag and drop is only supported on local file systems." -+msgstr "ドラッグ&ドロップはローカルのファイルシステムでのみサポートしています。" -+ -+#: src/nautilus-files-view-dnd.c:222 src/nautilus-files-view-dnd.c:328 -+msgid "An invalid drag type was used." -+msgstr "使用したドラッグの種類は無効です。" -+ -+#. Translator: This is the filename used for when you dnd text to a directory -+#: src/nautilus-files-view-dnd.c:437 -+msgid "Dropped Text.txt" -+msgstr "ドロップしたテキスト.txt" -+ -+#. Translator: This is the filename used for when you dnd raw -+#. * data to a directory, if the source didn't supply a name. -+#. -+#: src/nautilus-files-view-dnd.c:543 -+msgid "dropped data" -+msgstr "ドロップしたデータ" -+ -+#: src/nautilus-file-undo-operations.c:166 -+#: src/resources/ui/nautilus-window.ui:89 -+msgid "Undo" -+msgstr "元に戻す" -+ -+#: src/nautilus-file-undo-operations.c:170 -+msgid "Undo last action" -+msgstr "最後のアクションを元に戻す" -+ -+#: src/nautilus-file-undo-operations.c:175 -+msgid "Redo" -+msgstr "やり直す" -+ -+#: src/nautilus-file-undo-operations.c:179 -+msgid "Redo last undone action" -+msgstr "最後に元に戻したアクションをやり直す" -+ -+#: src/nautilus-file-undo-operations.c:412 -+#, c-format -+msgid "Move %d item back to '%s'" -+msgid_plural "Move %d items back to '%s'" -+msgstr[0] "%d 件のアイテムを '%s' へ移動し直します" -+ -+#: src/nautilus-file-undo-operations.c:415 -+#, c-format -+msgid "Move %d item to '%s'" -+msgid_plural "Move %d items to '%s'" -+msgstr[0] "%d 件のアイテムを '%s' へ移動します" -+ -+#: src/nautilus-file-undo-operations.c:419 -+#, c-format -+msgid "_Undo Move %d item" -+msgid_plural "_Undo Move %d items" -+msgstr[0] "元に戻す: %d 件の移動(_U)" -+ -+#: src/nautilus-file-undo-operations.c:422 -+#, c-format -+msgid "_Redo Move %d item" -+msgid_plural "_Redo Move %d items" -+msgstr[0] "やり直す: %d 件の移動(_R)" -+ -+#: src/nautilus-file-undo-operations.c:428 -+#, c-format -+msgid "Move '%s' back to '%s'" -+msgstr "'%s' を '%s' へ移動し直します" -+ -+#: src/nautilus-file-undo-operations.c:429 -+#, c-format -+msgid "Move '%s' to '%s'" -+msgstr "'%s' を '%s' へ移動します" -+ -+#: src/nautilus-file-undo-operations.c:431 -+msgid "_Undo Move" -+msgstr "元に戻す: 移動(_U)" -+ -+#: src/nautilus-file-undo-operations.c:432 -+msgid "_Redo Move" -+msgstr "やり直す: 移動(_R)" -+ -+#: src/nautilus-file-undo-operations.c:437 -+msgid "_Undo Restore from Trash" -+msgstr "元に戻す: ゴミ箱から元に戻す(_U)" -+ -+#: src/nautilus-file-undo-operations.c:438 - msgid "_Redo Restore from Trash" - msgstr "やり直す: ゴミ箱から元に戻す(_R)" - --#: ../libnautilus-private/nautilus-file-undo-operations.c:390 -+#: src/nautilus-file-undo-operations.c:442 - #, c-format - msgid "Move %d item back to trash" - msgid_plural "Move %d items back to trash" - msgstr[0] "%d 件のアイテムをゴミ箱へ移動し直します" - --#: ../libnautilus-private/nautilus-file-undo-operations.c:393 --#: ../libnautilus-private/nautilus-file-undo-operations.c:989 -+#: src/nautilus-file-undo-operations.c:445 -+#: src/nautilus-file-undo-operations.c:1331 - #, c-format - msgid "Restore %d item from trash" - msgid_plural "Restore %d items from trash" - msgstr[0] "%d 件のアイテムをゴミ箱から元に戻します" - --#: ../libnautilus-private/nautilus-file-undo-operations.c:397 -+#: src/nautilus-file-undo-operations.c:451 - #, c-format - msgid "Move '%s' back to trash" - msgstr "'%s' をゴミ箱へ移動し直します" - --#: ../libnautilus-private/nautilus-file-undo-operations.c:398 -+#: src/nautilus-file-undo-operations.c:452 - #, c-format - msgid "Restore '%s' from trash" - msgstr "'%s' をゴミ箱から元に戻します" - --#: ../libnautilus-private/nautilus-file-undo-operations.c:402 -+#: src/nautilus-file-undo-operations.c:459 - #, c-format - msgid "Delete %d copied item" - msgid_plural "Delete %d copied items" - msgstr[0] "コピーされた %d 件のアイテムを削除します" - --#: ../libnautilus-private/nautilus-file-undo-operations.c:405 -+#: src/nautilus-file-undo-operations.c:462 - #, c-format - msgid "Copy %d item to '%s'" - msgid_plural "Copy %d items to '%s'" - msgstr[0] "%d 件のアイテムを '%s' へコピーします" - --#: ../libnautilus-private/nautilus-file-undo-operations.c:409 -+#: src/nautilus-file-undo-operations.c:466 - #, c-format - msgid "_Undo Copy %d item" - msgid_plural "_Undo Copy %d items" - msgstr[0] "元に戻す: %d 件のコピー(_U)" - --#: ../libnautilus-private/nautilus-file-undo-operations.c:412 -+#: src/nautilus-file-undo-operations.c:469 - #, c-format - msgid "_Redo Copy %d item" - msgid_plural "_Redo Copy %d items" - msgstr[0] "やり直す: %d 件のコピー(_R)" - --#: ../libnautilus-private/nautilus-file-undo-operations.c:416 --#: ../libnautilus-private/nautilus-file-undo-operations.c:438 --#: ../libnautilus-private/nautilus-file-undo-operations.c:671 -+#: src/nautilus-file-undo-operations.c:475 -+#: src/nautilus-file-undo-operations.c:502 -+#: src/nautilus-file-undo-operations.c:777 - #, c-format - msgid "Delete '%s'" - msgstr "'%s' を削除します" - --#: ../libnautilus-private/nautilus-file-undo-operations.c:417 -+#: src/nautilus-file-undo-operations.c:476 - #, c-format - msgid "Copy '%s' to '%s'" - msgstr "'%s' を '%s' へコピーします" - --#: ../libnautilus-private/nautilus-file-undo-operations.c:419 -+#: src/nautilus-file-undo-operations.c:478 - msgid "_Undo Copy" - msgstr "元に戻す: コピー(_U)" - --#: ../libnautilus-private/nautilus-file-undo-operations.c:420 -+#: src/nautilus-file-undo-operations.c:479 - msgid "_Redo Copy" - msgstr "やり直す: コピー(_R)" - --#: ../libnautilus-private/nautilus-file-undo-operations.c:424 -+#: src/nautilus-file-undo-operations.c:486 - #, c-format - msgid "Delete %d duplicated item" - msgid_plural "Delete %d duplicated items" - msgstr[0] "%d 件の複製したアイテムを削除します" - --#: ../libnautilus-private/nautilus-file-undo-operations.c:427 -+#: src/nautilus-file-undo-operations.c:489 - #, c-format - msgid "Duplicate %d item in '%s'" - msgid_plural "Duplicate %d items in '%s'" - msgstr[0] "%d 件のアイテムを '%s' に複製します" - --#: ../libnautilus-private/nautilus-file-undo-operations.c:431 -+#: src/nautilus-file-undo-operations.c:493 - #, c-format - msgid "_Undo Duplicate %d item" - msgid_plural "_Undo Duplicate %d items" - msgstr[0] "元に戻す: %d 件の複製(_U)" - --#: ../libnautilus-private/nautilus-file-undo-operations.c:434 -+#: src/nautilus-file-undo-operations.c:496 - #, c-format - msgid "_Redo Duplicate %d item" - msgid_plural "_Redo Duplicate %d items" - msgstr[0] "やり直す: %d 件の複製(_R)" - --#: ../libnautilus-private/nautilus-file-undo-operations.c:439 -+#: src/nautilus-file-undo-operations.c:503 - #, c-format - msgid "Duplicate '%s' in '%s'" - msgstr "'%s' を '%s' に複製します" - --#: ../libnautilus-private/nautilus-file-undo-operations.c:442 -+#: src/nautilus-file-undo-operations.c:506 - msgid "_Undo Duplicate" - msgstr "元に戻す: 複製(_U)" - --#: ../libnautilus-private/nautilus-file-undo-operations.c:443 -+#: src/nautilus-file-undo-operations.c:507 - msgid "_Redo Duplicate" - msgstr "やり直す: 複製(_R)" - --#: ../libnautilus-private/nautilus-file-undo-operations.c:447 -+#: src/nautilus-file-undo-operations.c:514 - #, c-format - msgid "Delete links to %d item" - msgid_plural "Delete links to %d items" - msgstr[0] "%d 件のアイテムへのリンクを削除します" - --#: ../libnautilus-private/nautilus-file-undo-operations.c:450 -+#: src/nautilus-file-undo-operations.c:517 - #, c-format - msgid "Create links to %d item" - msgid_plural "Create links to %d items" - msgstr[0] "%d 件のアイテムへのリンクを作成します" - --#: ../libnautilus-private/nautilus-file-undo-operations.c:454 -+#: src/nautilus-file-undo-operations.c:523 - #, c-format - msgid "Delete link to '%s'" - msgstr "'%s' へのリンクを削除します" - --#: ../libnautilus-private/nautilus-file-undo-operations.c:455 -+#: src/nautilus-file-undo-operations.c:524 - #, c-format - msgid "Create link to '%s'" - msgstr "'%s' へのリンクを作成します" - --#: ../libnautilus-private/nautilus-file-undo-operations.c:457 -+#: src/nautilus-file-undo-operations.c:526 - msgid "_Undo Create Link" - msgstr "元に戻す: リンクの作成(_U)" - --#: ../libnautilus-private/nautilus-file-undo-operations.c:458 -+#: src/nautilus-file-undo-operations.c:527 - msgid "_Redo Create Link" - msgstr "やり直す: リンクの作成(_R)" - --#: ../libnautilus-private/nautilus-file-undo-operations.c:674 -+#: src/nautilus-file-undo-operations.c:781 - #, c-format - msgid "Create an empty file '%s'" - msgstr "空のファイル '%s' を作成します" - --#: ../libnautilus-private/nautilus-file-undo-operations.c:676 -+#: src/nautilus-file-undo-operations.c:783 - msgid "_Undo Create Empty File" - msgstr "元に戻す: 空のファイルの作成(_U)" - --#: ../libnautilus-private/nautilus-file-undo-operations.c:677 -+#: src/nautilus-file-undo-operations.c:784 - msgid "_Redo Create Empty File" - msgstr "やり直す: 空のファイルの作成(_R)" - --#: ../libnautilus-private/nautilus-file-undo-operations.c:679 -+#: src/nautilus-file-undo-operations.c:788 - #, c-format - msgid "Create a new folder '%s'" - msgstr "新しいフォルダー '%s' を作成します" - --#: ../libnautilus-private/nautilus-file-undo-operations.c:681 -+#: src/nautilus-file-undo-operations.c:790 - msgid "_Undo Create Folder" - msgstr "元に戻す: フォルダーの作成(_U)" - --#: ../libnautilus-private/nautilus-file-undo-operations.c:682 -+#: src/nautilus-file-undo-operations.c:791 - msgid "_Redo Create Folder" - msgstr "やり直す: フォルダーの作成(_R)" - --#: ../libnautilus-private/nautilus-file-undo-operations.c:684 -+#: src/nautilus-file-undo-operations.c:795 - #, c-format - msgid "Create new file '%s' from template " - msgstr "新しいファイル '%s' をテンプレートから作成します" - --#: ../libnautilus-private/nautilus-file-undo-operations.c:686 -+#: src/nautilus-file-undo-operations.c:797 - msgid "_Undo Create from Template" - msgstr "元に戻す: テンプレートからの作成(_U)" - --#: ../libnautilus-private/nautilus-file-undo-operations.c:687 -+#: src/nautilus-file-undo-operations.c:798 - msgid "_Redo Create from Template" - msgstr "やり直す: テンプレートからの作成(_R)" - --#: ../libnautilus-private/nautilus-file-undo-operations.c:872 --#: ../libnautilus-private/nautilus-file-undo-operations.c:873 -+#: src/nautilus-file-undo-operations.c:992 -+#: src/nautilus-file-undo-operations.c:993 - #, c-format - msgid "Rename '%s' as '%s'" - msgstr "'%s' の名前を '%s' に変更します" - --#: ../libnautilus-private/nautilus-file-undo-operations.c:875 -+#: src/nautilus-file-undo-operations.c:995 - msgid "_Undo Rename" - msgstr "元に戻す: 名前の変更(_U)" - --#: ../libnautilus-private/nautilus-file-undo-operations.c:876 -+#: src/nautilus-file-undo-operations.c:996 - msgid "_Redo Rename" - msgstr "やり直す: 名前の変更(_R)" - --#: ../libnautilus-private/nautilus-file-undo-operations.c:992 -+#: src/nautilus-file-undo-operations.c:1112 -+#: src/nautilus-file-undo-operations.c:1116 -+#, c-format -+msgid "Batch rename %d file" -+msgid_plural "Batch rename %d files" -+msgstr[0] "%d ファイルの名前変更のバッチ処理" -+ -+#: src/nautilus-file-undo-operations.c:1121 -+msgid "_Undo Batch Rename" -+msgstr "元に戻す: 名前変更のバッチ処理(_U)" -+ -+#: src/nautilus-file-undo-operations.c:1122 -+msgid "_Redo Batch Rename" -+msgstr "やり直す: 名前変更のバッチ処理(_R)" -+ -+#: src/nautilus-file-undo-operations.c:1334 - #, c-format - msgid "Move %d item to trash" - msgid_plural "Move %d items to trash" - msgstr[0] "%d 件のアイテムをゴミ箱へ移動します" - --#: ../libnautilus-private/nautilus-file-undo-operations.c:1004 -+#: src/nautilus-file-undo-operations.c:1348 - #, c-format - msgid "Restore '%s' to '%s'" - msgstr "'%s' を '%s' へ戻します" - --#: ../libnautilus-private/nautilus-file-undo-operations.c:1011 -+#: src/nautilus-file-undo-operations.c:1355 - #, c-format - msgid "Move '%s' to trash" - msgstr "'%s' をゴミ箱へ移動します" - --#: ../libnautilus-private/nautilus-file-undo-operations.c:1016 -+#: src/nautilus-file-undo-operations.c:1360 - msgid "_Undo Trash" - msgstr "元に戻す: ゴミ箱へ移動する(_U)" - --#: ../libnautilus-private/nautilus-file-undo-operations.c:1017 -+#: src/nautilus-file-undo-operations.c:1361 - msgid "_Redo Trash" - msgstr "やり直す: ゴミ箱へ移動する(_R)" - --#: ../libnautilus-private/nautilus-file-undo-operations.c:1310 -+#: src/nautilus-file-undo-operations.c:1656 - #, c-format - msgid "Restore original permissions of items enclosed in '%s'" - msgstr "'%s' 内のアイテムのアクセス権を元に戻します" - --#: ../libnautilus-private/nautilus-file-undo-operations.c:1311 -+#: src/nautilus-file-undo-operations.c:1657 - #, c-format - msgid "Set permissions of items enclosed in '%s'" - msgstr "'%s' 内のアイテムのアクセス権を設定します" - --#: ../libnautilus-private/nautilus-file-undo-operations.c:1313 --#: ../libnautilus-private/nautilus-file-undo-operations.c:1464 -+#: src/nautilus-file-undo-operations.c:1659 -+#: src/nautilus-file-undo-operations.c:1813 - msgid "_Undo Change Permissions" - msgstr "元に戻す: アクセス権の変更(_U)" - --#: ../libnautilus-private/nautilus-file-undo-operations.c:1314 --#: ../libnautilus-private/nautilus-file-undo-operations.c:1465 -+#: src/nautilus-file-undo-operations.c:1660 -+#: src/nautilus-file-undo-operations.c:1814 - msgid "_Redo Change Permissions" - msgstr "やり直す: アクセス権の変更(_R)" - --#: ../libnautilus-private/nautilus-file-undo-operations.c:1461 -+#: src/nautilus-file-undo-operations.c:1810 - #, c-format - msgid "Restore original permissions of '%s'" - msgstr "'%s' のアクセス権を元に戻します" - --#: ../libnautilus-private/nautilus-file-undo-operations.c:1462 -+#: src/nautilus-file-undo-operations.c:1811 - #, c-format - msgid "Set permissions of '%s'" - msgstr "'%s' のアクセス権を設定します" - --#: ../libnautilus-private/nautilus-file-undo-operations.c:1572 -+#: src/nautilus-file-undo-operations.c:1923 - #, c-format - msgid "Restore group of '%s' to '%s'" - msgstr "'%s' のグループを 元の '%s' に戻します" - --#: ../libnautilus-private/nautilus-file-undo-operations.c:1574 -+#: src/nautilus-file-undo-operations.c:1925 - #, c-format - msgid "Set group of '%s' to '%s'" - msgstr "'%s' のグループを '%s' に設定します" - --#: ../libnautilus-private/nautilus-file-undo-operations.c:1577 -+#: src/nautilus-file-undo-operations.c:1928 - msgid "_Undo Change Group" - msgstr "元に戻す: グループの変更(_U)" - --#: ../libnautilus-private/nautilus-file-undo-operations.c:1578 -+#: src/nautilus-file-undo-operations.c:1929 - msgid "_Redo Change Group" - msgstr "やり直す: グループの変更(_R)" - --#: ../libnautilus-private/nautilus-file-undo-operations.c:1580 -+#: src/nautilus-file-undo-operations.c:1933 - #, c-format - msgid "Restore owner of '%s' to '%s'" - msgstr "'%s' の所有者を元の '%s' に戻します" - --#: ../libnautilus-private/nautilus-file-undo-operations.c:1582 -+#: src/nautilus-file-undo-operations.c:1935 - #, c-format - msgid "Set owner of '%s' to '%s'" - msgstr "'%s' の所有者を '%s' に設定します" - --#: ../libnautilus-private/nautilus-file-undo-operations.c:1585 -+#: src/nautilus-file-undo-operations.c:1938 - msgid "_Undo Change Owner" - msgstr "元に戻す: 所有者の変更(_U)" - --#: ../libnautilus-private/nautilus-file-undo-operations.c:1586 -+#: src/nautilus-file-undo-operations.c:1939 - msgid "_Redo Change Owner" - msgstr "やり直す: 所有者の変更(_R)" - --#: ../libnautilus-private/nautilus-file-utilities.c:896 -+#: src/nautilus-file-utilities.c:1004 - #, c-format - msgid "Could not determine original location of “%s” " - msgstr "“%s”があった元の場所を特定できませんでした " - --#: ../libnautilus-private/nautilus-file-utilities.c:900 -+#: src/nautilus-file-utilities.c:1008 - msgid "The item cannot be restored from trash" - msgstr "ゴミ箱からそのアイテムを戻せません。" - --#: ../libnautilus-private/nautilus-file-utilities.c:1004 -+#: src/nautilus-file-utilities.c:1122 - msgid "Audio CD" - msgstr "オーディオCD" - --#: ../libnautilus-private/nautilus-file-utilities.c:1006 -+#: src/nautilus-file-utilities.c:1126 - msgid "Audio DVD" - msgstr "オーディオDVD" - --#: ../libnautilus-private/nautilus-file-utilities.c:1008 -+#: src/nautilus-file-utilities.c:1130 - msgid "Video DVD" - msgstr "ビデオDVD" - --#: ../libnautilus-private/nautilus-file-utilities.c:1010 -+#: src/nautilus-file-utilities.c:1134 - msgid "Video CD" - msgstr "ビデオCD" - --#: ../libnautilus-private/nautilus-file-utilities.c:1012 -+#: src/nautilus-file-utilities.c:1138 - msgid "Super Video CD" - msgstr "スーパービデオCD" - --#: ../libnautilus-private/nautilus-file-utilities.c:1014 -+#: src/nautilus-file-utilities.c:1142 - msgid "Photo CD" - msgstr "フォトCD" - --#: ../libnautilus-private/nautilus-file-utilities.c:1016 -+#: src/nautilus-file-utilities.c:1146 - msgid "Picture CD" - msgstr "ピクチャーCD" - --#: ../libnautilus-private/nautilus-file-utilities.c:1018 --#: ../libnautilus-private/nautilus-file-utilities.c:1051 -+#: src/nautilus-file-utilities.c:1150 src/nautilus-file-utilities.c:1194 - msgid "Contains digital photos" - msgstr "デジタル写真が含まれています" - --#: ../libnautilus-private/nautilus-file-utilities.c:1020 -+#: src/nautilus-file-utilities.c:1154 - msgid "Contains music" - msgstr "音楽が含まれています" - --#: ../libnautilus-private/nautilus-file-utilities.c:1022 -+#: src/nautilus-file-utilities.c:1158 - msgid "Contains software" - msgstr "ソフトウェアが含まれています" - - #. fallback to generic greeting --#: ../libnautilus-private/nautilus-file-utilities.c:1025 -+#: src/nautilus-file-utilities.c:1163 - #, c-format - msgid "Detected as “%s”" - msgstr "“%s”を検出" - --#: ../libnautilus-private/nautilus-file-utilities.c:1047 -+#: src/nautilus-file-utilities.c:1186 - msgid "Contains music and photos" - msgstr "音楽と写真が含まれています" - --#: ../libnautilus-private/nautilus-file-utilities.c:1049 -+#: src/nautilus-file-utilities.c:1190 - msgid "Contains photos and music" - msgstr "写真と音楽が含まれています" - --#: ../libnautilus-private/nautilus-mime-application-chooser.c:80 --#, c-format --msgid "Error while adding “%s”: %s" --msgstr "“%s”の追加中にエラーが発生しました: %s" -+#: src/nautilus-image-properties-page.c:355 -+msgid "Image Type" -+msgstr "画像の種類" - --#: ../libnautilus-private/nautilus-mime-application-chooser.c:82 --msgid "Could not add application" --msgstr "アプリケーションを追加できませんでした" -+#: src/nautilus-image-properties-page.c:357 -+#: src/nautilus-image-properties-page.c:363 -+#, c-format -+msgid "%d pixel" -+msgid_plural "%d pixels" -+msgstr[0] "%d ピクセル" - --#: ../libnautilus-private/nautilus-mime-application-chooser.c:110 --msgid "Could not forget association" --msgstr "関連づけを消去できませんでした" -+#: src/nautilus-image-properties-page.c:361 -+msgid "Width" -+msgstr "幅" - --#: ../libnautilus-private/nautilus-mime-application-chooser.c:134 --msgid "Forget association" --msgstr "関連づけを消去する" -+#: src/nautilus-image-properties-page.c:367 -+msgid "Height" -+msgstr "高さ" - --#: ../libnautilus-private/nautilus-mime-application-chooser.c:172 --#, c-format --msgid "Error while setting “%s” as default application: %s" --msgstr "“%s”をデフォルトのアプリケーションに設定できませんでした: %s" -+#: src/nautilus-image-properties-page.c:386 -+#: src/nautilus-image-properties-page.c:388 -+msgid "Author" -+msgstr "作成者" - --#: ../libnautilus-private/nautilus-mime-application-chooser.c:174 --msgid "Could not set as default" --msgstr "デフォルトに設定できませんでした" -+#: src/nautilus-image-properties-page.c:392 -+#: src/nautilus-image-properties-page.c:456 -+msgid "Copyright" -+msgstr "著作権" - --#. Translators: the %s here is a file extension --#: ../libnautilus-private/nautilus-mime-application-chooser.c:252 --#, c-format --msgid "%s document" --msgstr "%s のドキュメント" -+#: src/nautilus-image-properties-page.c:393 -+msgid "Created On" -+msgstr "作成日時" - --#. Translators; %s here is a mime-type description --#: ../libnautilus-private/nautilus-mime-application-chooser.c:259 --#, c-format --msgid "Open all files of type “%s” with" --msgstr "“%s”に属すすべてのファイルを以下のアプリケーションで開く" -+# "tEXt::Software"に対応する -+#: src/nautilus-image-properties-page.c:394 -+msgid "Created By" -+msgstr "ソフトウェア" - --#. Translators: first %s is filename, second %s is mime-type description --#: ../libnautilus-private/nautilus-mime-application-chooser.c:266 --#, c-format --msgid "Select an application to open “%s” and other files of type “%s”" --msgstr "“%s”および“%s”に属すファイルを開くアプリケーションを選択" -+#. Translators: this refers to a legal disclaimer string embedded in -+#. * the metadata of an image -+#: src/nautilus-image-properties-page.c:397 -+msgid "Disclaimer" -+msgstr "免責事項" - --#: ../libnautilus-private/nautilus-mime-application-chooser.c:325 --msgid "_Add" --msgstr "追加(_A)" -+#: src/nautilus-image-properties-page.c:398 -+msgid "Warning" -+msgstr "警告" - --#: ../libnautilus-private/nautilus-mime-application-chooser.c:333 --msgid "Set as default" --msgstr "デフォルトに設定する" -+#: src/nautilus-image-properties-page.c:399 -+msgid "Source" -+msgstr "ソース" - --#: ../libnautilus-private/nautilus-program-choosing.c:312 --msgid "Sorry, but you cannot execute commands from a remote site." --msgstr "リモートサイトからコマンドを実行することはできません。" -+#: src/nautilus-image-properties-page.c:417 -+msgid "Camera Brand" -+msgstr "カメラのブランド" - --#: ../libnautilus-private/nautilus-program-choosing.c:314 --msgid "This is disabled due to security considerations." --msgstr "セキュリティを考慮してこれを無効にします。" -- --#: ../libnautilus-private/nautilus-program-choosing.c:325 --#: ../libnautilus-private/nautilus-program-choosing.c:393 --msgid "There was an error launching the application." --msgstr "アプリケーションを起動する際にエラーが発生しました。" -- --#: ../libnautilus-private/nautilus-program-choosing.c:350 --#: ../libnautilus-private/nautilus-program-choosing.c:361 --msgid "This drop target only supports local files." --msgstr "アイテムのドロップはローカルのファイルシステムでのみサポートしています。" -- --#: ../libnautilus-private/nautilus-program-choosing.c:351 --msgid "To open non-local files copy them to a local folder and then drop them again." --msgstr "そのファイルを一度ローカルフォルダーにコピーしてから再ドロップしてください。" -- --#: ../libnautilus-private/nautilus-program-choosing.c:362 --msgid "To open non-local files copy them to a local folder and then drop them again. The local files you dropped have already been opened." --msgstr "そのファイルを一度ローカルフォルダーにコピーしてから再ドロップしてください。ドロップしたローカルファイルは既に開かれています。" -- --#: ../libnautilus-private/nautilus-program-choosing.c:391 --msgid "Details: " --msgstr "詳細: " -- --#: ../libnautilus-private/nautilus-progress-info.c:297 --msgid "Cancelled" --msgstr "キャンセルしました" -- --#: ../libnautilus-private/nautilus-progress-info.c:360 --#: ../libnautilus-private/nautilus-progress-info.c:378 --msgid "Preparing" --msgstr "準備中" -- --#: ../libnautilus-private/nautilus-query.c:470 --#: ../libnautilus-private/nautilus-search-directory-file.c:159 --#: ../libnautilus-private/nautilus-search-directory-file.c:211 --#: ../libnautilus-private/nautilus-search-directory-file.c:256 --#: ../src/resources/ui/nautilus-preferences-window.ui.h:51 --#: ../src/resources/ui/nautilus-search-popover.ui.h:12 --#: ../src/resources/ui/nautilus-toolbar.ui.h:5 --msgid "Search" --msgstr "検索" -- --#: ../libnautilus-private/nautilus-query.c:473 --#, c-format --msgid "Search for “%s”" --msgstr "“%s”の検索" -- --#: ../libnautilus-private/nautilus-search-engine.c:201 --msgid "Unable to complete the requested search" --msgstr "要求された検索を完了できません" -- --# 検索オプションの XXX ago はすべて since XXX ago の意味である --# 指定のXXX 前以降のファイルがヒットする --# 確認バージョン: 3.20 --#. days --#: ../libnautilus-private/nautilus-ui-utilities.c:365 --#, c-format --msgid "%d day ago" --msgid_plural "%d days ago" --msgstr[0] "%d 日前以降" -- --#. weeks --#: ../libnautilus-private/nautilus-ui-utilities.c:370 --#, c-format --msgid "Last week" --msgid_plural "%d weeks ago" --msgstr[0] "%d 週前以降" -- --#. months --#: ../libnautilus-private/nautilus-ui-utilities.c:375 --#, c-format --msgid "Last month" --msgid_plural "%d months ago" --msgstr[0] "%d か月前以降" -- --#. years --#: ../libnautilus-private/nautilus-ui-utilities.c:380 --#, c-format --msgid "Last year" --msgid_plural "%d years ago" --msgstr[0] "%d 年前以降" -- --#: ../nautilus-sendto-extension/nautilus-nste.c:96 --#: ../nautilus-sendto-extension/nautilus-nste.c:101 --msgid "Send to…" --msgstr "送る…" -- --#: ../nautilus-sendto-extension/nautilus-nste.c:97 --msgid "Send file by mail…" --msgstr "ファイルをメールで送ります…" -- --#: ../nautilus-sendto-extension/nautilus-nste.c:102 --msgid "Send files by mail…" --msgstr "ファイルをメールで送ります…" -- --#. Some sort of failure occurred. How 'bout we tell the user? --#: ../src/nautilus-application.c:160 ../src/nautilus-window-slot.c:1144 --msgid "Oops! Something went wrong." --msgstr "うわっ! 何か問題が発生しました。" -- --#: ../src/nautilus-application.c:162 --#, c-format --msgid "" --"Unable to create a required folder. Please create the following folder, or set permissions such that it can be created:\n" --"%s" --msgstr "" --"必要なフォルダーが作成できません。以下のフォルダーを作成するか、フォルダーを作成できるように適切なパーミッションを設定してください:\n" --"%s" -- --#: ../src/nautilus-application.c:167 --#, c-format --msgid "" --"Unable to create required folders. Please create the following folders, or set permissions such that they can be created:\n" --"%s" --msgstr "" --"必要なフォルダーを作成できません。以下のフォルダーを作成するか、フォルダーを作成できるように適切なパーミッションを設定してください:\n" --"%s" -- --#: ../src/nautilus-application.c:552 --msgid "--check cannot be used with other options." --msgstr "--check オプションには他のオプションを指定できません。" -- --#: ../src/nautilus-application.c:559 --msgid "--quit cannot be used with URIs." --msgstr "--quit オプションには URI を指定できません。" -- --#: ../src/nautilus-application.c:567 --msgid "--select must be used with at least an URI." --msgstr "--select オプションにはひとつ以上の URI を指定してください。" -- --#: ../src/nautilus-application.c:574 --msgid "--no-desktop and --force-desktop cannot be used together." --msgstr "--no-desktop と --force-desktop は同時に指定できません。" -- --#: ../src/nautilus-application.c:687 --#, c-format --msgid "" --"There was an error displaying help: \n" --"%s" --msgstr "" --"ヘルプを表示する際にエラーが発生しました: \n" --"%s" -- --#: ../src/nautilus-application.c:826 --msgid "Perform a quick set of self-check tests." --msgstr "簡易自己診断テストセットを実行する" -- --#: ../src/nautilus-application.c:833 --msgid "Create the initial window with the given geometry." --msgstr "指定した大きさでウィンドウを起動する" -- --#: ../src/nautilus-application.c:833 --msgid "GEOMETRY" --msgstr "GEOMETRY" -- --#: ../src/nautilus-application.c:835 --msgid "Show the version of the program." --msgstr "バージョンを表示する" -- --#: ../src/nautilus-application.c:837 --msgid "Always open a new window for browsing specified URIs" --msgstr "指定した URI を常に新しいウィンドウで開く" -- --#: ../src/nautilus-application.c:839 --msgid "Only create windows for explicitly specified URIs." --msgstr "明示的に指定した URI のウィンドウだけを起動する" -- --#: ../src/nautilus-application.c:841 --msgid "Never manage the desktop (ignore the GSettings preference)." --msgstr "デスクトップを管理しない (GSettings の設定を無視する)" -- --#: ../src/nautilus-application.c:843 --msgid "Always manage the desktop (ignore the GSettings preference)." --msgstr "デスクトップを管理する (GSettings の設定を無視する)" -- --#: ../src/nautilus-application.c:845 --msgid "Quit Nautilus." --msgstr "Nautilus を強制終了する" -- --#: ../src/nautilus-application.c:847 --msgid "Select specified URI in parent folder." --msgstr "指定した URI の親フォルダーを選択する" -- --#: ../src/nautilus-application.c:848 --msgid "[URI...]" --msgstr "[URI...]" -- --#: ../src/nautilus-autorun-software.c:142 --#: ../src/nautilus-autorun-software.c:145 --#, c-format --msgid "" --"Unable to start the program:\n" --"%s" --msgstr "" --"プログラムを起動できません:\n" --"%s" -- --#: ../src/nautilus-autorun-software.c:148 --#, c-format --msgid "Unable to locate the program" --msgstr "プログラムを見つけることができません" -- --#: ../src/nautilus-autorun-software.c:170 --msgid "Oops! There was a problem running this software." --msgstr "うわっ! このソフトウェアの実行で問題が発生しました。" -- --#: ../src/nautilus-autorun-software.c:201 --#, c-format --msgid "“%s” contains software intended to be automatically started. Would you like to run it?" --msgstr "“%s”には自動的に起動することを意図したソフトウェアが含まれています。実行してみますか?" -- --#: ../src/nautilus-autorun-software.c:205 --msgid "If you don't trust this location or aren't sure, press Cancel." --msgstr "もしこの場所が信用できるものではないか、よくわからない時はキャンセルを押してください。" -- --#: ../src/nautilus-autorun-software.c:240 ../src/nautilus-mime-actions.c:636 --msgid "_Run" --msgstr "実行する(_R)" -- --#: ../src/nautilus-canvas-view-container.c:444 --#: ../src/resources/ui/nautilus-preferences-window.ui.h:7 --msgid "Icon View" --msgstr "アイコン表示" -- --#: ../src/nautilus-desktop-item-properties.c:404 --#: ../src/nautilus-desktop-item-properties.c:414 --#: ../src/nautilus-image-properties-page.c:370 --msgid "Comment" --msgstr "コメント" -- --#: ../src/nautilus-desktop-item-properties.c:407 --msgid "URL" --msgstr "URL" -- --#: ../src/nautilus-desktop-item-properties.c:410 --#: ../src/nautilus-desktop-item-properties.c:420 --#: ../src/nautilus-image-properties-page.c:361 --#: ../src/nautilus-image-properties-page.c:416 --msgid "Description" --msgstr "説明" -- --#: ../src/nautilus-desktop-item-properties.c:417 --msgid "Command" --msgstr "コマンド" -- --#. hardcode "Desktop" --#: ../src/nautilus-desktop-window.c:195 ../src/nautilus-desktop-window.c:364 --msgid "Desktop" --msgstr "デスクトップ" -- --#: ../src/nautilus-error-reporting.c:67 --#, c-format --msgid "You do not have the permissions necessary to view the contents of “%s”." --msgstr "“%s”の内容を表示するために必要な権限がありません。" -- --#: ../src/nautilus-error-reporting.c:71 --#, c-format --msgid "“%s” could not be found. Perhaps it has recently been deleted." --msgstr "“%s”が見つかりませんでした。最近削除されたようです。" -- --#: ../src/nautilus-error-reporting.c:75 --#, c-format --msgid "Sorry, could not display all the contents of “%s”: %s" --msgstr "“%s”のすべての内容を表示できませんでした: %s" -- --#: ../src/nautilus-error-reporting.c:82 --msgid "This location could not be displayed." --msgstr "この場所は表示できませんでした。" -- --#: ../src/nautilus-error-reporting.c:106 --#, c-format --msgid "You do not have the permissions necessary to change the group of “%s”." --msgstr "“%s”のグループを変更するために必要な権限がありません。" -- --#. fall through --#: ../src/nautilus-error-reporting.c:119 --#, c-format --msgid "Sorry, could not change the group of “%s”: %s" --msgstr "“%s”のグループを変更できませんでした: %s" -- --#: ../src/nautilus-error-reporting.c:124 --msgid "The group could not be changed." --msgstr "グループを変更できませんでした。" -- --#: ../src/nautilus-error-reporting.c:144 --#, c-format --msgid "Sorry, could not change the owner of “%s”: %s" --msgstr "“%s”の所有者を変更できませんでした: %s" -- --#: ../src/nautilus-error-reporting.c:146 --msgid "The owner could not be changed." --msgstr "所有者を変更できませんでした。" -- --#: ../src/nautilus-error-reporting.c:166 --#, c-format --msgid "Sorry, could not change the permissions of “%s”: %s" --msgstr "“%s”のアクセス権を変更できませんでした: %s" -- --#: ../src/nautilus-error-reporting.c:168 --msgid "The permissions could not be changed." --msgstr "アクセス権を変更できませんでした。" -- --#: ../src/nautilus-error-reporting.c:203 --#, c-format --msgid "The name “%s” is already used in this location. Please use a different name." --msgstr "名前“%s”は既にこの場所で使われています。別の名前を使ってください。" -- --#: ../src/nautilus-error-reporting.c:208 --#, c-format --msgid "There is no “%s” in this location. Perhaps it was just moved or deleted?" --msgstr "この場所に“%s”はありません。おそらく移動したか削除したのではないでしょうか?" -- --#: ../src/nautilus-error-reporting.c:213 --#, c-format --msgid "You do not have the permissions necessary to rename “%s”." --msgstr "“%s”の名前を変更するために必要な権限がありません。" -- --#: ../src/nautilus-error-reporting.c:218 --#, c-format --msgid "The name “%s” is not valid because it contains the character “/”. Please use a different name." --msgstr "名前“%s”の中に文字“/”があるのは適切ではありません。別の名前を使ってください。" -- --#: ../src/nautilus-error-reporting.c:222 --#, c-format --msgid "The name “%s” is not valid. Please use a different name." --msgstr "名前“%s”は正しくありません。別の名前を使ってください。" -- --#: ../src/nautilus-error-reporting.c:228 --#, c-format --msgid "The name “%s” is too long. Please use a different name." --msgstr "名前“%s”が長すぎます。別の名前を使ってください。" -- --#. fall through --#: ../src/nautilus-error-reporting.c:242 --#, c-format --msgid "Sorry, could not rename “%s” to “%s”: %s" --msgstr "“%s”から“%s”へ名前を変更できませんでした: %s" -- --#: ../src/nautilus-error-reporting.c:250 --msgid "The item could not be renamed." --msgstr "アイテムの名前を変更できませんでした。" -- --#: ../src/nautilus-error-reporting.c:347 --#, c-format --msgid "Renaming “%s” to “%s”." --msgstr "“%s”から“%s”に変更中。" -- --#: ../src/nautilus-files-view.c:403 --msgid "Searching…" --msgstr "検索中…" -- --#: ../src/nautilus-files-view.c:403 ../src/nautilus-image-properties-page.c:708 --#: ../src/nautilus-list-model.c:375 ../src/nautilus-window-slot.c:657 --msgid "Loading…" --msgstr "読み込み中…" -- --#: ../src/nautilus-files-view.c:1073 ../src/nautilus-mime-actions.c:969 --#: ../src/nautilus-mime-actions.c:1713 --msgid "Are you sure you want to open all files?" --msgstr "すべてのファイルを開いてもよろしいですか?" -- --#: ../src/nautilus-files-view.c:1075 --#, c-format --msgid "This will open %'d separate tab." --msgid_plural "This will open %'d separate tabs." --msgstr[0] "%'d 個のタブを別々に開きます。" -- --#: ../src/nautilus-files-view.c:1078 --#, c-format --msgid "This will open %'d separate window." --msgid_plural "This will open %'d separate windows." --msgstr[0] "%'d 個のウィンドウを別々に開きます。" -- --#: ../src/nautilus-files-view.c:1082 ../src/nautilus-location-entry.c:270 --#: ../src/nautilus-mime-actions.c:978 ../src/nautilus-mime-actions.c:1155 --#: ../src/nautilus-mime-actions.c:1717 --msgid "_OK" --msgstr "OK(_O)" -- --#: ../src/nautilus-files-view.c:1553 --msgid "Select Items Matching" --msgstr "パターンを指定してアイテムを選択" -- --#: ../src/nautilus-files-view.c:1558 ../src/nautilus-files-view.c:5275 --msgid "_Select" --msgstr "選択(_S)" -- --#: ../src/nautilus-files-view.c:1566 --msgid "_Pattern:" --msgstr "パターン(_P):" -- --#: ../src/nautilus-files-view.c:1572 --msgid "Examples: " --msgstr "例: " -- --#: ../src/nautilus-files-view.c:1813 --msgid "A folder with that name already exists." --msgstr "同じ名前のフォルダーが既に存在します。" -- --#: ../src/nautilus-files-view.c:1815 --msgid "A file with that name already exists." --msgstr "同じ名前のファイルが既に存在します。" -- --#: ../src/nautilus-files-view.c:1830 --msgid "Folder names cannot contain “/”." --msgstr "“/”は、フォルダー名に含められません。" -- --#: ../src/nautilus-files-view.c:1832 --msgid "Files names cannot contain “/”." --msgstr "“/”は、ファイル名に含められません。" -- --#: ../src/nautilus-files-view.c:1835 --msgid "A folder can not be called “.”." --msgstr "“.”という名前をフォルダーに付けられません。" -- --#: ../src/nautilus-files-view.c:1837 --msgid "A file can not be called “.”." --msgstr "“.”という名前をファイルに付けられません。" -- --#: ../src/nautilus-files-view.c:1840 --msgid "A folder can not be called “..”." --msgstr "“..”という名前をフォルダーに付けられません。" -- --#: ../src/nautilus-files-view.c:1842 --msgid "A file can not be called “..”." --msgstr "“..”という名前をファイルに付けられません。" -- --#: ../src/nautilus-files-view.c:2073 ../src/nautilus-files-view.c:2141 --msgid "Folder name" --msgstr "フォルダー名" -- --#: ../src/nautilus-files-view.c:2075 --msgid "File name" --msgstr "ファイル名" -- --#: ../src/nautilus-files-view.c:2140 --msgid "Create" --msgstr "作成" -- --#: ../src/nautilus-files-view.c:2142 --msgid "New Folder" --msgstr "新しいフォルダー" -- --#: ../src/nautilus-files-view.c:2583 --msgid "Nautilus 3.6 deprecated this directory and tried migrating this configuration to ~/.local/share/nautilus" --msgstr "Nautilus 3.6 ではこのディレクトリの使用は非推奨となり、~/.local/share/nautilus への設定内容の移行を試みました。" -- --#: ../src/nautilus-files-view.c:3010 ../src/nautilus-files-view.c:3045 --#, c-format --msgid "“%s” selected" --msgstr "“%s”を選択しました" -- --#: ../src/nautilus-files-view.c:3012 --#, c-format --msgid "%'d folder selected" --msgid_plural "%'d folders selected" --msgstr[0] "%'d 個のフォルダーを選択しました" -- --#: ../src/nautilus-files-view.c:3022 --#, c-format --msgid "(containing %'d item)" --msgid_plural "(containing %'d items)" --msgstr[0] "(%'d 個のアイテムを含む)" -- --#. translators: this is preceded with a string of form 'N folders' (N more than 1) --#: ../src/nautilus-files-view.c:3033 --#, c-format --msgid "(containing a total of %'d item)" --msgid_plural "(containing a total of %'d items)" --msgstr[0] "(合計で %'d 個のアイテムを含む)" -- --#: ../src/nautilus-files-view.c:3048 --#, c-format --msgid "%'d item selected" --msgid_plural "%'d items selected" --msgstr[0] "%'d 個のアイテムを選択しました" -- --#. Folders selected also, use "other" terminology --#: ../src/nautilus-files-view.c:3055 --#, c-format --msgid "%'d other item selected" --msgid_plural "%'d other items selected" --msgstr[0] "他に %'d 個のアイテムを選択しました" -- --#. This is marked for translation in case a localiser --#. * needs to use something other than parentheses. The --#. * the message in parentheses is the size of the selected items. --#. --#: ../src/nautilus-files-view.c:3069 --#, c-format --msgid "(%s)" --msgstr "(%s)" -- --#. This is marked for translation in case a localizer --#. * needs to change ", " to something else. The comma --#. * is between the message about the number of folders --#. * and the number of items in those folders and the --#. * message about the number of other items and the --#. * total size of those items. --#. --#: ../src/nautilus-files-view.c:3093 --#, c-format --msgid "%s %s, %s %s" --msgstr "%s %s, %s %s" -- --#: ../src/nautilus-files-view.c:5264 --msgid "Select Move Destination" --msgstr "移動する宛先の選択" -- --#: ../src/nautilus-files-view.c:5266 --msgid "Select Copy Destination" --msgstr "コピーする宛先の選択" -- --#. Translators: %s is a file name formatted for display --#: ../src/nautilus-files-view.c:5722 --#, c-format --msgid "Unable to remove “%s”" --msgstr "%s を取り外せません" -- --#. Translators: %s is a file name formatted for display --#: ../src/nautilus-files-view.c:5749 --#, c-format --msgid "Unable to eject “%s”" --msgstr "“%s”を取り出せません" -- --#: ../src/nautilus-files-view.c:5771 --msgid "Unable to stop drive" --msgstr "ドライブを停止できません" -- --#. Translators: %s is a file name formatted for display --#: ../src/nautilus-files-view.c:5876 --#, c-format --msgid "Unable to start “%s”" --msgstr "“%s”を起動できません" -- --#: ../src/nautilus-files-view.c:6631 --#, c-format --msgid "New Folder with Selection (%'d Item)" --msgid_plural "New Folder with Selection (%'d Items)" --msgstr[0] "選択アイテム含む新しいフォルダーを作成 (%'d 件)" -- --#: ../src/nautilus-files-view.c:6679 --#, c-format --msgid "Open With %s" --msgstr "%sで開く" -- --#: ../src/nautilus-files-view.c:6688 --msgid "Run" --msgstr "実行" -- --#: ../src/nautilus-files-view.c:6690 --msgid "Open" --msgstr "開く" -- --#: ../src/nautilus-files-view.c:6741 --#: ../src/resources/ui/nautilus-files-view-context-menus.ui.h:19 --msgid "_Start" --msgstr "開始(_S)" -- --#: ../src/nautilus-files-view.c:6744 ../src/gtk/nautilusgtkplacesview.c:1632 --msgid "_Connect" --msgstr "接続する(_C)" -- --#: ../src/nautilus-files-view.c:6747 --msgid "_Start Multi-disk Drive" --msgstr "マルチディスク・ドライブを起動(_S)" -- --#: ../src/nautilus-files-view.c:6750 --msgid "U_nlock Drive" --msgstr "ドライブのロック解除(_N)" -- --#: ../src/nautilus-files-view.c:6766 --msgid "Stop Drive" --msgstr "ドライブを停止する" -- --#: ../src/nautilus-files-view.c:6769 --msgid "_Safely Remove Drive" --msgstr "ドライブを安全に取り出す(_S)" -- --#: ../src/nautilus-files-view.c:6772 ../src/gtk/nautilusgtkplacesview.c:1622 --msgid "_Disconnect" --msgstr "切断(_D)" -- --#: ../src/nautilus-files-view.c:6775 --msgid "_Stop Multi-disk Drive" --msgstr "マルチディスク・ドライブの停止(_S)" -- --#: ../src/nautilus-files-view.c:6778 --msgid "_Lock Drive" --msgstr "ドライブのロック(_L)" -- --#: ../src/nautilus-files-view.c:8234 --msgid "Content View" --msgstr "内容表示" -- --#: ../src/nautilus-files-view.c:8235 --msgid "View of the current folder" --msgstr "このフォルダーを表示します" -- --#: ../src/nautilus-files-view-dnd.c:172 ../src/nautilus-files-view-dnd.c:206 --#: ../src/nautilus-files-view-dnd.c:297 --msgid "Drag and drop is not supported." --msgstr "ドラッグ&ドロップはサポートしていません。" -- --#: ../src/nautilus-files-view-dnd.c:173 --msgid "Drag and drop is only supported on local file systems." --msgstr "ドラッグ&ドロップはローカルのファイルシステムでのみサポートしています。" -- --#: ../src/nautilus-files-view-dnd.c:207 ../src/nautilus-files-view-dnd.c:298 --msgid "An invalid drag type was used." --msgstr "使用したドラッグの種類は無効です。" -- --#. Translator: This is the filename used for when you dnd text to a directory --#: ../src/nautilus-files-view-dnd.c:385 --msgid "Dropped Text.txt" --msgstr "ドロップしたテキスト.txt" -- --#. Translator: This is the filename used for when you dnd raw --#. * data to a directory, if the source didn't supply a name. --#. --#: ../src/nautilus-files-view-dnd.c:483 --msgid "dropped data" --msgstr "ドロップしたデータ" -- --#: ../src/nautilus-image-properties-page.c:331 --msgid "Image Type" --msgstr "画像の種類" -- --#: ../src/nautilus-image-properties-page.c:333 --#: ../src/nautilus-image-properties-page.c:339 --#, c-format --msgid "%d pixel" --msgid_plural "%d pixels" --msgstr[0] "%d ピクセル" -- --#: ../src/nautilus-image-properties-page.c:337 --msgid "Width" --msgstr "幅" -- --#: ../src/nautilus-image-properties-page.c:343 --msgid "Height" --msgstr "高さ" -- --#: ../src/nautilus-image-properties-page.c:356 --#: ../src/nautilus-image-properties-page.c:357 --msgid "Title" --msgstr "タイトル" -- --#: ../src/nautilus-image-properties-page.c:358 --#: ../src/nautilus-image-properties-page.c:359 --msgid "Author" --msgstr "作成者" -- --#: ../src/nautilus-image-properties-page.c:362 --#: ../src/nautilus-image-properties-page.c:419 --msgid "Copyright" --msgstr "著作権" -- --#: ../src/nautilus-image-properties-page.c:363 --msgid "Created On" --msgstr "作成日時" -- --# "tEXt::Software"に対応する --#: ../src/nautilus-image-properties-page.c:364 --msgid "Created By" --msgstr "ソフトウェア" -- --#. Translators: this refers to a legal disclaimer string embedded in --#. * the metadata of an image --#: ../src/nautilus-image-properties-page.c:367 --msgid "Disclaimer" --msgstr "免責事項" -- --#: ../src/nautilus-image-properties-page.c:368 --msgid "Warning" --msgstr "警告" -- --#: ../src/nautilus-image-properties-page.c:369 --msgid "Source" --msgstr "ソース" -- --#: ../src/nautilus-image-properties-page.c:384 --msgid "Camera Brand" --msgstr "カメラのブランド" -- --#: ../src/nautilus-image-properties-page.c:385 --msgid "Camera Model" --msgstr "カメラのモデル" -+#: src/nautilus-image-properties-page.c:418 -+#: src/resources/ui/nautilus-batch-rename-dialog.ui:434 -+msgid "Camera Model" -+msgstr "カメラのモデル" - - #. Choose which date to show in order of relevance --#: ../src/nautilus-image-properties-page.c:388 -+#: src/nautilus-image-properties-page.c:421 - msgid "Date Taken" - msgstr "撮影日時" - --#: ../src/nautilus-image-properties-page.c:389 -+#: src/nautilus-image-properties-page.c:423 - msgid "Date Digitized" - msgstr "保存日時" - --#: ../src/nautilus-image-properties-page.c:390 -+#: src/nautilus-image-properties-page.c:425 - msgid "Date Modified" - msgstr "更新日時" - --#: ../src/nautilus-image-properties-page.c:394 -+#: src/nautilus-image-properties-page.c:429 - msgid "Exposure Time" - msgstr "露出時間" - --#: ../src/nautilus-image-properties-page.c:395 -+#: src/nautilus-image-properties-page.c:430 - msgid "Aperture Value" - msgstr "口径" - --#: ../src/nautilus-image-properties-page.c:396 -+#: src/nautilus-image-properties-page.c:431 - msgid "ISO Speed Rating" - msgstr "ISO スピード率" - --#: ../src/nautilus-image-properties-page.c:397 -+#: src/nautilus-image-properties-page.c:432 - msgid "Flash Fired" - msgstr "フラッシュあり" - --#: ../src/nautilus-image-properties-page.c:398 -+#: src/nautilus-image-properties-page.c:433 - msgid "Metering Mode" - msgstr "測量モード" - --#: ../src/nautilus-image-properties-page.c:399 -+#: src/nautilus-image-properties-page.c:434 - msgid "Exposure Program" - msgstr "露出プログラム" - --#: ../src/nautilus-image-properties-page.c:400 -+#: src/nautilus-image-properties-page.c:435 - msgid "Focal Length" - msgstr "焦点距離" - --#: ../src/nautilus-image-properties-page.c:401 -+#: src/nautilus-image-properties-page.c:436 - msgid "Software" - msgstr "ソフトウェア" - --#: ../src/nautilus-image-properties-page.c:417 -+#: src/nautilus-image-properties-page.c:454 - msgid "Keywords" - msgstr "キーワード" - --#: ../src/nautilus-image-properties-page.c:418 -+#: src/nautilus-image-properties-page.c:455 - msgid "Creator" - msgstr "作成者" - --#: ../src/nautilus-image-properties-page.c:420 -+#: src/nautilus-image-properties-page.c:457 - msgid "Rating" - msgstr "評価" - --#: ../src/nautilus-image-properties-page.c:443 -+#: src/nautilus-image-properties-page.c:484 - msgid "Failed to load image information" - msgstr "画像情報の読み込みに失敗しました" - --#: ../src/nautilus-list-model.c:373 -+#: src/nautilus-list-model.c:446 - msgid "(Empty)" - msgstr "(空)" - --#: ../src/nautilus-list-view.c:1267 -+#: src/nautilus-list-view.c:1450 - msgid "Use Default" - msgstr "デフォルトに戻す" - --#: ../src/nautilus-list-view.c:1821 --#: ../src/resources/ui/nautilus-preferences-window.ui.h:8 -+#: src/nautilus-list-view.c:2058 -+#: src/resources/ui/nautilus-preferences-window.ui:49 -+#: src/resources/ui/nautilus-preferences-window.ui:244 - msgid "List View" - msgstr "一覧表示" - --#: ../src/nautilus-list-view.c:2642 -+#: src/nautilus-list-view.c:2956 - #, c-format - msgid "%s Visible Columns" - msgstr "%s で表示する項目" - --#: ../src/nautilus-list-view.c:2662 -+#: src/nautilus-list-view.c:2976 - msgid "Choose the order of information to appear in this folder:" - msgstr "このフォルダーで表示する項目の順番を選択してください:" - --#: ../src/nautilus-location-entry.c:255 -+#: src/nautilus-location-entry.c:267 - #, c-format - msgid "Do you want to view %d location?" - msgid_plural "Do you want to view %d locations?" - msgstr[0] " %d 個の場所を表示しますか?" - --#: ../src/nautilus-location-entry.c:259 ../src/nautilus-mime-actions.c:974 -+#: src/nautilus-location-entry.c:271 src/nautilus-mime-actions.c:1035 - #, c-format - msgid "This will open %d separate window." - msgid_plural "This will open %d separate windows." - msgstr[0] "%d 個のウィンドウを別々に開きます。" - --#: ../src/nautilus-mime-actions.c:95 --#: ../src/resources/ui/nautilus-search-popover.ui.h:11 -+#: src/nautilus-mime-actions.c:98 -+#: src/resources/ui/nautilus-search-popover.ui:275 - msgid "Anything" - msgstr "指定なし" - --#: ../src/nautilus-mime-actions.c:106 ../src/nautilus-properties-window.c:4200 -+#: src/nautilus-mime-actions.c:108 src/nautilus-properties-window.c:4631 - msgid "Folders" - msgstr "フォルダー" - --#: ../src/nautilus-mime-actions.c:111 -+#: src/nautilus-mime-actions.c:112 - msgid "Documents" - msgstr "ドキュメント" - --#: ../src/nautilus-mime-actions.c:129 -+#: src/nautilus-mime-actions.c:128 - msgid "Illustration" - msgstr "絵/イラスト" - --#: ../src/nautilus-mime-actions.c:143 -+#: src/nautilus-mime-actions.c:140 - msgid "Music" - msgstr "楽曲" - --#: ../src/nautilus-mime-actions.c:158 -+#: src/nautilus-mime-actions.c:153 - msgid "PDF / PostScript" - msgstr "PDF/PostScript" - --#: ../src/nautilus-mime-actions.c:166 -+#: src/nautilus-mime-actions.c:159 - msgid "Picture" - msgstr "写真" - --#: ../src/nautilus-mime-actions.c:211 -+#: src/nautilus-mime-actions.c:198 - msgid "Text File" - msgstr "テキストファイル" - --#: ../src/nautilus-mime-actions.c:544 -+#: src/nautilus-mime-actions.c:547 - #, c-format - msgid "The link “%s” is broken. Move it to Trash?" - msgstr "このリンク“%s”は壊れています。ごみ箱に移動しますか?" - --#: ../src/nautilus-mime-actions.c:546 -+#: src/nautilus-mime-actions.c:551 - #, c-format - msgid "The link “%s” is broken." - msgstr "このリンク“%s”は壊れています。" - --#: ../src/nautilus-mime-actions.c:552 -+#: src/nautilus-mime-actions.c:558 - msgid "This link cannot be used because it has no target." - msgstr "このリンクはリンク先が存在しないので使用できません。" - --#: ../src/nautilus-mime-actions.c:554 -+#: src/nautilus-mime-actions.c:562 -+#, c-format -+msgid "This link cannot be used because its target “%s” doesn't exist." -+msgstr "このリンクはリンク先である“%s”が存在しないので使用できません。" -+ -+#: src/nautilus-mime-actions.c:573 -+#: src/resources/ui/nautilus-files-view-context-menus.ui:174 -+msgid "Mo_ve to Trash" -+msgstr "ゴミ箱へ移動する(_V)" -+ -+#: src/nautilus-mime-actions.c:644 -+#, c-format -+msgid "Do you want to run “%s”, or display its contents?" -+msgstr "“%s”を実行しますか? それとも内容を表示しますか?" -+ -+#: src/nautilus-mime-actions.c:646 -+#, c-format -+msgid "“%s” is an executable text file." -+msgstr "“%s”は実行可能なテキストファイルです。" -+ -+#: src/nautilus-mime-actions.c:652 -+msgid "Run in _Terminal" -+msgstr "端末内で実行する(_T)" -+ -+#: src/nautilus-mime-actions.c:653 -+msgid "_Display" -+msgstr "表示する(_D)" -+ -+#: src/nautilus-mime-actions.c:1030 -+#, c-format -+msgid "This will open %d separate tab." -+msgid_plural "This will open %d separate tabs." -+msgstr[0] "%d 個のタブを別々に開きます。" -+ -+#: src/nautilus-mime-actions.c:1102 -+#, c-format -+msgid "Could not display “%s”." -+msgstr "“%s”を表示できませんでした。" -+ -+#: src/nautilus-mime-actions.c:1205 -+msgid "The file is of an unknown type" -+msgstr "そのファイルの種類を特定できません" -+ -+#: src/nautilus-mime-actions.c:1210 -+#, c-format -+msgid "There is no application installed for “%s” files" -+msgstr "“%s”の種類のファイルを扱うことが可能なアプリケーションはインストールされていません" -+ -+#: src/nautilus-mime-actions.c:1223 -+msgid "_Select Application" -+msgstr "アプリケーションの選択(_S)" -+ -+#: src/nautilus-mime-actions.c:1261 -+msgid "There was an internal error trying to search for applications:" -+msgstr "アプリケーションを検索している最中に Nautilus の内部エラーが発生しました:" -+ -+#: src/nautilus-mime-actions.c:1263 -+msgid "Unable to search for application" -+msgstr "アプリケーションを検索できません" -+ -+#: src/nautilus-mime-actions.c:1394 -+#, c-format -+msgid "" -+"There is no application installed for “%s” files.\n" -+"Do you want to search for an application to open this file?" -+msgstr "" -+"“%s”の種類のファイルを扱えるアプリケーションがインストールされていません。\n" -+"この種類のファイルを開くことができるアプリケーションを探しますか?" -+ -+#: src/nautilus-mime-actions.c:1561 -+msgid "Untrusted application launcher" -+msgstr "信用できないアプリケーションのランチャー" -+ -+#: src/nautilus-mime-actions.c:1564 -+#, c-format -+msgid "" -+"The application launcher “%s” has not been marked as trusted. If you do not " -+"know the source of this file, launching it may be unsafe." -+msgstr "“%s”というランチャーの安全が確認されていません。ファイルの提供元が不明な場合、そのファイルを起動するのは安全ではありません。" -+ -+#: src/nautilus-mime-actions.c:1579 -+msgid "_Launch Anyway" -+msgstr "とにかく起動する(_L)" -+ -+#: src/nautilus-mime-actions.c:1583 -+msgid "Mark as _Trusted" -+msgstr "信用できるアプリにする(_T)" -+ -+#: src/nautilus-mime-actions.c:1883 -+#, c-format -+msgid "This will open %d separate application." -+msgid_plural "This will open %d separate applications." -+msgstr[0] "%d 個のアプリケーションを別々に開きます。" -+ -+#. if it wasn't cancelled show a dialog -+#: src/nautilus-mime-actions.c:1969 src/nautilus-mime-actions.c:2264 -+#: src/gtk/nautilusgtkplacesview.c:1190 src/gtk/nautilusgtkplacesview.c:1265 -+msgid "Unable to access location" -+msgstr "要求された場所にアクセスできません" -+ -+#: src/nautilus-mime-actions.c:2353 -+msgid "Unable to start location" -+msgstr "場所を起動できません" -+ -+#: src/nautilus-mime-actions.c:2444 -+#, c-format -+msgid "Opening “%s”." -+msgstr "“%s”を開いています。" -+ -+#: src/nautilus-mime-actions.c:2449 -+#, c-format -+msgid "Opening %d item." -+msgid_plural "Opening %d items." -+msgstr[0] "%d 個のアイテムを開いています。" -+ -+#: src/nautilus-mime-application-chooser.c:85 -+#, c-format -+msgid "Error while adding “%s”: %s" -+msgstr "“%s”の追加中にエラーが発生しました: %s" -+ -+#: src/nautilus-mime-application-chooser.c:87 -+msgid "Could not add application" -+msgstr "アプリケーションを追加できませんでした" -+ -+#: src/nautilus-mime-application-chooser.c:119 -+msgid "Could not forget association" -+msgstr "関連づけを消去できませんでした" -+ -+#: src/nautilus-mime-application-chooser.c:143 -+msgid "Forget association" -+msgstr "関連づけを消去する" -+ -+#: src/nautilus-mime-application-chooser.c:182 -+#, c-format -+msgid "Error while setting “%s” as default application: %s" -+msgstr "“%s”をデフォルトのアプリケーションに設定できませんでした: %s" -+ -+#: src/nautilus-mime-application-chooser.c:184 -+msgid "Could not set as default" -+msgstr "デフォルトに設定できませんでした" -+ -+#. Translators: the %s here is a file extension -+#: src/nautilus-mime-application-chooser.c:266 -+#, c-format -+msgid "%s document" -+msgstr "%s のドキュメント" -+ -+#. Translators; %s here is a mime-type description -+#: src/nautilus-mime-application-chooser.c:276 -+#, c-format -+msgid "Open all files of type “%s” with" -+msgstr "“%s”に属すすべてのファイルを以下のアプリケーションで開く" -+ -+#. Translators: first %s is filename, second %s is mime-type description -+#: src/nautilus-mime-application-chooser.c:285 -+#, c-format -+msgid "Select an application to open “%s” and other files of type “%s”" -+msgstr "“%s”および“%s”に属すファイルを開くアプリケーションを選択" -+ -+#: src/nautilus-mime-application-chooser.c:344 -+msgid "_Add" -+msgstr "追加(_A)" -+ -+#: src/nautilus-mime-application-chooser.c:352 -+msgid "Set as default" -+msgstr "デフォルトに設定する" -+ -+#: src/nautilus-new-folder-dialog-controller.c:52 -+#: src/nautilus-rename-file-popover-controller.c:81 -+msgid "Folder names cannot contain “/”." -+msgstr "“/”は、フォルダー名に含められません。" -+ -+#: src/nautilus-new-folder-dialog-controller.c:56 -+#: src/nautilus-rename-file-popover-controller.c:92 -+msgid "A folder cannot be called “.”." -+msgstr "“.”という名前をフォルダーに付けられません。" -+ -+#: src/nautilus-new-folder-dialog-controller.c:60 -+#: src/nautilus-rename-file-popover-controller.c:103 -+msgid "A folder cannot be called “..”." -+msgstr "“..”という名前をフォルダーに付けられません。" -+ -+#: src/nautilus-new-folder-dialog-controller.c:128 -+msgid "Create" -+msgstr "作成" -+ -+#: src/nautilus-new-folder-dialog-controller.c:129 -+#: src/nautilus-rename-file-popover-controller.c:190 -+msgid "Folder name" -+msgstr "フォルダー名" -+ -+#: src/nautilus-new-folder-dialog-controller.c:130 -+msgid "New Folder" -+msgstr "新しいフォルダー" -+ -+#: src/nautilus-notebook.c:335 -+msgid "Close tab" -+msgstr "タブを閉じます" -+ -+#: src/nautilus-operations-ui-manager.c:142 -+#, c-format -+msgid "Merge folder “%s”?" -+msgstr "フォルダー“%s”をマージしますか?" -+ -+#: src/nautilus-operations-ui-manager.c:145 -+msgid "" -+"Merging will ask for confirmation before replacing any files in the folder " -+"that conflict with the files being copied." -+msgstr "マージする際に、コピーするファイルと衝突するフォルダー中のファイルを置き換える時に確認します。" -+ -+#: src/nautilus-operations-ui-manager.c:150 -+#, c-format -+msgid "An older folder with the same name already exists in “%s”." -+msgstr "同じ名前の古いフォルダーが既に“%s”にあります。" -+ -+#: src/nautilus-operations-ui-manager.c:155 -+#, c-format -+msgid "A newer folder with the same name already exists in “%s”." -+msgstr "同じ名前の新しいフォルダーが既に“%s”にあります。" -+ -+#: src/nautilus-operations-ui-manager.c:160 -+#, c-format -+msgid "Another folder with the same name already exists in “%s”." -+msgstr "同じ名前の他のフォルダーが“%s”にあります。" -+ -+#: src/nautilus-operations-ui-manager.c:166 -+#, c-format -+msgid "Replace folder “%s”?" -+msgstr "フォルダー“%s”を置き換えますか?" -+ -+#: src/nautilus-operations-ui-manager.c:168 -+msgid "Replacing it will remove all files in the folder." -+msgstr "置き換えるとフォルダー中のすべてのファイルが削除されます。" -+ -+#: src/nautilus-operations-ui-manager.c:169 -+#, c-format -+msgid "A folder with the same name already exists in “%s”." -+msgstr "同じ名前のフォルダーが既に“%s”にあります。" -+ -+#: src/nautilus-operations-ui-manager.c:175 -+#, c-format -+msgid "Replace file “%s”?" -+msgstr "ファイル“%s”を置き換えますか?" -+ -+#: src/nautilus-operations-ui-manager.c:178 -+msgid "Replacing it will overwrite its content." -+msgstr "置き換えると内容が上書きされます。" -+ -+#: src/nautilus-operations-ui-manager.c:182 - #, c-format --msgid "This link cannot be used because its target “%s” doesn't exist." --msgstr "このリンクはリンク先である“%s”が存在しないので使用できません。" -- --#: ../src/nautilus-mime-actions.c:564 --#: ../src/resources/ui/nautilus-files-view-context-menus.ui.h:27 --msgid "Mo_ve to Trash" --msgstr "ゴミ箱へ移動する(_V)" -+msgid "An older file with the same name already exists in “%s”." -+msgstr "同じ名前の古いファイルが既に“%s”にあります。" - --#: ../src/nautilus-mime-actions.c:624 -+#: src/nautilus-operations-ui-manager.c:187 - #, c-format --msgid "Do you want to run “%s”, or display its contents?" --msgstr "“%s”を実行しますか? それとも内容を表示しますか?" -+msgid "A newer file with the same name already exists in “%s”." -+msgstr "同じ名前の新しいファイルが既に“%s”にあります。" - --#: ../src/nautilus-mime-actions.c:626 -+#: src/nautilus-operations-ui-manager.c:192 - #, c-format --msgid "“%s” is an executable text file." --msgstr "“%s”は実行可能なテキストファイルです。" -+msgid "Another file with the same name already exists in “%s”." -+msgstr "同じ名前の他のファイルが既に“%s”にあります。" - --#: ../src/nautilus-mime-actions.c:632 --msgid "Run in _Terminal" --msgstr "端末内で実行する(_T)" -+#: src/nautilus-operations-ui-manager.c:267 -+msgid "Original folder" -+msgstr "元のフォルダー" - --#: ../src/nautilus-mime-actions.c:633 --msgid "_Display" --msgstr "表示する(_D)" -+#: src/nautilus-operations-ui-manager.c:268 -+#: src/nautilus-operations-ui-manager.c:300 -+msgid "Items:" -+msgstr "アイテム数:" - --#: ../src/nautilus-mime-actions.c:971 --#, c-format --msgid "This will open %d separate tab." --msgid_plural "This will open %d separate tabs." --msgstr[0] "%d 個のタブを別々に開きます。" -+#: src/nautilus-operations-ui-manager.c:272 -+msgid "Original file" -+msgstr "元のファイル" - --#: ../src/nautilus-mime-actions.c:1036 --#, c-format --msgid "Could not display “%s”." --msgstr "“%s”を表示できませんでした。" -+#: src/nautilus-operations-ui-manager.c:273 -+#: src/nautilus-operations-ui-manager.c:305 -+#: src/nautilus-properties-window.c:3242 -+msgid "Size:" -+msgstr "サイズ:" - --#: ../src/nautilus-mime-actions.c:1134 --msgid "The file is of an unknown type" --msgstr "そのファイルの種類を特定できません" -+#: src/nautilus-operations-ui-manager.c:278 -+#: src/nautilus-operations-ui-manager.c:310 -+#: src/nautilus-properties-window.c:3220 -+msgid "Type:" -+msgstr "種類:" - --#: ../src/nautilus-mime-actions.c:1138 --#, c-format --msgid "There is no application installed for “%s” files" --msgstr "“%s”の種類のファイルを扱うことが可能なアプリケーションはインストールされていません" -+#: src/nautilus-operations-ui-manager.c:281 -+#: src/nautilus-operations-ui-manager.c:313 -+msgid "Last modified:" -+msgstr "最終更新日時:" - --#: ../src/nautilus-mime-actions.c:1153 --msgid "_Select Application" --msgstr "アプリケーションの選択(_S)" -+#: src/nautilus-operations-ui-manager.c:299 -+msgid "Merge with" -+msgstr "マージするフォルダー" - --#: ../src/nautilus-mime-actions.c:1189 --msgid "There was an internal error trying to search for applications:" --msgstr "アプリケーションを検索している最中に Nautilus の内部エラーが発生しました:" -+#: src/nautilus-operations-ui-manager.c:299 -+#: src/nautilus-operations-ui-manager.c:304 -+msgid "Replace with" -+msgstr "置き換え後のファイル" - --#: ../src/nautilus-mime-actions.c:1191 --msgid "Unable to search for application" --msgstr "アプリケーションを検索できません" -+#: src/nautilus-operations-ui-manager.c:345 -+msgid "Merge" -+msgstr "マージする" - --#: ../src/nautilus-mime-actions.c:1314 --#, c-format --msgid "" --"There is no application installed for “%s” files.\n" --"Do you want to search for an application to open this file?" --msgstr "" --"“%s”の種類のファイルを扱えるアプリケーションがインストールされていません。\n" --"この種類のファイルを開くことができるアプリケーションを探しますか?" -+#: src/nautilus-operations-ui-manager.c:368 -+msgid "Merge Folder" -+msgstr "フォルダーのマージ" - --#: ../src/nautilus-mime-actions.c:1464 --msgid "Untrusted application launcher" --msgstr "信用できないアプリケーションのランチャー" -+#: src/nautilus-operations-ui-manager.c:369 -+#: src/nautilus-operations-ui-manager.c:374 -+msgid "File and Folder conflict" -+msgstr "ファイルとフォルダーの衝突" - --#: ../src/nautilus-mime-actions.c:1467 --#, c-format --msgid "The application launcher “%s” has not been marked as trusted. If you do not know the source of this file, launching it may be unsafe." --msgstr "“%s”というランチャーの安全が確認されていません。ファイルの提供元が不明な場合、そのファイルを起動するのは安全ではありません。" -+#: src/nautilus-operations-ui-manager.c:375 -+msgid "File conflict" -+msgstr "ファイルの衝突" - --#: ../src/nautilus-mime-actions.c:1482 --msgid "_Launch Anyway" --msgstr "とにかく起動する(_L)" -+#. Translators: this is referred to captions under icons. -+#: src/nautilus-preferences-window.c:155 src/nautilus-properties-window.c:4127 -+#: src/nautilus-properties-window.c:4157 -+msgid "None" -+msgstr "なし" - --#: ../src/nautilus-mime-actions.c:1485 --msgid "Mark as _Trusted" --msgstr "信用できるアプリにする(_T)" -+#: src/nautilus-program-choosing.c:329 -+msgid "Sorry, but you cannot execute commands from a remote site." -+msgstr "リモートサイトからコマンドを実行することはできません。" - --#: ../src/nautilus-mime-actions.c:1714 --#, c-format --msgid "This will open %d separate application." --msgid_plural "This will open %d separate applications." --msgstr[0] "%d 個のアプリケーションを別々に開きます。" -+#: src/nautilus-program-choosing.c:331 -+msgid "This is disabled due to security considerations." -+msgstr "セキュリティを考慮してこれを無効にします。" - --#. if it wasn't cancelled show a dialog --#: ../src/nautilus-mime-actions.c:1791 ../src/nautilus-mime-actions.c:2055 --#: ../src/gtk/nautilusgtkplacesview.c:1162 --#: ../src/gtk/nautilusgtkplacesview.c:1235 --msgid "Unable to access location" --msgstr "要求された場所にアクセスできません" -+#: src/nautilus-program-choosing.c:343 src/nautilus-program-choosing.c:421 -+msgid "There was an error launching the application." -+msgstr "アプリケーションを起動する際にエラーが発生しました。" - --#: ../src/nautilus-mime-actions.c:2134 --msgid "Unable to start location" --msgstr "場所を起動できません" -+#: src/nautilus-program-choosing.c:372 src/nautilus-program-choosing.c:385 -+msgid "This drop target only supports local files." -+msgstr "アイテムのドロップはローカルのファイルシステムでのみサポートしています。" - --#: ../src/nautilus-mime-actions.c:2218 --#, c-format --msgid "Opening “%s”." --msgstr "“%s”を開いています。" -+#: src/nautilus-program-choosing.c:373 -+msgid "" -+"To open non-local files copy them to a local folder and then drop them again." -+"" -+msgstr "そのファイルを一度ローカルフォルダーにコピーしてから再ドロップしてください。" - --#: ../src/nautilus-mime-actions.c:2221 --#, c-format --msgid "Opening %d item." --msgid_plural "Opening %d items." --msgstr[0] "%d 個のアイテムを開いています。" -+#: src/nautilus-program-choosing.c:386 -+msgid "" -+"To open non-local files copy them to a local folder and then drop them again." -+" The local files you dropped have already been opened." -+msgstr "そのファイルを一度ローカルフォルダーにコピーしてから再ドロップしてください。ドロップしたローカルファイルは既に開かれています。" - --#: ../src/nautilus-notebook.c:340 --msgid "Close tab" --msgstr "タブを閉じます" -+#: src/nautilus-program-choosing.c:419 -+msgid "Details: " -+msgstr "詳細: " - --#. Translators: this is referred to captions under icons. --#: ../src/nautilus-preferences-window.c:151 --#: ../src/nautilus-properties-window.c:3773 --#: ../src/nautilus-properties-window.c:3800 --msgid "None" --msgstr "なし" -+#: src/nautilus-progress-info.c:317 -+msgid "Canceled" -+msgstr "キャンセル済み" - --#: ../src/nautilus-progress-persistence-handler.c:130 --#: ../src/nautilus-progress-persistence-handler.c:201 -+#: src/nautilus-progress-info.c:383 src/nautilus-progress-info.c:404 -+msgid "Preparing" -+msgstr "準備中" -+ -+#: src/nautilus-progress-persistence-handler.c:104 -+#: src/nautilus-progress-persistence-handler.c:145 - msgid "File Operations" - msgstr "ファイルの操作" - --#: ../src/nautilus-progress-persistence-handler.c:132 -+#: src/nautilus-progress-persistence-handler.c:106 - msgid "Show Details" - msgstr "詳細を表示" - --#: ../src/nautilus-progress-persistence-handler.c:135 --#: ../src/nautilus-progress-persistence-handler.c:155 -+#: src/nautilus-progress-persistence-handler.c:109 - #, c-format - msgid "%'d file operation active" - msgid_plural "%'d file operations active" - msgstr[0] "%'d 個のファイル操作を実行中です" - --#: ../src/nautilus-progress-persistence-handler.c:203 -+#: src/nautilus-progress-persistence-handler.c:147 - msgid "All file operations have been successfully completed" - msgstr "すべてのファイル操作が正常に完了しました" - --#: ../src/nautilus-properties-window.c:492 -+#: src/nautilus-properties-window.c:502 - msgid "You cannot assign more than one custom icon at a time!" - msgstr "独自アイコンは同時に二つ以上割り当てられません。" - --#: ../src/nautilus-properties-window.c:493 -+#: src/nautilus-properties-window.c:503 - msgid "Please drop just one image to set a custom icon." - msgstr "独自アイコンを使用するには画像を一つだけドロップしてください。" - --#: ../src/nautilus-properties-window.c:504 -+#: src/nautilus-properties-window.c:520 - msgid "The file that you dropped is not local." - msgstr "ドロップしたファイルはローカルのものではありません。" - --#: ../src/nautilus-properties-window.c:505 --#: ../src/nautilus-properties-window.c:511 -+#: src/nautilus-properties-window.c:521 src/nautilus-properties-window.c:528 - msgid "You can only use local images as custom icons." - msgstr "カスタマイズするアイコンに指定できるのはローカルの画像だけです。" - --#: ../src/nautilus-properties-window.c:510 -+#: src/nautilus-properties-window.c:527 - msgid "The file that you dropped is not an image." - msgstr "ドロップしたファイルは画像ではありません。" - --#: ../src/nautilus-properties-window.c:625 -+#: src/nautilus-properties-window.c:652 - msgid "_Name:" - msgid_plural "_Names:" - msgstr[0] "名前(_N):" - --#: ../src/nautilus-properties-window.c:820 --#, c-format -+#: src/nautilus-properties-window.c:900 - msgid "Properties" - msgstr "プロパティ" - - #. To translators: %s is the name of the folder. --#: ../src/nautilus-properties-window.c:830 -+#: src/nautilus-properties-window.c:913 - #, c-format - msgctxt "folder" - msgid "%s Properties" - msgstr "%s のプロパティ" - - #. To translators: %s is the name of the file. --#: ../src/nautilus-properties-window.c:833 -+#: src/nautilus-properties-window.c:918 - #, c-format - msgctxt "file" - msgid "%s Properties" - msgstr "%s のプロパティ" - --#: ../src/nautilus-properties-window.c:1227 -+#: src/nautilus-properties-window.c:1360 - #, c-format - msgctxt "MIME type description (MIME type)" - msgid "%s (%s)" - msgstr "%s (%s)" - --#: ../src/nautilus-properties-window.c:1429 -+#: src/nautilus-properties-window.c:1578 - msgid "Cancel Group Change?" - msgstr "グループの変更をキャンセルしますか?" - --#: ../src/nautilus-properties-window.c:1826 -+#: src/nautilus-properties-window.c:1999 - msgid "Cancel Owner Change?" - msgstr "所有者の変更をキャンセルしますか?" - --#: ../src/nautilus-properties-window.c:2125 -+#: src/nautilus-properties-window.c:2329 - msgid "nothing" - msgstr "なし" - --#: ../src/nautilus-properties-window.c:2127 -+#: src/nautilus-properties-window.c:2333 - msgid "unreadable" - msgstr "読み込み不可" - --#: ../src/nautilus-properties-window.c:2135 -+#: src/nautilus-properties-window.c:2345 - #, c-format - msgid "%'d item, with size %s" - msgid_plural "%'d items, totalling %s" - msgstr[0] "%'d 個のアイテム、サイズは %s" - --#: ../src/nautilus-properties-window.c:2144 -+#: src/nautilus-properties-window.c:2355 - msgid "(some contents unreadable)" - msgstr "(いくつかのファイルは読み込み不可です)" - -@@ -3374,338 +3587,405 @@ msgstr "(いくつかのファイルは読み込み不可です)" - #. * "Contents:" title to line up with the first line of the - #. * 2-line value. Maybe there's a better way to do this, but I - #. * couldn't think of one. --#. --#: ../src/nautilus-properties-window.c:2161 -+#. -+#: src/nautilus-properties-window.c:2372 - msgid "Contents:" - msgstr "内容:" - - #. Translators: "used" refers to the capacity of the filesystem --#: ../src/nautilus-properties-window.c:2771 -+#: src/nautilus-properties-window.c:3005 - msgid "used" - msgstr "使用中" - - #. Translators: "free" refers to the capacity of the filesystem --#: ../src/nautilus-properties-window.c:2781 -+#: src/nautilus-properties-window.c:3015 - msgid "free" - msgstr "空き" - --#: ../src/nautilus-properties-window.c:2783 -+#: src/nautilus-properties-window.c:3017 - msgid "Total capacity:" - msgstr "合計:" - --#: ../src/nautilus-properties-window.c:2786 -+#: src/nautilus-properties-window.c:3020 - msgid "Filesystem type:" - msgstr "ファイルシステムの種類:" - --#: ../src/nautilus-properties-window.c:2922 -+#: src/nautilus-properties-window.c:3164 - msgid "Basic" - msgstr "基本" - --#: ../src/nautilus-properties-window.c:2987 -+#: src/nautilus-properties-window.c:3229 - msgid "Link target:" - msgstr "リンク先:" - --#: ../src/nautilus-properties-window.c:3006 -+#: src/nautilus-properties-window.c:3252 - msgid "Parent Folder:" - msgstr "親フォルダー:" - --#: ../src/nautilus-properties-window.c:3014 -+#: src/nautilus-properties-window.c:3261 - msgid "Volume:" - msgstr "ボリューム:" - --#: ../src/nautilus-properties-window.c:3023 -+#: src/nautilus-properties-window.c:3271 - msgid "Accessed:" - msgstr "アクセス日時:" - --#: ../src/nautilus-properties-window.c:3027 -+#: src/nautilus-properties-window.c:3275 - msgid "Modified:" - msgstr "更新日時:" - --#: ../src/nautilus-properties-window.c:3037 -+#: src/nautilus-properties-window.c:3286 - msgid "Free space:" - msgstr "空き容量:" - - #. translators: this gets concatenated to "no read", - #. * "no access", etc. (see following strings) --#. --#: ../src/nautilus-properties-window.c:3690 --#: ../src/nautilus-properties-window.c:3701 --#: ../src/nautilus-properties-window.c:3713 -+#. -+#: src/nautilus-properties-window.c:4029 src/nautilus-properties-window.c:4044 -+#: src/nautilus-properties-window.c:4061 - msgid "no " - msgstr "無し: " - --#: ../src/nautilus-properties-window.c:3693 -+#: src/nautilus-properties-window.c:4033 - msgid "list" - msgstr "一覧" - --#: ../src/nautilus-properties-window.c:3695 -+#: src/nautilus-properties-window.c:4037 - msgid "read" - msgstr "読み込み" - --#: ../src/nautilus-properties-window.c:3704 -+#: src/nautilus-properties-window.c:4048 - msgid "create/delete" - msgstr "作成/削除" - --#: ../src/nautilus-properties-window.c:3706 -+#: src/nautilus-properties-window.c:4052 - msgid "write" - msgstr "書き込み" - --#: ../src/nautilus-properties-window.c:3715 -+#: src/nautilus-properties-window.c:4063 - msgid "access" - msgstr "アクセス" - --#: ../src/nautilus-properties-window.c:3780 -+#: src/nautilus-properties-window.c:4134 - msgid "List files only" - msgstr "表示のみ" - --#: ../src/nautilus-properties-window.c:3786 -+#: src/nautilus-properties-window.c:4140 - msgid "Access files" - msgstr "アクセスのみ" - --#: ../src/nautilus-properties-window.c:3792 -+#: src/nautilus-properties-window.c:4146 - msgid "Create and delete files" - msgstr "作成と削除" - --#: ../src/nautilus-properties-window.c:3807 -+#: src/nautilus-properties-window.c:4164 - msgid "Read-only" - msgstr "読み込み専用" - --#: ../src/nautilus-properties-window.c:3813 -+#: src/nautilus-properties-window.c:4170 - msgid "Read and write" - msgstr "読み書き" - --#: ../src/nautilus-properties-window.c:3840 -+#: src/nautilus-properties-window.c:4198 - msgid "Access:" - msgstr "アクセス:" - --#: ../src/nautilus-properties-window.c:3842 -+#: src/nautilus-properties-window.c:4202 - msgid "Folder access:" - msgstr "フォルダーのアクセス権:" - --#: ../src/nautilus-properties-window.c:3844 -+#: src/nautilus-properties-window.c:4206 - msgid "File access:" - msgstr "ファイルのアクセス権:" - --#: ../src/nautilus-properties-window.c:3933 -+#: src/nautilus-properties-window.c:4302 - msgid "_Owner:" - msgstr "所有者(_O):" - --#: ../src/nautilus-properties-window.c:3941 --#: ../src/nautilus-properties-window.c:4203 -+#: src/nautilus-properties-window.c:4312 src/nautilus-properties-window.c:4634 - msgid "Owner:" - msgstr "所有者:" - --#: ../src/nautilus-properties-window.c:3963 -+#: src/nautilus-properties-window.c:4338 - msgid "_Group:" - msgstr "グループ(_G):" - --#: ../src/nautilus-properties-window.c:3971 --#: ../src/nautilus-properties-window.c:4217 -+#: src/nautilus-properties-window.c:4348 src/nautilus-properties-window.c:4648 - msgid "Group:" - msgstr "グループ:" - --#: ../src/nautilus-properties-window.c:3992 -+#: src/nautilus-properties-window.c:4372 - msgid "Others" - msgstr "その他" - --#: ../src/nautilus-properties-window.c:4007 -+#: src/nautilus-properties-window.c:4391 - msgid "Execute:" - msgstr "実行:" - --#: ../src/nautilus-properties-window.c:4010 -+#: src/nautilus-properties-window.c:4394 - msgid "Allow _executing file as program" - msgstr "プログラムとして実行できる(_E)" - --#: ../src/nautilus-properties-window.c:4186 -+#: src/nautilus-properties-window.c:4617 - msgid "Change Permissions for Enclosed Files" - msgstr "フォルダー内のすべてのファイルの権限を変更する" - --#: ../src/nautilus-properties-window.c:4190 -+#: src/nautilus-properties-window.c:4621 - msgid "Change" - msgstr "変更" - --#: ../src/nautilus-properties-window.c:4231 -+#: src/nautilus-properties-window.c:4662 - msgid "Others:" - msgstr "その他:" - --#: ../src/nautilus-properties-window.c:4272 -+#: src/nautilus-properties-window.c:4705 - msgid "You are not the owner, so you cannot change these permissions." - msgstr "あなたは所有者ではありません (これらのアクセス権を変更することはできません)。" - --#: ../src/nautilus-properties-window.c:4287 -+#: src/nautilus-properties-window.c:4720 - msgid "Security context:" - msgstr "セキュリティコンテキスト:" - --#: ../src/nautilus-properties-window.c:4302 -+#: src/nautilus-properties-window.c:4736 - msgid "Change Permissions for Enclosed Files…" - msgstr "フォルダー内のすべてのファイルの権限を変更する…" - --#: ../src/nautilus-properties-window.c:4312 -+#: src/nautilus-properties-window.c:4749 - #, c-format - msgid "The permissions of “%s” could not be determined." - msgstr "“%s”のアクセス権を確定できませんでした。" - --#: ../src/nautilus-properties-window.c:4315 -+#: src/nautilus-properties-window.c:4754 - msgid "The permissions of the selected file could not be determined." - msgstr "指定したファイルのアクセス権を決定できませんでした。" - --#: ../src/nautilus-properties-window.c:4565 -+#: src/nautilus-properties-window.c:5026 - msgid "Open With" - msgstr "開き方" - --#: ../src/nautilus-properties-window.c:4894 -+#: src/nautilus-properties-window.c:5385 - msgid "Creating Properties window." - msgstr "プロパティウィンドウを作成しています" - --#: ../src/nautilus-properties-window.c:5178 -+#: src/nautilus-properties-window.c:5716 - msgid "Select Custom Icon" - msgstr "アイコンの選択" - --#: ../src/nautilus-properties-window.c:5180 -+#: src/nautilus-properties-window.c:5718 - msgid "_Revert" - msgstr "元に戻す(_R)" - - #. Open item is always present --#: ../src/nautilus-properties-window.c:5182 --#: ../src/gtk/nautilusgtkplacesview.c:1577 -+#: src/nautilus-properties-window.c:5720 src/gtk/nautilusgtkplacesview.c:1641 - msgid "_Open" - msgstr "開く(_O)" - --#: ../src/nautilus-query-editor.c:122 -+#: src/nautilus-query.c:517 src/nautilus-search-directory-file.c:167 -+#: src/nautilus-search-directory-file.c:222 -+#: src/nautilus-search-directory-file.c:268 -+#: src/resources/ui/nautilus-preferences-window.ui:907 -+#: src/resources/ui/nautilus-search-popover.ui:341 -+#: src/resources/ui/nautilus-toolbar.ui:143 -+msgid "Search" -+msgstr "検索" -+ -+#: src/nautilus-query.c:520 -+#, c-format -+msgid "Search for “%s”" -+msgstr "“%s”の検索" -+ -+#: src/nautilus-query-editor.c:133 - msgid "Searching locations only" - msgstr "指定の場所のみ検索します" - --#: ../src/nautilus-query-editor.c:124 -+#: src/nautilus-query-editor.c:137 - msgid "Searching devices only" - msgstr "指定のデバイスのみ検索します" - --#: ../src/nautilus-query-editor.c:126 -+#: src/nautilus-query-editor.c:141 - msgid "Searching network locations only" - msgstr "指定のネットワークの場所のみ検索します" - --#: ../src/nautilus-query-editor.c:129 -+#: src/nautilus-query-editor.c:146 - msgid "Remote location - only searching the current folder" - msgstr "リモートの場所 — 現在のフォルダーのみ検索します" - --#: ../src/nautilus-query-editor.c:131 -+#: src/nautilus-query-editor.c:150 - msgid "Only searching the current folder" - msgstr " 現在のフォルダーのみ検索します" - --#: ../src/nautilus-search-popover.c:284 -+#: src/nautilus-rename-file-popover-controller.c:191 -+msgid "File name" -+msgstr "ファイル名" -+ -+#: src/nautilus-search-engine.c:238 -+msgid "Unable to complete the requested search" -+msgstr "要求された検索を完了できません" -+ -+#: src/nautilus-search-popover.c:288 - msgid "Show a list to select the date" - msgstr "期間のリストを表示して日付を選択する" - --#: ../src/nautilus-search-popover.c:290 --#: ../src/resources/ui/nautilus-search-popover.ui.h:5 -+#: src/nautilus-search-popover.c:294 -+#: src/resources/ui/nautilus-search-popover.ui:96 - msgid "Show a calendar to select the date" - msgstr "カレンダーを表示して日付を選択する" - - #. Add the no date filter element first --#: ../src/nautilus-search-popover.c:387 -+#: src/nautilus-search-popover.c:390 - msgid "Any time" - msgstr "指定なし" - - #. Other types --#: ../src/nautilus-search-popover.c:476 -+#: src/nautilus-search-popover.c:487 - msgid "Other Type…" - msgstr "他の種類…" - --#: ../src/nautilus-search-popover.c:536 -+#: src/nautilus-search-popover.c:547 - msgid "Select type" - msgstr "種類の選択" - --#: ../src/nautilus-search-popover.c:540 -+#: src/nautilus-search-popover.c:551 - msgid "Select" - msgstr "選択" - --#: ../src/nautilus-search-popover.c:625 --#: ../src/resources/ui/nautilus-search-popover.ui.h:3 -+#: src/nautilus-search-popover.c:636 -+#: src/resources/ui/nautilus-search-popover.ui:51 - msgid "Select Dates…" - msgstr "日付を選択する…" - - #. trash --#: ../src/nautilus-shell-search-provider.c:297 ../src/nautilus-trash-bar.c:198 --#: ../src/resources/ui/nautilus-preferences-window.ui.h:45 -+#: src/nautilus-shell-search-provider.c:320 src/nautilus-trash-bar.c:208 -+#: src/resources/ui/nautilus-preferences-window.ui:706 - msgid "Trash" - msgstr "ゴミ箱" - --#: ../src/nautilus-special-location-bar.c:51 --msgid "Files in this folder will appear in the New Document menu." --msgstr "このフォルダーにあるファイルが [新しいドキュメント] メニューに表示されます。" -+#: src/nautilus-special-location-bar.c:56 -+msgid "Put files in this folder to use them as templates for new documents." -+msgstr "このフォルダーにファイルを格納し、新規ドキュメントのテンプレートとして使用します。" -+ -+#: src/nautilus-special-location-bar.c:57 -+msgid "" -+"Learn more…" -+msgstr "" -+"詳細はこちら…" - --#: ../src/nautilus-special-location-bar.c:54 -+#: src/nautilus-special-location-bar.c:63 - msgid "Executable files in this folder will appear in the Scripts menu." - msgstr "このフォルダーにある実行可能なファイルが [スクリプト] メニューに表示されます。" - --#: ../src/nautilus-trash-bar.c:206 -+#. Set the label of the undo and redo menu items, and activate them appropriately -+#. -+#: src/nautilus-toolbar.c:884 src/resources/ui/nautilus-toolbar-menu.ui:103 -+msgid "_Undo" -+msgstr "元に戻す(_U)" -+ -+#: src/nautilus-toolbar.c:887 src/resources/ui/nautilus-toolbar-menu.ui:111 -+msgid "_Redo" -+msgstr "やり直す(_R)" -+ -+#: src/nautilus-trash-bar.c:216 - msgid "_Restore" --msgstr "元に戻す(_R)" -+msgstr "復元する(_R)" - --#: ../src/nautilus-trash-bar.c:209 -+#: src/nautilus-trash-bar.c:219 - msgid "Restore selected items to their original position" - msgstr "選択したアイテムを元あった場所に戻します" - - #. Translators: "Empty" is an action (for the trash) , not a state --#: ../src/nautilus-trash-bar.c:213 -+#: src/nautilus-trash-bar.c:223 - msgid "_Empty" - msgstr "空にする(_E)" - --#: ../src/nautilus-trash-bar.c:216 -+#: src/nautilus-trash-bar.c:226 - msgid "Delete all items in the Trash" - msgstr "ゴミ箱にあるすべてのアイテムを削除します" - --#: ../src/nautilus-window.c:1319 -+# 検索オプションの XXX ago はすべて since XXX ago の意味である -+# 指定のXXX 前以降のファイルがヒットする -+# 確認バージョン: 3.20 -+#. days -+#: src/nautilus-ui-utilities.c:377 -+#, c-format -+msgid "%d day ago" -+msgid_plural "%d days ago" -+msgstr[0] "%d 日前以降" -+ -+#. weeks -+#: src/nautilus-ui-utilities.c:382 -+#, c-format -+msgid "Last week" -+msgid_plural "%d weeks ago" -+msgstr[0] "%d 週前以降" -+ -+#. months -+#: src/nautilus-ui-utilities.c:387 -+#, c-format -+msgid "Last month" -+msgid_plural "%d months ago" -+msgstr[0] "%d か月前以降" -+ -+#. years -+#: src/nautilus-ui-utilities.c:392 -+#, c-format -+msgid "Last year" -+msgid_plural "%d years ago" -+msgstr[0] "%d 年前以降" -+ -+#: src/nautilus-window.c:1406 - msgid "_Properties" - msgstr "プロパティ(_P)" - --#: ../src/nautilus-window.c:1329 -+#: src/nautilus-window.c:1418 - msgid "_Format…" - msgstr "フォーマット(_F)…" - - #. Translators: only one item has been deleted and %s is its name. --#: ../src/nautilus-window.c:1585 -+#: src/nautilus-window.c:1688 - #, c-format - msgid "“%s” deleted" - msgstr "“%s”を削除" - - #. Translators: one or more items might have been deleted, and %d - #. * is the count. --#: ../src/nautilus-window.c:1590 -+#: src/nautilus-window.c:1695 - #, c-format - msgid "%d file deleted" - msgid_plural "%d files deleted" - msgstr[0] "%d 件のファイルを削除" - --#: ../src/nautilus-window.c:1692 -+#: src/nautilus-window.c:1806 - #, c-format - msgid "Open %s" - msgstr "%s を開く" - --#: ../src/nautilus-window.c:1780 -+#: src/nautilus-window.c:1897 - msgid "_New Tab" - msgstr "新しいタブ(_N)" - --#: ../src/nautilus-window.c:1790 -+#: src/nautilus-window.c:1907 - msgid "Move Tab _Left" - msgstr "タブを左へ移動(_L)" - --#: ../src/nautilus-window.c:1798 -+#: src/nautilus-window.c:1915 - msgid "Move Tab _Right" - msgstr "タブを右へ移動(_R)" - --#: ../src/nautilus-window.c:1809 -+#: src/nautilus-window.c:1926 - msgid "_Close Tab" - msgstr "タブを閉じる(_C)" - --#: ../src/nautilus-window.c:2729 -+#: src/nautilus-window.c:2910 - msgid "Access and organize your files." - msgstr "ファイルへアクセスしたり整理したりします。" - - #. Translators should localize the following string - #. * which will be displayed at the bottom of the about - #. * box to give credit to the translator(s). --#. --#: ../src/nautilus-window.c:2738 -+#. -+#: src/nautilus-window.c:2919 - msgid "translator-credits" - msgstr "" - "相花毅 \n" -@@ -3722,32 +4002,33 @@ msgstr "" - "Akira Tanaka \n" - "日本GNOMEユーザー会 " - --#: ../src/nautilus-window-slot.c:1148 -+#: src/nautilus-window-slot.c:1354 - msgid "Unable to display the contents of this folder." - msgstr "このフォルダーの内容を表示できません。" - --#: ../src/nautilus-window-slot.c:1150 -+#: src/nautilus-window-slot.c:1358 - msgid "This location doesn't appear to be a folder." - msgstr "この場所はフォルダーではないようです。" - --#: ../src/nautilus-window-slot.c:1155 --msgid "Unable to find the requested file. Please check the spelling and try again." -+#: src/nautilus-window-slot.c:1367 -+msgid "" -+"Unable to find the requested file. Please check the spelling and try again." - msgstr "要求されたファイルを見つけられませんでした。つづりを確認して再試行してください。" - --#: ../src/nautilus-window-slot.c:1160 -+#: src/nautilus-window-slot.c:1376 - #, c-format - msgid "“%s” locations are not supported." - msgstr "“%s”の場所はサポートされていません。" - --#: ../src/nautilus-window-slot.c:1163 -+#: src/nautilus-window-slot.c:1381 - msgid "Unable to handle this kind of location." - msgstr "この種類の場所を扱えません。" - --#: ../src/nautilus-window-slot.c:1168 -+#: src/nautilus-window-slot.c:1389 - msgid "Unable to access the requested location." - msgstr "要求された場所にアクセスできません。" - --#: ../src/nautilus-window-slot.c:1171 -+#: src/nautilus-window-slot.c:1395 - msgid "Don't have permission to access the requested location." - msgstr "要求された場所へアクセスする権限がありません。" - -@@ -3755,1044 +4036,1171 @@ msgstr "要求された場所へアクセスする権限がありません。" - #. * the code that guesses web addresses when there's no initial "/". - #. * But this case is also hit for legitimate web addresses when - #. * the proxy is set up wrong. --#. --#: ../src/nautilus-window-slot.c:1179 --msgid "Unable to find the requested location. Please check the spelling or the network settings." -+#. -+#: src/nautilus-window-slot.c:1406 -+msgid "" -+"Unable to find the requested location. Please check the spelling or the " -+"network settings." - msgstr "要求された場所を見つけることができません。つづりやネットワークの設定を確認してください。" - --#: ../src/nautilus-window-slot.c:1190 -+#: src/nautilus-window-slot.c:1425 - #, c-format - msgid "Unhandled error message: %s" - msgstr "扱えないエラーメッセージ: %s" - --#: ../src/nautilus-window-slot.c:1338 --#, c-format -+#: src/nautilus-window-slot.c:1596 - msgid "Unable to load location" - msgstr "場所を読み込みできません" - --#: ../src/nautilus-x-content-bar.c:124 -+#: src/nautilus-x-content-bar.c:141 - msgid "Open with:" - msgstr "開き方:" - --#: ../src/resources/gtk/help-overlay.ui.h:1 -+#: src/resources/gtk/help-overlay.ui:13 - msgctxt "shortcut window" - msgid "General" - msgstr "全般" - --#: ../src/resources/gtk/help-overlay.ui.h:2 -+#: src/resources/gtk/help-overlay.ui:17 - msgctxt "shortcut window" - msgid "New window" - msgstr "新しいウィンドウ" - --#: ../src/resources/gtk/help-overlay.ui.h:3 -+#: src/resources/gtk/help-overlay.ui:24 - msgctxt "shortcut window" - msgid "Close window or tab" - msgstr "ウィンドウやタブを閉じる" - --#: ../src/resources/gtk/help-overlay.ui.h:4 -+#: src/resources/gtk/help-overlay.ui:31 - msgctxt "shortcut window" - msgid "Search" - msgstr "検索する" - --#: ../src/resources/gtk/help-overlay.ui.h:5 --msgctxt "shortcut window" --msgid "Bookmarks" --msgstr "ブックマークウィンドウを開く" -- --#: ../src/resources/gtk/help-overlay.ui.h:6 -+#: src/resources/gtk/help-overlay.ui:38 - msgctxt "shortcut window" - msgid "Bookmark current location" - msgstr "現在の場所をブックマークする" - --#: ../src/resources/gtk/help-overlay.ui.h:7 -+#: src/resources/gtk/help-overlay.ui:45 - msgctxt "shortcut window" - msgid "Show help" - msgstr "ヘルプを表示する" - --#: ../src/resources/gtk/help-overlay.ui.h:8 -+#: src/resources/gtk/help-overlay.ui:52 - msgctxt "shortcut window" - msgid "Shortcuts" - msgstr "ショートカット一覧を表示する" - --#: ../src/resources/gtk/help-overlay.ui.h:9 -+#: src/resources/gtk/help-overlay.ui:61 - msgctxt "shortcut window" - msgid "Opening" - msgstr "開き方" - --#: ../src/resources/gtk/help-overlay.ui.h:10 -+#: src/resources/gtk/help-overlay.ui:65 - msgctxt "shortcut window" - msgid "Open" - msgstr "開く" - --#: ../src/resources/gtk/help-overlay.ui.h:11 -+#: src/resources/gtk/help-overlay.ui:72 - msgctxt "shortcut window" - msgid "Open in new tab" - msgstr "新しいタブで開く" - --#: ../src/resources/gtk/help-overlay.ui.h:12 -+#: src/resources/gtk/help-overlay.ui:79 - msgctxt "shortcut window" - msgid "Open in new window" - msgstr "新しいウィンドウで開く" - --#: ../src/resources/gtk/help-overlay.ui.h:13 -+#: src/resources/gtk/help-overlay.ui:86 - msgctxt "shortcut window" - msgid "Open item location (search and recent only)" - msgstr "アイテムの場所を開く (検索と最近のファイルのみ)" - --#: ../src/resources/gtk/help-overlay.ui.h:14 -+#: src/resources/gtk/help-overlay.ui:93 - msgctxt "shortcut window" - msgid "Open file and close window" - msgstr "ファイルを開いてウィンドウを閉じる" - --#: ../src/resources/gtk/help-overlay.ui.h:15 -+#: src/resources/gtk/help-overlay.ui:100 - msgctxt "shortcut window" - msgid "Open with default application" - msgstr "デフォルトのアプリケーションで開く" - --#: ../src/resources/gtk/help-overlay.ui.h:16 -+#: src/resources/gtk/help-overlay.ui:109 - msgctxt "shortcut window" - msgid "Tabs" - msgstr "タブ" - --#: ../src/resources/gtk/help-overlay.ui.h:17 -+#: src/resources/gtk/help-overlay.ui:113 - msgctxt "shortcut window" - msgid "New tab" - msgstr "新しいタブを開く" - --#: ../src/resources/gtk/help-overlay.ui.h:18 -+#: src/resources/gtk/help-overlay.ui:120 - msgctxt "shortcut window" - msgid "Go to previous tab" - msgstr "前のタブに切り替える" - --#: ../src/resources/gtk/help-overlay.ui.h:19 -+#: src/resources/gtk/help-overlay.ui:127 - msgctxt "shortcut window" - msgid "Go to next tab" - msgstr "次のタブに切り替える" - --#: ../src/resources/gtk/help-overlay.ui.h:20 -+#: src/resources/gtk/help-overlay.ui:134 - msgctxt "shortcut window" - msgid "Open tab" - msgstr "指定位置のタブに切り替える" - --#: ../src/resources/gtk/help-overlay.ui.h:21 -+#: src/resources/gtk/help-overlay.ui:141 - msgctxt "shortcut window" - msgid "Move tab left" - msgstr "タブを左へ移動する" - --#: ../src/resources/gtk/help-overlay.ui.h:22 -+#: src/resources/gtk/help-overlay.ui:148 - msgctxt "shortcut window" - msgid "Move tab right" - msgstr "タブを右へ移動する" - --#: ../src/resources/gtk/help-overlay.ui.h:23 -+#: src/resources/gtk/help-overlay.ui:157 - msgctxt "shortcut window" - msgid "Navigation" - msgstr "移動" - --#: ../src/resources/gtk/help-overlay.ui.h:24 -+#: src/resources/gtk/help-overlay.ui:161 - msgctxt "shortcut window" - msgid "Go back" - msgstr "左へ移動する" - --#: ../src/resources/gtk/help-overlay.ui.h:25 -+#: src/resources/gtk/help-overlay.ui:168 - msgctxt "shortcut window" - msgid "Go forward" - msgstr "右へ移動する" - --#: ../src/resources/gtk/help-overlay.ui.h:26 -+#: src/resources/gtk/help-overlay.ui:175 - msgctxt "shortcut window" - msgid "Go up" - msgstr "上へ移動する" - --#: ../src/resources/gtk/help-overlay.ui.h:27 -+#: src/resources/gtk/help-overlay.ui:182 - msgctxt "shortcut window" - msgid "Go down" - msgstr "下へ移動する" - --#: ../src/resources/gtk/help-overlay.ui.h:28 -+#: src/resources/gtk/help-overlay.ui:189 - msgctxt "shortcut window" - msgid "Go to home folder" - msgstr "ホームフォルダーへ移動する" - --#: ../src/resources/gtk/help-overlay.ui.h:29 -+#: src/resources/gtk/help-overlay.ui:196 - msgctxt "shortcut window" - msgid "Enter location" - msgstr "場所を入力する" - --#: ../src/resources/gtk/help-overlay.ui.h:30 -+#: src/resources/gtk/help-overlay.ui:203 - msgctxt "shortcut window" - msgid "Location bar with root location" - msgstr "ロケーションバーを開いてルートフォルダーを入力する" - --#: ../src/resources/gtk/help-overlay.ui.h:31 -+#: src/resources/gtk/help-overlay.ui:210 - msgctxt "shortcut window" - msgid "Location bar with home location" - msgstr "ロケーションバーを開いてホームフォルダーを入力する" - --#: ../src/resources/gtk/help-overlay.ui.h:32 -+#: src/resources/gtk/help-overlay.ui:219 - msgctxt "shortcut window" - msgid "View" - msgstr "表示" - --#: ../src/resources/gtk/help-overlay.ui.h:33 -+#: src/resources/gtk/help-overlay.ui:223 - msgctxt "shortcut window" - msgid "Zoom in" - msgstr "拡大する" - --#: ../src/resources/gtk/help-overlay.ui.h:34 -+#: src/resources/gtk/help-overlay.ui:230 - msgctxt "shortcut window" - msgid "Zoom out" - msgstr "縮小する" - --#: ../src/resources/gtk/help-overlay.ui.h:35 -+#: src/resources/gtk/help-overlay.ui:237 - msgctxt "shortcut window" - msgid "Reset zoom" - msgstr "サイズをリセットする" - --#: ../src/resources/gtk/help-overlay.ui.h:36 -+#: src/resources/gtk/help-overlay.ui:244 - msgctxt "shortcut window" - msgid "Refresh view" - msgstr "表示を更新する" - --#: ../src/resources/gtk/help-overlay.ui.h:37 -+#: src/resources/gtk/help-overlay.ui:251 - msgctxt "shortcut window" - msgid "Show/hide hidden files" - msgstr "隠しファイルの表示/非表示を切り替える" - --#: ../src/resources/gtk/help-overlay.ui.h:38 -+#: src/resources/gtk/help-overlay.ui:258 - msgctxt "shortcut window" - msgid "Show/hide sidebar" - msgstr "サイドバーの表示/非表示を切り替える" - --#: ../src/resources/gtk/help-overlay.ui.h:39 -+#: src/resources/gtk/help-overlay.ui:265 - msgctxt "shortcut window" - msgid "Show/hide action menu" - msgstr "アクションメニューの表示/非表示を切り替える" - --#: ../src/resources/gtk/help-overlay.ui.h:40 -+#: src/resources/gtk/help-overlay.ui:272 - msgctxt "shortcut window" - msgid "List view" - msgstr "一覧表示に切り替える" - --#: ../src/resources/gtk/help-overlay.ui.h:41 -+#: src/resources/gtk/help-overlay.ui:279 - msgctxt "shortcut window" - msgid "Grid view" - msgstr "グリッド表示に切り替える" - --#: ../src/resources/gtk/help-overlay.ui.h:42 -+#: src/resources/gtk/help-overlay.ui:288 - msgctxt "shortcut window" - msgid "Editing" - msgstr "編集" - --#: ../src/resources/gtk/help-overlay.ui.h:43 -+#: src/resources/gtk/help-overlay.ui:292 - msgctxt "shortcut window" - msgid "Create folder" - msgstr "フォルダーを作成する" - --#: ../src/resources/gtk/help-overlay.ui.h:44 -+#: src/resources/gtk/help-overlay.ui:299 - msgctxt "shortcut window" - msgid "Rename" - msgstr "名前を変更する" - --#: ../src/resources/gtk/help-overlay.ui.h:45 -+#: src/resources/gtk/help-overlay.ui:306 - msgctxt "shortcut window" - msgid "Move to trash" - msgstr "ゴミ箱へ移動する" - --#: ../src/resources/gtk/help-overlay.ui.h:46 -+#: src/resources/gtk/help-overlay.ui:313 - msgctxt "shortcut window" - msgid "Delete permanently" - msgstr "完全に削除する" - --#: ../src/resources/gtk/help-overlay.ui.h:47 -+#: src/resources/gtk/help-overlay.ui:320 -+msgctxt "shortcut window" -+msgid "Cut" -+msgstr "切り取る" -+ -+#: src/resources/gtk/help-overlay.ui:327 - msgctxt "shortcut window" - msgid "Copy" - msgstr "コピーする" - --#: ../src/resources/gtk/help-overlay.ui.h:48 -+#: src/resources/gtk/help-overlay.ui:334 - msgctxt "shortcut window" - msgid "Paste" - msgstr "貼り付ける" - --#: ../src/resources/gtk/help-overlay.ui.h:49 -+#: src/resources/gtk/help-overlay.ui:341 - msgctxt "shortcut window" - msgid "Select all" - msgstr "すべて選択する" - --#: ../src/resources/gtk/help-overlay.ui.h:50 -+#: src/resources/gtk/help-overlay.ui:348 - msgctxt "shortcut window" - msgid "Invert selection" - msgstr "選択を反転する" - --#: ../src/resources/gtk/help-overlay.ui.h:51 -+#: src/resources/gtk/help-overlay.ui:355 - msgctxt "shortcut window" - msgid "Select items matching" - msgstr "パターンを指定してアイテムを選択する" - --#: ../src/resources/gtk/help-overlay.ui.h:52 -+#: src/resources/gtk/help-overlay.ui:362 - msgctxt "shortcut window" - msgid "Undo" - msgstr "操作を元に戻す" - --#: ../src/resources/gtk/help-overlay.ui.h:53 -+#: src/resources/gtk/help-overlay.ui:369 - msgctxt "shortcut window" - msgid "Redo" - msgstr "操作をやり直す" - --#: ../src/resources/gtk/help-overlay.ui.h:54 -+#: src/resources/gtk/help-overlay.ui:376 - msgctxt "shortcut window" - msgid "Show item properties" - msgstr "アイテムのプロパティを表示する" - --#: ../src/resources/gtk/menus.ui.h:1 -+#: src/resources/gtk/menus.ui:6 - msgid "New _Window" - msgstr "新しいウィンドウ(_W)" - --#: ../src/resources/gtk/menus.ui.h:2 -+#: src/resources/gtk/menus.ui:13 - msgid "Sidebar" - msgstr "サイドバー" - --#: ../src/resources/gtk/menus.ui.h:3 -+#: src/resources/gtk/menus.ui:21 - msgid "Prefere_nces" - msgstr "設定(_N)" - --#: ../src/resources/gtk/menus.ui.h:4 -+#: src/resources/gtk/menus.ui:27 - msgid "_Keyboard Shortcuts" - msgstr "キーボードショートカット(_K)" - --#: ../src/resources/gtk/menus.ui.h:5 -+#: src/resources/gtk/menus.ui:31 - msgid "_Help" - msgstr "ヘルプ(_H)" - --#: ../src/resources/gtk/menus.ui.h:6 -+#: src/resources/gtk/menus.ui:36 - msgid "_About" - msgstr "このアプリケーションについて(_A)" - --#: ../src/resources/gtk/menus.ui.h:7 -+#: src/resources/gtk/menus.ui:40 - msgid "_Quit" - msgstr "終了(_Q)" - --#: ../src/resources/ui/nautilus-files-view-context-menus.ui.h:1 --#: ../src/resources/ui/nautilus-toolbar-action-menu.ui.h:1 -+#: src/resources/ui/nautilus-batch-rename-dialog.ui:20 -+#: src/resources/ui/nautilus-rename-file-popover.ui:39 -+msgid "_Rename" -+msgstr "変更(_R)" -+ -+#: src/resources/ui/nautilus-batch-rename-dialog.ui:54 -+msgid "Rename _using a template" -+msgstr "テンプレートを使って名前を変更(_U)" -+ -+#: src/resources/ui/nautilus-batch-rename-dialog.ui:65 -+msgid "Find and replace _text" -+msgstr "テキストを検索して置換(_T)" -+ -+#: src/resources/ui/nautilus-batch-rename-dialog.ui:138 -+msgid "Add" -+msgstr "追加する" -+ -+#: src/resources/ui/nautilus-batch-rename-dialog.ui:168 -+msgid "Automatic Numbering Order" -+msgstr "自動段落番号" -+ -+#. Translators: This is a noun, not a verb -+#: src/resources/ui/nautilus-batch-rename-dialog.ui:213 -+msgid "Format" -+msgstr "フォーマット" -+ -+#: src/resources/ui/nautilus-batch-rename-dialog.ui:228 -+msgid "Existing Text" -+msgstr "既存テキスト" -+ -+#: src/resources/ui/nautilus-batch-rename-dialog.ui:257 -+msgid "Replace With" -+msgstr "置き換える" -+ -+#: src/resources/ui/nautilus-batch-rename-dialog.ui:284 -+msgctxt "title" -+msgid "Replace" -+msgstr "置き換え" -+ -+#: src/resources/ui/nautilus-batch-rename-dialog.ui:412 -+msgid "Automatic Numbers" -+msgstr "自動番号" -+ -+#: src/resources/ui/nautilus-batch-rename-dialog.ui:414 -+msgid "1, 2, 3, 4" -+msgstr "1, 2, 3, 4" -+ -+#: src/resources/ui/nautilus-batch-rename-dialog.ui:418 -+msgid "01, 02, 03, 04" -+msgstr "01, 02, 03, 04" -+ -+#: src/resources/ui/nautilus-batch-rename-dialog.ui:422 -+msgid "001, 002, 003, 004" -+msgstr "001, 002, 003, 004" -+ -+#: src/resources/ui/nautilus-batch-rename-dialog.ui:427 -+msgid "Metadata" -+msgstr "メタデータ" -+ -+#: src/resources/ui/nautilus-batch-rename-dialog.ui:429 -+msgid "Creation Date" -+msgstr "作成日" -+ -+#: src/resources/ui/nautilus-batch-rename-dialog.ui:439 -+msgid "Season Number" -+msgstr "シーズン番号" -+ -+#: src/resources/ui/nautilus-batch-rename-dialog.ui:444 -+msgid "Episode Number" -+msgstr "エピソード番号" -+ -+#: src/resources/ui/nautilus-batch-rename-dialog.ui:449 -+msgid "Track Number" -+msgstr "トラック番号" -+ -+#: src/resources/ui/nautilus-batch-rename-dialog.ui:454 -+msgid "Artist Name" -+msgstr "アーチスト名" -+ -+#: src/resources/ui/nautilus-batch-rename-dialog.ui:464 -+msgid "Album Name" -+msgstr "アルバム名" -+ -+#: src/resources/ui/nautilus-batch-rename-dialog.ui:471 -+msgid "Original File Name" -+msgstr "元のファイル名" -+ -+#: src/resources/ui/nautilus-files-view-context-menus.ui:5 - msgid "New _Folder" - msgstr "新しいフォルダー(_F)" - --#: ../src/resources/ui/nautilus-files-view-context-menus.ui.h:2 -+#: src/resources/ui/nautilus-files-view-context-menus.ui:10 - msgid "New _Document" - msgstr "新しいドキュメント(_D)" - --#: ../src/resources/ui/nautilus-files-view-context-menus.ui.h:3 -+#: src/resources/ui/nautilus-files-view-context-menus.ui:16 - msgid "_Paste" - msgstr "貼り付け(_P)" - --#: ../src/resources/ui/nautilus-files-view-context-menus.ui.h:4 -+#: src/resources/ui/nautilus-files-view-context-menus.ui:22 -+#: src/resources/ui/nautilus-files-view-context-menus.ui:151 - msgid "Create _Link" - msgstr "リンクを作成する(_L)" - --#: ../src/resources/ui/nautilus-files-view-context-menus.ui.h:5 --#: ../src/resources/ui/nautilus-toolbar-action-menu.ui.h:3 -+#: src/resources/ui/nautilus-files-view-context-menus.ui:29 - msgid "Select _All" - msgstr "すべて選択(_A)" - --#: ../src/resources/ui/nautilus-files-view-context-menus.ui.h:6 --#: ../src/resources/ui/nautilus-pathbar-context-menu.ui.h:3 -+#: src/resources/ui/nautilus-files-view-context-menus.ui:35 -+#: src/resources/ui/nautilus-files-view-context-menus.ui:256 -+#: src/resources/ui/nautilus-pathbar-context-menu.ui:18 - msgid "P_roperties" - msgstr "プロパティ(_R)" - --#: ../src/resources/ui/nautilus-files-view-context-menus.ui.h:7 -+#: src/resources/ui/nautilus-files-view-context-menus.ui:42 - msgid "_Keep aligned" - msgstr "配置を維持する(_K)" - --#: ../src/resources/ui/nautilus-files-view-context-menus.ui.h:8 -+#: src/resources/ui/nautilus-files-view-context-menus.ui:47 - msgid "Organize _Desktop by Name" - msgstr "デスクトップを名前順に整理する(_D)" - --#: ../src/resources/ui/nautilus-files-view-context-menus.ui.h:9 -+#: src/resources/ui/nautilus-files-view-context-menus.ui:54 - msgid "Change _Background" - msgstr "背景を変更する(_B)" - --#: ../src/resources/ui/nautilus-files-view-context-menus.ui.h:10 -+#: src/resources/ui/nautilus-files-view-context-menus.ui:72 - msgid "_Scripts" - msgstr "スクリプト(_S)" - --#: ../src/resources/ui/nautilus-files-view-context-menus.ui.h:11 -+#: src/resources/ui/nautilus-files-view-context-menus.ui:77 - msgid "_Open Scripts Folder" - msgstr "このフォルダーを開く(_O)" - --#: ../src/resources/ui/nautilus-files-view-context-menus.ui.h:12 -+#: src/resources/ui/nautilus-files-view-context-menus.ui:85 - msgid "_Open Item Location" - msgstr "このアイテムの場所を開く(_O)" - --#: ../src/resources/ui/nautilus-files-view-context-menus.ui.h:13 --#: ../src/resources/ui/nautilus-pathbar-context-menu.ui.h:1 -+#: src/resources/ui/nautilus-files-view-context-menus.ui:90 -+#: src/resources/ui/nautilus-pathbar-context-menu.ui:6 - msgid "Open In New _Tab" - msgstr "新しいタブで開く(_T)" - --#: ../src/resources/ui/nautilus-files-view-context-menus.ui.h:14 --#: ../src/resources/ui/nautilus-pathbar-context-menu.ui.h:2 -+#: src/resources/ui/nautilus-files-view-context-menus.ui:95 -+#: src/resources/ui/nautilus-pathbar-context-menu.ui:11 - msgid "Open In New _Window" - msgstr "新しいウィンドウで開く(_W)" - --#: ../src/resources/ui/nautilus-files-view-context-menus.ui.h:15 -+#: src/resources/ui/nautilus-files-view-context-menus.ui:102 - msgid "Open With Other _Application" - msgstr "別のアプリケーションで開く(_A)" - --#: ../src/resources/ui/nautilus-files-view-context-menus.ui.h:16 --#: ../src/gtk/nautilusgtkplacesview.c:1632 -+#: src/resources/ui/nautilus-files-view-context-menus.ui:110 -+#: src/gtk/nautilusgtkplacesview.c:1696 - msgid "_Mount" - msgstr "マウント(_M)" - --#: ../src/resources/ui/nautilus-files-view-context-menus.ui.h:17 --#: ../src/gtk/nautilusgtkplacesview.c:1622 -+#: src/resources/ui/nautilus-files-view-context-menus.ui:115 -+#: src/gtk/nautilusgtkplacesview.c:1686 - msgid "_Unmount" - msgstr "アンマウント(_U)" - --#: ../src/resources/ui/nautilus-files-view-context-menus.ui.h:18 -+#: src/resources/ui/nautilus-files-view-context-menus.ui:120 - msgid "_Eject" - msgstr "取り出す(_E)" - --#: ../src/resources/ui/nautilus-files-view-context-menus.ui.h:20 -+#: src/resources/ui/nautilus-files-view-context-menus.ui:130 - msgid "_Stop" - msgstr "停止(_S)" - --#: ../src/resources/ui/nautilus-files-view-context-menus.ui.h:21 -+#: src/resources/ui/nautilus-files-view-context-menus.ui:135 - msgid "_Detect Media" - msgstr "メディアを検出(_D)" - --#: ../src/resources/ui/nautilus-files-view-context-menus.ui.h:22 -+#: src/resources/ui/nautilus-files-view-context-menus.ui:142 - msgid "Cu_t" - msgstr "切り取り(_T)" - --#: ../src/resources/ui/nautilus-files-view-context-menus.ui.h:23 -+#: src/resources/ui/nautilus-files-view-context-menus.ui:146 - msgid "_Copy" - msgstr "コピー(_C)" - --#: ../src/resources/ui/nautilus-files-view-context-menus.ui.h:24 -+#: src/resources/ui/nautilus-files-view-context-menus.ui:157 - msgid "_Paste Into Folder" - msgstr "フォルダーへ貼り付け(_P)" - --#: ../src/resources/ui/nautilus-files-view-context-menus.ui.h:25 -+#: src/resources/ui/nautilus-files-view-context-menus.ui:164 - msgid "Move to…" - msgstr "指定先に移動…" - --#: ../src/resources/ui/nautilus-files-view-context-menus.ui.h:26 -+#: src/resources/ui/nautilus-files-view-context-menus.ui:168 - msgid "Copy to…" - msgstr "指定先にコピー…" - --#: ../src/resources/ui/nautilus-files-view-context-menus.ui.h:28 -+#: src/resources/ui/nautilus-files-view-context-menus.ui:179 - msgid "_Delete from Trash" - msgstr "ゴミ箱から削除する(_D)" - --#: ../src/resources/ui/nautilus-files-view-context-menus.ui.h:29 -+#: src/resources/ui/nautilus-files-view-context-menus.ui:184 -+#: src/resources/ui/nautilus-files-view-context-menus.ui:189 - msgid "_Delete Permanently" - msgstr "完全に削除する(_D)" - --#: ../src/resources/ui/nautilus-files-view-context-menus.ui.h:30 -+#: src/resources/ui/nautilus-files-view-context-menus.ui:194 - msgid "Empty Trash" - msgstr "ゴミ箱を空にする" - --#: ../src/resources/ui/nautilus-files-view-context-menus.ui.h:31 -+#: src/resources/ui/nautilus-files-view-context-menus.ui:199 - msgid "_Restore From Trash" - msgstr "ゴミ箱から元に戻す(_R)" - --#: ../src/resources/ui/nautilus-files-view-context-menus.ui.h:32 -+#: src/resources/ui/nautilus-files-view-context-menus.ui:206 - msgid "Resize Icon…" - msgstr "アイコンのサイズを変更…" - --#: ../src/resources/ui/nautilus-files-view-context-menus.ui.h:33 -+#: src/resources/ui/nautilus-files-view-context-menus.ui:211 - msgid "Restore Icon's Original Size" - msgstr "アイコンを元のサイズに戻す" - --#: ../src/resources/ui/nautilus-files-view-context-menus.ui.h:34 --msgid "Rena_me" -+#: src/resources/ui/nautilus-files-view-context-menus.ui:218 -+msgid "Rena_me…" - msgstr "名前の変更(_M)" - --#: ../src/resources/ui/nautilus-files-view-context-menus.ui.h:35 -+#: src/resources/ui/nautilus-files-view-context-menus.ui:224 - msgid "Set As Wallpaper" - msgstr "壁紙に設定する" - --#: ../src/resources/ui/nautilus-files-view-context-menus.ui.h:36 -+#: src/resources/ui/nautilus-files-view-context-menus.ui:231 - msgid "_Remove from Recent" - msgstr "最近開いたファイル一覧から削除(_R)" - --#: ../src/resources/ui/nautilus-folder-is-empty.ui.h:1 -+#: src/resources/ui/nautilus-files-view-context-menus.ui:239 -+msgid "_Extract Here" -+msgstr "ここに展開する(_E)" -+ -+#: src/resources/ui/nautilus-files-view-context-menus.ui:244 -+msgid "E_xtract to…" -+msgstr "展開する(_X)…" -+ -+#: src/resources/ui/nautilus-files-view-context-menus.ui:249 -+msgid "C_ompress…" -+msgstr "圧縮する(_O)" -+ -+#: src/resources/ui/nautilus-folder-is-empty.ui:30 - msgid "Folder is Empty" - msgstr "フォルダーが空です" - --#: ../src/resources/ui/nautilus-move-to-trash-shortcut-changed.ui.h:1 -+#: src/resources/ui/nautilus-move-to-trash-shortcut-changed.ui:11 - msgid "Delete Shortcuts Have Changed" - msgstr "ファイル削除のショートカットを変更しました" - --#: ../src/resources/ui/nautilus-move-to-trash-shortcut-changed.ui.h:2 --msgid "With the latest version of Files, you no longer need to hold Ctrl to delete — the Delete key will work when pressed on its own." -+#: src/resources/ui/nautilus-move-to-trash-shortcut-changed.ui:12 -+msgid "" -+"With the latest version of Files, you no longer need to hold Ctrl to delete " -+"— the Delete key will work when pressed on its own." - msgstr "最新のファイルマネージャーでは、ファイルを削除するために Ctrl キーを押す必要はありません。Delete キーだけで削除できます。" - --#: ../src/resources/ui/nautilus-move-to-trash-shortcut-changed.ui.h:3 -+#: src/resources/ui/nautilus-move-to-trash-shortcut-changed.ui:15 - msgid "Got it" - msgstr "OK" - --#: ../src/resources/ui/nautilus-no-search-results.ui.h:1 -+#: src/resources/ui/nautilus-no-search-results.ui:30 - msgid "No Results Found" - msgstr "見つかりませんでした" - --#: ../src/resources/ui/nautilus-no-search-results.ui.h:2 --#: ../src/gtk/nautilusgtkplacesview.ui.h:5 -+#: src/resources/ui/nautilus-no-search-results.ui:44 -+#: src/gtk/nautilusgtkplacesview.ui:406 - msgid "Try a different search" - msgstr "他のキーワードを試してください" - --#: ../src/resources/ui/nautilus-preferences-window.ui.h:1 -+#: src/resources/ui/nautilus-preferences-window.ui:12 -+#: src/resources/ui/nautilus-preferences-window.ui:60 -+#: src/resources/ui/nautilus-preferences-window.ui:120 - msgid "Always" - msgstr "常に" - --#: ../src/resources/ui/nautilus-preferences-window.ui.h:2 -+#: src/resources/ui/nautilus-preferences-window.ui:15 -+#: src/resources/ui/nautilus-preferences-window.ui:63 -+#: src/resources/ui/nautilus-preferences-window.ui:123 - msgid "Local Files Only" - msgstr "ローカルファイルのみ" - --#: ../src/resources/ui/nautilus-preferences-window.ui.h:3 -+#: src/resources/ui/nautilus-preferences-window.ui:18 -+#: src/resources/ui/nautilus-preferences-window.ui:66 -+#: src/resources/ui/nautilus-preferences-window.ui:126 - msgid "Never" - msgstr "しない" - --#: ../src/resources/ui/nautilus-preferences-window.ui.h:4 -+#: src/resources/ui/nautilus-preferences-window.ui:29 -+#: src/resources/ui/nautilus-preferences-window.ui:103 - msgid "Small" - msgstr "小" - --#: ../src/resources/ui/nautilus-preferences-window.ui.h:5 -+#: src/resources/ui/nautilus-preferences-window.ui:32 -+#: src/resources/ui/nautilus-preferences-window.ui:106 - msgid "Standard" - msgstr "中" - --#: ../src/resources/ui/nautilus-preferences-window.ui.h:6 -+#: src/resources/ui/nautilus-preferences-window.ui:35 -+#: src/resources/ui/nautilus-preferences-window.ui:109 - msgid "Large" - msgstr "大" - --#: ../src/resources/ui/nautilus-preferences-window.ui.h:9 -+#: src/resources/ui/nautilus-preferences-window.ui:77 - msgid "By Name" - msgstr "名前順" - --#: ../src/resources/ui/nautilus-preferences-window.ui.h:10 -+#: src/resources/ui/nautilus-preferences-window.ui:80 - msgid "By Size" - msgstr "サイズ順" - --#: ../src/resources/ui/nautilus-preferences-window.ui.h:11 -+#: src/resources/ui/nautilus-preferences-window.ui:83 - msgid "By Type" - msgstr "種類順" - --#: ../src/resources/ui/nautilus-preferences-window.ui.h:12 -+#: src/resources/ui/nautilus-preferences-window.ui:86 - msgid "By Modification Date" - msgstr "更新日時順" - --#: ../src/resources/ui/nautilus-preferences-window.ui.h:13 -+#: src/resources/ui/nautilus-preferences-window.ui:89 - msgid "By Access Date" - msgstr "アクセス日時順" - --#: ../src/resources/ui/nautilus-preferences-window.ui.h:14 -+#: src/resources/ui/nautilus-preferences-window.ui:92 - msgid "By Trashed Date" - msgstr "ゴミ箱への移動日時順" - --#: ../src/resources/ui/nautilus-preferences-window.ui.h:15 -+#: src/resources/ui/nautilus-preferences-window.ui:137 - msgid "100 KB" - msgstr "100 KB" - --#: ../src/resources/ui/nautilus-preferences-window.ui.h:16 -+#: src/resources/ui/nautilus-preferences-window.ui:140 - msgid "500 KB" - msgstr "500 KB" - --#: ../src/resources/ui/nautilus-preferences-window.ui.h:17 -+#: src/resources/ui/nautilus-preferences-window.ui:143 - msgid "1 MB" - msgstr "1 MB" - --#: ../src/resources/ui/nautilus-preferences-window.ui.h:18 -+#: src/resources/ui/nautilus-preferences-window.ui:146 - msgid "3 MB" - msgstr "3 MB" - --#: ../src/resources/ui/nautilus-preferences-window.ui.h:19 -+#: src/resources/ui/nautilus-preferences-window.ui:149 - msgid "5 MB" - msgstr "5 MB" - --#: ../src/resources/ui/nautilus-preferences-window.ui.h:20 -+#: src/resources/ui/nautilus-preferences-window.ui:152 - msgid "10 MB" - msgstr "10 MB" - --#: ../src/resources/ui/nautilus-preferences-window.ui.h:21 -+#: src/resources/ui/nautilus-preferences-window.ui:155 - msgid "100 MB" - msgstr "100 MB" - --#: ../src/resources/ui/nautilus-preferences-window.ui.h:22 -+#: src/resources/ui/nautilus-preferences-window.ui:158 - msgid "1 GB" - msgstr "1 GB" - --#: ../src/resources/ui/nautilus-preferences-window.ui.h:23 -+#: src/resources/ui/nautilus-preferences-window.ui:161 - msgid "2 GB" - msgstr "2 GB" - --#: ../src/resources/ui/nautilus-preferences-window.ui.h:24 -+#: src/resources/ui/nautilus-preferences-window.ui:164 - msgid "4 GB" - msgstr "4 GB" - --#: ../src/resources/ui/nautilus-preferences-window.ui.h:25 -+#: src/resources/ui/nautilus-preferences-window.ui:170 - msgid "Preferences" - msgstr "設定" - --#: ../src/resources/ui/nautilus-preferences-window.ui.h:26 --#: ../src/resources/ui/nautilus-toolbar-view-menu.ui.h:1 -+#: src/resources/ui/nautilus-preferences-window.ui:198 -+#: src/resources/ui/nautilus-toolbar-view-menu.ui:98 - msgid "Sort" - msgstr "並べ替え" - --#: ../src/resources/ui/nautilus-preferences-window.ui.h:27 -+#: src/resources/ui/nautilus-preferences-window.ui:212 - msgid "Sort _folders before files" - msgstr "フォルダーをファイルより前に配置する(_F)" - --#: ../src/resources/ui/nautilus-preferences-window.ui.h:28 -+#: src/resources/ui/nautilus-preferences-window.ui:258 - msgid "Allow folders to be _expanded" - msgstr "フォルダーを展開可能にする(_E)" - --#: ../src/resources/ui/nautilus-preferences-window.ui.h:29 -+#: src/resources/ui/nautilus-preferences-window.ui:290 - msgid "Icon View Captions" - msgstr "アイコン表示のキャプション" - --#: ../src/resources/ui/nautilus-preferences-window.ui.h:30 -+#: src/resources/ui/nautilus-preferences-window.ui:306 - msgid "" - "Add information to be displayed beneath file and folder names.\n" - "More information will appear when zooming closer." --msgstr "" --"ファイル/フォルダー名の下に表示する表示する情報を追加できます。\n" -+msgstr "ファイル/フォルダー名の下に表示する表示する情報を追加できます。\n" - "拡大するとより多くの情報が表示されます。" - --#: ../src/resources/ui/nautilus-preferences-window.ui.h:32 -+#. Translators: This is an ordinal number -+#: src/resources/ui/nautilus-preferences-window.ui:425 - msgctxt "the n-th position of an icon caption" - msgid "Second" - msgstr "2番目" - --#: ../src/resources/ui/nautilus-preferences-window.ui.h:33 -+#. Translators: This is an ordinal number -+#: src/resources/ui/nautilus-preferences-window.ui:440 - msgctxt "the n-th position of an icon caption" - msgid "Third" - msgstr "3番目" - --#: ../src/resources/ui/nautilus-preferences-window.ui.h:34 -+#. Translators: This is an ordinal number -+#: src/resources/ui/nautilus-preferences-window.ui:455 - msgctxt "the n-th position of an icon caption" - msgid "First" - msgstr "1番目" - --#: ../src/resources/ui/nautilus-preferences-window.ui.h:35 -+#: src/resources/ui/nautilus-preferences-window.ui:489 - msgid "Views" - msgstr "表示" - --#: ../src/resources/ui/nautilus-preferences-window.ui.h:36 -+#: src/resources/ui/nautilus-preferences-window.ui:512 - msgid "Open Action" - msgstr "開き方" - --#: ../src/resources/ui/nautilus-preferences-window.ui.h:37 -+#: src/resources/ui/nautilus-preferences-window.ui:526 - msgid "_Single click to open items" - msgstr "シングルクリックでアイテムを開く(_S)" - --#: ../src/resources/ui/nautilus-preferences-window.ui.h:38 -+#: src/resources/ui/nautilus-preferences-window.ui:544 - msgid "_Double click to open items" - msgstr "ダブルクリックでアイテムを開く(_D)" - --#: ../src/resources/ui/nautilus-preferences-window.ui.h:39 -+#: src/resources/ui/nautilus-preferences-window.ui:577 - msgid "Link Creation" - msgstr "リンクの作成" - --#: ../src/resources/ui/nautilus-preferences-window.ui.h:40 -+#: src/resources/ui/nautilus-preferences-window.ui:591 - msgid "Show action to create symbolic _links" - msgstr "シンボリックリンクを作成するアクションを表示する(_L)" - --#: ../src/resources/ui/nautilus-preferences-window.ui.h:41 -+#: src/resources/ui/nautilus-preferences-window.ui:623 - msgid "Executable Text Files" - msgstr "実行可能なテキストファイル" - --#: ../src/resources/ui/nautilus-preferences-window.ui.h:42 -+#: src/resources/ui/nautilus-preferences-window.ui:637 - msgid "_Display them" - msgstr "内容を表示する(_D)" - --#: ../src/resources/ui/nautilus-preferences-window.ui.h:43 -+#: src/resources/ui/nautilus-preferences-window.ui:655 - msgid "_Run them" - msgstr "実行する(_R)" - --#: ../src/resources/ui/nautilus-preferences-window.ui.h:44 -+#: src/resources/ui/nautilus-preferences-window.ui:673 - msgid "_Ask what to do" - msgstr "どうするか確認する(_A)" - --#: ../src/resources/ui/nautilus-preferences-window.ui.h:46 -+#: src/resources/ui/nautilus-preferences-window.ui:720 - msgid "Ask before _emptying the Trash" - msgstr "ゴミ箱を空にする前に確認する(_E)" - --#: ../src/resources/ui/nautilus-preferences-window.ui.h:47 -+#: src/resources/ui/nautilus-preferences-window.ui:737 - msgid "Show action to _permanently delete files and folders" - msgstr "ファイルやフォルダーを完全に削除するアクションを表示する(_P)" - --#: ../src/resources/ui/nautilus-preferences-window.ui.h:48 -+#: src/resources/ui/nautilus-preferences-window.ui:769 -+msgid "Compressed Files" -+msgstr "圧縮ファイル" -+ -+#: src/resources/ui/nautilus-preferences-window.ui:783 -+msgid "E_xtract the files on open" -+msgstr "ファイルを展開し開く(_X)" -+ -+#: src/resources/ui/nautilus-preferences-window.ui:815 - msgid "Behavior" - msgstr "動作" - --#: ../src/resources/ui/nautilus-preferences-window.ui.h:49 -+#: src/resources/ui/nautilus-preferences-window.ui:845 - msgid "Choose the order of information to appear in the list view." - msgstr "一覧表示で表示する情報の順番を選択してください。" - --#: ../src/resources/ui/nautilus-preferences-window.ui.h:50 -+#: src/resources/ui/nautilus-preferences-window.ui:883 - msgid "List Columns" - msgstr "一覧の項目" - --#: ../src/resources/ui/nautilus-preferences-window.ui.h:52 -+#: src/resources/ui/nautilus-preferences-window.ui:923 - msgid "Search in subfolders:" - msgstr "サブフォルダー内の検索:" - --#: ../src/resources/ui/nautilus-preferences-window.ui.h:53 -+#: src/resources/ui/nautilus-preferences-window.ui:934 - msgid "_On this computer only" - msgstr "このコンピューターのフォルダーのみ(_O)" - --#: ../src/resources/ui/nautilus-preferences-window.ui.h:54 -+#: src/resources/ui/nautilus-preferences-window.ui:951 - msgid "_All locations" - msgstr "すべての場所(_A)" - --#: ../src/resources/ui/nautilus-preferences-window.ui.h:55 -+#: src/resources/ui/nautilus-preferences-window.ui:968 - msgid "_Never" - msgstr "しない(_N)" - --#: ../src/resources/ui/nautilus-preferences-window.ui.h:56 -+#: src/resources/ui/nautilus-preferences-window.ui:1000 - msgid "Thumbnails" - msgstr "サムネイル" - --#: ../src/resources/ui/nautilus-preferences-window.ui.h:57 -+#: src/resources/ui/nautilus-preferences-window.ui:1016 - msgid "Show thumbnails:" - msgstr "サムネイルの表示:" - --#: ../src/resources/ui/nautilus-preferences-window.ui.h:58 -+#: src/resources/ui/nautilus-preferences-window.ui:1027 - msgid "_Files on this computer only" - msgstr "このコンピューターのファイルのみ(_F)" - --#: ../src/resources/ui/nautilus-preferences-window.ui.h:59 -+#: src/resources/ui/nautilus-preferences-window.ui:1044 - msgid "A_ll files" - msgstr "すべてのファイル(_L)" - --#: ../src/resources/ui/nautilus-preferences-window.ui.h:60 -+#: src/resources/ui/nautilus-preferences-window.ui:1061 - msgid "N_ever" - msgstr "しない(_E)" - --#: ../src/resources/ui/nautilus-preferences-window.ui.h:61 -+#: src/resources/ui/nautilus-preferences-window.ui:1085 - msgid "Onl_y for files smaller than:" - msgstr "表示するファイルの最大サイズ(_Y):" - --#: ../src/resources/ui/nautilus-preferences-window.ui.h:62 -+#: src/resources/ui/nautilus-preferences-window.ui:1138 - msgid "File count" - msgstr "ファイル数の算出" - --#: ../src/resources/ui/nautilus-preferences-window.ui.h:63 -+#: src/resources/ui/nautilus-preferences-window.ui:1154 - msgid "Count number of files in folders:" - msgstr "フォルダー内のファイル数の算出:" - --#: ../src/resources/ui/nautilus-preferences-window.ui.h:64 -+#: src/resources/ui/nautilus-preferences-window.ui:1165 - msgid "F_olders in this computer only" - msgstr "このコンピューターのフォルダーのみ(_O)" - --#: ../src/resources/ui/nautilus-preferences-window.ui.h:65 -+#: src/resources/ui/nautilus-preferences-window.ui:1182 - msgid "All folder_s" - msgstr "すべてのフォルダー(_S)" - --#: ../src/resources/ui/nautilus-preferences-window.ui.h:66 -+#: src/resources/ui/nautilus-preferences-window.ui:1199 - msgid "Ne_ver" - msgstr "しない(_V)" - --#: ../src/resources/ui/nautilus-preferences-window.ui.h:67 -+#: src/resources/ui/nautilus-preferences-window.ui:1231 - msgid "Search & Preview" - msgstr "検索とプレビュー" - --#: ../src/resources/ui/nautilus-rename-file-popover.ui.h:2 --msgid "_Rename" --msgstr "変更(_R)" -- --#: ../src/resources/ui/nautilus-search-popover.ui.h:1 -+#: src/resources/ui/nautilus-search-popover.ui:18 - msgid "When" - msgstr "日付" - --#: ../src/resources/ui/nautilus-search-popover.ui.h:2 -+#: src/resources/ui/nautilus-search-popover.ui:45 - msgid "Select a date" - msgstr "日付を選択する" - --#: ../src/resources/ui/nautilus-search-popover.ui.h:4 -+#: src/resources/ui/nautilus-search-popover.ui:67 - msgid "Clear the currently selected date" - msgstr "選択中の日付をクリアする" - --#: ../src/resources/ui/nautilus-search-popover.ui.h:6 -+#: src/resources/ui/nautilus-search-popover.ui:127 - msgid "Since…" - msgstr "期間…" - --#: ../src/resources/ui/nautilus-search-popover.ui.h:7 -+#: src/resources/ui/nautilus-search-popover.ui:194 - msgid "Last _modified" - msgstr "最終更新日時(_M)" - --#: ../src/resources/ui/nautilus-search-popover.ui.h:8 -+#: src/resources/ui/nautilus-search-popover.ui:211 - msgid "Last _used" - msgstr "最終使用日時(_U)" - --#: ../src/resources/ui/nautilus-search-popover.ui.h:9 -+#: src/resources/ui/nautilus-search-popover.ui:240 - msgid "What" - msgstr "種類" - --#: ../src/resources/ui/nautilus-search-popover.ui.h:10 -+#: src/resources/ui/nautilus-search-popover.ui:264 - msgid "Which file types will be searched" - msgstr "検索対象のファイルの種類を選択する" - --#: ../src/resources/ui/nautilus-search-popover.ui.h:13 -+#: src/resources/ui/nautilus-search-popover.ui:359 - msgid "Full Text" - msgstr "フルテキスト" - --#: ../src/resources/ui/nautilus-search-popover.ui.h:14 -+#: src/resources/ui/nautilus-search-popover.ui:363 - msgid "Search on the file content and name" - msgstr "ファイルの内容とファイル名を検索する" - --#: ../src/resources/ui/nautilus-search-popover.ui.h:15 -+#: src/resources/ui/nautilus-search-popover.ui:377 - msgid "File Name" - msgstr "ファイル名" - --#: ../src/resources/ui/nautilus-search-popover.ui.h:16 -+#: src/resources/ui/nautilus-search-popover.ui:381 - msgid "Search only on the file name" - msgstr "ファイル名のみ検索する" - --#: ../src/resources/ui/nautilus-toolbar-action-menu.ui.h:2 --msgid "New _Tab" --msgstr "新しいタブ(_T)" -+#: src/resources/ui/nautilus-toolbar-menu.ui:23 -+msgid "New folder" -+msgstr "新しいフォルダー" - --#: ../src/resources/ui/nautilus-toolbar-action-menu.ui.h:4 --msgid "Enter _Location" --msgstr "場所を入力(_L)" -+#: src/resources/ui/nautilus-toolbar-menu.ui:42 -+msgid "Bookmark this location" -+msgstr "この場所をブックマーク" - --#: ../src/resources/ui/nautilus-toolbar-action-menu.ui.h:5 --msgid "_Bookmark this Location" --msgstr "この場所をブックマーク(_B)" -+#: src/resources/ui/nautilus-toolbar-menu.ui:61 -+msgid "New tab" -+msgstr "新しいタブ" - --#: ../src/resources/ui/nautilus-toolbar.ui.h:1 -+#: src/resources/ui/nautilus-toolbar.ui:92 - msgid "Action menu" - msgstr "アクションメニュー" - --#: ../src/resources/ui/nautilus-toolbar.ui.h:2 -+#: src/resources/ui/nautilus-toolbar.ui:93 - msgid "Open action menu" - msgstr "アクションメニューを開きます" - --#: ../src/resources/ui/nautilus-toolbar.ui.h:3 --msgid "View menu" --msgstr "表示メニュー" -+#: src/resources/ui/nautilus-toolbar.ui:117 -+msgid "View mode toggle" -+msgstr "表示モードの切り替え" - --#: ../src/resources/ui/nautilus-toolbar.ui.h:4 --msgid "Open view menu" --msgstr "表示メニューを開きます" -+#: src/resources/ui/nautilus-toolbar.ui:118 -+msgid "Toggle between grid and list view" -+msgstr "グリッド表示と一覧表示の切り替え" - --#: ../src/resources/ui/nautilus-toolbar.ui.h:6 -+#: src/resources/ui/nautilus-toolbar.ui:144 - msgid "Search files" - msgstr "ファイルを検索します" - --#: ../src/resources/ui/nautilus-toolbar.ui.h:7 -+#: src/resources/ui/nautilus-toolbar.ui:176 - msgid "Operations in progress" - msgstr "処理中です" - --#: ../src/resources/ui/nautilus-toolbar.ui.h:8 -+#: src/resources/ui/nautilus-toolbar.ui:177 - msgid "Open operations in progress" - msgstr "アイテムを開いています" - -+#: src/resources/ui/nautilus-toolbar-view-menu.ui:21 -+msgid "Zoom out" -+msgstr "ズームアウト" -+ -+#: src/resources/ui/nautilus-toolbar-view-menu.ui:40 -+msgid "Reset zoom" -+msgstr "ズームをリセットする" -+ -+#: src/resources/ui/nautilus-toolbar-view-menu.ui:58 -+msgid "Zoom in" -+msgstr "ズームイン" -+ - #. This is used to sort by name in the toolbar view menu --#: ../src/resources/ui/nautilus-toolbar-view-menu.ui.h:3 -+#: src/resources/ui/nautilus-toolbar-view-menu.ui:109 - msgctxt "Sort Criterion" --msgid "_Name" --msgstr "名前(_N)" -+msgid "_A-Z" -+msgstr "昇順(_A)" - --#: ../src/resources/ui/nautilus-toolbar-view-menu.ui.h:4 -+#. This is used to sort by name, in descending order in the toolbar view menu -+#: src/resources/ui/nautilus-toolbar-view-menu.ui:118 -+msgctxt "Sort Criterion" -+msgid "_Z-A" -+msgstr "降順(_Z)" -+ -+#: src/resources/ui/nautilus-toolbar-view-menu.ui:127 -+msgid "Last _Modified" -+msgstr "最終更新日時(_M)" -+ -+#: src/resources/ui/nautilus-toolbar-view-menu.ui:136 -+msgid "_First Modified" -+msgstr "初回更新日時(_F)" -+ -+#: src/resources/ui/nautilus-toolbar-view-menu.ui:145 - msgid "_Size" - msgstr "サイズ(_S)" - --#: ../src/resources/ui/nautilus-toolbar-view-menu.ui.h:5 -+#: src/resources/ui/nautilus-toolbar-view-menu.ui:154 - msgid "_Type" - msgstr "種類(_T)" - --#: ../src/resources/ui/nautilus-toolbar-view-menu.ui.h:6 --msgid "Last _Modified" --msgstr "最終更新日時(_M)" -- --#: ../src/resources/ui/nautilus-toolbar-view-menu.ui.h:7 -+#: src/resources/ui/nautilus-toolbar-view-menu.ui:163 - msgid "Last _Trashed" - msgstr "削除日時(_T)" - --#: ../src/resources/ui/nautilus-toolbar-view-menu.ui.h:8 --msgid "Search _Relevance" --msgstr "検索の関連度(_R)" -- --#: ../src/resources/ui/nautilus-toolbar-view-menu.ui.h:9 --msgid "Re_verse Order" --msgstr "逆順(_V)" -- --#: ../src/resources/ui/nautilus-toolbar-view-menu.ui.h:10 -+#: src/resources/ui/nautilus-toolbar-view-menu.ui:182 - msgid "_Visible Columns…" - msgstr "表示する項目(_V)" - --#: ../src/resources/ui/nautilus-toolbar-view-menu.ui.h:11 -+#: src/resources/ui/nautilus-toolbar-view-menu.ui:190 - msgid "Show _Hidden Files" - msgstr "隠しファイルを表示する(_H)" - --#: ../src/resources/ui/nautilus-toolbar-view-menu.ui.h:12 --msgid "_Reload" --msgstr "再読み込み(_R)" -+#: src/resources/ui/nautilus-toolbar-view-menu.ui:198 -+msgid "R_eload" -+msgstr "リロード(_E)" - --#: ../src/resources/ui/nautilus-toolbar-view-menu.ui.h:13 -+#: src/resources/ui/nautilus-toolbar-view-menu.ui:206 - msgid "St_op" - msgstr "停止(_O)" - - # これはWindowタイトルらしいのでニーモニック不要? - # そもそもUIとして表示できるかどうかも不明 --#: ../src/resources/ui/nautilus-window.ui.h:1 -+#: src/resources/ui/nautilus-window.ui:5 - msgid "_Files" - msgstr "ファイル" - --#: ../src/gtk/nautilusgtkplacesview.c:880 -+#: src/gtk/nautilusgtkplacesview.c:891 - msgid "Searching for network locations" - msgstr "ネットワークの場所を探しています" - --#: ../src/gtk/nautilusgtkplacesview.c:887 -+#: src/gtk/nautilusgtkplacesview.c:898 - msgid "No network locations found" - msgstr "ネットワークの場所が見つかりませんでした" - --#: ../src/gtk/nautilusgtkplacesview.c:1052 -+#: src/gtk/nautilusgtkplacesview.c:1079 - msgid "Computer" - msgstr "コンピューター" - - #. Restore from Cancel to Connect --#: ../src/gtk/nautilusgtkplacesview.c:1179 --#: ../src/gtk/nautilusgtkplacesview.ui.h:7 -+#: src/gtk/nautilusgtkplacesview.c:1208 src/gtk/nautilusgtkplacesview.ui:449 - msgid "Con_nect" - msgstr "接続する(_N)" - - #. if it wasn't cancelled show a dialog --#: ../src/gtk/nautilusgtkplacesview.c:1298 -+#: src/gtk/nautilusgtkplacesview.c:1328 - msgid "Unable to unmount volume" - msgstr "ボリュームをアンマウントできません" - - #. Allow to cancel the operation --#: ../src/gtk/nautilusgtkplacesview.c:1380 -+#: src/gtk/nautilusgtkplacesview.c:1429 - msgid "Cance_l" - msgstr "キャンセル(_L)" - --#: ../src/gtk/nautilusgtkplacesview.c:1587 -+#: src/gtk/nautilusgtkplacesview.c:1651 - msgid "Open in New _Tab" - msgstr "新しいタブで開く(_T)" - --#: ../src/gtk/nautilusgtkplacesview.c:1598 -+#: src/gtk/nautilusgtkplacesview.c:1662 - msgid "Open in New _Window" - msgstr "新しいウィンドウで開く(_W)" - --#: ../src/gtk/nautilusgtkplacesview.c:1797 -+#: src/gtk/nautilusgtkplacesview.c:1837 - msgid "Unable to get remote server location" - msgstr "指定したリモートサーバーの場所にアクセスできません" - --#: ../src/gtk/nautilusgtkplacesview.c:1934 --#: ../src/gtk/nautilusgtkplacesview.c:1943 -+#: src/gtk/nautilusgtkplacesview.c:1976 src/gtk/nautilusgtkplacesview.c:1985 - msgid "Networks" - msgstr "ネットワーク" - --#: ../src/gtk/nautilusgtkplacesview.c:1934 --#: ../src/gtk/nautilusgtkplacesview.c:1943 -+#: src/gtk/nautilusgtkplacesview.c:1976 src/gtk/nautilusgtkplacesview.c:1985 - msgid "On This Computer" - msgstr "このコンピューター" - - #. Translators: respectively, free and total space of the drive. The plural form - #. * should be based on the free space available. - #. * i.e. 1 GB / 24 GB available. --#. --#: ../src/gtk/nautilusgtkplacesviewrow.c:134 -+#. -+#: src/gtk/nautilusgtkplacesviewrow.c:136 - #, c-format - msgid "%s / %s available" - msgid_plural "%s / %s available" - msgstr[0] "%s / %s の空き容量" - --#: ../src/gtk/nautilusgtkplacesviewrow.c:472 -+#: src/gtk/nautilusgtkplacesviewrow.c:483 - msgid "Disconnect" - msgstr "切断" - --#: ../src/gtk/nautilusgtkplacesviewrow.c:472 --#: ../src/gtk/nautilusgtkplacesviewrow.ui.h:1 -+#: src/gtk/nautilusgtkplacesviewrow.c:483 -+#: src/gtk/nautilusgtkplacesviewrow.ui:72 - msgid "Unmount" - msgstr "アンマウント" - --#. Translators: Server as any successfully connected network address --#: ../src/gtk/nautilusgtkplacesview.ui.h:2 --msgid "No recent servers found" --msgstr "最近使用したサーバーなし" -- --#: ../src/gtk/nautilusgtkplacesview.ui.h:3 --msgid "Recent Servers" --msgstr "最近使用したサーバー" -- --#: ../src/gtk/nautilusgtkplacesview.ui.h:4 --msgid "No results found" --msgstr "見つかりませんでした" -- --#: ../src/gtk/nautilusgtkplacesview.ui.h:6 --msgid "Connect to _Server" --msgstr "サーバーへ接続(_S)" -- --#: ../src/gtk/nautilusgtkplacesview.ui.h:8 --msgid "Enter server address…" --msgstr "サーバーのアドレスを入力…" -- --#~ msgid "The mime type of the file." --#~ msgstr "ファイルの MIME 型" -- --#~ msgid "Unable to rename desktop file" --#~ msgstr "デスクトップのファイル名を変更できません" -+#: src/gtk/nautilusgtkplacesview.ui:30 -+msgid "Server Addresses" -+msgstr "サーバーのアドレス" - --#~ msgid "Untitled %s" --#~ msgstr "無題の%s" -+#: src/gtk/nautilusgtkplacesview.ui:43 -+msgid "" -+"Server addresses are made up of a protocol prefix and an address. Examples:" -+msgstr "サーバーのアドレスは、プロトコルのプレフィックスとアドレスで構成されます。例:" - --#~ msgid "Nautilus 3.0 deprecated this directory and tried migrating this configuration to ~/.config/nautilus" --#~ msgstr "Nautilus 3.0 ではこのディレクトリの使用は非推奨となりました。~/.config/nautilus への設定内容の移行を試みました。" -+#: src/gtk/nautilusgtkplacesview.ui:57 -+msgid "smb://foo.example.com, ssh://192.168.0.1" -+msgstr "smb://foo.example.com, ssh://192.168.0.1" - --#~ msgid "No bookmarks defined" --#~ msgstr "ブックマークは定義されていません" -+#: src/gtk/nautilusgtkplacesview.ui:78 -+msgid "Available Protocols" -+msgstr "利用可能なプロトコル" - --#~ msgid "Remove" --#~ msgstr "削除" -+#: src/gtk/nautilusgtkplacesview.ui:92 -+msgid "AppleTalk" -+msgstr "AppleTalk" - --#~ msgid "Move Up" --#~ msgstr "上げる" -+#: src/gtk/nautilusgtkplacesview.ui:103 -+msgid "File Transfer Protocol" -+msgstr "File Transfer Protocol" - --#~ msgid "Move Down" --#~ msgstr "下げる" -+#: src/gtk/nautilusgtkplacesview.ui:114 -+msgid "Network File System" -+msgstr "Network File System" - --#~ msgctxt "Bookmark" --#~ msgid "_Name" --#~ msgstr "名前(_N)" -+#: src/gtk/nautilusgtkplacesview.ui:125 -+msgid "Samba" -+msgstr "Samba" - --#~ msgid "Files Preferences" --#~ msgstr "設定" -+#: src/gtk/nautilusgtkplacesview.ui:136 -+msgid "SSH File Transfer Protocol" -+msgstr "SSH File Transfer Protocol" - --#~ msgid "Default View" --#~ msgstr "デフォルトの表示" -+#: src/gtk/nautilusgtkplacesview.ui:147 -+msgid "WebDAV" -+msgstr "WebDAV" - --#~ msgid "_Arrange items:" --#~ msgstr "アイテムの並び順(_A):" -+#: src/gtk/nautilusgtkplacesview.ui:158 -+msgid "Prefix" -+msgstr "プレフィックス" - --#~ msgid "_Run executable text files when they are opened" --#~ msgstr "開いたら実行可能なテキストファイルを実行する(_R)" -+#. Translators: do not translate ftp:// and ftps:// -+#: src/gtk/nautilusgtkplacesview.ui:183 -+msgid "ftp:// or ftps://" -+msgstr "ftp:// または ftps://" - --#~ msgid "_View executable text files when they are opened" --#~ msgstr "開いたら実行可能なテキストファイルの中身を表示する(_V)" -+#: src/gtk/nautilusgtkplacesview.ui:205 -+msgid "smb://" -+msgstr "smb://" - --#~ msgid "_Ask each time" --#~ msgstr "毎回確認する(_A)" -+#. Translators: do not translate sftp:// and ssh:// -+#: src/gtk/nautilusgtkplacesview.ui:216 -+msgid "sftp:// or ssh://" -+msgstr "sftp:// または ssh://" - --#~ msgid "Navigate folders in a tree" --#~ msgstr "ツリー形式でフォルダーを表示する" -+#. Translators: do not translate dav:// and davs:// -+#: src/gtk/nautilusgtkplacesview.ui:227 -+msgid "dav:// or davs://" -+msgstr "dav:// または davs://" - --#~ msgid "Display" --#~ msgstr "アイテム" -+#. Translators: Server as any successfully connected network address -+#: src/gtk/nautilusgtkplacesview.ui:267 -+msgid "No recent servers found" -+msgstr "最近使用したサーバーなし" - --#~ msgid "File Type" --#~ msgstr "ファイルの種類" -+#: src/gtk/nautilusgtkplacesview.ui:290 -+msgid "Recent Servers" -+msgstr "最近使用したサーバー" - --#~ msgid "Any" --#~ msgstr "任意" -+#: src/gtk/nautilusgtkplacesview.ui:393 -+msgid "No results found" -+msgstr "見つかりませんでした" - --#~ msgid "Remove this criterion from the search" --#~ msgstr "この検索条件を削除します" -+#: src/gtk/nautilusgtkplacesview.ui:439 -+msgid "Connect to _Server" -+msgstr "サーバーへ接続(_S)" - --#~ msgid "Current" --#~ msgstr "現在" -+#: src/gtk/nautilusgtkplacesview.ui:472 -+msgid "Enter server address…" -+msgstr "サーバーのアドレスを入力…" - --#~ msgid "Add a new criterion to this search" --#~ msgstr "この検索に新しい条件を追加します" --- -2.12.0 - diff --git a/SOURCES/nautilus_785292.patch b/SOURCES/nautilus_785292.patch deleted file mode 100644 index ae46870..0000000 --- a/SOURCES/nautilus_785292.patch +++ /dev/null @@ -1,64 +0,0 @@ -From 3651dd25ea23d7052d9f91672a3d586887e6277e Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Nikola=20Forr=C3=B3?= -Date: Fri, 6 Oct 2017 12:15:15 +0200 -Subject: [PATCH] Add missing xmp_init() to nautilus-desktop main() - -Also add missing xmp_terminate(). ---- - nautilus-desktop/main-desktop.c | 11 +++++++++++ - src/nautilus-main.c | 4 ++++ - 2 files changed, 15 insertions(+) - -diff --git a/nautilus-desktop/main-desktop.c b/nautilus-desktop/main-desktop.c -index 57abeae..c394763 100644 ---- a/nautilus-desktop/main-desktop.c -+++ b/nautilus-desktop/main-desktop.c -@@ -13,6 +13,10 @@ - #include - #include - -+#ifdef HAVE_EXEMPI -+#include -+#endif -+ - int - main (int argc, - char *argv[]) -@@ -29,6 +33,9 @@ main (int argc, - - gdk_set_allowed_backends ("x11"); - -+#ifdef HAVE_EXEMPI -+ xmp_init (); -+#endif - nautilus_register_resource (); - application = nautilus_desktop_application_new (); - -@@ -37,5 +44,9 @@ main (int argc, - - g_object_unref (application); - -+#ifdef HAVE_EXEMPI -+ xmp_terminate (); -+#endif -+ - return retval; - } -diff --git a/src/nautilus-main.c b/src/nautilus-main.c -index 1471e86..88d7ed2 100644 ---- a/src/nautilus-main.c -+++ b/src/nautilus-main.c -@@ -104,6 +104,10 @@ main (int argc, - - g_object_unref (application); - -+#ifdef HAVE_EXEMPI -+ xmp_terminate (); -+#endif -+ - eel_debug_shut_down (); - - return retval; --- -2.13.6 - diff --git a/SPECS/nautilus.spec b/SPECS/nautilus.spec index f821402..4822afd 100644 --- a/SPECS/nautilus.spec +++ b/SPECS/nautilus.spec @@ -7,20 +7,23 @@ %global gsettings_desktop_schemas_version 3.8.0 Name: nautilus -Version: 3.22.3 -Release: 5%{?dist} +Version: 3.26.3.1 +Release: 2%{?dist} Summary: File manager for GNOME -License: GPLv2+ +License: GPLv3+ URL: https://wiki.gnome.org/Apps/Nautilus -Source0: https://download.gnome.org/sources/%{name}/3.22/%{name}-%{version}.tar.xz +Source0: https://download.gnome.org/sources/%{name}/3.26/%{name}-%{version}.tar.xz # Don't use gnome-autoar which we don't currently have in RHEL 7.4 Patch0: 0001-general-remove-gnome-autoar.patch -Patch1: 0001-translation-Add-Japanese.patch -Patch2: 0001-mime-actions-use-file-metadata-for-trusting-desktop-.patch -Patch3: nautilus_785292.patch +Patch1: 0001-meson-Request-c11-when-possible.patch +Patch2: 0001-file-Make-sure-we-include-necessary-headers.patch +Patch3: 0001-Meson-Make-sure-__GNU_SOURCE-is-set.patch +Patch4: 0001-meson-Use-python2-for-postinstall.patch +BuildRequires: gtk-doc +BuildRequires: meson BuildRequires: pkgconfig(exempi-2.0) >= %{exempi_version} BuildRequires: pkgconfig(glib-2.0) >= %{glib2_version} BuildRequires: pkgconfig(gnome-desktop-3.0) >= %{gnome_desktop3_version} @@ -34,11 +37,8 @@ BuildRequires: pkgconfig(x11) BuildRequires: /usr/bin/appstream-util BuildRequires: desktop-file-utils BuildRequires: gettext -BuildRequires: intltool >= 0.40.6-2 BuildRequires: libselinux-devel # For patch0 -BuildRequires: autoconf automake libtool -BuildRequires: autoconf-archive BuildRequires: gettext-devel BuildRequires: gtk-doc @@ -79,28 +79,15 @@ This package provides libraries and header files needed for developing nautilus extensions. %prep -%setup -q -%patch0 -p1 -%patch1 -p1 -%patch2 -p1 -%patch3 -p1 +%autosetup -p1 %build -# For patch0 -autoreconf -fi - -%configure - -# drop unneeded direct library deps with --as-needed -# libtool doesn't make this easy, so we do it the hard way -sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0 /g' libtool - -make %{?_smp_mflags} V=1 +# RHEL 7 doesn't have python3... +%meson -Denable-gtk-doc=true +%meson_build %install -%make_install - -find $RPM_BUILD_ROOT -name '*.la' -delete +%meson_install # Update the screenshot shown in the software center # @@ -108,7 +95,7 @@ find $RPM_BUILD_ROOT -name '*.la' -delete # # See http://people.freedesktop.org/~hughsient/appdata/#screenshots for more details. # -appstream-util replace-screenshots $RPM_BUILD_ROOT%{_datadir}/appdata/org.gnome.Nautilus.appdata.xml \ +appstream-util replace-screenshots $RPM_BUILD_ROOT%{_datadir}/metainfo/org.gnome.Nautilus.appdata.xml \ https://raw.githubusercontent.com/hughsie/fedora-appstream/master/screenshots-extra/org.gnome.Nautilus/a.png \ https://raw.githubusercontent.com/hughsie/fedora-appstream/master/screenshots-extra/org.gnome.Nautilus/b.png \ https://raw.githubusercontent.com/hughsie/fedora-appstream/master/screenshots-extra/org.gnome.Nautilus/c.png @@ -116,7 +103,7 @@ appstream-util replace-screenshots $RPM_BUILD_ROOT%{_datadir}/appdata/org.gnome. %find_lang %name %check -appstream-util validate-relax --nonet $RPM_BUILD_ROOT%{_datadir}/appdata/org.gnome.Nautilus.appdata.xml +appstream-util validate-relax --nonet $RPM_BUILD_ROOT%{_datadir}/metainfo/org.gnome.Nautilus.appdata.xml desktop-file-validate $RPM_BUILD_ROOT%{_datadir}/applications/*.desktop %postun @@ -132,9 +119,8 @@ glib-compile-schemas %{_datadir}/glib-2.0/schemas >&/dev/null || : %postun extensions -p /sbin/ldconfig %files -f %{name}.lang -%doc AUTHORS NEWS README -%license COPYING -%{_datadir}/appdata/org.gnome.Nautilus.appdata.xml +%doc NEWS README.md +%license LICENSE %{_datadir}/applications/* %{_bindir}/* %{_datadir}/dbus-1/services/org.gnome.Nautilus.service @@ -144,13 +130,14 @@ glib-compile-schemas %{_datadir}/glib-2.0/schemas >&/dev/null || : %{_datadir}/icons/hicolor/symbolic/apps/org.gnome.Nautilus-symbolic.svg %{_mandir}/man1/nautilus.1* %{_datadir}/glib-2.0/schemas/org.gnome.nautilus.gschema.xml +%{_datadir}/metainfo/org.gnome.Nautilus.appdata.xml %dir %{_libdir}/nautilus %dir %{_libdir}/nautilus/extensions-3.0 %{_libdir}/nautilus/extensions-3.0/libnautilus-sendto.so %{_sysconfdir}/xdg/autostart/nautilus-autostart.desktop %files extensions -%license COPYING.EXTENSIONS COPYING.LIB +%license libnautilus-extension/LICENSE %{_libdir}/libnautilus-extension.so.* %{_libdir}/girepository-1.0/*.typelib %dir %{_libdir}/nautilus @@ -165,6 +152,14 @@ glib-compile-schemas %{_datadir}/glib-2.0/schemas >&/dev/null || : %doc %{_datadir}/gtk-doc/html/libnautilus-extension/ %changelog +* Wed Jun 06 2018 Carlos Soriano - 3.26.3.1-2 +- Rework autoar patch and remove the trusted patch, as it's included +- Resolves: #1569738 + +* Wed Jun 06 2018 Richard Hughes - 3.26.3.1-1 +- Update to 3.26.3.1 +- Resolves: #1569738 + * Thu Nov 02 2017 Carlos Soriano 3.22.3-5 - Fix exempi not being initialized. Upstream bugzilla.gnome.org/785292 Resolves: #1496713