nit: change description section's heading from 'Photo descriptions' to 'Descriptions'

This commit is contained in:
ashilkn 2024-03-11 13:06:07 +05:30
parent fab16a7947
commit ae67f0d67b
14 changed files with 35 additions and 13 deletions

View file

@ -6919,6 +6919,16 @@ class S {
);
}
/// `Descriptions`
String get descriptions {
return Intl.message(
'Descriptions',
name: 'descriptions',
desc: '',
args: [],
);
}
/// `File types and names`
String get fileTypesAndNames {
return Intl.message(

View file

@ -12,5 +12,6 @@
"changeLocationOfSelectedItems": "Change location of selected items?",
"editsToLocationWillOnlyBeSeenWithinEnte": "Edits to location will only be seen within Ente",
"joinDiscord": "Join Discord",
"locations": "Locations"
"locations": "Locations",
"descriptions": "Descriptions"
}

View file

@ -1179,5 +1179,6 @@
"editsToLocationWillOnlyBeSeenWithinEnte": "Änderungen des Standorts werden nur in ente sichtbar sein",
"cleanUncategorized": "Unkategorisiert leeren",
"joinDiscord": "Join Discord",
"locations": "Locations"
"locations": "Locations",
"descriptions": "Descriptions"
}

View file

@ -1198,5 +1198,6 @@
"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",
"locations": "Locations"
"locations": "Locations",
"descriptions": "Descriptions"
}

View file

@ -974,5 +974,6 @@
"changeLocationOfSelectedItems": "Change location of selected items?",
"editsToLocationWillOnlyBeSeenWithinEnte": "Edits to location will only be seen within Ente",
"joinDiscord": "Join Discord",
"locations": "Locations"
"locations": "Locations",
"descriptions": "Descriptions"
}

View file

@ -1155,5 +1155,6 @@
"changeLocationOfSelectedItems": "Change location of selected items?",
"editsToLocationWillOnlyBeSeenWithinEnte": "Edits to location will only be seen within Ente",
"joinDiscord": "Join Discord",
"locations": "Locations"
"locations": "Locations",
"descriptions": "Descriptions"
}

View file

@ -1117,5 +1117,6 @@
"changeLocationOfSelectedItems": "Change location of selected items?",
"editsToLocationWillOnlyBeSeenWithinEnte": "Edits to location will only be seen within Ente",
"joinDiscord": "Join Discord",
"locations": "Locations"
"locations": "Locations",
"descriptions": "Descriptions"
}

View file

@ -12,5 +12,6 @@
"changeLocationOfSelectedItems": "Change location of selected items?",
"editsToLocationWillOnlyBeSeenWithinEnte": "Edits to location will only be seen within Ente",
"joinDiscord": "Join Discord",
"locations": "Locations"
"locations": "Locations",
"descriptions": "Descriptions"
}

View file

@ -1193,5 +1193,6 @@
"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",
"locations": "Locations"
"locations": "Locations",
"descriptions": "Descriptions"
}

View file

@ -26,5 +26,6 @@
"changeLocationOfSelectedItems": "Change location of selected items?",
"editsToLocationWillOnlyBeSeenWithinEnte": "Edits to location will only be seen within Ente",
"joinDiscord": "Join Discord",
"locations": "Locations"
"locations": "Locations",
"descriptions": "Descriptions"
}

View file

@ -113,5 +113,6 @@
"changeLocationOfSelectedItems": "Change location of selected items?",
"editsToLocationWillOnlyBeSeenWithinEnte": "Edits to location will only be seen within Ente",
"joinDiscord": "Join Discord",
"locations": "Locations"
"locations": "Locations",
"descriptions": "Descriptions"
}

View file

@ -1197,5 +1197,6 @@
"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",
"locations": "Locations"
"locations": "Locations",
"descriptions": "Descriptions"
}

View file

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

View file

@ -69,7 +69,7 @@ extension SectionTypeExtensions on SectionType {
case SectionType.fileTypesAndExtension:
return S.of(context).fileTypes;
case SectionType.fileCaption:
return S.of(context).photoDescriptions;
return S.of(context).descriptions;
}
}