mirror of
https://github.com/oxen-io/session-android.git
synced 2025-04-03 07:56:17 +00:00
Extract some strings for localization
// FREEBIE
This commit is contained in:
parent
1669731329
commit
b27d829013
@ -251,6 +251,10 @@
|
|||||||
<string name="DeviceListItem_last_active_s">Last active %s</string>
|
<string name="DeviceListItem_last_active_s">Last active %s</string>
|
||||||
<string name="DeviceListItem_today">Today</string>
|
<string name="DeviceListItem_today">Today</string>
|
||||||
|
|
||||||
|
<!-- DozeReminder -->
|
||||||
|
<string name="DozeReminder_optimize_for_missing_play_services">Optimize for missing Play Services</string>
|
||||||
|
<string name="DozeReminder_this_device_does_not_support_play_services_tap_to_disable_system_battery">This device does not support Play Services. Tap to disable system battery optimizations that prevent Signal from retrieving messages while inactive.</string>
|
||||||
|
|
||||||
<!-- ShareActivity -->
|
<!-- ShareActivity -->
|
||||||
<string name="ShareActivity_share_with">Share with</string>
|
<string name="ShareActivity_share_with">Share with</string>
|
||||||
|
|
||||||
|
@ -11,14 +11,15 @@ import android.support.annotation.NonNull;
|
|||||||
import android.support.annotation.RequiresApi;
|
import android.support.annotation.RequiresApi;
|
||||||
import android.view.View;
|
import android.view.View;
|
||||||
|
|
||||||
|
import org.thoughtcrime.securesms.R;
|
||||||
import org.thoughtcrime.securesms.util.TextSecurePreferences;
|
import org.thoughtcrime.securesms.util.TextSecurePreferences;
|
||||||
|
|
||||||
public class DozeReminder extends Reminder {
|
public class DozeReminder extends Reminder {
|
||||||
|
|
||||||
@RequiresApi(api = Build.VERSION_CODES.M)
|
@RequiresApi(api = Build.VERSION_CODES.M)
|
||||||
public DozeReminder(@NonNull final Context context) {
|
public DozeReminder(@NonNull final Context context) {
|
||||||
super("Optimize for missing Play Services",
|
super(context.getString(R.string.DozeReminder_optimize_for_missing_play_services),
|
||||||
"This device does not support Play Services. Tap to disable system battery optimizations that prevent Signal from retrieving messages while inactive.");
|
context.getString(R.string.DozeReminder_this_device_does_not_support_play_services_tap_to_disable_system_battery));
|
||||||
|
|
||||||
setOkListener(new View.OnClickListener() {
|
setOkListener(new View.OnClickListener() {
|
||||||
@Override
|
@Override
|
||||||
|
Loading…
x
Reference in New Issue
Block a user