I am looking for opinions from experts that have written software consumed internationally. I would like to understand the best practices people have employeed at each logic
Don’t
string foo = "Page " + currentPage + " of " + totalPages;
Do
string foo = string.Format("Page {0} of {1}", currentPage, totalPages);
Why? Word Order Matters.
Page {0} of {1}
{1}ページ中の第{0}ページ
Nothing is sacred in the UI Even something as fundamental as showing green for positive numbers and red for negative numbers is fair game.