Changeset 82e8d8fbf1c058d73907d63d4dc8ac50c951bbcf

Show
Ignore:
Timestamp:
09/19/08 01:03:23 (5 years ago)
Author:
Armin Burgmeier <armin@…>
Parents:
823255b93401a002c0156230dbcbd5a508dd0baf
Children:
9fdf4d5c02df8381e7f933fa918ac3577b7f89d3
git-committer:
Armin Burgmeier <armin@arbur.net> / 2008-09-19T01:03:23Z+0200
Message:

Changed all "…" characters in strings to "..."

2008-09-18 Armin Burgmeier <armin@…>

  • src/commands/browser-commands.cpp:
  • src/commands/browser-context-commands.cpp:
  • src/core/browser.cpp:
  • src/core/header.cpp:
  • src/operations/operation-delete.cpp:
  • src/operations/operation-new.cpp:
  • src/operations/operation-open.cpp:
  • src/operations/operation-save.cpp: Changed all "…" character in strings to "...". Gedit does the same, and xgettext does not accept … without complaining. Translators can still choose to translate "..." to "…".
Files:
9 modified

Legend:

Unmodified
Added
Removed
  • ChangeLog

    r823255b r82e8d8f  
     12008-09-18  Armin Burgmeier  <armin@arbur.net> 
     2 
     3        * src/commands/browser-commands.cpp: 
     4        * src/commands/browser-context-commands.cpp: 
     5        * src/core/browser.cpp: 
     6        * src/core/header.cpp: 
     7        * src/operations/operation-delete.cpp: 
     8        * src/operations/operation-new.cpp: 
     9        * src/operations/operation-open.cpp: 
     10        * src/operations/operation-save.cpp: Changed all "
" character in 
     11        strings to "...". Gedit does the same, and xgettext does not accept 
 
     12        without complaining. Translators can still choose to translate "..." 
     13        to "
". 
     14 
    1152008-09-18  Armin Burgmeier  <armin@arbur.net> 
    216 
  • src/commands/browser-commands.cpp

    rfce3ea7 r82e8d8f  
    247247                                StatusBar::INFO, 
    248248                                Glib::ustring::compose( 
    249                                         _("Subscribing to %1
"), 
     249                                        _("Subscribing to %1..."), 
    250250                                        Glib::ustring( 
    251251                                                infc_browser_iter_get_name( 
     
    341341                window.set_info( 
    342342                        Glib::ustring::compose( 
    343                                 _("Synchronization in progress
 %1%%"), 
     343                                _("Synchronization in progress... %1%%"), 
    344344                                static_cast<unsigned int>(percentage * 100)), 
    345345                        false); 
     
    414414                window->set_info( 
    415415                        Glib::ustring::compose( 
    416                                 _("Synchronization in progress
 %1%%"), 
     416                                _("Synchronization in progress... %1%%"), 
    417417                                static_cast<unsigned int>(percentage * 100)), 
    418418                        false); 
     
    528528                { 
    529529                        window->set_info( 
    530                                 _("User Join in progress
"), false); 
     530                                _("User Join in progress..."), false); 
    531531 
    532532                        g_signal_connect( 
  • src/commands/browser-context-commands.cpp

    r8667620 r82e8d8f  
    8989                // Create Document 
    9090                Gtk::ImageMenuItem* new_document_item = Gtk::manage( 
    91                         new Gtk::ImageMenuItem(_("Create Do_cument"), true)); 
     91                        new Gtk::ImageMenuItem(_("Create Do_cument..."), 
     92                                               true)); 
    9293                new_document_item->set_image(*Gtk::manage(new Gtk::Image( 
    9394                        Gtk::Stock::NEW, Gtk::ICON_SIZE_MENU))); 
     
    123124 
    124125                Gtk::ImageMenuItem* new_directory_item = Gtk::manage( 
    125                         new Gtk::ImageMenuItem(_("Create Directory"), true)); 
     126                        new Gtk::ImageMenuItem(_("Create Directory..."), 
     127                                               true)); 
    126128                new_directory_item->set_image(*new_directory_image); 
    127129                new_directory_item->signal_activate().connect(sigc::bind( 
     
    135137                // Open Document 
    136138                Gtk::ImageMenuItem* open_document_item = Gtk::manage( 
    137                         new Gtk::ImageMenuItem(_("_Open Document"), true)); 
     139                        new Gtk::ImageMenuItem(_("_Open Document..."), true)); 
    138140                open_document_item->set_image(*Gtk::manage(new Gtk::Image( 
    139141                        Gtk::Stock::OPEN, Gtk::ICON_SIZE_MENU))); 
  • src/core/browser.cpp

    ra2a811e r82e8d8f  
    212212                m_status_bar.add_message( 
    213213                        StatusBar::INFO, Glib::ustring::compose( 
    214                                 _("Resolving %1
"), host), 0); 
     214                                _("Resolving %1..."), host), 0); 
    215215 
    216216        m_resolv_map[resolv_handle].message_handle = message_handle; 
  • src/core/header.cpp

    rfb634fc r82e8d8f  
    210210        action_file_new(Gtk::Action::create("FileNew", Gtk::Stock::NEW)), 
    211211        action_file_open(Gtk::Action::create("FileOpen", Gtk::Stock::OPEN, 
    212                                              _("Open
"))), 
     212                                             _("Open..."))), 
    213213        action_file_save(Gtk::Action::create("FileSave", Gtk::Stock::SAVE)), 
    214214        action_file_save_as( 
    215215                Gtk::Action::create("FileSaveAs", Gtk::Stock::SAVE_AS, 
    216                                     _("Save As
"))), 
     216                                    _("Save As..."))), 
    217217        action_file_save_all( 
    218218                Gtk::Action::create( 
     
    231231                Gtk::Action::create("EditPaste", Gtk::Stock::PASTE)), 
    232232        action_edit_find(Gtk::Action::create("EditFind", Gtk::Stock::FIND, 
    233                                              _("_Find
"))), 
     233                                             _("_Find..."))), 
    234234        action_edit_find_next( 
    235235                Gtk::Action::create("EditFindNext", _("Find Ne_xt"), 
     
    243243                Gtk::Action::create("EditFindReplace", 
    244244                                    Gtk::Stock::FIND_AND_REPLACE, 
    245                                     _("Find And Rep_lace
"))), 
     245                                    _("Find And Rep_lace..."))), 
    246246        action_edit_goto_line( 
    247247                Gtk::Action::create("EditGotoLine", 
    248248                                    Gtk::Stock::JUMP_TO, 
    249                                     _("Go To _Line
"))), 
     249                                    _("Go To _Line..."))), 
    250250        action_edit_preferences( 
    251251                Gtk::Action::create("EditPreferences", 
    252252                                    Gtk::Stock::PREFERENCES, 
    253                                     _("Pr_eferences
"))), 
     253                                    _("Pr_eferences..."))), 
    254254 
    255255        action_view(Gtk::Action::create("MenuView", _("_View"))), 
     
    285285        action_help_about( 
    286286                Gtk::Action::create( 
    287                         "HelpAbout", Gtk::Stock::ABOUT, _("_About
"), 
     287                        "HelpAbout", Gtk::Stock::ABOUT, _("_About..."), 
    288288                        _("Shows Gobby's copyright and credits"))), 
    289289 
  • src/operations/operation-delete.cpp

    r092ccc3 r82e8d8f  
    4141        m_message_handle = get_status_bar().add_message( 
    4242                StatusBar::INFO, 
    43                 Glib::ustring::compose(_("Removing node %1
"), m_name), 0); 
     43                Glib::ustring::compose(_("Removing node %1..."), m_name), 0); 
    4444} 
    4545 
  • src/operations/operation-new.cpp

    r092ccc3 r82e8d8f  
    5555                StatusBar::INFO, 
    5656                Glib::ustring::compose( 
    57                         directory ? _("Creating directory %1
") 
    58                                   : _("Creating document %1
"), name), 0); 
     57                        directory ? _("Creating directory %1...") 
     58                                  : _("Creating document %1..."), name), 0); 
    5959} 
    6060 
  • src/operations/operation-open.cpp

    r575ced8 r82e8d8f  
    8181        m_message_handle = get_status_bar().add_message( 
    8282                StatusBar::INFO, 
    83                 Glib::ustring::compose(_("Opening document %1
"), uri), 0); 
     83                Glib::ustring::compose(_("Opening document %1..."), uri), 0); 
    8484 
    8585        m_node_removed_id = g_signal_connect( 
  • src/operations/operation-save.cpp

    re321deb r82e8d8f  
    6464        m_message_handle = get_status_bar().add_message( 
    6565                StatusBar::INFO, 
    66                 Glib::ustring::compose(_("Saving document %1 to %2
"), 
     66                Glib::ustring::compose(_("Saving document %1 to %2..."), 
    6767                        document.get_title(), uri), 0); 
    6868