Bug 1004915: rename 'FoundTooManyMatches' to 'FoundMatchesCountLimit'. r=Unfocused.

This commit is contained in:
Mike de Boer 2014-05-02 11:11:08 +02:00
parent d69bb84179
commit 04e8543afe
2 changed files with 3 additions and 3 deletions

View File

@ -1254,7 +1254,7 @@
if (aResult.total == -1) {
this._foundMatches.value = this.pluralForm.get(
this._matchesCountLimit,
this.strBundle.GetStringFromName("FoundTooManyMatches")
this.strBundle.GetStringFromName("FoundMatchesCountLimit")
).replace("#1", this._matchesCountLimit);
} else {
this._foundMatches.value = this.pluralForm.get(

View File

@ -14,8 +14,8 @@ CaseSensitive=(Case sensitive)
# See: http://developer.mozilla.org/en/docs/Localization_and_Plurals
# #1 is currently selected match and #2 the total amount of matches.
FoundMatches=#1 of #2 match;#1 of #2 matches
# LOCALIZATION NOTE (FoundTooManyMatches): Semicolon-separated list of plural
# LOCALIZATION NOTE (FoundMatchesCountLimit): Semicolon-separated list of plural
# forms.
# See: http://developer.mozilla.org/en/docs/Localization_and_Plurals
# #1 is the total amount of matches allowed before counting stops.
FoundTooManyMatches=More than #1 match;More than #1 matches
FoundMatchesCountLimit=More than #1 match;More than #1 matches