MOBILE-3976 messages: Use new enabled setting on 4.0 onward
parent
1f6c5a672b
commit
0b50611700
|
@ -2162,6 +2162,7 @@
|
||||||
"core.settings.disableall": "message",
|
"core.settings.disableall": "message",
|
||||||
"core.settings.disabled": "lesson",
|
"core.settings.disabled": "lesson",
|
||||||
"core.settings.disabledfeatures": "tool_mobile",
|
"core.settings.disabledfeatures": "tool_mobile",
|
||||||
|
"core.settings.disallowed": "message",
|
||||||
"core.settings.displayformat": "local_moodlemobileapp",
|
"core.settings.displayformat": "local_moodlemobileapp",
|
||||||
"core.settings.enabledownloadsection": "local_moodlemobileapp",
|
"core.settings.enabledownloadsection": "local_moodlemobileapp",
|
||||||
"core.settings.enablefirebaseanalytics": "local_moodlemobileapp",
|
"core.settings.enablefirebaseanalytics": "local_moodlemobileapp",
|
||||||
|
@ -2176,6 +2177,7 @@
|
||||||
"core.settings.filesystemroot": "local_moodlemobileapp",
|
"core.settings.filesystemroot": "local_moodlemobileapp",
|
||||||
"core.settings.fontsize": "local_moodlemobileapp",
|
"core.settings.fontsize": "local_moodlemobileapp",
|
||||||
"core.settings.fontsizecharacter": "block_accessibility/char",
|
"core.settings.fontsizecharacter": "block_accessibility/char",
|
||||||
|
"core.settings.forced": "message",
|
||||||
"core.settings.forcedsetting": "local_moodlemobileapp",
|
"core.settings.forcedsetting": "local_moodlemobileapp",
|
||||||
"core.settings.forcesafeareamargins": "local_moodlemobileapp",
|
"core.settings.forcesafeareamargins": "local_moodlemobileapp",
|
||||||
"core.settings.general": "moodle",
|
"core.settings.general": "moodle",
|
||||||
|
@ -2186,7 +2188,6 @@
|
||||||
"core.settings.license": "moodle",
|
"core.settings.license": "moodle",
|
||||||
"core.settings.localnotifavailable": "local_moodlemobileapp",
|
"core.settings.localnotifavailable": "local_moodlemobileapp",
|
||||||
"core.settings.locationhref": "local_moodlemobileapp",
|
"core.settings.locationhref": "local_moodlemobileapp",
|
||||||
"core.settings.locked": "admin",
|
|
||||||
"core.settings.loggedin": "message",
|
"core.settings.loggedin": "message",
|
||||||
"core.settings.loggedoff": "message",
|
"core.settings.loggedoff": "message",
|
||||||
"core.settings.navigatorlanguage": "local_moodlemobileapp",
|
"core.settings.navigatorlanguage": "local_moodlemobileapp",
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
<!-- Contactable privacy. -->
|
<!-- Contactable privacy. -->
|
||||||
<ion-card>
|
<ion-card>
|
||||||
<ion-item *ngIf="!advancedContactable">
|
<ion-item *ngIf="!advancedContactable">
|
||||||
<ion-label>{{ 'addon.messages.blocknoncontacts' | translate }}</ion-label>
|
<ion-label>{{ 'addon.messages.blocknoncontacts' | translate }}</ion-label>
|
||||||
<ion-toggle [(ngModel)]="contactablePrivacy" (ngModelChange)="saveContactablePrivacy(contactablePrivacy)">
|
<ion-toggle [(ngModel)]="contactablePrivacy" (ngModelChange)="saveContactablePrivacy(contactablePrivacy)">
|
||||||
</ion-toggle>
|
</ion-toggle>
|
||||||
</ion-item>
|
</ion-item>
|
||||||
|
@ -87,24 +87,29 @@
|
||||||
<ion-card-content class="ion-no-padding">
|
<ion-card-content class="ion-no-padding">
|
||||||
<ng-container *ngFor="let processor of notification.processors">
|
<ng-container *ngFor="let processor of notification.processors">
|
||||||
<ion-item-divider class="ion-text-wrap">
|
<ion-item-divider class="ion-text-wrap">
|
||||||
<ion-label>{{ processor.displayname }}</ion-label>
|
<ion-label>
|
||||||
|
<p class="item-heading">{{ processor.displayname }}</p>
|
||||||
|
</ion-label>
|
||||||
</ion-item-divider>
|
</ion-item-divider>
|
||||||
<!-- If notifications not disabled, show toggles.
|
<!-- If notifications not disabled, show toggles.
|
||||||
If notifications are disabled, show "Disabled" instead of toggle. -->
|
If notifications are disabled, show "Disabled" instead of toggle. -->
|
||||||
<ion-item *ngFor="let state of ['loggedin', 'loggedoff']" class="ion-text-wrap">
|
<ion-item *ngFor="let state of ['loggedin', 'loggedoff']" class="ion-text-wrap">
|
||||||
<ion-label>{{ 'core.settings.' + state | translate }}</ion-label>
|
<ion-label>{{ 'core.settings.' + state | translate }}</ion-label>
|
||||||
<core-button-with-spinner slot="end" *ngIf="!preferences.disableall"
|
<ng-container *ngIf="!preferences.disableall">
|
||||||
[loading]="notification.updating && notification.updating[state]">
|
<!-- If notifications enabled, show toggle. -->
|
||||||
<ion-toggle *ngIf="!processor.locked" [(ngModel)]="processor[state].checked"
|
<core-button-with-spinner *ngIf="!processor.locked" [loading]="notification['updating'+state]">
|
||||||
(ngModelChange)="changePreference(notification, state, processor)">
|
<ion-toggle [(ngModel)]="processor[state].checked"
|
||||||
|
(ngModelChange)="changePreferenceLegacy(notification, processor, state)">
|
||||||
</ion-toggle>
|
</ion-toggle>
|
||||||
<ion-note *ngIf="processor.locked">
|
|
||||||
{{'core.settings.locked' | translate }}
|
|
||||||
</ion-note>
|
|
||||||
</core-button-with-spinner>
|
</core-button-with-spinner>
|
||||||
<ion-note slot="end" *ngIf="preferences.disableall">
|
<span *ngIf="processor.locked && processor[state].checked" class="text-gray">
|
||||||
{{ 'core.settings.disabled' | translate }}
|
{{'core.settings.forced' | translate }}
|
||||||
</ion-note>
|
</span>
|
||||||
|
<span *ngIf="processor.locked && !processor[state].checked" class="text-gray">
|
||||||
|
{{'core.settings.disallowed' | translate }}
|
||||||
|
</span>
|
||||||
|
</ng-container>
|
||||||
|
<span *ngIf="preferences.disableall">{{ 'core.settings.disabled' | translate }}</span>
|
||||||
</ion-item>
|
</ion-item>
|
||||||
</ng-container>
|
</ng-container>
|
||||||
</ion-card-content>
|
</ion-card-content>
|
||||||
|
@ -125,17 +130,17 @@
|
||||||
<!-- If group messaging is enabled, display a simplified view. -->
|
<!-- If group messaging is enabled, display a simplified view. -->
|
||||||
<ion-item class="ion-text-wrap">
|
<ion-item class="ion-text-wrap">
|
||||||
<ion-label>{{ processor.displayname }}</ion-label>
|
<ion-label>{{ processor.displayname }}</ion-label>
|
||||||
<core-button-with-spinner *ngIf="!preferences.disableall" [loading]="!!notification.updating" slot="end">
|
<ng-container *ngIf="!preferences.disableall">
|
||||||
<ion-toggle *ngIf="!processor.locked" [(ngModel)]="processor.checked"
|
<!-- If notifications enabled, show toggle. -->
|
||||||
(ngModelChange)="changePreference(notification, '', processor)">
|
<core-button-with-spinner *ngIf="!processor.locked" [loading]="notification.updating">
|
||||||
|
<ion-toggle [(ngModel)]="processor.enabled" (ngModelChange)="changePreference(notification, processor)">
|
||||||
</ion-toggle>
|
</ion-toggle>
|
||||||
<ion-note *ngIf="processor.locked">
|
|
||||||
{{ processor.lockedmessage }}
|
|
||||||
</ion-note>
|
|
||||||
</core-button-with-spinner>
|
</core-button-with-spinner>
|
||||||
<ion-note slot="end" *ngIf="preferences.disableall">
|
<span class="text-gray" *ngIf="processor.locked">
|
||||||
{{ 'core.settings.disabled' | translate }}
|
{{ processor.lockedmessage }}
|
||||||
</ion-note>
|
</span>
|
||||||
|
</ng-container>
|
||||||
|
<span *ngIf="preferences.disableall" class="text-gray">{{ 'core.settings.disabled' | translate }}</span>
|
||||||
</ion-item>
|
</ion-item>
|
||||||
</ng-container>
|
</ng-container>
|
||||||
</ion-card>
|
</ion-card>
|
||||||
|
|
|
@ -27,6 +27,7 @@ import { CoreSites } from '@services/sites';
|
||||||
import { CoreDomUtils } from '@services/utils/dom';
|
import { CoreDomUtils } from '@services/utils/dom';
|
||||||
import { CoreConstants } from '@/core/constants';
|
import { CoreConstants } from '@/core/constants';
|
||||||
import { IonRefresher } from '@ionic/angular';
|
import { IonRefresher } from '@ionic/angular';
|
||||||
|
import { AddonNotificationsPreferencesNotificationProcessorState } from '@addons/notifications/services/notifications';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Page that displays the messages settings page.
|
* Page that displays the messages settings page.
|
||||||
|
@ -50,14 +51,16 @@ export class AddonMessagesSettingsPage implements OnInit, OnDestroy {
|
||||||
groupMessagingEnabled = false;
|
groupMessagingEnabled = false;
|
||||||
sendOnEnter = false;
|
sendOnEnter = false;
|
||||||
|
|
||||||
|
protected loggedInOffLegacyMode = false;
|
||||||
protected previousContactableValue?: number | boolean;
|
protected previousContactableValue?: number | boolean;
|
||||||
|
|
||||||
constructor() {
|
constructor() {
|
||||||
|
|
||||||
const currentSite = CoreSites.getCurrentSite();
|
const currentSite = CoreSites.getRequiredCurrentSite();
|
||||||
this.advancedContactable = !!currentSite?.isVersionGreaterEqualThan('3.6');
|
this.advancedContactable = !!currentSite.isVersionGreaterEqualThan('3.6');
|
||||||
this.allowSiteMessaging = !!currentSite?.canUseAdvancedFeature('messagingallusers');
|
this.allowSiteMessaging = !!currentSite.canUseAdvancedFeature('messagingallusers');
|
||||||
this.groupMessagingEnabled = AddonMessages.isGroupMessagingEnabled();
|
this.groupMessagingEnabled = AddonMessages.isGroupMessagingEnabled();
|
||||||
|
this.loggedInOffLegacyMode = !currentSite.isVersionGreaterEqualThan('4.0');
|
||||||
|
|
||||||
this.asyncInit();
|
this.asyncInit();
|
||||||
}
|
}
|
||||||
|
@ -90,15 +93,18 @@ export class AddonMessagesSettingsPage implements OnInit, OnDestroy {
|
||||||
component.notifications = component.notifications.filter((notification) =>
|
component.notifications = component.notifications.filter((notification) =>
|
||||||
notification.preferencekey == AddonMessagesProvider.NOTIFICATION_PREFERENCES_KEY);
|
notification.preferencekey == AddonMessagesProvider.NOTIFICATION_PREFERENCES_KEY);
|
||||||
|
|
||||||
|
if (this.loggedInOffLegacyMode) {
|
||||||
|
// Load enabled from loggedin / loggedoff values.
|
||||||
component.notifications.forEach((notification) => {
|
component.notifications.forEach((notification) => {
|
||||||
notification.processors.forEach(
|
notification.processors.forEach(
|
||||||
(processor: AddonMessagesMessagePreferencesNotificationProcessorFormatted) => {
|
(processor) => {
|
||||||
processor.checked = processor.loggedin.checked || processor.loggedoff.checked;
|
processor.enabled = processor.loggedin.checked || processor.loggedoff.checked;
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
this.preferences = preferences;
|
this.preferences = preferences;
|
||||||
this.contactablePrivacy = preferences.blocknoncontacts;
|
this.contactablePrivacy = preferences.blocknoncontacts;
|
||||||
|
@ -165,39 +171,34 @@ export class AddonMessagesSettingsPage implements OnInit, OnDestroy {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Change the value of a certain preference.
|
* Change the value of a certain preference. Versions 3.6 onwards.
|
||||||
*
|
*
|
||||||
* @param notification Notification object.
|
* @param notification Notification object.
|
||||||
* @param state State name, ['loggedin', 'loggedoff'].
|
|
||||||
* @param processor Notification processor.
|
* @param processor Notification processor.
|
||||||
*/
|
*/
|
||||||
async changePreference(
|
async changePreference(
|
||||||
notification: AddonMessagesMessagePreferencesNotificationFormatted,
|
notification: AddonMessagesMessagePreferencesNotificationFormatted,
|
||||||
state: string,
|
processor: AddonMessagesMessagePreferencesNotificationProcessor,
|
||||||
processor: AddonMessagesMessagePreferencesNotificationProcessorFormatted,
|
|
||||||
): Promise<void> {
|
): Promise<void> {
|
||||||
|
|
||||||
const valueArray: string[] = [];
|
|
||||||
let value = 'none';
|
|
||||||
|
|
||||||
if (this.groupMessagingEnabled) {
|
|
||||||
// Update both states at the same time.
|
// Update both states at the same time.
|
||||||
const promises: Promise<void>[] = [];
|
let value = notification.processors
|
||||||
|
.filter((processor) => processor.enabled)
|
||||||
|
.map((processor) => processor.name)
|
||||||
|
.join(',');
|
||||||
|
|
||||||
notification.processors.forEach((processor: AddonMessagesMessagePreferencesNotificationProcessorFormatted) => {
|
if (value == '') {
|
||||||
if (processor.checked) {
|
value = 'none';
|
||||||
valueArray.push(processor.name);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
if (value.length > 0) {
|
|
||||||
value = valueArray.join(',');
|
|
||||||
}
|
}
|
||||||
|
|
||||||
notification.updating = true;
|
notification.updating = true;
|
||||||
|
|
||||||
|
const promises: Promise<void>[] = [];
|
||||||
|
if (this.loggedInOffLegacyMode) {
|
||||||
promises.push(CoreUser.updateUserPreference(notification.preferencekey + '_loggedin', value));
|
promises.push(CoreUser.updateUserPreference(notification.preferencekey + '_loggedin', value));
|
||||||
promises.push(CoreUser.updateUserPreference(notification.preferencekey + '_loggedoff', value));
|
promises.push(CoreUser.updateUserPreference(notification.preferencekey + '_loggedoff', value));
|
||||||
|
} else {
|
||||||
|
promises.push(CoreUser.updateUserPreference(notification.preferencekey + '_enabled', value));
|
||||||
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
await Promise.all(promises);
|
await Promise.all(promises);
|
||||||
|
@ -206,33 +207,34 @@ export class AddonMessagesSettingsPage implements OnInit, OnDestroy {
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
// Show error and revert change.
|
// Show error and revert change.
|
||||||
CoreDomUtils.showErrorModal(error);
|
CoreDomUtils.showErrorModal(error);
|
||||||
processor.checked = !processor.checked;
|
processor.enabled = !processor.enabled;
|
||||||
} finally {
|
} finally {
|
||||||
notification.updating = false;
|
notification.updating = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Change the value of a certain preference. Only on version 3.5.
|
||||||
|
*
|
||||||
|
* @param notification Notification object.
|
||||||
|
* @param processor Notification processor.
|
||||||
|
* @param state State name, ['loggedin', 'loggedoff'].
|
||||||
|
*/
|
||||||
|
async changePreferenceLegacy(
|
||||||
|
notification: AddonMessagesMessagePreferencesNotificationFormatted,
|
||||||
|
processor: AddonMessagesMessagePreferencesNotificationProcessor,
|
||||||
|
state: 'loggedin' | 'loggedoff',
|
||||||
|
): Promise<void> {
|
||||||
// Update only the specified state.
|
// Update only the specified state.
|
||||||
const processorState = processor[state];
|
const processorState: AddonNotificationsPreferencesNotificationProcessorState = processor[state];
|
||||||
const preferenceName = notification.preferencekey + '_' + processorState.name;
|
const preferenceName = notification.preferencekey + '_' + processorState.name;
|
||||||
|
|
||||||
notification.processors.forEach((processor) => {
|
const value = notification.processors
|
||||||
if (processor[state].checked) {
|
.filter((processor) => processor[state].checked)
|
||||||
valueArray.push(processor.name);
|
.map((processor) => processor.name)
|
||||||
}
|
.join(',');
|
||||||
});
|
|
||||||
|
|
||||||
if (value.length > 0) {
|
notification['updating'+state] = true;
|
||||||
value = valueArray.join(',');
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!notification.updating) {
|
|
||||||
notification.updating = {};
|
|
||||||
}
|
|
||||||
|
|
||||||
notification.updating[state] = true;
|
|
||||||
try {
|
try {
|
||||||
await CoreUser.updateUserPreference(preferenceName, value);
|
await CoreUser.updateUserPreference(preferenceName, value);
|
||||||
// Update the preferences since they were modified.
|
// Update the preferences since they were modified.
|
||||||
|
@ -242,7 +244,7 @@ export class AddonMessagesSettingsPage implements OnInit, OnDestroy {
|
||||||
CoreDomUtils.showErrorModal(error);
|
CoreDomUtils.showErrorModal(error);
|
||||||
processorState.checked = !processorState.checked;
|
processorState.checked = !processorState.checked;
|
||||||
} finally {
|
} finally {
|
||||||
notification.updating[state] = false;
|
notification['updating'+state] = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -288,12 +290,7 @@ export class AddonMessagesSettingsPage implements OnInit, OnDestroy {
|
||||||
* Message preferences notification with some caclulated data.
|
* Message preferences notification with some caclulated data.
|
||||||
*/
|
*/
|
||||||
type AddonMessagesMessagePreferencesNotificationFormatted = AddonMessagesMessagePreferencesNotification & {
|
type AddonMessagesMessagePreferencesNotificationFormatted = AddonMessagesMessagePreferencesNotification & {
|
||||||
updating?: boolean | {[state: string]: boolean}; // Calculated in the app. Whether the notification is being updated.
|
updating?: boolean; // Calculated in the app. Whether the notification is being updated.
|
||||||
};
|
updatingloggedin?: boolean; // Calculated in the app. Whether the notification is being updated.
|
||||||
|
updatingloggedoff?: boolean; // Calculated in the app. Whether the notification is being updated.
|
||||||
/**
|
|
||||||
* Message preferences notification processor with some caclulated data.
|
|
||||||
*/
|
|
||||||
type AddonMessagesMessagePreferencesNotificationProcessorFormatted = AddonMessagesMessagePreferencesNotificationProcessor & {
|
|
||||||
checked?: boolean; // Calculated in the app. Whether the processor is checked either for loggedin or loggedoff.
|
|
||||||
};
|
};
|
||||||
|
|
|
@ -32,6 +32,7 @@ import { makeSingleton } from '@singletons';
|
||||||
import { CoreError } from '@classes/errors/error';
|
import { CoreError } from '@classes/errors/error';
|
||||||
import { AddonMessagesSyncEvents, AddonMessagesSyncProvider } from './messages-sync';
|
import { AddonMessagesSyncEvents, AddonMessagesSyncProvider } from './messages-sync';
|
||||||
import { CoreWSError } from '@classes/errors/wserror';
|
import { CoreWSError } from '@classes/errors/wserror';
|
||||||
|
import { AddonNotificationsPreferencesNotificationProcessorState } from '@addons/notifications/services/notifications';
|
||||||
|
|
||||||
const ROOT_CACHE_KEY = 'mmaMessages:';
|
const ROOT_CACHE_KEY = 'mmaMessages:';
|
||||||
|
|
||||||
|
@ -3047,16 +3048,9 @@ export type AddonMessagesMessagePreferencesNotificationProcessor = {
|
||||||
locked: boolean; // Is locked by admin?.
|
locked: boolean; // Is locked by admin?.
|
||||||
lockedmessage?: string; // @since 3.6. Text to display if locked.
|
lockedmessage?: string; // @since 3.6. Text to display if locked.
|
||||||
userconfigured: number; // Is configured?.
|
userconfigured: number; // Is configured?.
|
||||||
loggedin: {
|
enabled?: boolean; // @since 4.0. Processor enabled.
|
||||||
name: string; // Name.
|
loggedin: AddonNotificationsPreferencesNotificationProcessorState; // @deprecated removed on 4.0.
|
||||||
displayname: string; // Display name.
|
loggedoff: AddonNotificationsPreferencesNotificationProcessorState; // @deprecated removed on 4.0.
|
||||||
checked: boolean; // Is checked?.
|
|
||||||
};
|
|
||||||
loggedoff: {
|
|
||||||
name: string; // Name.
|
|
||||||
displayname: string; // Display name.
|
|
||||||
checked: boolean; // Is checked?.
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -435,15 +435,18 @@ export type AddonNotificationsPreferencesNotificationProcessor = {
|
||||||
locked: boolean; // Is locked by admin?.
|
locked: boolean; // Is locked by admin?.
|
||||||
lockedmessage?: string; // @since 3.6. Text to display if locked.
|
lockedmessage?: string; // @since 3.6. Text to display if locked.
|
||||||
userconfigured: number; // Is configured?.
|
userconfigured: number; // Is configured?.
|
||||||
loggedin: AddonNotificationsPreferencesNotificationProcessorState;
|
enabled?: boolean; // @since 4.0. Processor enabled.
|
||||||
loggedoff: AddonNotificationsPreferencesNotificationProcessorState;
|
loggedin: AddonNotificationsPreferencesNotificationProcessorState; // @deprecated removed on 4.0.
|
||||||
|
loggedoff: AddonNotificationsPreferencesNotificationProcessorState; // @deprecated removed on 4.0.
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* State in notification processor in notification preferences component.
|
* State in notification processor in notification preferences component.
|
||||||
|
*
|
||||||
|
* @deprecated removed on 4.0.
|
||||||
*/
|
*/
|
||||||
export type AddonNotificationsPreferencesNotificationProcessorState = {
|
export type AddonNotificationsPreferencesNotificationProcessorState = {
|
||||||
name: string; // Name.
|
name: 'loggedoff' | 'loggedin'; // Name.
|
||||||
displayname: string; // Display name.
|
displayname: string; // Display name.
|
||||||
checked: boolean; // Is checked?.
|
checked: boolean; // Is checked?.
|
||||||
};
|
};
|
||||||
|
|
|
@ -29,6 +29,7 @@
|
||||||
"disableall": "Disable notifications",
|
"disableall": "Disable notifications",
|
||||||
"disabled": "Disabled",
|
"disabled": "Disabled",
|
||||||
"disabledfeatures": "Disabled features",
|
"disabledfeatures": "Disabled features",
|
||||||
|
"disallowed": "Disallowed",
|
||||||
"displayformat": "Display format",
|
"displayformat": "Display format",
|
||||||
"enabledownloadsection": "Enable download sections",
|
"enabledownloadsection": "Enable download sections",
|
||||||
"enablefirebaseanalytics": "Enable Firebase analytics",
|
"enablefirebaseanalytics": "Enable Firebase analytics",
|
||||||
|
@ -43,6 +44,7 @@
|
||||||
"filesystemroot": "File system root",
|
"filesystemroot": "File system root",
|
||||||
"fontsize": "Text size",
|
"fontsize": "Text size",
|
||||||
"fontsizecharacter": "A",
|
"fontsizecharacter": "A",
|
||||||
|
"forced": "Locked",
|
||||||
"forcedsetting": "This setting has been forced by your site configuration.",
|
"forcedsetting": "This setting has been forced by your site configuration.",
|
||||||
"forcesafeareamargins": "Force safe area margins",
|
"forcesafeareamargins": "Force safe area margins",
|
||||||
"general": "General",
|
"general": "General",
|
||||||
|
@ -53,7 +55,6 @@
|
||||||
"license": "Licence",
|
"license": "Licence",
|
||||||
"localnotifavailable": "Local notifications available",
|
"localnotifavailable": "Local notifications available",
|
||||||
"locationhref": "Web view URL",
|
"locationhref": "Web view URL",
|
||||||
"locked": "Locked",
|
|
||||||
"loggedin": "Online",
|
"loggedin": "Online",
|
||||||
"loggedoff": "Offline",
|
"loggedoff": "Offline",
|
||||||
"navigatorlanguage": "Navigator language",
|
"navigatorlanguage": "Navigator language",
|
||||||
|
|
Loading…
Reference in New Issue