welcome message

This commit is contained in:
Sergey Solovyev 2011-12-25 12:40:25 +04:00
parent 4a2511b93c
commit 039298af7e
3 changed files with 6 additions and 3 deletions

View File

@ -150,10 +150,11 @@
<string name="c_history_was_removed">История успешно удалена!</string> <string name="c_history_was_removed">История успешно удалена!</string>
<string name="c_history_saved">История успешно сохранена!</string> <string name="c_history_saved">История успешно сохранена!</string>
<string name="c_copy_description">Копироват описание</string> <string name="c_copy_description">Копировать описание</string>
<string name="c_copy_value">Копировать значение</string> <string name="c_copy_value">Копировать значение</string>
<string name="c_first_start_text">Спасибо за выбор Калькулятора++!</string> <string name="c_first_start_text">Спасибо за выбор Калькулятора++!\n\nКалькулятор++ - это мощный инструмент для проведения ежедневных расчётов.\n\nПеред началом работы рекомендуется прочитать FAQ и подсказки для использования всех возможностей программы (нажмите Меню, затем Помощь)</string>
<string name="c_first_start_text_title">Приветствие</string>
<string name="c_calc_show_release_notes_title">Показывать замечания к выпуску</string> <string name="c_calc_show_release_notes_title">Показывать замечания к выпуску</string>
<string name="c_calc_show_release_notes_summary">Определяет показывать или нет всплывающее окно с замечаниями к выпуску после обновления новой версии</string> <string name="c_calc_show_release_notes_summary">Определяет показывать или нет всплывающее окно с замечаниями к выпуску после обновления новой версии</string>

View File

@ -153,7 +153,8 @@
<string name="c_copy_description">Copy description</string> <string name="c_copy_description">Copy description</string>
<string name="c_copy_value">Copy value</string> <string name="c_copy_value">Copy value</string>
<string name="c_first_start_text">Thank you for choosing Calculator++!</string> <string name="c_first_start_text">Thank you for choosing Calculator++!\n\nCalculator++ is a powerful tool for making everyday calculations.\n\nIt\'s highly recommended to read the FAQ and hints before the work to use all the features of application (press Menu button and then Help)</string>
<string name="c_first_start_text_title">Welcome</string>
<string name="c_calc_show_release_notes_title">Show release notes</string> <string name="c_calc_show_release_notes_title">Show release notes</string>
<string name="c_calc_show_release_notes_summary">Defines if release notes popup window should appear after update to the new version</string> <string name="c_calc_show_release_notes_summary">Defines if release notes popup window should appear after update to the new version</string>

View File

@ -371,6 +371,7 @@ public class CalculatorActivity extends Activity implements FontSizeAdjuster, Sh
// new start // new start
final AlertDialog.Builder builder = new AlertDialog.Builder(this).setMessage(R.string.c_first_start_text); final AlertDialog.Builder builder = new AlertDialog.Builder(this).setMessage(R.string.c_first_start_text);
builder.setPositiveButton(android.R.string.ok, null); builder.setPositiveButton(android.R.string.ok, null);
builder.setTitle(R.string.c_first_start_text_title);
builder.create().show(); builder.create().show();
} else { } else {
if (savedVersion < appVersion) { if (savedVersion < appVersion) {