Ignore:
Timestamp:
2013-12-22T00:38:43+01:00 (10 years ago)
Author:
simon04
Message:

fix #9110 - i18n: fix errors in usage of plural forms

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/conflict/tags/CombinePrimitiveResolverDialog.java

    r6093 r6507  
    596596            }
    597597        }));
    598         String msg = tr("You are about to combine {0} objects, "
     598        String msg = /* for correct i18n of plural forms - see #9110 */ trn("You are about to combine {0} objects, "
     599                + "but the following tags are used conflictingly:<br/>{1}"
     600                + "If these objects are combined, the resulting object may have unwanted tags.<br/>"
     601                + "If you want to continue, you are shown a dialog to fix the conflicting tags.<br/><br/>"
     602                + "Do you want to continue?", "You are about to combine {0} objects, "
    599603                + "but the following tags are used conflictingly:<br/>{1}"
    600604                + "If these objects are combined, the resulting object may have unwanted tags.<br/>"
    601605                + "If you want to continue, you are shown a dialog to fix the conflicting tags.<br/><br/>"
    602606                + "Do you want to continue?",
    603                 primitives.size(), conflicts);
     607                primitives.size(), primitives.size(), conflicts);
    604608
    605609        if (!ConditionalOptionPaneUtil.showConfirmationDialog(
Note: See TracChangeset for help on using the changeset viewer.