You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
arguments for string.Format(localizedString.Value, arguments) are
arguments[0]= _START_
arguments[1]= _END_
arguments[2]= _TOTAL_
Hence;
"PagerInfo": "_TOTAL_ kayıttan _START_ ile _END_ arası gösteriliyor."
should be
"PagerInfo": "{2} kayıttan {0} ile {1} arası gösteriliyor."
for
tr.json
zh-Hans.json
zh-Hant.json
"PagerInfo": "Showing _START_ to _END_ of _TOTAL_ entries"
should be
"PagerInfo": "Showing {0} to {1} of {2} entries"
for
en.json
ar.json
cs.json
es.json
pl.json
pt-BR.json
vi.json
However if we change all of the localizations this way, newly added localization sources will have problem distinguishing which one is _START_, _END_ and _TOTAL_.
Thinking about changing the name of PagerInfo to PagerInfoRef as a reference since commenting now allowed in json and adding correct values to PagerInfo.
Or keep it changed already and assume whomever localizes know english and can figure it out from en.json.
arguments for
string.Format(localizedString.Value, arguments)
arearguments[0]=
_START_
arguments[1]=
_END_
arguments[2]=
_TOTAL_
Hence;
should be
for
should be
for
However if we change all of the localizations this way, newly added localization sources will have problem distinguishing which one is
_START_
,_END_
and_TOTAL_
.Thinking about changing the name of
PagerInfo
toPagerInfoRef
as a reference since commenting now allowed in json and adding correct values to PagerInfo.Or keep it changed already and assume whomever localizes know english and can figure it out from
en.json
.@hikalkan @yekalkan
Suggestions?
The text was updated successfully, but these errors were encountered: