In my android app i'am going to implement my strings with Internationalization. So currently i got a problem with the grammar and the way sentences build in different languages.

For example:

"5 minutes ago" - english

"vor 5 Minuten" - german

So my first question is, can i do something like this in strings.xml:

<string name="timeFormat">{0} minutes ago</string>

And then some magic like

getString(R.id.timeFormat, dynamicTimeValue)

This behaviour would solve the other problem with different word orders as well.

link|improve this question
feedback

3 Answers

up vote 18 down vote accepted

Yes, just format your strings in the standard String.format() way.

See the method Context.getString(int, Object...) and the Android or Java Formatter documentation.

In your case, the string definition would be:

<string name="timeFormat">%1$d minutes ago</string>
link|improve this answer
1  
stupid question of me...life can be so easy. – dhesse Mar 8 '10 at 8:13
feedback

Note that for this particular application there's a standard library function, android.text.format.DateUtils.getRelativeTimeSpanString().

link|improve this answer
feedback

If you need two variables in the xml you can use:
%1$d text... %2$d or %1$s text... %2$s for String variables.

Ex:

strings.xml

<string name="notyet">Website %1$s isn\'t yet available, I\'m working on it, please wait %2$s more days</string>

activity.java

String site = "mywebsite";
String days = "11";
//Toast example
//You NEED to type the variables in the same order as in the xml.    
String notyet = getString(R.string.notyet, site, days); 
Toast.makeText(getApplicationContext(), notyet, Toast.LENGTH_LONG).show();
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.