nit: change location section's heading from 'Location' to 'Locations'

This commit is contained in:
ashilkn 2024-03-11 12:59:59 +05:30
parent 412c872266
commit fab16a7947
14 changed files with 35 additions and 13 deletions

View file

@ -6939,6 +6939,16 @@ class S {
);
}
/// `Locations`
String get locations {
return Intl.message(
'Locations',
name: 'locations',
desc: '',
args: [],
);
}
/// `Moments`
String get moments {
return Intl.message(

View file

@ -11,5 +11,6 @@
"selectALocationFirst": "Select a location first",
"changeLocationOfSelectedItems": "Change location of selected items?",
"editsToLocationWillOnlyBeSeenWithinEnte": "Edits to location will only be seen within Ente",
"joinDiscord": "Join Discord"
"joinDiscord": "Join Discord",
"locations": "Locations"
}

View file

@ -1178,5 +1178,6 @@
"changeLocationOfSelectedItems": "Standort der gewählten Elemente ändern?",
"editsToLocationWillOnlyBeSeenWithinEnte": "Änderungen des Standorts werden nur in ente sichtbar sein",
"cleanUncategorized": "Unkategorisiert leeren",
"joinDiscord": "Join Discord"
"joinDiscord": "Join Discord",
"locations": "Locations"
}

View file

@ -1197,5 +1197,6 @@
"deviceNotFound": "Device not found",
"castInstruction": "Visit cast.ente.io on the device you want to pair.\n\nEnter the code below to play the album on your TV.",
"deviceCodeHint": "Enter the code",
"joinDiscord": "Join Discord"
"joinDiscord": "Join Discord",
"locations": "Locations"
}

View file

@ -973,5 +973,6 @@
"selectALocationFirst": "Select a location first",
"changeLocationOfSelectedItems": "Change location of selected items?",
"editsToLocationWillOnlyBeSeenWithinEnte": "Edits to location will only be seen within Ente",
"joinDiscord": "Join Discord"
"joinDiscord": "Join Discord",
"locations": "Locations"
}

View file

@ -1154,5 +1154,6 @@
"selectALocationFirst": "Select a location first",
"changeLocationOfSelectedItems": "Change location of selected items?",
"editsToLocationWillOnlyBeSeenWithinEnte": "Edits to location will only be seen within Ente",
"joinDiscord": "Join Discord"
"joinDiscord": "Join Discord",
"locations": "Locations"
}

View file

@ -1116,5 +1116,6 @@
"selectALocationFirst": "Select a location first",
"changeLocationOfSelectedItems": "Change location of selected items?",
"editsToLocationWillOnlyBeSeenWithinEnte": "Edits to location will only be seen within Ente",
"joinDiscord": "Join Discord"
"joinDiscord": "Join Discord",
"locations": "Locations"
}

View file

@ -11,5 +11,6 @@
"selectALocationFirst": "Select a location first",
"changeLocationOfSelectedItems": "Change location of selected items?",
"editsToLocationWillOnlyBeSeenWithinEnte": "Edits to location will only be seen within Ente",
"joinDiscord": "Join Discord"
"joinDiscord": "Join Discord",
"locations": "Locations"
}

View file

@ -1192,5 +1192,6 @@
"deviceNotFound": "Apparaat niet gevonden",
"castInstruction": "Bezoek cast.ente.io op het apparaat dat u wilt koppelen.\n\nVoer de code hieronder in om het album op uw TV af te spelen.",
"deviceCodeHint": "Voer de code in",
"joinDiscord": "Join Discord"
"joinDiscord": "Join Discord",
"locations": "Locations"
}

View file

@ -25,5 +25,6 @@
"selectALocationFirst": "Select a location first",
"changeLocationOfSelectedItems": "Change location of selected items?",
"editsToLocationWillOnlyBeSeenWithinEnte": "Edits to location will only be seen within Ente",
"joinDiscord": "Join Discord"
"joinDiscord": "Join Discord",
"locations": "Locations"
}

View file

@ -112,5 +112,6 @@
"selectALocationFirst": "Select a location first",
"changeLocationOfSelectedItems": "Change location of selected items?",
"editsToLocationWillOnlyBeSeenWithinEnte": "Edits to location will only be seen within Ente",
"joinDiscord": "Join Discord"
"joinDiscord": "Join Discord",
"locations": "Locations"
}

View file

@ -1196,5 +1196,6 @@
"deviceNotFound": "Dispositivo não encontrado",
"castInstruction": "Visite cast.ente.io no dispositivo que você deseja parear.\n\ndigite o código abaixo para reproduzir o álbum em sua TV.",
"deviceCodeHint": "Insira o código",
"joinDiscord": "Junte-se ao Discord"
"joinDiscord": "Junte-se ao Discord",
"locations": "Locations"
}

View file

@ -1196,5 +1196,6 @@
"deviceNotFound": "未发现设备",
"castInstruction": "在您要配对的设备上访问 cast.ente.io。\n输入下面的代码即可在电视上播放相册。",
"deviceCodeHint": "输入代码",
"joinDiscord": "加入 Discord"
"joinDiscord": "加入 Discord",
"locations": "Locations"
}

View file

@ -61,7 +61,7 @@ extension SectionTypeExtensions on SectionType {
case SectionType.moment:
return S.of(context).moments;
case SectionType.location:
return S.of(context).location;
return S.of(context).locations;
case SectionType.contacts:
return S.of(context).contacts;
case SectionType.album: