[android] Fixed string ids to fix build

This commit is contained in:
Александр Зацепин 2019-02-27 19:27:59 +03:00 committed by Aleksey Belousov
parent f917aef253
commit 99d8e2cf61

View file

@ -548,13 +548,13 @@ public class UgcSharingOptionsFragment extends BaseToolbarAuthFragment implement
private void showUploadErrorDialog(@StringRes int subtitle, int reqCode, @NonNull String tag)
{
showErrorDialog(R.string.unable_update_error_title, subtitle, reqCode, tag);
showErrorDialog(R.string.unable_upadate_error_title, subtitle, reqCode, tag);
}
private void showNotEnoughBookmarksDialog()
{
showErrorDialog(R.string.error_public_not_enough_title,
R.string.error_public_not_enough_subtitle,
showErrorDialog(R.string.error_public_not_enought_title,
R.string.error_public_not_enought_subtitle,
REQ_CODE_ERROR_NOT_ENOUGH_BOOKMARKS, NOT_ENOUGH_BOOKMARKS_DIALOG_TAG);
}