~ubuntu-branches/ubuntu/lucid/seahorse/lucid

« back to all changes in this revision

Viewing changes to src/seahorse-viewer.c

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2009-03-02 22:41:25 UTC
  • mfrom: (1.2.42 upstream)
  • Revision ID: james.westby@ubuntu.com-20090302224125-add03qz18yhugh5s
Tags: 2.25.92-0ubuntu1
* New upstream version:
  - Fix crash when typing in a custom key server URL.
  - Searching by key identifiers now shows results. (lp: #316551)
  - Don't crash when loading a PGP key that loads the secret 
    part before the public part.
  - Disable interactive tree search in key manager.
  - Fix issues with object IDs, crashes and other inconsistencies
    when accessed via DBus.
  - Add libcryptui documentation
  - Reference counting fixes.
  - Remove use of GTK+ deprecated symbols.
  - Use proper GTK+ stock item names.
  - Translation fixes.
  - Collapse 'Advanced Options' in PGP key generate dialog by default.
* debian/seahorse.install:
  - install the translations

Show diffs side-by-side

added added

removed removed

Lines of Context:
196
196
        { "app-preferences", GTK_STOCK_PREFERENCES, N_("Prefere_nces"), NULL,
197
197
          N_("Change preferences for this program"), G_CALLBACK (on_app_preferences) },
198
198
#endif
199
 
        { "app-about", "gtk-about", N_("_About"), NULL, 
 
199
        { "app-about", GTK_STOCK_ABOUT, NULL, NULL, 
200
200
          N_("About this program"), G_CALLBACK (on_app_about) }, 
201
201
        { "help-show", GTK_STOCK_HELP, N_("_Contents"), "F1",
202
202
          N_("Show Seahorse help"), G_CALLBACK (on_help_show) } 
357
357
 
358
358
        board = gtk_clipboard_get (atom);
359
359
        gtk_clipboard_set_text (board, text, (gint)size);
 
360
        /* Translators: "Copied" is a verb (used as a status indicator), not an adjective for the word "keys" */
360
361
        seahorse_viewer_set_status (self, _ ("Copied keys"));
361
362
}
362
363
 
491
492
}
492
493
                
493
494
static const GtkActionEntry KEY_ENTRIES[] = {
494
 
        { "show-properties", GTK_STOCK_PROPERTIES, N_("P_roperties"), NULL,
 
495
        { "show-properties", GTK_STOCK_PROPERTIES, NULL, NULL,
495
496
          N_("Show properties"), G_CALLBACK (on_key_properties) },
496
497
        { "edit-delete", GTK_STOCK_DELETE, NC_("This text refers to deleting an item from its type's backing store.", "_Delete"), NULL,
497
498
          N_("Delete selected items"), G_CALLBACK (on_key_delete) }
500
501
static const GtkActionEntry EXPORT_ENTRIES[] = {
501
502
        { "file-export", GTK_STOCK_SAVE_AS, N_("E_xport..."), NULL,
502
503
          N_("Export to a file"), G_CALLBACK (on_key_export_file) },
503
 
        { "edit-export-clipboard", GTK_STOCK_COPY, N_("_Copy"), "<control>C",
 
504
        { "edit-export-clipboard", GTK_STOCK_COPY, NULL, "<control>C",
504
505
          N_("Copy to the clipboard"), G_CALLBACK (on_key_export_clipboard) }
505
506
};
506
507