Bug 1320570 - Follow-up: Change matchesFound to matchesFound1 to be different from the original before bug 1313950. rs=jorgk a=jorgk DONTBUILD

This commit is contained in:
Jorg K 2016-11-29 23:15:04 +01:00
Родитель f7f12108de
Коммит e0be311ca5
4 изменённых файлов: 6 добавлений и 6 удалений

Просмотреть файл

@ -493,7 +493,7 @@ function SetStatusText(total)
statusText = gAddressBookBundle.getString("noMatchFound");
} else {
statusText = PluralForm
.get(total, gAddressBookBundle.getString("matchesFound"))
.get(total, gAddressBookBundle.getString("matchesFound1"))
.replace("#1", total);
}
}

Просмотреть файл

@ -110,11 +110,11 @@ ldap_2.servers.osx.description=Mac OS X Address Book
## %1$S is address book name, %2$S is contact count
totalContactStatus=Total contacts in %1$S: %2$S
noMatchFound=No matches found
## LOCALIZATION NOTE (matchesFound):
## LOCALIZATION NOTE (matchesFound1):
## Semicolon-separated list of singular and plural forms.
## See: https://developer.mozilla.org/docs/Mozilla/Localization/Localization_and_Plurals
## #1 is the number of matching contacts found
matchesFound=#1 match found;#1 matches found
matchesFound1=#1 match found;#1 matches found
## LOCALIZATION NOTE (contactsCopied): Semi-colon list of plural forms
## %1$S is the number of contacts that were copied. This should be used multiple

Просмотреть файл

@ -103,11 +103,11 @@ ldap_2.servers.osx.description=Mac OS X Address Book
## %1$S is address book name, %2$S is card count
totalContactStatus=Total contacts in %1$S: %2$S
noMatchFound=No matches found
## LOCALIZATION NOTE (matchesFound):
## LOCALIZATION NOTE (matchesFound1):
## Semicolon-separated list of singular and plural forms.
## See: https://developer.mozilla.org/docs/Mozilla/Localization/Localization_and_Plurals
## #1 is the number of matching contacts found
matchesFound=#1 match found;#1 matches found
matchesFound1=#1 match found;#1 matches found
## LOCALIZATION NOTE (contactsCopied): Semi-colon list of plural forms
## %1$S is the number of contacts that were copied. This should be used multiple

Просмотреть файл

@ -353,7 +353,7 @@ function SetStatusText(total)
statusText = gAddressBookBundle.getString("noMatchFound");
} else {
statusText = PluralForm
.get(total, gAddressBookBundle.getString("matchesFound"))
.get(total, gAddressBookBundle.getString("matchesFound1"))
.replace("#1", total);
}
}