~ubuntu-branches/ubuntu/quantal/mc/quantal

« back to all changes in this revision

Viewing changes to src/file.c

  • Committer: Bazaar Package Importer
  • Author(s): Yury V. Zaytsev, Yury V. Zaytsev
  • Date: 2010-09-07 10:59:46 UTC
  • mfrom: (4.2.9 sid)
  • Revision ID: james.westby@ubuntu.com-20100907105946-bf9et2bryuq6aoa5
Tags: 3:4.7.0.9-1
[Yury V. Zaytsev]
* New upstream version (bugfix release).
  + Corrected typos in man pages (Closes: #585503)
* Enabled ext2undelfs by default (LP: #267480)
* Tightened libslang2 dependency (Closes: #592772)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1711
1711
    char *dp = format_string;
1712
1712
    gboolean build_question = FALSE;
1713
1713
 
1714
 
#ifdef ENABLE_NLS
1715
1714
    static gboolean i18n_flag = FALSE;
1716
1715
    if (!i18n_flag) {
1717
1716
        size_t i;
1719
1718
        for (i = sizeof (op_names1) / sizeof (op_names1[0]); i--;)
1720
1719
            op_names1[i] = Q_(op_names1[i]);
1721
1720
 
 
1721
#ifdef ENABLE_NLS
1722
1722
        for (i = sizeof (prompt_parts) / sizeof (prompt_parts[0]); i--;)
1723
1723
            prompt_parts[i] = _(prompt_parts[i]);
1724
1724
 
1725
1725
        one_format = _(one_format);
1726
1726
        many_format = _(many_format);
1727
1727
        question_format = _(question_format);
 
1728
#endif /* ENABLE_NLS */
1728
1729
        i18n_flag = TRUE;
1729
1730
    }
1730
 
#endif                          /* ENABLE_NLS */
1731
1731
 
1732
1732
    sp = single_source ? one_format : many_format;
1733
1733
 
1842
1842
    int dst_result;
1843
1843
    int do_bg = 0;              /* do background operation? */
1844
1844
 
1845
 
#ifdef ENABLE_NLS
1846
1845
    static gboolean i18n_flag = FALSE;
1847
1846
    if (!i18n_flag) {
1848
1847
        for (i = sizeof (op_names1) / sizeof (op_names1[0]); i--;)
1849
1848
            op_names[i] = Q_(op_names[i]);
1850
1849
        i18n_flag = TRUE;
1851
1850
    }
1852
 
#endif                          /* ENABLE_NLS */
1853
1851
 
1854
1852
    free_linklist (&linklist);
1855
1853
    free_linklist (&dest_dirs);