Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

typo(informal): (re) polite to informal #641

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/Grades/GradeModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ const GradeModal: React.FC<GradeModalProps> = ({
await FileSystem.writeAsStringAsync(fileUri, imageBase64, { encoding: FileSystem.EncodingType.Base64 });
const asset = await MediaLibrary.createAssetAsync(fileUri);
await MediaLibrary.createAlbumAsync("Download", asset, false);
Alert.alert("Image sauvegardée", "L'image a été sauvegardée dans votre galerie.");
Alert.alert("Image sauvegardée", "L'image a été sauvegardée dans ta galerie.");
} catch (error) {
console.error("Failed to save image:", error);
}
Expand Down
2 changes: 1 addition & 1 deletion src/components/Settings/ApparenceContainerCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const ApparenceContainerCard = () => {
Mode d'affichage
</NativeText>
<NativeText variant="subtitle">
Par défaut, Papillon s'adapte à votre thème système. Mais vous pouvez choisir un thème clair ou sombre.
Par défaut, Papillon s'adapte à ton thème système. Mais tu peux choisir un thème clair ou sombre.
</NativeText>
</NativeItem>
</NativeList>
Expand Down
2 changes: 1 addition & 1 deletion src/consts/DefaultTabs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export const defaultTabs = [
{
tab: "Evaluation",
label: "Compétences",
description: "Vos compétences et évaluations",
description: "Tes compétences et évaluations",
icon: require("@/../assets/lottie/tab_evaluations.json"),
enabled: true,
}
Expand Down
2 changes: 1 addition & 1 deletion src/services/pronote/evaluations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const getTab = (account: PronoteAccount): pronote.Tab => {

const tab = account.instance.user.resources[0].tabs.get(pronote.TabLocation.Evaluations);
if (!tab)
throw new Error("Vous n'avez pas accès à l'onglet 'Compétences' dans PRONOTE");
throw new Error("Tu n'as pas accès à l'onglet 'Compétences' dans PRONOTE");

return tab;
};
Expand Down
4 changes: 2 additions & 2 deletions src/views/account/Chat/Messages.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -153,14 +153,14 @@ const Discussions: Screen<"Discussions"> = ({ navigation, route }) => {
opacity: 0.5,
}}
>
Vos conversations arrivent...
Tes conversations arrivent...
</Text>
</Reanimated.View>
) : chats.length === 0 ? (
<MissingItem
emoji="💬"
title="Aucune discussion"
description="Commencez une nouvelle discussion pour les afficher ici."
description="Commence une nouvelle discussion pour les afficher ici."
entering={animPapillon(FadeInDown)}
exiting={animPapillon(FadeOut)}
style={{ paddingVertical: 26 }}
Expand Down
2 changes: 1 addition & 1 deletion src/views/account/Chat/Modals/Chat.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ const Chat: Screen<"Chat"> = ({ navigation, route }) => {
<MissingItem
emoji="💬"
title="C'est le début de la conversation"
description="Envoyez un message pour commencer la discussion."
description="Envoie un message pour commencer la discussion."
entering={animPapillon(FadeInDown)}
exiting={animPapillon(FadeOut)}
style={{paddingVertical: 26}}
Expand Down
8 changes: 4 additions & 4 deletions src/views/account/Chat/Modals/ChatCreate.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ const ChatCreate: Screen<"ChatCreate"> = ({ navigation }) => {
<NativeText variant="subtitle">Sujet</NativeText>
<TextInput
style={[styles.textInput, { color: theme.colors.text }]}
placeholder="Sujet de votre message"
placeholder="Sujet de ton message"
placeholderTextColor={theme.colors.text + "80"}
value={subject}
onChangeText={setSubject}
Expand All @@ -92,7 +92,7 @@ const ChatCreate: Screen<"ChatCreate"> = ({ navigation }) => {
fontFamily: "semibold",
color: theme.colors.text,
}}
placeholder="Entrez votre texte"
placeholder="Entre ton texte"
placeholderTextColor={theme.colors.text + "80"}
value={content}
multiline={true}
Expand Down Expand Up @@ -176,8 +176,8 @@ const ChatCreate: Screen<"ChatCreate"> = ({ navigation }) => {
console.log("onPress");
if (!subject) {
Alert.alert(
"Voulez-vous continuer sans objet ?",
"Vous êtes sur le point de créer une discussion sans objet. Voulez-vous continuer ?",
"Veux-tu continuer sans objet ?",
"Tu es sur le point de créer une discussion sans objet. Veux-tu continuer ?",
[
{
text: "Annuler",
Expand Down
4 changes: 2 additions & 2 deletions src/views/account/Home/Elements/TimetableElement.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ const TimetableElement: React.FC<TimetableElementProps> = ({ onImportance }) =>
<MissingItem
emoji="🌴"
title="C'est le week-end !"
description="Profitez de votre week-end, il n'y a pas de cours aujourd'hui."
description="Profite de ton week-end, il n'y a pas de cours aujourd'hui."
/>
</NativeItem>
</NativeList>
Expand All @@ -171,7 +171,7 @@ const TimetableElement: React.FC<TimetableElementProps> = ({ onImportance }) =>
<MissingItem
emoji={emoji}
title="C'est les vacances !"
description="Profitez de vos vacances, à bientôt."
description="Profite de tes vacances, à bientôt."
/>
</NativeItem>
</NativeList>
Expand Down
2 changes: 1 addition & 1 deletion src/views/account/News/Document.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ const NewsItem: Screen<"NewsItem"> = ({ route, navigation }) => {
J'ai lu et pris connaissance
</NativeText>
<NativeText variant="subtitle">
Vous confirmez avoir lu et votre établissement peut en être notifié.
Tu confirmes avoir lu et ton établissement peut en être notifié.
</NativeText>
</NativeItem>
</NativeList>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ const IdentityProviderSelector: Screen<"IdentityProviderSelector"> = ({ navigati
icon={<Info />}
>
<NativeText variant="subtitle">
Les founisseurs d'identité ne fournissent pas de données (calendrier, notes, etc...) mais permettent de vous connecter à l'application.
Les founisseurs d'identité ne fournissent pas de données (calendrier, notes, etc...) mais permettent de te connecter à l'application.
</NativeText>
</NativeItem>
</NativeList>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ const TurboselfAccountSelector: Screen<"TurboselfAccountSelector"> = ({ navigati
textAlign: "center",
}}
>
Papillon ne donnera jamais vos informations d'authentification à des tiers.
Papillon ne donnera jamais tes informations d'authentification à des tiers.
</NativeText>

<View style={styles.buttons}>
Expand Down
Loading