This commit is contained in:
Sergey Solovyev 2012-04-23 01:40:04 +04:00
parent 05bedb96f4
commit d69d8eef42
5 changed files with 6 additions and 3 deletions

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:installLocation="auto" android:versionCode="73" android:versionName="1.2.35" package="org.solovyev.android.calculator"> <manifest xmlns:android="http://schemas.android.com/apk/res/android" android:installLocation="auto" android:versionCode="75" android:versionName="1.2.37" package="org.solovyev.android.calculator">
<uses-permission android:name="android.permission.VIBRATE"/> <uses-permission android:name="android.permission.VIBRATE"/>
<uses-permission android:name="android.permission.INTERNET"/> <uses-permission android:name="android.permission.INTERNET"/>

View File

@ -145,6 +145,7 @@
<string name="c_history_item_status">Статус: </string> <string name="c_history_item_status">Статус: </string>
<string name="c_history_item_comment">Комментарий: </string> <string name="c_history_item_comment">Комментарий: </string>
<string name="c_use">Использовать</string> <string name="c_use">Использовать</string>
<string name="c_use_short">Исп.</string>
<string name="c_copy_expression">Копировать выражение</string> <string name="c_copy_expression">Копировать выражение</string>
<string name="c_copy_result">Копировать результат</string> <string name="c_copy_result">Копировать результат</string>
<string name="c_history_expression">Значение</string> <string name="c_history_expression">Значение</string>

View File

@ -145,6 +145,7 @@
<string name="c_history_item_status">Статус: </string> <string name="c_history_item_status">Статус: </string>
<string name="c_history_item_comment">Коментар: </string> <string name="c_history_item_comment">Коментар: </string>
<string name="c_use">Використовувати</string> <string name="c_use">Використовувати</string>
<string name="c_use_short">Вик.</string>
<string name="c_copy_expression">Копіювати вираз</string> <string name="c_copy_expression">Копіювати вираз</string>
<string name="c_copy_result">Копіювати результат</string> <string name="c_copy_result">Копіювати результат</string>
<string name="c_history_expression">Значення</string> <string name="c_history_expression">Значення</string>

View File

@ -146,6 +146,7 @@
<string name="c_history_item_status">Status: </string> <string name="c_history_item_status">Status: </string>
<string name="c_history_item_comment">Comment: </string> <string name="c_history_item_comment">Comment: </string>
<string name="c_use">Use</string> <string name="c_use">Use</string>
<string name="c_use_short">Use</string>
<string name="c_copy_expression">Copy expression</string> <string name="c_copy_expression">Copy expression</string>
<string name="c_copy_result">Copy result</string> <string name="c_copy_result">Copy result</string>
<string name="c_history_expression">Value</string> <string name="c_history_expression">Value</string>

View File

@ -64,7 +64,7 @@ public class NumeralBaseConverterDialog {
} }
}); });
b.setCustomButtonData(new UnitConverterViewBuilder.CustomButtonData(context.getString(R.string.c_use), new UnitConverterViewBuilder.CustomButtonOnClickListener() { b.setCustomButtonData(new UnitConverterViewBuilder.CustomButtonData(context.getString(R.string.c_use_short), new UnitConverterViewBuilder.CustomButtonOnClickListener() {
@Override @Override
public void onClick(@NotNull Unit<String> fromUnits, @NotNull Unit<String> toUnits) { public void onClick(@NotNull Unit<String> fromUnits, @NotNull Unit<String> toUnits) {
String toUnitsValue = toUnits.getValue(); String toUnitsValue = toUnits.getValue();