~vcs-imports/poedit/trunk

« back to all changes in this revision

Viewing changes to src/edframe.cpp

  • Committer: vaclavslavik
  • Date: 2009-11-22 14:37:52 UTC
  • Revision ID: vcs-imports@canonical.com-20091122143752-zfe8y9j1psrs2j4o
Correct name for gettext is "GNU gettext".

Normalized all occurences of "GNU Gettext" or "Gettext" to use official
capitalization. Fixes bug #321.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
 *  FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22
22
 *  DEALINGS IN THE SOFTWARE. 
23
23
 *
24
 
 *  $Id: edframe.cpp 1541 2009-11-17 19:50:04Z vaclavslavik $
 
24
 *  $Id: edframe.cpp 1545 2009-11-22 14:37:52Z vaclavslavik $
25
25
 *
26
26
 *  Editor frame
27
27
 *
1019
1019
 
1020
1020
    wxString name = wxFileSelector(_("Open catalog"),
1021
1021
                    path, wxEmptyString, wxEmptyString,
1022
 
                    _("GNU Gettext catalogs (*.po)|*.po|All files (*.*)|*.*"),
 
1022
                    _("GNU gettext catalogs (*.po)|*.po|All files (*.*)|*.*"),
1023
1023
                    wxFD_OPEN | wxFD_FILE_MUST_EXIST, this);
1024
1024
    if (!name.empty())
1025
1025
    {
1147
1147
    }
1148
1148
 
1149
1149
    name = wxFileSelector(_("Save as..."), path, name, wxEmptyString,
1150
 
                          _("GNU Gettext catalogs (*.po)|*.po|All files (*.*)|*.*"),
 
1150
                          _("GNU gettext catalogs (*.po)|*.po|All files (*.*)|*.*"),
1151
1151
                          wxFD_SAVE | wxFD_OVERWRITE_PROMPT, this);
1152
1152
    if (!name.empty())
1153
1153
    {
1235
1235
        wxString pot_file =
1236
1236
            wxFileSelector(_("Open catalog template"),
1237
1237
                 path, wxEmptyString, wxEmptyString,
1238
 
                 _("GNU Gettext templates (*.pot)|*.pot|All files (*.*)|*.*"),
 
1238
                 _("GNU gettext templates (*.pot)|*.pot|All files (*.*)|*.*"),
1239
1239
                 wxFD_OPEN | wxFD_FILE_MUST_EXIST, this);
1240
1240
        bool ok = false;
1241
1241
        if (!pot_file.empty())
1388
1388
        pot_file =
1389
1389
            wxFileSelector(_("Open catalog template"),
1390
1390
                 path, wxEmptyString, wxEmptyString,
1391
 
                 _("GNU Gettext templates (*.pot)|*.pot|All files (*.*)|*.*"),
 
1391
                 _("GNU gettext templates (*.pot)|*.pot|All files (*.*)|*.*"),
1392
1392
                 wxFD_OPEN | wxFD_FILE_MUST_EXIST, this);
1393
1393
        if (pot_file.empty())
1394
1394
            return;