Skip to content

Commit

Permalink
Merge pull request #401 from Bulgus/fix/external_service_popup_transl…
Browse files Browse the repository at this point in the history
…ation

fix(translation) : translation of external service informations popup
  • Loading branch information
ecnivtwelve authored Dec 11, 2024
2 parents 51d84eb + c3666e7 commit 8d49e12
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/views/settings/SettingsExternalServices.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,9 @@ const SettingsExternalServices: Screen<"SettingsExternalServices"> = ({
};

const showAccountInfo = (account: any) => {
let info = `Service: ${getServiceName(account.service)}\n`;
info += `ID: ${account.username || "N. not"}\n`;
info += `School ID: ${account.authentication.schoolID || "N. not"}\n`;

let info = `Service : ${getServiceName(account.service)}\n`;
info += `Identifiant : ${account.username || "N. not"}\n`;
info += `Établissement : ${account.authentication.schoolID || "N. not"}\n`;


Alert.alert(
Expand Down

0 comments on commit 8d49e12

Please sign in to comment.