chore: update prettier configuration for print width (#519)
* feat: update prettier configuration for print width * chore: apply code formatting to entire repository * fix: remove build files * fix: format issue --------- Co-authored-by: Meier Lukas <meierschlumpf@gmail.com>
This commit is contained in:
@@ -5,12 +5,9 @@ import { createI18nClient } from "next-international/client";
|
||||
import { languageMapping } from "./lang";
|
||||
import enTranslation from "./lang/en";
|
||||
|
||||
export const {
|
||||
useI18n,
|
||||
useScopedI18n,
|
||||
useCurrentLocale,
|
||||
useChangeLocale,
|
||||
I18nProviderClient,
|
||||
} = createI18nClient(languageMapping(), {
|
||||
fallbackLocale: enTranslation,
|
||||
});
|
||||
export const { useI18n, useScopedI18n, useCurrentLocale, useChangeLocale, I18nProviderClient } = createI18nClient(
|
||||
languageMapping(),
|
||||
{
|
||||
fallbackLocale: enTranslation,
|
||||
},
|
||||
);
|
||||
|
||||
@@ -9,10 +9,7 @@ export type SupportedLanguage = (typeof supportedLanguages)[number];
|
||||
export const defaultLocale = "en";
|
||||
export { languageMapping } from "./lang";
|
||||
|
||||
export const translateIfNecessary = (
|
||||
t: TranslationFunction,
|
||||
value: stringOrTranslation | undefined,
|
||||
) => {
|
||||
export const translateIfNecessary = (t: TranslationFunction, value: stringOrTranslation | undefined) => {
|
||||
if (typeof value === "function") {
|
||||
return value(t);
|
||||
}
|
||||
|
||||
@@ -6,12 +6,8 @@ export const languageMapping = () => {
|
||||
const mapping: Record<string, unknown> = {};
|
||||
|
||||
for (const language of supportedLanguages) {
|
||||
mapping[language] = () =>
|
||||
import(`./lang/${language}`) as ReturnType<typeof enTranslations>;
|
||||
mapping[language] = () => import(`./lang/${language}`) as ReturnType<typeof enTranslations>;
|
||||
}
|
||||
|
||||
return mapping as Record<
|
||||
(typeof supportedLanguages)[number],
|
||||
() => ReturnType<typeof enTranslations>
|
||||
>;
|
||||
return mapping as Record<(typeof supportedLanguages)[number], () => ReturnType<typeof enTranslations>>;
|
||||
};
|
||||
|
||||
@@ -93,8 +93,7 @@ export default {
|
||||
},
|
||||
testConnection: {
|
||||
action: "Verbindung überprüfen",
|
||||
alertNotice:
|
||||
"Der Button zum Speichern wird aktiviert, sobald die Verbindung erfolgreich überprüft wurde",
|
||||
alertNotice: "Der Button zum Speichern wird aktiviert, sobald die Verbindung erfolgreich überprüft wurde",
|
||||
notification: {
|
||||
success: {
|
||||
title: "Verbindung erfolgreich",
|
||||
@@ -121,8 +120,7 @@ export default {
|
||||
secrets: {
|
||||
title: "Zugangsdaten",
|
||||
lastUpdated: "Zuletzt geändert {date}",
|
||||
secureNotice:
|
||||
"Diese Zugangsdaten können nach der Erstellung nicht mehr ausgelesen werden",
|
||||
secureNotice: "Diese Zugangsdaten können nach der Erstellung nicht mehr ausgelesen werden",
|
||||
reset: {
|
||||
title: "Zugangsdaten zurücksetzen",
|
||||
message: "Möchtest du diese Zugangsdaten wirklich zurücksetzen?",
|
||||
@@ -172,8 +170,7 @@ export default {
|
||||
option: {
|
||||
is24HourFormat: {
|
||||
label: "24-Stunden Format",
|
||||
description:
|
||||
"Verwende das 24-Stunden Format anstelle des 12-Stunden Formats",
|
||||
description: "Verwende das 24-Stunden Format anstelle des 12-Stunden Formats",
|
||||
},
|
||||
isLocaleTime: {
|
||||
label: "Lokale Zeit verwenden",
|
||||
|
||||
@@ -118,8 +118,7 @@ export default {
|
||||
label: "Delete user permanently",
|
||||
description:
|
||||
"Deletes this user including their preferences. Will not delete any boards. User will not be notified.",
|
||||
confirm:
|
||||
"Are you sure, that you want to delete the user {username} with his preferences?",
|
||||
confirm: "Are you sure, that you want to delete the user {username} with his preferences?",
|
||||
},
|
||||
select: {
|
||||
label: "Select user",
|
||||
@@ -144,8 +143,7 @@ export default {
|
||||
item: {
|
||||
admin: {
|
||||
label: "Administrator",
|
||||
description:
|
||||
"Members with this permission have full access to all features and settings",
|
||||
description: "Members with this permission have full access to all features and settings",
|
||||
},
|
||||
},
|
||||
},
|
||||
@@ -162,8 +160,7 @@ export default {
|
||||
},
|
||||
"modify-all": {
|
||||
label: "Modify all boards",
|
||||
description:
|
||||
"Allow members to modify all boards (Does not include access control and danger zone)",
|
||||
description: "Allow members to modify all boards (Does not include access control and danger zone)",
|
||||
},
|
||||
"full-access": {
|
||||
label: "Full board access",
|
||||
@@ -181,8 +178,7 @@ export default {
|
||||
},
|
||||
"use-all": {
|
||||
label: "Use all integrations",
|
||||
description:
|
||||
"Allows members to add any integrations to their boards",
|
||||
description: "Allows members to add any integrations to their boards",
|
||||
},
|
||||
"interact-all": {
|
||||
label: "Interact with any integration",
|
||||
@@ -190,8 +186,7 @@ export default {
|
||||
},
|
||||
"full-access": {
|
||||
label: "Full integration access",
|
||||
description:
|
||||
"Allow members to manage, use and interact with any integration",
|
||||
description: "Allow members to manage, use and interact with any integration",
|
||||
},
|
||||
},
|
||||
},
|
||||
@@ -211,8 +206,7 @@ export default {
|
||||
transfer: {
|
||||
label: "Transfer ownership",
|
||||
description: "Transfer ownership of this group to another user.",
|
||||
confirm:
|
||||
"Are you sure you want to transfer ownership for the group {name} to {username}?",
|
||||
confirm: "Are you sure you want to transfer ownership for the group {name} to {username}?",
|
||||
notification: {
|
||||
success: {
|
||||
message: "Transfered group {group} successfully to {user}",
|
||||
@@ -231,8 +225,7 @@ export default {
|
||||
},
|
||||
delete: {
|
||||
label: "Delete group",
|
||||
description:
|
||||
"Once you delete a group, there is no going back. Please be certain.",
|
||||
description: "Once you delete a group, there is no going back. Please be certain.",
|
||||
confirm: "Are you sure you want to delete the group {name}?",
|
||||
notification: {
|
||||
success: {
|
||||
@@ -383,8 +376,7 @@ export default {
|
||||
},
|
||||
testConnection: {
|
||||
action: "Test connection",
|
||||
alertNotice:
|
||||
"The Save button is enabled once a successful connection is established",
|
||||
alertNotice: "The Save button is enabled once a successful connection is established",
|
||||
notification: {
|
||||
success: {
|
||||
title: "Connection successful",
|
||||
@@ -454,8 +446,7 @@ export default {
|
||||
checkoutDocs: "Check out the documentation",
|
||||
},
|
||||
iconPicker: {
|
||||
header:
|
||||
"Type name or objects to filter for icons... Homarr will search through {countIcons} icons for you.",
|
||||
header: "Type name or objects to filter for icons... Homarr will search through {countIcons} icons for you.",
|
||||
},
|
||||
notification: {
|
||||
create: {
|
||||
@@ -642,8 +633,7 @@ export default {
|
||||
option: {
|
||||
customTitleToggle: {
|
||||
label: "Custom Title/City display",
|
||||
description:
|
||||
"Show off a custom title or the name of the city/country on top of the clock.",
|
||||
description: "Show off a custom title or the name of the city/country on top of the clock.",
|
||||
},
|
||||
customTitle: {
|
||||
label: "Title",
|
||||
@@ -734,8 +724,7 @@ export default {
|
||||
},
|
||||
iframe: {
|
||||
name: "iFrame",
|
||||
description:
|
||||
"Embed any content from the internet. Some websites may restrict access.",
|
||||
description: "Embed any content from the internet. Some websites may restrict access.",
|
||||
option: {
|
||||
embedUrl: {
|
||||
label: "Embed URL",
|
||||
@@ -767,14 +756,12 @@ export default {
|
||||
},
|
||||
error: {
|
||||
noUrl: "No iFrame URL provided",
|
||||
noBrowerSupport:
|
||||
"Your Browser does not support iframes. Please update your browser.",
|
||||
noBrowerSupport: "Your Browser does not support iframes. Please update your browser.",
|
||||
},
|
||||
},
|
||||
weather: {
|
||||
name: "Weather",
|
||||
description:
|
||||
"Displays the current weather information of a set location.",
|
||||
description: "Displays the current weather information of a set location.",
|
||||
option: {
|
||||
isFormatFahrenheit: {
|
||||
label: "Temperature in Fahrenheit",
|
||||
@@ -790,8 +777,7 @@ export default {
|
||||
},
|
||||
forecastDayCount: {
|
||||
label: "Amount of forecast days",
|
||||
description:
|
||||
"When the widget is not wide enough, less days are shown",
|
||||
description: "When the widget is not wide enough, less days are shown",
|
||||
},
|
||||
},
|
||||
kind: {
|
||||
@@ -844,8 +830,7 @@ export default {
|
||||
},
|
||||
hasAutoPlay: {
|
||||
label: "Autoplay",
|
||||
description:
|
||||
"Autoplay only works when muted because of browser restrictions",
|
||||
description: "Autoplay only works when muted because of browser restrictions",
|
||||
},
|
||||
isMuted: {
|
||||
label: "Muted",
|
||||
@@ -918,13 +903,11 @@ export default {
|
||||
option: {
|
||||
repeat: {
|
||||
label: "Repeat",
|
||||
description:
|
||||
"The image is repeated as much as needed to cover the whole background image painting area.",
|
||||
description: "The image is repeated as much as needed to cover the whole background image painting area.",
|
||||
},
|
||||
"no-repeat": {
|
||||
label: "No repeat",
|
||||
description:
|
||||
"The image is not repeated and may not fill the entire space.",
|
||||
description: "The image is not repeated and may not fill the entire space.",
|
||||
},
|
||||
"repeat-x": {
|
||||
label: "Repeat X",
|
||||
@@ -978,8 +961,7 @@ export default {
|
||||
section: {
|
||||
general: {
|
||||
title: "General",
|
||||
unrecognizedLink:
|
||||
"The provided link is not recognized and won't preview, it might still work.",
|
||||
unrecognizedLink: "The provided link is not recognized and won't preview, it might still work.",
|
||||
},
|
||||
layout: {
|
||||
title: "Layout",
|
||||
@@ -1036,8 +1018,7 @@ export default {
|
||||
action: {
|
||||
rename: {
|
||||
label: "Rename board",
|
||||
description:
|
||||
"Changing the name will break any links to this board.",
|
||||
description: "Changing the name will break any links to this board.",
|
||||
button: "Change name",
|
||||
modal: {
|
||||
title: "Rename board",
|
||||
@@ -1068,8 +1049,7 @@ export default {
|
||||
},
|
||||
delete: {
|
||||
label: "Delete this board",
|
||||
description:
|
||||
"Once you delete a board, there is no going back. Please be certain.",
|
||||
description: "Once you delete a board, there is no going back. Please be certain.",
|
||||
button: "Delete this board",
|
||||
confirm: {
|
||||
title: "Delete board",
|
||||
|
||||
@@ -3,9 +3,6 @@ import { createI18nServer } from "next-international/server";
|
||||
import { languageMapping } from "./lang";
|
||||
import enTranslation from "./lang/en";
|
||||
|
||||
export const { getI18n, getScopedI18n, getStaticParams } = createI18nServer(
|
||||
languageMapping(),
|
||||
{
|
||||
fallbackLocale: enTranslation,
|
||||
},
|
||||
);
|
||||
export const { getI18n, getScopedI18n, getStaticParams } = createI18nServer(languageMapping(), {
|
||||
fallbackLocale: enTranslation,
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user