summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCosimo Cecchi <cosimoc@gnome.org>2008-04-01 10:01:22 +0000
committerCosimo Cecchi <cosimoc@src.gnome.org>2008-04-01 10:01:22 +0000
commit10053a33bc3ec3c95e5dcf3e372ddda5612ededc (patch)
treeb346f1bda3d78ab02b4117284239a0933b42cded /src
parent07810ad99d8407aecba6c5cfd2736685778eb006 (diff)
downloadnautilus-10053a33bc3ec3c95e5dcf3e372ddda5612ededc.tar.gz
Do not use contractions in strings. (#145356).
2008-04-01 Cosimo Cecchi <cosimoc@gnome.org> * libnautilus-private/nautilus-file-operations.c: (delete_dir), (prompt_empty_trash), (verify_destination), (copy_move_directory), (remove_target_recursively), (copy_move_file): * libnautilus-private/nautilus-mime-actions.c: (report_broken_symbolic_link), (activate_files): * libnautilus-private/nautilus-program-choosing.c: (application_cannot_open_location), (nautilus_launch_application), (nautilus_launch_desktop_file): * src/file-manager/fm-error-reporting.c: (fm_report_error_loading_directory), (fm_report_error_renaming_file), (fm_report_error_setting_group), (fm_report_error_setting_owner), (fm_report_error_setting_permissions): * src/file-manager/fm-properties-window.c: (fm_properties_window_drag_data_received), (create_permissions_page): * src/nautilus-application.c: (nautilus_application_startup): * src/nautilus-connect-server-dialog-main.c: (display_error_dialog): * src/nautilus-connect-server-dialog.c: (connect_to_server): * src/nautilus-emblem-sidebar.c: (nautilus_emblem_sidebar_delete_cb), (rename_dialog_response_cb): * src/nautilus-information-panel.c: (receive_dropped_uri_list): * src/nautilus-property-browser.c: (remove_pattern), (remove_emblem), (add_pattern_to_browser): * src/nautilus-window-manage-views.c: (display_view_selection_failure): Do not use contractions in strings. (#145356). svn path=/trunk/; revision=14017
Diffstat (limited to 'src')
-rw-r--r--src/file-manager/fm-error-reporting.c12
-rw-r--r--src/file-manager/fm-properties-window.c4
-rw-r--r--src/nautilus-application.c20
-rw-r--r--src/nautilus-connect-server-dialog-main.c2
-rw-r--r--src/nautilus-connect-server-dialog.c2
-rw-r--r--src/nautilus-emblem-sidebar.c4
-rw-r--r--src/nautilus-information-panel.c2
-rw-r--r--src/nautilus-property-browser.c8
-rw-r--r--src/nautilus-window-manage-views.c16
9 files changed, 35 insertions, 35 deletions
diff --git a/src/file-manager/fm-error-reporting.c b/src/file-manager/fm-error-reporting.c
index d7990034f..ace6e503a 100644
--- a/src/file-manager/fm-error-reporting.c
+++ b/src/file-manager/fm-error-reporting.c
@@ -60,11 +60,11 @@ fm_report_error_loading_directory (NautilusFile *file,
file_name);
break;
case G_IO_ERROR_NOT_FOUND:
- message = g_strdup_printf (_("\"%s\" couldn't be found. Perhaps it has recently been deleted."),
+ message = g_strdup_printf (_("\"%s\" could not be found. Perhaps it has recently been deleted."),
file_name);
break;
default:
- message = g_strdup_printf (_("Sorry, couldn't display all the contents of \"%s\": %s"), file_name,
+ message = g_strdup_printf (_("Sorry, could not display all the contents of \"%s\": %s"), file_name,
error->message);
}
} else {
@@ -134,7 +134,7 @@ fm_report_error_renaming_file (NautilusFile *file,
g_warning ("Hit unhandled case %s:%d in fm_report_error_renaming_file",
g_quark_to_string (error->domain), error->code);
/* fall through */
- message = g_strdup_printf (_("Sorry, couldn't rename \"%s\" to \"%s\": %s"),
+ message = g_strdup_printf (_("Sorry, could not rename \"%s\" to \"%s\": %s"),
original_name_truncated, new_name_truncated,
error->message);
}
@@ -177,7 +177,7 @@ fm_report_error_setting_group (NautilusFile *file,
g_warning ("Hit unhandled case %s:%d in fm_report_error_setting_group",
g_quark_to_string (error->domain), error->code);
/* fall through */
- message = g_strdup_printf (_("Sorry, couldn't change the group of \"%s\": %s"), file_name,
+ message = g_strdup_printf (_("Sorry, could not change the group of \"%s\": %s"), file_name,
error->message);
}
@@ -202,7 +202,7 @@ fm_report_error_setting_owner (NautilusFile *file,
file_name = nautilus_file_get_display_name (file);
- message = g_strdup_printf (_("Sorry, couldn't change the owner of \"%s\": %s"), file_name, error->message);
+ message = g_strdup_printf (_("Sorry, could not change the owner of \"%s\": %s"), file_name, error->message);
eel_show_error_dialog (_("The owner could not be changed."), message, parent_window);
@@ -224,7 +224,7 @@ fm_report_error_setting_permissions (NautilusFile *file,
file_name = nautilus_file_get_display_name (file);
- message = g_strdup_printf (_("Sorry, couldn't change the permissions of \"%s\": %s"), file_name, error->message);
+ message = g_strdup_printf (_("Sorry, could not change the permissions of \"%s\": %s"), file_name, error->message);
eel_show_error_dialog (_("The permissions could not be changed."), message, parent_window);
diff --git a/src/file-manager/fm-properties-window.c b/src/file-manager/fm-properties-window.c
index c8fad63e5..43c06a36d 100644
--- a/src/file-manager/fm-properties-window.c
+++ b/src/file-manager/fm-properties-window.c
@@ -533,7 +533,7 @@ fm_properties_window_drag_data_received (GtkWidget *widget, GdkDragContext *cont
if (!exactly_one) {
eel_show_error_dialog
- (_("You can't assign more than one custom icon at a time!"),
+ (_("You cannot assign more than one custom icon at a time!"),
_("Please drag just one image to set a custom icon."),
window);
} else {
@@ -4710,7 +4710,7 @@ create_permissions_page (FMPropertiesWindow *window)
if (!all_can_set_permissions (file_list)) {
add_prompt_and_separator (
GTK_VBOX (vbox),
- _("You are not the owner, so you can't change these permissions."));
+ _("You are not the owner, so you cannot change these permissions."));
}
page_table = GTK_TABLE (gtk_table_new (1, COLUMN_COUNT, FALSE));
diff --git a/src/nautilus-application.c b/src/nautilus-application.c
index 95546a4af..4911d26a7 100644
--- a/src/nautilus-application.c
+++ b/src/nautilus-application.c
@@ -586,18 +586,18 @@ nautilus_application_startup (NautilusApplication *application,
* this problem but we don't exactly understand why,
* since neither of the above causes explain it.
*/
- message = _("Nautilus can't be used now. "
+ message = _("Nautilus cannot be used now. "
"Running the command \"bonobo-slay\""
" from the console may fix the problem. If not,"
" you can try rebooting the computer or"
" installing Nautilus again.");
/* FIXME bugzilla.gnome.org 42536: The guesses and stuff here are lame. */
- detailed_message = _("Nautilus can't be used now. "
+ detailed_message = _("Nautilus cannot be used now. "
"Running the command \"bonobo-slay\" "
"from the console may fix the problem. If not, "
"you can try rebooting the computer or "
"installing Nautilus again.\n\n"
- "Bonobo couldn't locate the Nautilus_shell.server file. "
+ "Bonobo could not locate the Nautilus_shell.server file. "
"One cause of this seems to be an LD_LIBRARY_PATH "
"that does not include the bonobo-activation library's directory. "
"Another possible cause would be bad install "
@@ -606,7 +606,7 @@ nautilus_application_startup (NautilusApplication *application,
"Bonobo Activation and GConf processes, which may be needed by "
"other applications.\n\n"
"Sometimes killing bonobo-activation-server and gconfd fixes "
- "the problem, but we don't know why.\n\n"
+ "the problem, but we do not know why.\n\n"
"We have also seen this error when a faulty "
"version of bonobo-activation was installed.");
break;
@@ -622,8 +622,8 @@ nautilus_application_startup (NautilusApplication *application,
* current OAF. I guess I read the code wrong. Need to figure out when and make a
* good message.
*/
- message = _("Nautilus can't be used now, due to an unexpected error.");
- detailed_message = _("Nautilus can't be used now, due to an unexpected error "
+ message = _("Nautilus cannot be used now, due to an unexpected error.");
+ detailed_message = _("Nautilus cannot be used now, due to an unexpected error "
"from Bonobo when attempting to register the file manager view server.");
break;
}
@@ -640,15 +640,15 @@ nautilus_application_startup (NautilusApplication *application,
*/
if (result == Bonobo_ACTIVATION_REG_SUCCESS) {
/* FIXME bugzilla.gnome.org 42538: When can this happen? */
- message = _("Nautilus can't be used now, due to an unexpected error.");
- detailed_message = _("Nautilus can't be used now, due to an unexpected error "
+ message = _("Nautilus cannot be used now, due to an unexpected error.");
+ detailed_message = _("Nautilus cannot be used now, due to an unexpected error "
"from Bonobo when attempting to locate the factory. "
"Killing bonobo-activation-server and restarting Nautilus may help fix the problem.");
} else {
num_failures++;
if (num_failures > 20) {
- message = _("Nautilus can't be used now, due to an unexpected error.");
- detailed_message = _("Nautilus can't be used now, due to an unexpected error "
+ message = _("Nautilus cannot be used now, due to an unexpected error.");
+ detailed_message = _("Nautilus cannot be used now, due to an unexpected error "
"from Bonobo when attempting to locate the shell object. "
"Killing bonobo-activation-server and restarting Nautilus may help fix the problem.");
diff --git a/src/nautilus-connect-server-dialog-main.c b/src/nautilus-connect-server-dialog-main.c
index aa7e48a9c..44f196d55 100644
--- a/src/nautilus-connect-server-dialog-main.c
+++ b/src/nautilus-connect-server-dialog-main.c
@@ -73,7 +73,7 @@ display_error_dialog (GError *error,
GtkDialog *error_dialog;
char *error_message;
- error_message = g_strdup_printf (_("Can't display location \"%s\""),
+ error_message = g_strdup_printf (_("Cannot display location \"%s\""),
uri);
error_dialog = eel_show_error_dialog (error_message,
error->message,
diff --git a/src/nautilus-connect-server-dialog.c b/src/nautilus-connect-server-dialog.c
index c882e5db4..7e86af81a 100644
--- a/src/nautilus-connect-server-dialog.c
+++ b/src/nautilus-connect-server-dialog.c
@@ -201,7 +201,7 @@ connect_to_server (NautilusConnectServerDialog *dialog)
server = gtk_editable_get_chars (GTK_EDITABLE (dialog->details->server_entry), 0, -1);
if (strlen (server) == 0) {
- eel_show_error_dialog (_("Can't Connect to Server. You must enter a name for the server."),
+ eel_show_error_dialog (_("Cannot Connect to Server. You must enter a name for the server."),
_("Please enter a name and try again."),
GTK_WINDOW (dialog));
g_free (server);
diff --git a/src/nautilus-emblem-sidebar.c b/src/nautilus-emblem-sidebar.c
index 5d7c970ff..ca7114337 100644
--- a/src/nautilus-emblem-sidebar.c
+++ b/src/nautilus-emblem-sidebar.c
@@ -235,7 +235,7 @@ nautilus_emblem_sidebar_delete_cb (GtkWidget *menu_item,
if (nautilus_emblem_remove_emblem (emblem_sidebar->details->popup_emblem_keyword)) {
send_emblems_changed ();
} else {
- error = g_strdup_printf (_("Couldn't remove emblem with name '%s'."), emblem_sidebar->details->popup_emblem_display_name);
+ error = g_strdup_printf (_("Could not remove emblem with name '%s'."), emblem_sidebar->details->popup_emblem_display_name);
eel_show_error_dialog (error, _("This is probably because the emblem is a permanent one, and not one that you added yourself."),
NULL);
g_free (error);
@@ -269,7 +269,7 @@ rename_dialog_response_cb (GtkWidget *dialog, int response,
if (nautilus_emblem_rename_emblem (keyword, name)) {
send_emblems_changed ();
} else {
- error = g_strdup_printf (_("Couldn't rename emblem with name '%s'."), name);
+ error = g_strdup_printf (_("Could not rename emblem with name '%s'."), name);
eel_show_error_dialog (error, _("This is probably because the emblem is a permanent one, and not one that you added yourself."),
NULL);
g_free (error);
diff --git a/src/nautilus-information-panel.c b/src/nautilus-information-panel.c
index 3be9b3d78..9d1f631de 100644
--- a/src/nautilus-information-panel.c
+++ b/src/nautilus-information-panel.c
@@ -492,7 +492,7 @@ receive_dropped_uri_list (NautilusInformationPanel *information_panel,
if (!exactly_one) {
eel_show_error_dialog (
- _("You can't assign more than one custom icon at a time."),
+ _("You cannot assign more than one custom icon at a time."),
_("Please drag just one image to set a custom icon."),
window);
break;
diff --git a/src/nautilus-property-browser.c b/src/nautilus-property-browser.c
index e15fe3ee2..153dbda0c 100644
--- a/src/nautilus-property-browser.c
+++ b/src/nautilus-property-browser.c
@@ -973,7 +973,7 @@ remove_pattern(NautilusPropertyBrowser *property_browser, const char* pattern_na
/* delete the pattern from the pattern directory */
if (g_unlink (pattern_path) != 0) {
- char *message = g_strdup_printf (_("Sorry, but pattern %s couldn't be deleted."), pattern_name);
+ char *message = g_strdup_printf (_("Sorry, but pattern %s could not be deleted."), pattern_name);
char *detail = _("Check that you have permission to delete the pattern.");
eel_show_error_dialog (message, detail, GTK_WINDOW (property_browser));
g_free (message);
@@ -1002,7 +1002,7 @@ remove_emblem (NautilusPropertyBrowser *property_browser, const char* emblem_nam
/* delete the emblem from the emblem directory */
if (g_unlink (emblem_path) != 0) {
- char *message = g_strdup_printf (_("Sorry, but emblem %s couldn't be deleted."), emblem_name);
+ char *message = g_strdup_printf (_("Sorry, but emblem %s could not be deleted."), emblem_name);
char *detail = _("Check that you have permission to delete the emblem.");
eel_show_error_dialog (message, detail, GTK_WINDOW (property_browser));
g_free (message);
@@ -1201,7 +1201,7 @@ add_pattern_to_browser (const char *path_name, gpointer *data)
/* don't allow the user to change the reset image */
basename = g_path_get_basename (path_name);
if (basename && eel_strcmp (basename, RESET_IMAGE_NAME) == 0) {
- eel_show_error_dialog (_("Sorry, but you can't replace the reset image."),
+ eel_show_error_dialog (_("Sorry, but you cannot replace the reset image."),
_("Reset is a special image that cannot be deleted."),
NULL);
g_free (path_uri);
@@ -1232,7 +1232,7 @@ add_pattern_to_browser (const char *path_name, gpointer *data)
if (!g_file_copy (src, dest,
0,
NULL, NULL, NULL, NULL)) {
- char *message = g_strdup_printf (_("Sorry, but the pattern %s couldn't be installed."), path_name);
+ char *message = g_strdup_printf (_("Sorry, but the pattern %s could not be installed."), path_name);
eel_show_error_dialog (message, NULL, GTK_WINDOW (property_browser));
g_free (message);
}
diff --git a/src/nautilus-window-manage-views.c b/src/nautilus-window-manage-views.c
index aa24bd3fb..1e13a2269 100644
--- a/src/nautilus-window-manage-views.c
+++ b/src/nautilus-window-manage-views.c
@@ -1689,13 +1689,13 @@ display_view_selection_failure (NautilusWindow *window, NautilusFile *file,
if (error == NULL) {
if (nautilus_file_is_directory (file)) {
error_message = g_strdup_printf
- (_("Couldn't display \"%s\"."),
+ (_("Could not display \"%s\"."),
uri_for_display);
detail_message = g_strdup
(_("Nautilus has no installed viewer capable of displaying the folder."));
} else {
error_message = g_strdup_printf
- (_("Couldn't display \"%s\"."),
+ (_("Could not display \"%s\"."),
uri_for_display);
detail_message = g_strdup
(_("The location is not a folder."));
@@ -1704,7 +1704,7 @@ display_view_selection_failure (NautilusWindow *window, NautilusFile *file,
switch (error->code) {
case G_IO_ERROR_NOT_FOUND:
error_message = g_strdup_printf
- (_("Couldn't find \"%s\"."),
+ (_("Could not find \"%s\"."),
uri_for_display);
detail_message = g_strdup
(_("Please check the spelling and try again."));
@@ -1712,7 +1712,7 @@ display_view_selection_failure (NautilusWindow *window, NautilusFile *file,
case G_IO_ERROR_NOT_SUPPORTED:
scheme_string = g_file_get_uri_scheme (location);
- error_message = g_strdup_printf (_("Couldn't display \"%s\"."),
+ error_message = g_strdup_printf (_("Could not display \"%s\"."),
uri_for_display);
if (scheme_string != NULL) {
detail_message = g_strdup_printf (_("Nautilus cannot handle %s: locations."),
@@ -1723,13 +1723,13 @@ display_view_selection_failure (NautilusWindow *window, NautilusFile *file,
g_free (scheme_string);
break;
case G_IO_ERROR_NOT_MOUNTED:
- error_message = g_strdup_printf (_("Couldn't display \"%s\"."),
+ error_message = g_strdup_printf (_("Could not display \"%s\"."),
uri_for_display);
detail_message = g_strdup (_("Unable to mount the location."));
break;
case G_IO_ERROR_PERMISSION_DENIED:
- error_message = g_strdup_printf (_("Couldn't display \"%s\"."),
+ error_message = g_strdup_printf (_("Could not display \"%s\"."),
uri_for_display);
detail_message = g_strdup (_("Access was denied."));
break;
@@ -1740,7 +1740,7 @@ display_view_selection_failure (NautilusWindow *window, NautilusFile *file,
* But this case is also hit for legitimate web addresses when
* the proxy is set up wrong.
*/
- error_message = g_strdup_printf (_("Couldn't display \"%s\", because the host couldn't be found."),
+ error_message = g_strdup_printf (_("Could not display \"%s\", because the host could not be found."),
uri_for_display);
detail_message = g_strdup (_("Check that the spelling is correct and that your proxy settings are correct."));
break;
@@ -1754,7 +1754,7 @@ display_view_selection_failure (NautilusWindow *window, NautilusFile *file,
}
if (error_message == NULL) {
- error_message = g_strdup_printf (_("Couldn't display \"%s\"."),
+ error_message = g_strdup_printf (_("Could not display \"%s\"."),
uri_for_display);
detail_message = g_strdup_printf (_("Error: %s\nPlease select another viewer and try again."), error->message);
}