~elementary-apps/pantheon-files/trunk

« back to all changes in this revision

Viewing changes to libcore/marlin-file-operations.c

  • Committer: Fabio Zaramella
  • Date: 2015-03-01 16:48:21 UTC
  • mfrom: (1765 f)
  • mto: This revision was merged to the branch mainline in revision 1892.
  • Revision ID: ffabio.96.x@gmail.com-20150301164821-isk9h5x95oa00vuk
merge trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
1135
1135
                                     NULL);
1136
1136
    gtk_window_set_deletable (GTK_WINDOW (dialog), FALSE);
1137
1137
 
 
1138
    gtk_window_set_deletable (GTK_WINDOW (dialog), FALSE);
 
1139
 
1138
1140
    g_object_set (dialog,
1139
1141
                  "text", data->primary_text,
1140
1142
                  "secondary-text", data->secondary_text,
1419
1421
    if (g_list_length (files) >= 1) {
1420
1422
        if (g_file_has_uri_scheme (files->data, "trash")) {
1421
1423
                /* Empty all trash */
1422
 
                prompt = f(_("Permanently delete all items from Trash?"));
1423
 
                secondary_text = f(_("All items in all trash directories, including those on any mounted external drives, will be permanently deleted."));
 
1424
                prompt = f (_("Permanently delete all items from Trash?"));
 
1425
                secondary_text = f (_("All items in all trash directories, including those on any mounted external drives, will be permanently deleted."));
1424
1426
        } else {
1425
1427
                /* Empty trash on a particular mounted volume */
1426
 
                prompt = f(_("Permanently delete all items from Trash on this mount?"));
1427
 
                secondary_text = f(_("All items in the trash on this mount, will be permanently deleted."));
 
1428
                prompt = f (_("Permanently delete all items from Trash on this mount?"));
 
1429
                secondary_text = f (_("All items in the trash on this mount, will be permanently deleted."));
1428
1430
        }
1429
1431
    }
1430
1432