From 192f951d4102b0f1285b76100edcd0719054676f Mon Sep 17 00:00:00 2001 From: alexsparkes Date: Wed, 4 Feb 2026 20:18:27 +0000 Subject: [PATCH] Add appearance customization options for time, quotes, and greetings; migrate old font settings to new structure --- .../greeting/options/GreetingOptions.jsx | 130 +++++++++++- src/features/misc/sections/Appearance.jsx | 112 ++++++++-- src/features/quote/options/QuoteOptions.jsx | 192 +++++++++++++++--- src/features/time/options/TimeOptions.jsx | 156 ++++++++++++-- src/i18n/locales/ar.json | 157 ++++++++++++-- src/i18n/locales/arz.json | 127 +++++++++++- src/i18n/locales/az.json | 153 ++++++++++++-- src/i18n/locales/azb.json | 153 ++++++++++++-- src/i18n/locales/bn.json | 127 +++++++++++- src/i18n/locales/de_DE.json | 143 +++++++++++-- src/i18n/locales/el.json | 127 +++++++++++- src/i18n/locales/en_GB.json | 127 +++++++++++- src/i18n/locales/en_US.json | 127 +++++++++++- src/i18n/locales/es.json | 153 ++++++++++++-- src/i18n/locales/es_419.json | 153 ++++++++++++-- src/i18n/locales/et.json | 157 ++++++++++++-- src/i18n/locales/fa.json | 127 +++++++++++- src/i18n/locales/fr.json | 151 ++++++++++++-- src/i18n/locales/hu.json | 127 +++++++++++- src/i18n/locales/id_ID.json | 131 +++++++++++- src/i18n/locales/ja.json | 127 +++++++++++- src/i18n/locales/lt.json | 157 ++++++++++++-- src/i18n/locales/lv.json | 157 ++++++++++++-- src/i18n/locales/nl.json | 127 +++++++++++- src/i18n/locales/no.json | 127 +++++++++++- src/i18n/locales/peo.json | 127 +++++++++++- src/i18n/locales/pt.json | 153 ++++++++++++-- src/i18n/locales/pt_BR.json | 153 ++++++++++++-- src/i18n/locales/ru.json | 147 ++++++++++++-- src/i18n/locales/sl.json | 157 ++++++++++++-- src/i18n/locales/sv.json | 127 +++++++++++- src/i18n/locales/ta.json | 157 ++++++++++++-- src/i18n/locales/tr_TR.json | 153 ++++++++++++-- src/i18n/locales/uk.json | 151 ++++++++++++-- src/i18n/locales/vi.json | 127 +++++++++++- src/i18n/locales/zh_CN.json | 157 ++++++++++++-- src/i18n/locales/zh_Hant.json | 127 +++++++++++- src/utils/settings/load.js | 178 +++++++++++++++- 38 files changed, 4996 insertions(+), 443 deletions(-) diff --git a/src/features/greeting/options/GreetingOptions.jsx b/src/features/greeting/options/GreetingOptions.jsx index bb0c57d0..912b2c64 100644 --- a/src/features/greeting/options/GreetingOptions.jsx +++ b/src/features/greeting/options/GreetingOptions.jsx @@ -9,14 +9,15 @@ import { PreferencesWrapper, Section, } from 'components/Layout/Settings'; -import { Checkbox, Switch, Text } from 'components/Form/Settings'; +import { Checkbox, Switch, Text, Dropdown } from 'components/Form/Settings'; import { DatePicker } from 'components/Form/Settings/DatePicker'; import { Button } from 'components/Elements'; import { toast } from 'react-toastify'; import defaultEvents from '../events.json'; +import googleFonts from 'config/googleFonts.json'; -import { MdEventNote, MdAdd, MdCancel, MdRefresh } from 'react-icons/md'; +import { MdEventNote, MdAdd, MdCancel, MdRefresh, MdPalette } from 'react-icons/md'; const GreetingOptions = ({ currentSubSection, onSubSectionChange, sectionName }) => { const t = useT(); @@ -228,7 +229,115 @@ const GreetingOptions = ({ currentSubSection, onSubSectionChange, sectionName }) ); }; + const AppearanceSection = () => { + const [greetingColor, setGreetingColor] = useState( + localStorage.getItem('greetingColor') || '#ffffff', + ); + + const fontWeight = `${GREETING_SECTION}.appearance.font_weight`; + + const updateColor = (event) => { + const color = event.target.value; + setGreetingColor(color); + localStorage.setItem('greetingColor', color); + }; + + return ( + <> + + + + ({ + value: font, + text: font, + }))} + /> + + + + + + + + + + + + + + + + + +
+ + +
+ { + localStorage.setItem('greetingColor', '#ffffff'); + setGreetingColor('#ffffff'); + }} + > + + {t('modals.main.settings.buttons.reset')} + +
+
+ + ); + }; + const isEventsSection = currentSubSection === 'events'; + const isAppearanceSection = currentSubSection === 'appearance'; let header; if (isEventsSection) { @@ -240,6 +349,15 @@ const GreetingOptions = ({ currentSubSection, onSubSectionChange, sectionName }) report={false} /> ); + } else if (isAppearanceSection) { + header = ( +
onSubSectionChange(null, sectionName)} + report={false} + /> + ); } else { header = (
+ ) : isAppearanceSection ? ( + ) : ( +
onSubSectionChange('appearance', sectionName)} + icon={} + />
{ - const fontWeight = 'modals.main.settings.sections.appearance.font.weight'; + const WidgetFontOptions = () => { + const fontWeight = 'modals.main.settings.sections.appearance.widget_font.weight'; return ( ({ @@ -62,10 +62,9 @@ function AppearanceOptions({ currentSubSection, onSubSectionChange, sectionName text: font, }))} /> - {/* names are taken from https://developer.mozilla.org/en-US/docs/Web/CSS/font-weight */} + + + ); + }; + + const SettingsFontOptions = () => { + const fontWeight = 'modals.main.settings.sections.appearance.settings_font.weight'; + return ( + + + + ({ + value: font, + text: font, + }))} + /> + + @@ -230,7 +311,8 @@ function AppearanceOptions({ currentSubSection, onSubSectionChange, sectionName onClick={() => onSubSectionChange('accessibility', sectionName)} /> - + + )} diff --git a/src/features/quote/options/QuoteOptions.jsx b/src/features/quote/options/QuoteOptions.jsx index 00e8f79b..a62e8d7c 100644 --- a/src/features/quote/options/QuoteOptions.jsx +++ b/src/features/quote/options/QuoteOptions.jsx @@ -1,7 +1,16 @@ import { useT } from 'contexts'; import variables from 'config/variables'; import React, { useState, useEffect } from 'react'; -import { MdCancel, MdAdd, MdSource, MdOutlineFormatQuote, MdExplore } from 'react-icons/md'; +import { + MdCancel, + MdAdd, + MdSource, + MdOutlineFormatQuote, + MdExplore, + MdPalette, + MdRefresh, +} from 'react-icons/md'; +import googleFonts from 'config/googleFonts.json'; import { toast } from 'react-toastify'; import { @@ -182,7 +191,107 @@ const QuoteOptions = ({ currentSubSection, onSubSectionChange, sectionName }) => ); }; + const AppearanceSection = () => { + const [quoteColor, setQuoteColor] = useState(localStorage.getItem('quoteColor') || '#ffffff'); + const fontWeight = `${QUOTE_SECTION}.appearance.font_weight`; + + const updateColor = (event) => { + const color = event.target.value; + setQuoteColor(color); + localStorage.setItem('quoteColor', color); + }; + + return ( + <> + + + + ({ + value: font, + text: font, + }))} + /> + + + + + + + + + + + + + + + + + +
+ + +
+ { + localStorage.setItem('quoteColor', '#ffffff'); + setQuoteColor('#ffffff'); + }} + > + + {t('modals.main.settings.buttons.reset')} + +
+
+ + ); + }; + const isSourceSection = currentSubSection === 'source'; + const isAppearanceSection = currentSubSection === 'appearance'; const getInstalledQuotePacks = () => { try { @@ -365,43 +474,69 @@ const QuoteOptions = ({ currentSubSection, onSubSectionChange, sectionName }) => customSettings = <>; } + let header; + if (isSourceSection) { + header = ( +
onSubSectionChange(null, sectionName)} + report={false} + /> + ); + } else if (isAppearanceSection) { + header = ( +
onSubSectionChange(null, sectionName)} + report={false} + /> + ); + } else { + header = ( +
+ ); + } + return ( <> - {isSourceSection ? ( -
onSubSectionChange(null, sectionName)} - report={false} - /> - ) : ( -
- )} + {header} {isSourceSection && ( - - - - - - + <> + + + + + + + {customSettings} + )} - {!isSourceSection && ( + {isAppearanceSection && } + {!isSourceSection && !isAppearanceSection && ( +
} + title={t(`${QUOTE_SECTION}.appearance.title`)} + subtitle={t(`${QUOTE_SECTION}.appearance.description`)} + onClick={() => onSubSectionChange('appearance', sectionName)} + />
} title={t('modals.main.settings.sections.background.source.title')} @@ -415,7 +550,6 @@ const QuoteOptions = ({ currentSubSection, onSubSectionChange, sectionName }) => )} - {customSettings} ); }; diff --git a/src/features/time/options/TimeOptions.jsx b/src/features/time/options/TimeOptions.jsx index b4e1be17..87b42b78 100644 --- a/src/features/time/options/TimeOptions.jsx +++ b/src/features/time/options/TimeOptions.jsx @@ -1,12 +1,13 @@ import { useT } from 'contexts'; import React, { useState } from 'react'; -import { Header, Row, Content, Action, PreferencesWrapper } from 'components/Layout/Settings'; +import { Header, Row, Content, Action, PreferencesWrapper, Section } from 'components/Layout/Settings'; import { Checkbox, Dropdown, Radio } from 'components/Form/Settings'; +import googleFonts from 'config/googleFonts.json'; -import { MdRefresh } from 'react-icons/md'; +import { MdRefresh, MdPalette } from 'react-icons/md'; -const TimeOptions = () => { +const TimeOptions = ({ currentSubSection, onSubSectionChange, sectionName }) => { const t = useT(); const [timeType, setTimeType] = useState(localStorage.getItem('timeType') || 'digital'); const [hourColour, setHourColour] = useState(localStorage.getItem('hourColour') || '#ffffff'); @@ -16,6 +17,7 @@ const TimeOptions = () => { const [secondColour, setSecondColour] = useState( localStorage.getItem('secondColour') || '#ffffff', ); + const [clockColor, setClockColor] = useState(localStorage.getItem('clockColor') || '#ffffff'); const TIME_SECTION = 'modals.main.settings.sections.time'; const updateColour = (type, event) => { @@ -211,8 +213,118 @@ const TimeOptions = () => { } }; - return ( - <> + const AppearanceSection = () => { + const fontWeight = `${TIME_SECTION}.appearance.font_weight`; + + const updateClockColor = (event) => { + const color = event.target.value; + setClockColor(color); + localStorage.setItem('clockColor', color); + }; + + return ( + <> + + + + ({ + value: font, + text: font, + }))} + /> + + + + + + + + + + + + + + + + + +
+ + +
+ { + localStorage.setItem('clockColor', '#ffffff'); + setClockColor('#ffffff'); + }} + > + + {t('modals.main.settings.buttons.reset')} + +
+
+ + ); + }; + + const isAppearanceSection = currentSubSection === 'appearance'; + + let header; + if (isAppearanceSection) { + header = ( +
onSubSectionChange(null, sectionName)} + report={false} + /> + ); + } else { + header = (
{ zoomSetting="zoomClock" visibilityToggle={true} /> - - - {getTimeSettings()} - + ); + } + + return ( + <> + {header} + {isAppearanceSection ? ( + + ) : ( + +
onSubSectionChange('appearance', sectionName)} + icon={} + /> + + {getTimeSettings()} + + )} ); }; diff --git a/src/i18n/locales/ar.json b/src/i18n/locales/ar.json index 35702f27..34905ec5 100644 --- a/src/i18n/locales/ar.json +++ b/src/i18n/locales/ar.json @@ -153,6 +153,38 @@ "change_hour_colour": "تغيير لون نص الساعات", "change_minute_colour": "تغيير لون نص الدقائق", "change_second_colour": "تغيير لون نص الثواني" + }, + "appearance": { + "title": "Appearance", + "description": "Customise how the time looks", + "font": { + "title": "Font", + "description": "Change the font used for the time", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the time text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the time text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the time text" + } } }, "date": { @@ -203,6 +235,38 @@ "frequency": { "title": "Update Frequency", "subtitle": "How often the quote changes" + }, + "appearance": { + "title": "Appearance", + "description": "Customise how the quote looks", + "font": { + "title": "Font", + "description": "Change the font used for the quote", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the quote text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the quote text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the quote text" + } } }, "greeting": { @@ -223,7 +287,39 @@ "month": "الشهر", "no_events": "لا توجد أحداث", "no_events_description": "أضف بعض الأحداث", - "add_event": "إضافة حدث" + "add_event": "إضافة حدث", + "appearance": { + "title": "Appearance", + "description": "Customise how the greeting looks", + "font": { + "title": "Font", + "description": "Change the font used for the greeting", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the greeting text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the greeting text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the greeting text" + } + } }, "background": { "title": "الخلفية", @@ -496,27 +592,50 @@ }, "apps_subtitle": "إنشاء اختصارات لمواقعك الأخرى المستخدمة بشكل متكرر." }, - "font": { - "title": "الخط", - "description": "تغيير الخط المستخدم في Mue", - "custom": "خط مخصص", - "google": "استيراد من Google Fonts", + "widget_font": { + "title": "Widget Font", + "description": "Change the font used for widgets on the new tab page", + "custom": "Custom font", + "google": "Import from Google Fonts", "weight": { - "title": "وزن الخط", - "thin": "رفيع", - "extra_light": "خفيف جدًا", - "light": "خفيف", - "normal": "عادي", - "medium": "متوسط", - "semi_bold": "شبه غامق", - "bold": "غامق", - "extra_bold": "غامق جدًا" + "title": "Font weight", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" }, "style": { - "title": "نمط الخط", - "normal": "عادي", - "italic": "مائل", - "oblique": "مائل غير منتظم" + "title": "Font style", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + } + }, + "settings_font": { + "title": "Settings Font", + "description": "Change the font used for the settings modal", + "custom": "Custom font", + "google": "Import from Google Fonts", + "weight": { + "title": "Font weight", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "style": { + "title": "Font style", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" } }, "accessibility": { diff --git a/src/i18n/locales/arz.json b/src/i18n/locales/arz.json index e7d12a43..c5365877 100644 --- a/src/i18n/locales/arz.json +++ b/src/i18n/locales/arz.json @@ -153,6 +153,38 @@ "change_hour_colour": "Change hour text colour", "change_minute_colour": "Change minute text colour", "change_second_colour": "Change second text colour" + }, + "appearance": { + "title": "Appearance", + "description": "Customise how the time looks", + "font": { + "title": "Font", + "description": "Change the font used for the time", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the time text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the time text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the time text" + } } }, "date": { @@ -203,6 +235,38 @@ "frequency": { "title": "Update Frequency", "subtitle": "How often the quote changes" + }, + "appearance": { + "title": "Appearance", + "description": "Customise how the quote looks", + "font": { + "title": "Font", + "description": "Change the font used for the quote", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the quote text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the quote text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the quote text" + } } }, "greeting": { @@ -223,7 +287,39 @@ "month": "Month", "no_events": "No Events", "no_events_description": "Add Some Events", - "add_event": "Add Event" + "add_event": "Add Event", + "appearance": { + "title": "Appearance", + "description": "Customise how the greeting looks", + "font": { + "title": "Font", + "description": "Change the font used for the greeting", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the greeting text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the greeting text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the greeting text" + } + } }, "background": { "title": "Background", @@ -496,9 +592,32 @@ }, "apps_subtitle": "Create a shortcut of your other commonly used websites." }, - "font": { - "title": "Font", - "description": "Change the font used in Mue", + "widget_font": { + "title": "Widget Font", + "description": "Change the font used for widgets on the new tab page", + "custom": "Custom font", + "google": "Import from Google Fonts", + "weight": { + "title": "Font weight", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "style": { + "title": "Font style", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + } + }, + "settings_font": { + "title": "Settings Font", + "description": "Change the font used for the settings modal", "custom": "Custom font", "google": "Import from Google Fonts", "weight": { diff --git a/src/i18n/locales/az.json b/src/i18n/locales/az.json index b5d2b702..b029e11b 100644 --- a/src/i18n/locales/az.json +++ b/src/i18n/locales/az.json @@ -153,6 +153,38 @@ "change_hour_colour": "Saat rəngini dəyişdir", "change_minute_colour": "Dəqiqə rəngini dəyişdir", "change_second_colour": "Saniyə rəngini dəyişdir" + }, + "appearance": { + "title": "Appearance", + "description": "Customise how the time looks", + "font": { + "title": "Font", + "description": "Change the font used for the time", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the time text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the time text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the time text" + } } }, "date": { @@ -203,6 +235,38 @@ "frequency": { "title": "Update Frequency", "subtitle": "How often the quote changes" + }, + "appearance": { + "title": "Appearance", + "description": "Customise how the quote looks", + "font": { + "title": "Font", + "description": "Change the font used for the quote", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the quote text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the quote text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the quote text" + } } }, "greeting": { @@ -223,7 +287,39 @@ "month": "Ay", "no_events": "Hadisə yoxdur", "no_events_description": "Bəzi hadisələr əlavə edin", - "add_event": "Hadisə əlavə et" + "add_event": "Hadisə əlavə et", + "appearance": { + "title": "Appearance", + "description": "Customise how the greeting looks", + "font": { + "title": "Font", + "description": "Change the font used for the greeting", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the greeting text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the greeting text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the greeting text" + } + } }, "background": { "title": "Fon", @@ -496,27 +592,50 @@ }, "apps_subtitle": "Digər tez-tez istifadə etdiyiniz veb saytların qısayolunu yaradın." }, - "font": { - "title": "Şrift", - "description": "Mue-da istifadə edilən şrifti dəyişdirin", - "custom": "Xüsusi şrift", - "google": "Google Şriftlərdən idxal edin", + "widget_font": { + "title": "Widget Font", + "description": "Change the font used for widgets on the new tab page", + "custom": "Custom font", + "google": "Import from Google Fonts", "weight": { - "title": "Şrift qalınlığı", - "thin": "Nazik", - "extra_light": "Əlavə Yüngül", - "light": "Yüngül", + "title": "Font weight", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", "normal": "Normal", - "medium": "Orta", - "semi_bold": "Yarı Qalın", - "bold": "Qalın", - "extra_bold": "Əlavə Qalın" + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" }, "style": { - "title": "Şrift üslubu", + "title": "Font style", "normal": "Normal", - "italic": "İtalik", - "oblique": "Maili" + "italic": "Italic", + "oblique": "Oblique" + } + }, + "settings_font": { + "title": "Settings Font", + "description": "Change the font used for the settings modal", + "custom": "Custom font", + "google": "Import from Google Fonts", + "weight": { + "title": "Font weight", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "style": { + "title": "Font style", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" } }, "accessibility": { diff --git a/src/i18n/locales/azb.json b/src/i18n/locales/azb.json index 3e01e431..90626a56 100644 --- a/src/i18n/locales/azb.json +++ b/src/i18n/locales/azb.json @@ -153,6 +153,38 @@ "change_hour_colour": "Saat mətn rəngini dəyişdir", "change_minute_colour": "Dəqiqə mətn rəngini dəyişdir", "change_second_colour": "Saniyə mətn rəngini dəyişdir" + }, + "appearance": { + "title": "Appearance", + "description": "Customise how the time looks", + "font": { + "title": "Font", + "description": "Change the font used for the time", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the time text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the time text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the time text" + } } }, "date": { @@ -203,6 +235,38 @@ "frequency": { "title": "Update Frequency", "subtitle": "How often the quote changes" + }, + "appearance": { + "title": "Appearance", + "description": "Customise how the quote looks", + "font": { + "title": "Font", + "description": "Change the font used for the quote", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the quote text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the quote text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the quote text" + } } }, "greeting": { @@ -223,7 +287,39 @@ "month": "Ay", "no_events": "Hadisə yoxdur", "no_events_description": "Bəzi hadisələr əlavə edin", - "add_event": "Hadisə əlavə et" + "add_event": "Hadisə əlavə et", + "appearance": { + "title": "Appearance", + "description": "Customise how the greeting looks", + "font": { + "title": "Font", + "description": "Change the font used for the greeting", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the greeting text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the greeting text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the greeting text" + } + } }, "background": { "title": "Arxa fon", @@ -496,27 +592,50 @@ }, "apps_subtitle": "Tez-tez istifadə etdiyiniz digər veb saytların qısa yolunu yaradın." }, - "font": { - "title": "Şrift", - "description": "Mue-də istifadə olunan şrifti dəyişdirin", - "custom": "Xüsusi şrift", - "google": "Google Fonts-dan idxal edin", + "widget_font": { + "title": "Widget Font", + "description": "Change the font used for widgets on the new tab page", + "custom": "Custom font", + "google": "Import from Google Fonts", "weight": { - "title": "Şrift qalınlığı", - "thin": "Nazik", - "extra_light": "Çox Yüngül", - "light": "Yüngül", + "title": "Font weight", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", "normal": "Normal", - "medium": "Orta", - "semi_bold": "Yarım qalın", - "bold": "Qalın", - "extra_bold": "Çox Qalın" + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" }, "style": { - "title": "Şrift üslubu", + "title": "Font style", "normal": "Normal", - "italic": "İtalik", - "oblique": "Oblik" + "italic": "Italic", + "oblique": "Oblique" + } + }, + "settings_font": { + "title": "Settings Font", + "description": "Change the font used for the settings modal", + "custom": "Custom font", + "google": "Import from Google Fonts", + "weight": { + "title": "Font weight", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "style": { + "title": "Font style", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" } }, "accessibility": { diff --git a/src/i18n/locales/bn.json b/src/i18n/locales/bn.json index 974729ca..db61e366 100644 --- a/src/i18n/locales/bn.json +++ b/src/i18n/locales/bn.json @@ -153,6 +153,38 @@ "change_hour_colour": "ঘন্টার পাঠ্যের রঙ পরিবর্তন করুন", "change_minute_colour": "মিনিটের পাঠ্যের রঙ পরিবর্তন করুন", "change_second_colour": "Change second text colour" + }, + "appearance": { + "title": "Appearance", + "description": "Customise how the time looks", + "font": { + "title": "Font", + "description": "Change the font used for the time", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the time text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the time text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the time text" + } } }, "date": { @@ -203,6 +235,38 @@ "frequency": { "title": "Update Frequency", "subtitle": "How often the quote changes" + }, + "appearance": { + "title": "Appearance", + "description": "Customise how the quote looks", + "font": { + "title": "Font", + "description": "Change the font used for the quote", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the quote text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the quote text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the quote text" + } } }, "greeting": { @@ -223,7 +287,39 @@ "month": "Month", "no_events": "No Events", "no_events_description": "Add Some Events", - "add_event": "Add Event" + "add_event": "Add Event", + "appearance": { + "title": "Appearance", + "description": "Customise how the greeting looks", + "font": { + "title": "Font", + "description": "Change the font used for the greeting", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the greeting text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the greeting text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the greeting text" + } + } }, "background": { "title": "পটভূমি", @@ -496,9 +592,32 @@ }, "apps_subtitle": "Create a shortcut of your other commonly used websites." }, - "font": { - "title": "Font", - "description": "Change the font used in Mue", + "widget_font": { + "title": "Widget Font", + "description": "Change the font used for widgets on the new tab page", + "custom": "Custom font", + "google": "Import from Google Fonts", + "weight": { + "title": "Font weight", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "style": { + "title": "Font style", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + } + }, + "settings_font": { + "title": "Settings Font", + "description": "Change the font used for the settings modal", "custom": "Custom font", "google": "Import from Google Fonts", "weight": { diff --git a/src/i18n/locales/de_DE.json b/src/i18n/locales/de_DE.json index b07a54c9..7f3f0115 100644 --- a/src/i18n/locales/de_DE.json +++ b/src/i18n/locales/de_DE.json @@ -153,6 +153,38 @@ "change_hour_colour": "Textfarbe der Stunde ändern", "change_minute_colour": "Textfarbe der Minute ändern", "change_second_colour": "Change second text colour" + }, + "appearance": { + "title": "Appearance", + "description": "Customise how the time looks", + "font": { + "title": "Font", + "description": "Change the font used for the time", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the time text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the time text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the time text" + } } }, "date": { @@ -203,6 +235,38 @@ "frequency": { "title": "Update Frequency", "subtitle": "How often the quote changes" + }, + "appearance": { + "title": "Appearance", + "description": "Customise how the quote looks", + "font": { + "title": "Font", + "description": "Change the font used for the quote", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the quote text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the quote text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the quote text" + } } }, "greeting": { @@ -223,7 +287,39 @@ "month": "Month", "no_events": "No Events", "no_events_description": "Add Some Events", - "add_event": "Add Event" + "add_event": "Add Event", + "appearance": { + "title": "Appearance", + "description": "Customise how the greeting looks", + "font": { + "title": "Font", + "description": "Change the font used for the greeting", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the greeting text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the greeting text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the greeting text" + } + } }, "background": { "title": "Hintergrund", @@ -496,24 +592,47 @@ }, "apps_subtitle": "Erstellen Sie eine Verknüpfung Ihrer anderen häufig verwendeten Websites." }, - "font": { - "title": "Schriftart", - "description": "Ändern Sie die in Mue verwendete Schriftart", - "custom": "Eigene Schriftart", - "google": "Importieren von Google Fonts", + "widget_font": { + "title": "Widget Font", + "description": "Change the font used for widgets on the new tab page", + "custom": "Custom font", + "google": "Import from Google Fonts", "weight": { - "title": "Schriftgröße", - "thin": "Dünn", - "extra_light": "Extra hell", - "light": "Hell", + "title": "Font weight", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", "normal": "Normal", - "medium": "Mittel", + "medium": "Medium", "semi_bold": "Semi-Bold", "bold": "Bold", "extra_bold": "Extra-Bold" }, "style": { - "title": "Schriftart", + "title": "Font style", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + } + }, + "settings_font": { + "title": "Settings Font", + "description": "Change the font used for the settings modal", + "custom": "Custom font", + "google": "Import from Google Fonts", + "weight": { + "title": "Font weight", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "style": { + "title": "Font style", "normal": "Normal", "italic": "Italic", "oblique": "Oblique" diff --git a/src/i18n/locales/el.json b/src/i18n/locales/el.json index da2d9164..483fca68 100644 --- a/src/i18n/locales/el.json +++ b/src/i18n/locales/el.json @@ -153,6 +153,38 @@ "change_hour_colour": "Change hour text colour", "change_minute_colour": "Change minute text colour", "change_second_colour": "Change second text colour" + }, + "appearance": { + "title": "Appearance", + "description": "Customise how the time looks", + "font": { + "title": "Font", + "description": "Change the font used for the time", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the time text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the time text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the time text" + } } }, "date": { @@ -203,6 +235,38 @@ "frequency": { "title": "Update Frequency", "subtitle": "How often the quote changes" + }, + "appearance": { + "title": "Appearance", + "description": "Customise how the quote looks", + "font": { + "title": "Font", + "description": "Change the font used for the quote", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the quote text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the quote text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the quote text" + } } }, "greeting": { @@ -223,7 +287,39 @@ "month": "Month", "no_events": "No Events", "no_events_description": "Add Some Events", - "add_event": "Add Event" + "add_event": "Add Event", + "appearance": { + "title": "Appearance", + "description": "Customise how the greeting looks", + "font": { + "title": "Font", + "description": "Change the font used for the greeting", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the greeting text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the greeting text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the greeting text" + } + } }, "background": { "title": "Background", @@ -496,9 +592,32 @@ }, "apps_subtitle": "Create a shortcut of your other commonly used websites." }, - "font": { - "title": "Font", - "description": "Change the font used in Mue", + "widget_font": { + "title": "Widget Font", + "description": "Change the font used for widgets on the new tab page", + "custom": "Custom font", + "google": "Import from Google Fonts", + "weight": { + "title": "Font weight", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "style": { + "title": "Font style", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + } + }, + "settings_font": { + "title": "Settings Font", + "description": "Change the font used for the settings modal", "custom": "Custom font", "google": "Import from Google Fonts", "weight": { diff --git a/src/i18n/locales/en_GB.json b/src/i18n/locales/en_GB.json index 7c335d51..74ad0b22 100644 --- a/src/i18n/locales/en_GB.json +++ b/src/i18n/locales/en_GB.json @@ -153,6 +153,38 @@ "change_hour_colour": "Change hour text colour", "change_minute_colour": "Change minute text colour", "change_second_colour": "Change second text colour" + }, + "appearance": { + "title": "Appearance", + "description": "Customise how the time looks", + "font": { + "title": "Font", + "description": "Change the font used for the time", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the time text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the time text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the time text" + } } }, "date": { @@ -203,6 +235,38 @@ "frequency": { "title": "Update Frequency", "subtitle": "How often the quote changes" + }, + "appearance": { + "title": "Appearance", + "description": "Customise how the quote looks", + "font": { + "title": "Font", + "description": "Change the font used for the quote", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the quote text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the quote text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the quote text" + } } }, "greeting": { @@ -223,7 +287,39 @@ "month": "Month", "no_events": "No Events", "no_events_description": "Add Some Events", - "add_event": "Add Event" + "add_event": "Add Event", + "appearance": { + "title": "Appearance", + "description": "Customise how the greeting looks", + "font": { + "title": "Font", + "description": "Change the font used for the greeting", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the greeting text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the greeting text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the greeting text" + } + } }, "background": { "title": "Background", @@ -496,9 +592,32 @@ }, "apps_subtitle": "Create a shortcut of your other commonly used websites." }, - "font": { - "title": "Font", - "description": "Change the font used in Mue", + "widget_font": { + "title": "Widget Font", + "description": "Change the font used for widgets on the new tab page", + "custom": "Custom font", + "google": "Import from Google Fonts", + "weight": { + "title": "Font weight", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "style": { + "title": "Font style", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + } + }, + "settings_font": { + "title": "Settings Font", + "description": "Change the font used for the settings modal", "custom": "Custom font", "google": "Import from Google Fonts", "weight": { diff --git a/src/i18n/locales/en_US.json b/src/i18n/locales/en_US.json index 6b206f6b..ecfd345f 100644 --- a/src/i18n/locales/en_US.json +++ b/src/i18n/locales/en_US.json @@ -153,6 +153,38 @@ "change_hour_colour": "Change hour text color", "change_minute_colour": "Change minute text color", "change_second_colour": "Change second text colour" + }, + "appearance": { + "title": "Appearance", + "description": "Customise how the time looks", + "font": { + "title": "Font", + "description": "Change the font used for the time", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the time text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the time text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the time text" + } } }, "date": { @@ -203,6 +235,38 @@ "frequency": { "title": "Update Frequency", "subtitle": "How often the quote changes" + }, + "appearance": { + "title": "Appearance", + "description": "Customise how the quote looks", + "font": { + "title": "Font", + "description": "Change the font used for the quote", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the quote text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the quote text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the quote text" + } } }, "greeting": { @@ -223,7 +287,39 @@ "month": "Month", "no_events": "No Events", "no_events_description": "Add Some Events", - "add_event": "Add Event" + "add_event": "Add Event", + "appearance": { + "title": "Appearance", + "description": "Customise how the greeting looks", + "font": { + "title": "Font", + "description": "Change the font used for the greeting", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the greeting text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the greeting text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the greeting text" + } + } }, "background": { "title": "Background", @@ -496,9 +592,32 @@ }, "apps_subtitle": "Create a shortcut of your other commonly used websites." }, - "font": { - "title": "Font", - "description": "Change the font used in Mue", + "widget_font": { + "title": "Widget Font", + "description": "Change the font used for widgets on the new tab page", + "custom": "Custom font", + "google": "Import from Google Fonts", + "weight": { + "title": "Font weight", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "style": { + "title": "Font style", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + } + }, + "settings_font": { + "title": "Settings Font", + "description": "Change the font used for the settings modal", "custom": "Custom font", "google": "Import from Google Fonts", "weight": { diff --git a/src/i18n/locales/es.json b/src/i18n/locales/es.json index 1f0cf532..2ba3343c 100644 --- a/src/i18n/locales/es.json +++ b/src/i18n/locales/es.json @@ -153,6 +153,38 @@ "change_hour_colour": "Cambiar el color de las horas", "change_minute_colour": "Cambiar el color de los minutos", "change_second_colour": "Change second text colour" + }, + "appearance": { + "title": "Appearance", + "description": "Customise how the time looks", + "font": { + "title": "Font", + "description": "Change the font used for the time", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the time text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the time text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the time text" + } } }, "date": { @@ -203,6 +235,38 @@ "frequency": { "title": "Update Frequency", "subtitle": "How often the quote changes" + }, + "appearance": { + "title": "Appearance", + "description": "Customise how the quote looks", + "font": { + "title": "Font", + "description": "Change the font used for the quote", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the quote text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the quote text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the quote text" + } } }, "greeting": { @@ -223,7 +287,39 @@ "month": "Month", "no_events": "No Events", "no_events_description": "Add Some Events", - "add_event": "Add Event" + "add_event": "Add Event", + "appearance": { + "title": "Appearance", + "description": "Customise how the greeting looks", + "font": { + "title": "Font", + "description": "Change the font used for the greeting", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the greeting text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the greeting text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the greeting text" + } + } }, "background": { "title": "Fondo", @@ -496,27 +592,50 @@ }, "apps_subtitle": "Create a shortcut of your other commonly used websites." }, - "font": { - "title": "Fuente", - "description": "Cambiar la tipografía utilizada en Mue", - "custom": "Fuente personalizada", - "google": "Importar desde Google Fonts", + "widget_font": { + "title": "Widget Font", + "description": "Change the font used for widgets on the new tab page", + "custom": "Custom font", + "google": "Import from Google Fonts", "weight": { - "title": "Tipo de la fuente", - "thin": "Delgado", - "extra_light": "Extra fino", - "light": "Fino", + "title": "Font weight", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", "normal": "Normal", - "medium": "Mediano", - "semi_bold": "Semi negrita", - "bold": "Negrita", - "extra_bold": "Extra negrita" + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" }, "style": { - "title": "Estilo de la fuente", + "title": "Font style", "normal": "Normal", - "italic": "Cursiva", - "oblique": "Oblicua" + "italic": "Italic", + "oblique": "Oblique" + } + }, + "settings_font": { + "title": "Settings Font", + "description": "Change the font used for the settings modal", + "custom": "Custom font", + "google": "Import from Google Fonts", + "weight": { + "title": "Font weight", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "style": { + "title": "Font style", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" } }, "accessibility": { diff --git a/src/i18n/locales/es_419.json b/src/i18n/locales/es_419.json index 077de949..989f9260 100644 --- a/src/i18n/locales/es_419.json +++ b/src/i18n/locales/es_419.json @@ -153,6 +153,38 @@ "change_hour_colour": "Change hour text colour", "change_minute_colour": "Change minute text colour", "change_second_colour": "Change second text colour" + }, + "appearance": { + "title": "Appearance", + "description": "Customise how the time looks", + "font": { + "title": "Font", + "description": "Change the font used for the time", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the time text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the time text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the time text" + } } }, "date": { @@ -203,6 +235,38 @@ "frequency": { "title": "Update Frequency", "subtitle": "How often the quote changes" + }, + "appearance": { + "title": "Appearance", + "description": "Customise how the quote looks", + "font": { + "title": "Font", + "description": "Change the font used for the quote", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the quote text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the quote text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the quote text" + } } }, "greeting": { @@ -223,7 +287,39 @@ "month": "Month", "no_events": "No Events", "no_events_description": "Add Some Events", - "add_event": "Add Event" + "add_event": "Add Event", + "appearance": { + "title": "Appearance", + "description": "Customise how the greeting looks", + "font": { + "title": "Font", + "description": "Change the font used for the greeting", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the greeting text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the greeting text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the greeting text" + } + } }, "background": { "title": "Fondo", @@ -496,27 +592,50 @@ }, "apps_subtitle": "Create a shortcut of your other commonly used websites." }, - "font": { - "title": "Fuente", - "description": "Change the font used in Mue", - "custom": "Fuente personalizada", - "google": "Importar desde Google Fonts", + "widget_font": { + "title": "Widget Font", + "description": "Change the font used for widgets on the new tab page", + "custom": "Custom font", + "google": "Import from Google Fonts", "weight": { - "title": "Tipo de la fuente", - "thin": "Delgado", - "extra_light": "Extra fino", - "light": "Fino", + "title": "Font weight", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", "normal": "Normal", - "medium": "Mediano", - "semi_bold": "Semi negrita", - "bold": "Negrita", - "extra_bold": "Extra negrita" + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" }, "style": { - "title": "Estilo de la fuente", + "title": "Font style", "normal": "Normal", - "italic": "Cursiva", - "oblique": "Oblicua" + "italic": "Italic", + "oblique": "Oblique" + } + }, + "settings_font": { + "title": "Settings Font", + "description": "Change the font used for the settings modal", + "custom": "Custom font", + "google": "Import from Google Fonts", + "weight": { + "title": "Font weight", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "style": { + "title": "Font style", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" } }, "accessibility": { diff --git a/src/i18n/locales/et.json b/src/i18n/locales/et.json index c14e27e4..1b6aebc1 100644 --- a/src/i18n/locales/et.json +++ b/src/i18n/locales/et.json @@ -153,6 +153,38 @@ "change_hour_colour": "Muuda tunni teksti värvi", "change_minute_colour": "Muuda minuti teksti värvi", "change_second_colour": "Muuda sekundi teksti värvi" + }, + "appearance": { + "title": "Appearance", + "description": "Customise how the time looks", + "font": { + "title": "Font", + "description": "Change the font used for the time", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the time text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the time text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the time text" + } } }, "date": { @@ -203,6 +235,38 @@ "frequency": { "title": "Update Frequency", "subtitle": "How often the quote changes" + }, + "appearance": { + "title": "Appearance", + "description": "Customise how the quote looks", + "font": { + "title": "Font", + "description": "Change the font used for the quote", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the quote text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the quote text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the quote text" + } } }, "greeting": { @@ -223,7 +287,39 @@ "month": "Kuu", "no_events": "Sündmusi pole", "no_events_description": "Lisa mõned sündmused", - "add_event": "Lisa sündmus" + "add_event": "Lisa sündmus", + "appearance": { + "title": "Appearance", + "description": "Customise how the greeting looks", + "font": { + "title": "Font", + "description": "Change the font used for the greeting", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the greeting text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the greeting text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the greeting text" + } + } }, "background": { "title": "Taust", @@ -496,27 +592,50 @@ }, "apps_subtitle": "Loo otsetee oma teistele sageli kasutatavatele veebisaitidele." }, - "font": { - "title": "Font", - "description": "Muuda Mues kasutatavat fonti", - "custom": "Kohandatud font", - "google": "Impordi Google Fontsist", + "widget_font": { + "title": "Widget Font", + "description": "Change the font used for widgets on the new tab page", + "custom": "Custom font", + "google": "Import from Google Fonts", "weight": { - "title": "Fondi paksus", - "thin": "Õhuke", - "extra_light": "Eriti kerge", - "light": "Kerge", - "normal": "Tavaline", - "medium": "Keskmine", - "semi_bold": "Poolpaks", - "bold": "Paks", - "extra_bold": "Eriti paks" + "title": "Font weight", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" }, "style": { - "title": "Fondi stiil", - "normal": "Tavaline", - "italic": "Kursiiv", - "oblique": "Kaldkiri" + "title": "Font style", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + } + }, + "settings_font": { + "title": "Settings Font", + "description": "Change the font used for the settings modal", + "custom": "Custom font", + "google": "Import from Google Fonts", + "weight": { + "title": "Font weight", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "style": { + "title": "Font style", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" } }, "accessibility": { diff --git a/src/i18n/locales/fa.json b/src/i18n/locales/fa.json index 1ee0715c..3efb526c 100644 --- a/src/i18n/locales/fa.json +++ b/src/i18n/locales/fa.json @@ -153,6 +153,38 @@ "change_hour_colour": "Change hour text colour", "change_minute_colour": "Change minute text colour", "change_second_colour": "Change second text colour" + }, + "appearance": { + "title": "Appearance", + "description": "Customise how the time looks", + "font": { + "title": "Font", + "description": "Change the font used for the time", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the time text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the time text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the time text" + } } }, "date": { @@ -203,6 +235,38 @@ "frequency": { "title": "Update Frequency", "subtitle": "How often the quote changes" + }, + "appearance": { + "title": "Appearance", + "description": "Customise how the quote looks", + "font": { + "title": "Font", + "description": "Change the font used for the quote", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the quote text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the quote text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the quote text" + } } }, "greeting": { @@ -223,7 +287,39 @@ "month": "Month", "no_events": "No Events", "no_events_description": "Add Some Events", - "add_event": "Add Event" + "add_event": "Add Event", + "appearance": { + "title": "Appearance", + "description": "Customise how the greeting looks", + "font": { + "title": "Font", + "description": "Change the font used for the greeting", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the greeting text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the greeting text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the greeting text" + } + } }, "background": { "title": "Background", @@ -496,9 +592,32 @@ }, "apps_subtitle": "Create a shortcut of your other commonly used websites." }, - "font": { - "title": "Font", - "description": "Change the font used in Mue", + "widget_font": { + "title": "Widget Font", + "description": "Change the font used for widgets on the new tab page", + "custom": "Custom font", + "google": "Import from Google Fonts", + "weight": { + "title": "Font weight", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "style": { + "title": "Font style", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + } + }, + "settings_font": { + "title": "Settings Font", + "description": "Change the font used for the settings modal", "custom": "Custom font", "google": "Import from Google Fonts", "weight": { diff --git a/src/i18n/locales/fr.json b/src/i18n/locales/fr.json index ec93a8c8..ee650aeb 100644 --- a/src/i18n/locales/fr.json +++ b/src/i18n/locales/fr.json @@ -153,6 +153,38 @@ "change_hour_colour": "Changer la couleur du texte de l'heure", "change_minute_colour": "Changer la couleur du texte des minutes", "change_second_colour": "Changer la couleur du texte des secondes" + }, + "appearance": { + "title": "Appearance", + "description": "Customise how the time looks", + "font": { + "title": "Font", + "description": "Change the font used for the time", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the time text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the time text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the time text" + } } }, "date": { @@ -203,6 +235,38 @@ "frequency": { "title": "Update Frequency", "subtitle": "How often the quote changes" + }, + "appearance": { + "title": "Appearance", + "description": "Customise how the quote looks", + "font": { + "title": "Font", + "description": "Change the font used for the quote", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the quote text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the quote text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the quote text" + } } }, "greeting": { @@ -223,7 +287,39 @@ "month": "Mois", "no_events": "Pas d'événements", "no_events_description": "Ajouter des événements", - "add_event": "Ajouter un événement" + "add_event": "Ajouter un événement", + "appearance": { + "title": "Appearance", + "description": "Customise how the greeting looks", + "font": { + "title": "Font", + "description": "Change the font used for the greeting", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the greeting text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the greeting text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the greeting text" + } + } }, "background": { "title": "Fond d'écran", @@ -496,26 +592,49 @@ }, "apps_subtitle": "Créez un raccourci de vos autres sites Web couramment utilisés." }, - "font": { - "title": "Police", - "description": "Changer la police utilisée dans Mue", - "custom": "Police personnalisée", - "google": "Importer depuis Google Fonts", + "widget_font": { + "title": "Widget Font", + "description": "Change the font used for widgets on the new tab page", + "custom": "Custom font", + "google": "Import from Google Fonts", "weight": { - "title": "Épaisseur de police", - "thin": "Fin", - "extra_light": "Extra léger", - "light": "Léger", + "title": "Font weight", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", "normal": "Normal", - "medium": "Moyen", - "semi_bold": "Semi-gras", - "bold": "Gras", - "extra_bold": "Extra-gras" + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" }, "style": { - "title": "Style de police", + "title": "Font style", "normal": "Normal", - "italic": "Italique", + "italic": "Italic", + "oblique": "Oblique" + } + }, + "settings_font": { + "title": "Settings Font", + "description": "Change the font used for the settings modal", + "custom": "Custom font", + "google": "Import from Google Fonts", + "weight": { + "title": "Font weight", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "style": { + "title": "Font style", + "normal": "Normal", + "italic": "Italic", "oblique": "Oblique" } }, diff --git a/src/i18n/locales/hu.json b/src/i18n/locales/hu.json index 7cc448a0..eb50300b 100644 --- a/src/i18n/locales/hu.json +++ b/src/i18n/locales/hu.json @@ -153,6 +153,38 @@ "change_hour_colour": "Change hour text colour", "change_minute_colour": "Change minute text colour", "change_second_colour": "Change second text colour" + }, + "appearance": { + "title": "Appearance", + "description": "Customise how the time looks", + "font": { + "title": "Font", + "description": "Change the font used for the time", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the time text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the time text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the time text" + } } }, "date": { @@ -203,6 +235,38 @@ "frequency": { "title": "Update Frequency", "subtitle": "How often the quote changes" + }, + "appearance": { + "title": "Appearance", + "description": "Customise how the quote looks", + "font": { + "title": "Font", + "description": "Change the font used for the quote", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the quote text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the quote text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the quote text" + } } }, "greeting": { @@ -223,7 +287,39 @@ "month": "Month", "no_events": "No Events", "no_events_description": "Add Some Events", - "add_event": "Add Event" + "add_event": "Add Event", + "appearance": { + "title": "Appearance", + "description": "Customise how the greeting looks", + "font": { + "title": "Font", + "description": "Change the font used for the greeting", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the greeting text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the greeting text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the greeting text" + } + } }, "background": { "title": "Background", @@ -496,9 +592,32 @@ }, "apps_subtitle": "Create a shortcut of your other commonly used websites." }, - "font": { - "title": "Font", - "description": "Change the font used in Mue", + "widget_font": { + "title": "Widget Font", + "description": "Change the font used for widgets on the new tab page", + "custom": "Custom font", + "google": "Import from Google Fonts", + "weight": { + "title": "Font weight", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "style": { + "title": "Font style", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + } + }, + "settings_font": { + "title": "Settings Font", + "description": "Change the font used for the settings modal", "custom": "Custom font", "google": "Import from Google Fonts", "weight": { diff --git a/src/i18n/locales/id_ID.json b/src/i18n/locales/id_ID.json index 96948d5e..678cfa3d 100644 --- a/src/i18n/locales/id_ID.json +++ b/src/i18n/locales/id_ID.json @@ -153,6 +153,38 @@ "change_hour_colour": "Ubah warna teks jam", "change_minute_colour": "Ubah warna teks menit", "change_second_colour": "Change second text colour" + }, + "appearance": { + "title": "Appearance", + "description": "Customise how the time looks", + "font": { + "title": "Font", + "description": "Change the font used for the time", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the time text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the time text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the time text" + } } }, "date": { @@ -203,6 +235,38 @@ "frequency": { "title": "Update Frequency", "subtitle": "How often the quote changes" + }, + "appearance": { + "title": "Appearance", + "description": "Customise how the quote looks", + "font": { + "title": "Font", + "description": "Change the font used for the quote", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the quote text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the quote text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the quote text" + } } }, "greeting": { @@ -223,7 +287,39 @@ "month": "Month", "no_events": "No Events", "no_events_description": "Add Some Events", - "add_event": "Add Event" + "add_event": "Add Event", + "appearance": { + "title": "Appearance", + "description": "Customise how the greeting looks", + "font": { + "title": "Font", + "description": "Change the font used for the greeting", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the greeting text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the greeting text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the greeting text" + } + } }, "background": { "title": "Background", @@ -496,11 +592,34 @@ }, "apps_subtitle": "Buat sebuah pintasan untuk situs yang umum kamu gunakan lainnya." }, - "font": { - "title": "Font", - "description": "Change the font used in Mue", - "custom": "Font kustom", - "google": "Impor dari Google Fonts", + "widget_font": { + "title": "Widget Font", + "description": "Change the font used for widgets on the new tab page", + "custom": "Custom font", + "google": "Import from Google Fonts", + "weight": { + "title": "Font weight", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "style": { + "title": "Font style", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + } + }, + "settings_font": { + "title": "Settings Font", + "description": "Change the font used for the settings modal", + "custom": "Custom font", + "google": "Import from Google Fonts", "weight": { "title": "Font weight", "thin": "Thin", diff --git a/src/i18n/locales/ja.json b/src/i18n/locales/ja.json index 45ee2314..798e3d69 100644 --- a/src/i18n/locales/ja.json +++ b/src/i18n/locales/ja.json @@ -153,6 +153,38 @@ "change_hour_colour": "Change hour text colour", "change_minute_colour": "Change minute text colour", "change_second_colour": "Change second text colour" + }, + "appearance": { + "title": "Appearance", + "description": "Customise how the time looks", + "font": { + "title": "Font", + "description": "Change the font used for the time", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the time text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the time text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the time text" + } } }, "date": { @@ -203,6 +235,38 @@ "frequency": { "title": "Update Frequency", "subtitle": "How often the quote changes" + }, + "appearance": { + "title": "Appearance", + "description": "Customise how the quote looks", + "font": { + "title": "Font", + "description": "Change the font used for the quote", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the quote text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the quote text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the quote text" + } } }, "greeting": { @@ -223,7 +287,39 @@ "month": "Month", "no_events": "No Events", "no_events_description": "Add Some Events", - "add_event": "Add Event" + "add_event": "Add Event", + "appearance": { + "title": "Appearance", + "description": "Customise how the greeting looks", + "font": { + "title": "Font", + "description": "Change the font used for the greeting", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the greeting text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the greeting text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the greeting text" + } + } }, "background": { "title": "Background", @@ -496,9 +592,32 @@ }, "apps_subtitle": "Create a shortcut of your other commonly used websites." }, - "font": { - "title": "Font", - "description": "Change the font used in Mue", + "widget_font": { + "title": "Widget Font", + "description": "Change the font used for widgets on the new tab page", + "custom": "Custom font", + "google": "Import from Google Fonts", + "weight": { + "title": "Font weight", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "style": { + "title": "Font style", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + } + }, + "settings_font": { + "title": "Settings Font", + "description": "Change the font used for the settings modal", "custom": "Custom font", "google": "Import from Google Fonts", "weight": { diff --git a/src/i18n/locales/lt.json b/src/i18n/locales/lt.json index 016d218d..39f59f27 100644 --- a/src/i18n/locales/lt.json +++ b/src/i18n/locales/lt.json @@ -153,6 +153,38 @@ "change_hour_colour": "Keisti valandų teksto spalvą", "change_minute_colour": "Keisti minučių teksto spalvą", "change_second_colour": "Keisti sekundžių teksto spalvą" + }, + "appearance": { + "title": "Appearance", + "description": "Customise how the time looks", + "font": { + "title": "Font", + "description": "Change the font used for the time", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the time text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the time text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the time text" + } } }, "date": { @@ -203,6 +235,38 @@ "frequency": { "title": "Update Frequency", "subtitle": "How often the quote changes" + }, + "appearance": { + "title": "Appearance", + "description": "Customise how the quote looks", + "font": { + "title": "Font", + "description": "Change the font used for the quote", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the quote text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the quote text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the quote text" + } } }, "greeting": { @@ -223,7 +287,39 @@ "month": "Mėnuo", "no_events": "Nėra įvykių", "no_events_description": "Pridėkite įvykių", - "add_event": "Pridėti įvykį" + "add_event": "Pridėti įvykį", + "appearance": { + "title": "Appearance", + "description": "Customise how the greeting looks", + "font": { + "title": "Font", + "description": "Change the font used for the greeting", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the greeting text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the greeting text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the greeting text" + } + } }, "background": { "title": "Fonas", @@ -496,27 +592,50 @@ }, "apps_subtitle": "Sukurkite nuorodas į kitas dažnai naudojamas svetaines." }, - "font": { - "title": "Šriftas", - "description": "Keiskite Mue naudojamą šriftą", - "custom": "Pasirinktinis šriftas", - "google": "Importuoti iš Google Fonts", + "widget_font": { + "title": "Widget Font", + "description": "Change the font used for widgets on the new tab page", + "custom": "Custom font", + "google": "Import from Google Fonts", "weight": { - "title": "Šrifto storis", - "thin": "Plonas", - "extra_light": "Itin lengvas", - "light": "Lengvas", - "normal": "Normalus", - "medium": "Vidutinis", - "semi_bold": "Pusiau paryškintas", - "bold": "Paryškintas", - "extra_bold": "Itin paryškintas" + "title": "Font weight", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" }, "style": { - "title": "Šrifto stilius", - "normal": "Normalus", - "italic": "Kursyvas", - "oblique": "Pasviręs" + "title": "Font style", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + } + }, + "settings_font": { + "title": "Settings Font", + "description": "Change the font used for the settings modal", + "custom": "Custom font", + "google": "Import from Google Fonts", + "weight": { + "title": "Font weight", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "style": { + "title": "Font style", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" } }, "accessibility": { diff --git a/src/i18n/locales/lv.json b/src/i18n/locales/lv.json index 82c9ee12..6fb83168 100644 --- a/src/i18n/locales/lv.json +++ b/src/i18n/locales/lv.json @@ -153,6 +153,38 @@ "change_hour_colour": "Mainīt stundu teksta krāsu", "change_minute_colour": "Mainīt minūšu teksta krāsu", "change_second_colour": "Mainīt sekunžu teksta krāsu" + }, + "appearance": { + "title": "Appearance", + "description": "Customise how the time looks", + "font": { + "title": "Font", + "description": "Change the font used for the time", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the time text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the time text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the time text" + } } }, "date": { @@ -203,6 +235,38 @@ "frequency": { "title": "Update Frequency", "subtitle": "How often the quote changes" + }, + "appearance": { + "title": "Appearance", + "description": "Customise how the quote looks", + "font": { + "title": "Font", + "description": "Change the font used for the quote", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the quote text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the quote text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the quote text" + } } }, "greeting": { @@ -223,7 +287,39 @@ "month": "Mēnesis", "no_events": "Nav notikumu", "no_events_description": "Pievienojiet dažus notikumus", - "add_event": "Pievienot notikumu" + "add_event": "Pievienot notikumu", + "appearance": { + "title": "Appearance", + "description": "Customise how the greeting looks", + "font": { + "title": "Font", + "description": "Change the font used for the greeting", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the greeting text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the greeting text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the greeting text" + } + } }, "background": { "title": "Fons", @@ -496,27 +592,50 @@ }, "apps_subtitle": "Izveidojiet saīsni uz citām bieži lietotajām vietnēm." }, - "font": { - "title": "Fonts", - "description": "Mainīt Mue izmantoto fontu", - "custom": "Pielāgots fonts", - "google": "Importēt no Google Fonts", + "widget_font": { + "title": "Widget Font", + "description": "Change the font used for widgets on the new tab page", + "custom": "Custom font", + "google": "Import from Google Fonts", "weight": { - "title": "Fonta biezums", - "thin": "Plāns", - "extra_light": "Īpaši viegls", - "light": "Viegls", - "normal": "Normāls", - "medium": "Vidējs", - "semi_bold": "Pus-treknraksts", - "bold": "Treknraksts", - "extra_bold": "Īpaši treknraksts" + "title": "Font weight", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" }, "style": { - "title": "Fonta stils", - "normal": "Normāls", - "italic": "Slīpraksts", - "oblique": "Slīps" + "title": "Font style", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + } + }, + "settings_font": { + "title": "Settings Font", + "description": "Change the font used for the settings modal", + "custom": "Custom font", + "google": "Import from Google Fonts", + "weight": { + "title": "Font weight", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "style": { + "title": "Font style", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" } }, "accessibility": { diff --git a/src/i18n/locales/nl.json b/src/i18n/locales/nl.json index ae88c501..6b01c292 100644 --- a/src/i18n/locales/nl.json +++ b/src/i18n/locales/nl.json @@ -153,6 +153,38 @@ "change_hour_colour": "Wijzig de kleur van de uurtekst", "change_minute_colour": "Wijzig de kleur van de minuuttekst", "change_second_colour": "Change second text colour" + }, + "appearance": { + "title": "Appearance", + "description": "Customise how the time looks", + "font": { + "title": "Font", + "description": "Change the font used for the time", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the time text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the time text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the time text" + } } }, "date": { @@ -203,6 +235,38 @@ "frequency": { "title": "Update Frequency", "subtitle": "How often the quote changes" + }, + "appearance": { + "title": "Appearance", + "description": "Customise how the quote looks", + "font": { + "title": "Font", + "description": "Change the font used for the quote", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the quote text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the quote text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the quote text" + } } }, "greeting": { @@ -223,7 +287,39 @@ "month": "Month", "no_events": "No Events", "no_events_description": "Add Some Events", - "add_event": "Add Event" + "add_event": "Add Event", + "appearance": { + "title": "Appearance", + "description": "Customise how the greeting looks", + "font": { + "title": "Font", + "description": "Change the font used for the greeting", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the greeting text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the greeting text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the greeting text" + } + } }, "background": { "title": "Achtergrond", @@ -496,9 +592,32 @@ }, "apps_subtitle": "Maak een snelkoppeling van je andere vaak gebruikte websites." }, - "font": { - "title": "Font", - "description": "Verandert het lettertype gebruikt in Mue", + "widget_font": { + "title": "Widget Font", + "description": "Change the font used for widgets on the new tab page", + "custom": "Custom font", + "google": "Import from Google Fonts", + "weight": { + "title": "Font weight", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "style": { + "title": "Font style", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + } + }, + "settings_font": { + "title": "Settings Font", + "description": "Change the font used for the settings modal", "custom": "Custom font", "google": "Import from Google Fonts", "weight": { diff --git a/src/i18n/locales/no.json b/src/i18n/locales/no.json index c812f3d7..51aa43e4 100644 --- a/src/i18n/locales/no.json +++ b/src/i18n/locales/no.json @@ -153,6 +153,38 @@ "change_hour_colour": "Change hour text colour", "change_minute_colour": "Change minute text colour", "change_second_colour": "Change second text colour" + }, + "appearance": { + "title": "Appearance", + "description": "Customise how the time looks", + "font": { + "title": "Font", + "description": "Change the font used for the time", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the time text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the time text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the time text" + } } }, "date": { @@ -203,6 +235,38 @@ "frequency": { "title": "Update Frequency", "subtitle": "How often the quote changes" + }, + "appearance": { + "title": "Appearance", + "description": "Customise how the quote looks", + "font": { + "title": "Font", + "description": "Change the font used for the quote", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the quote text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the quote text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the quote text" + } } }, "greeting": { @@ -223,7 +287,39 @@ "month": "Month", "no_events": "No Events", "no_events_description": "Add Some Events", - "add_event": "Add Event" + "add_event": "Add Event", + "appearance": { + "title": "Appearance", + "description": "Customise how the greeting looks", + "font": { + "title": "Font", + "description": "Change the font used for the greeting", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the greeting text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the greeting text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the greeting text" + } + } }, "background": { "title": "Bakgrunn", @@ -496,9 +592,32 @@ }, "apps_subtitle": "Create a shortcut of your other commonly used websites." }, - "font": { - "title": "Font", - "description": "Change the font used in Mue", + "widget_font": { + "title": "Widget Font", + "description": "Change the font used for widgets on the new tab page", + "custom": "Custom font", + "google": "Import from Google Fonts", + "weight": { + "title": "Font weight", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "style": { + "title": "Font style", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + } + }, + "settings_font": { + "title": "Settings Font", + "description": "Change the font used for the settings modal", "custom": "Custom font", "google": "Import from Google Fonts", "weight": { diff --git a/src/i18n/locales/peo.json b/src/i18n/locales/peo.json index 0744f8f2..eb11569f 100644 --- a/src/i18n/locales/peo.json +++ b/src/i18n/locales/peo.json @@ -153,6 +153,38 @@ "change_hour_colour": "Change hour text colour", "change_minute_colour": "Change minute text colour", "change_second_colour": "Change second text colour" + }, + "appearance": { + "title": "Appearance", + "description": "Customise how the time looks", + "font": { + "title": "Font", + "description": "Change the font used for the time", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the time text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the time text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the time text" + } } }, "date": { @@ -203,6 +235,38 @@ "frequency": { "title": "Update Frequency", "subtitle": "How often the quote changes" + }, + "appearance": { + "title": "Appearance", + "description": "Customise how the quote looks", + "font": { + "title": "Font", + "description": "Change the font used for the quote", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the quote text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the quote text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the quote text" + } } }, "greeting": { @@ -223,7 +287,39 @@ "month": "Month", "no_events": "No Events", "no_events_description": "Add Some Events", - "add_event": "Add Event" + "add_event": "Add Event", + "appearance": { + "title": "Appearance", + "description": "Customise how the greeting looks", + "font": { + "title": "Font", + "description": "Change the font used for the greeting", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the greeting text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the greeting text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the greeting text" + } + } }, "background": { "title": "Background", @@ -496,9 +592,32 @@ }, "apps_subtitle": "Create a shortcut of your other commonly used websites." }, - "font": { - "title": "Font", - "description": "Change the font used in Mue", + "widget_font": { + "title": "Widget Font", + "description": "Change the font used for widgets on the new tab page", + "custom": "Custom font", + "google": "Import from Google Fonts", + "weight": { + "title": "Font weight", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "style": { + "title": "Font style", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + } + }, + "settings_font": { + "title": "Settings Font", + "description": "Change the font used for the settings modal", "custom": "Custom font", "google": "Import from Google Fonts", "weight": { diff --git a/src/i18n/locales/pt.json b/src/i18n/locales/pt.json index f375261f..7d56f885 100644 --- a/src/i18n/locales/pt.json +++ b/src/i18n/locales/pt.json @@ -153,6 +153,38 @@ "change_hour_colour": "Alterar a cor das horas", "change_minute_colour": "Alterar a cor dos minutos", "change_second_colour": "Change second text colour" + }, + "appearance": { + "title": "Appearance", + "description": "Customise how the time looks", + "font": { + "title": "Font", + "description": "Change the font used for the time", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the time text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the time text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the time text" + } } }, "date": { @@ -203,6 +235,38 @@ "frequency": { "title": "Update Frequency", "subtitle": "How often the quote changes" + }, + "appearance": { + "title": "Appearance", + "description": "Customise how the quote looks", + "font": { + "title": "Font", + "description": "Change the font used for the quote", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the quote text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the quote text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the quote text" + } } }, "greeting": { @@ -223,7 +287,39 @@ "month": "Month", "no_events": "No Events", "no_events_description": "Add Some Events", - "add_event": "Add Event" + "add_event": "Add Event", + "appearance": { + "title": "Appearance", + "description": "Customise how the greeting looks", + "font": { + "title": "Font", + "description": "Change the font used for the greeting", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the greeting text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the greeting text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the greeting text" + } + } }, "background": { "title": "Plano de fundo", @@ -496,27 +592,50 @@ }, "apps_subtitle": "Crie um atalho de seus outros sites comumente usados." }, - "font": { - "title": "Fonte", - "description": "Alterar a fonte usada no Mue", - "custom": "Fonte personalizada", - "google": "Importar do Google Fonts", + "widget_font": { + "title": "Widget Font", + "description": "Change the font used for widgets on the new tab page", + "custom": "Custom font", + "google": "Import from Google Fonts", "weight": { - "title": "Espessura da fonte", - "thin": "Fina", - "extra_light": "Extra Leve", - "light": "Leve", + "title": "Font weight", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", "normal": "Normal", - "medium": "Médio", - "semi_bold": "Semi-negrito", - "bold": "Negrito", - "extra_bold": "Extra Negrito" + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" }, "style": { - "title": "Estilo de fonte", + "title": "Font style", "normal": "Normal", - "italic": "itálico", - "oblique": "Oblíquo" + "italic": "Italic", + "oblique": "Oblique" + } + }, + "settings_font": { + "title": "Settings Font", + "description": "Change the font used for the settings modal", + "custom": "Custom font", + "google": "Import from Google Fonts", + "weight": { + "title": "Font weight", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "style": { + "title": "Font style", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" } }, "accessibility": { diff --git a/src/i18n/locales/pt_BR.json b/src/i18n/locales/pt_BR.json index 41e0d158..b0087916 100644 --- a/src/i18n/locales/pt_BR.json +++ b/src/i18n/locales/pt_BR.json @@ -153,6 +153,38 @@ "change_hour_colour": "Alterar a cor das horas", "change_minute_colour": "Alterar a cor dos minutos", "change_second_colour": "Mudar a cor do segundo texto" + }, + "appearance": { + "title": "Appearance", + "description": "Customise how the time looks", + "font": { + "title": "Font", + "description": "Change the font used for the time", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the time text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the time text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the time text" + } } }, "date": { @@ -203,6 +235,38 @@ "frequency": { "title": "Update Frequency", "subtitle": "How often the quote changes" + }, + "appearance": { + "title": "Appearance", + "description": "Customise how the quote looks", + "font": { + "title": "Font", + "description": "Change the font used for the quote", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the quote text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the quote text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the quote text" + } } }, "greeting": { @@ -223,7 +287,39 @@ "month": "Mês", "no_events": "No Events", "no_events_description": "Adicionar Alguns Eventos", - "add_event": "Add Event" + "add_event": "Add Event", + "appearance": { + "title": "Appearance", + "description": "Customise how the greeting looks", + "font": { + "title": "Font", + "description": "Change the font used for the greeting", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the greeting text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the greeting text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the greeting text" + } + } }, "background": { "title": "Plano de fundo", @@ -496,27 +592,50 @@ }, "apps_subtitle": "Crie um atalho de seus outros sites comumente usados." }, - "font": { - "title": "Fonte", - "description": "Alterar a fonte usada no Mue", - "custom": "Fonte personalizada", - "google": "Importar do Google Fonts", + "widget_font": { + "title": "Widget Font", + "description": "Change the font used for widgets on the new tab page", + "custom": "Custom font", + "google": "Import from Google Fonts", "weight": { - "title": "Espessura da fonte", - "thin": "Fina", - "extra_light": "Extra Leve", - "light": "Leve", + "title": "Font weight", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", "normal": "Normal", - "medium": "Médio", - "semi_bold": "Semi-negrito", - "bold": "Negrito", - "extra_bold": "Extra Negrito" + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" }, "style": { - "title": "Estilo de fonte", + "title": "Font style", "normal": "Normal", - "italic": "itálico", - "oblique": "Oblíquo" + "italic": "Italic", + "oblique": "Oblique" + } + }, + "settings_font": { + "title": "Settings Font", + "description": "Change the font used for the settings modal", + "custom": "Custom font", + "google": "Import from Google Fonts", + "weight": { + "title": "Font weight", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "style": { + "title": "Font style", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" } }, "accessibility": { diff --git a/src/i18n/locales/ru.json b/src/i18n/locales/ru.json index dfc3ca7e..2f0f1e71 100644 --- a/src/i18n/locales/ru.json +++ b/src/i18n/locales/ru.json @@ -153,6 +153,38 @@ "change_hour_colour": "Изменить цвет текста часа", "change_minute_colour": "Изменить цвет текста минут", "change_second_colour": "Change second text colour" + }, + "appearance": { + "title": "Appearance", + "description": "Customise how the time looks", + "font": { + "title": "Font", + "description": "Change the font used for the time", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the time text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the time text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the time text" + } } }, "date": { @@ -203,6 +235,38 @@ "frequency": { "title": "Update Frequency", "subtitle": "How often the quote changes" + }, + "appearance": { + "title": "Appearance", + "description": "Customise how the quote looks", + "font": { + "title": "Font", + "description": "Change the font used for the quote", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the quote text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the quote text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the quote text" + } } }, "greeting": { @@ -223,7 +287,39 @@ "month": "Month", "no_events": "No Events", "no_events_description": "Add Some Events", - "add_event": "Add Event" + "add_event": "Add Event", + "appearance": { + "title": "Appearance", + "description": "Customise how the greeting looks", + "font": { + "title": "Font", + "description": "Change the font used for the greeting", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the greeting text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the greeting text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the greeting text" + } + } }, "background": { "title": "Фон", @@ -496,27 +592,50 @@ }, "apps_subtitle": "Создайте ярлык других широко используемых веб-сайтов." }, - "font": { - "title": "Font", - "description": "Измените шрифт, используемый в Mue", - "custom": "Пользовательский шрифт", - "google": "Импортировать из Google Fonts", + "widget_font": { + "title": "Widget Font", + "description": "Change the font used for widgets on the new tab page", + "custom": "Custom font", + "google": "Import from Google Fonts", "weight": { - "title": "Толщина шрифта", - "thin": "Тонкий", - "extra_light": "Очень тонкий", - "light": "Лёгкий", + "title": "Font weight", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", "normal": "Normal", "medium": "Medium", - "semi_bold": "Полужирный", - "bold": "Жирный", - "extra_bold": "Сверхжирный" + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" }, "style": { "title": "Font style", "normal": "Normal", "italic": "Italic", - "oblique": "Курсив" + "oblique": "Oblique" + } + }, + "settings_font": { + "title": "Settings Font", + "description": "Change the font used for the settings modal", + "custom": "Custom font", + "google": "Import from Google Fonts", + "weight": { + "title": "Font weight", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "style": { + "title": "Font style", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" } }, "accessibility": { diff --git a/src/i18n/locales/sl.json b/src/i18n/locales/sl.json index 85a281ae..992b2f26 100644 --- a/src/i18n/locales/sl.json +++ b/src/i18n/locales/sl.json @@ -153,6 +153,38 @@ "change_hour_colour": "Spremeni barvo besedila ure", "change_minute_colour": "Spremeni barvo besedila minute", "change_second_colour": "Spremeni barvo besedila sekunde" + }, + "appearance": { + "title": "Appearance", + "description": "Customise how the time looks", + "font": { + "title": "Font", + "description": "Change the font used for the time", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the time text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the time text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the time text" + } } }, "date": { @@ -203,6 +235,38 @@ "frequency": { "title": "Update Frequency", "subtitle": "How often the quote changes" + }, + "appearance": { + "title": "Appearance", + "description": "Customise how the quote looks", + "font": { + "title": "Font", + "description": "Change the font used for the quote", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the quote text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the quote text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the quote text" + } } }, "greeting": { @@ -223,7 +287,39 @@ "month": "Mesec", "no_events": "Ni dogodkov", "no_events_description": "Dodajte nekaj dogodkov", - "add_event": "Dodaj dogodek" + "add_event": "Dodaj dogodek", + "appearance": { + "title": "Appearance", + "description": "Customise how the greeting looks", + "font": { + "title": "Font", + "description": "Change the font used for the greeting", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the greeting text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the greeting text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the greeting text" + } + } }, "background": { "title": "Ozadje", @@ -496,27 +592,50 @@ }, "apps_subtitle": "Ustvarite bližnjico do drugih pogosto uporabljenih spletnih mest." }, - "font": { - "title": "Pisava", - "description": "Spremenite pisavo, ki se uporablja v Mue", - "custom": "Lastna pisava", - "google": "Uvozi iz Google Pisav", + "widget_font": { + "title": "Widget Font", + "description": "Change the font used for widgets on the new tab page", + "custom": "Custom font", + "google": "Import from Google Fonts", "weight": { - "title": "Debelina pisave", - "thin": "Tanka", - "extra_light": "Zelo svetla", - "light": "Svetla", - "normal": "Normalna", - "medium": "Srednja", - "semi_bold": "Polkrepka", - "bold": "Krepka", - "extra_bold": "Zelo krepka" + "title": "Font weight", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" }, "style": { - "title": "Slog pisave", - "normal": "Normalno", - "italic": "Ležeče", - "oblique": "Poševno" + "title": "Font style", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + } + }, + "settings_font": { + "title": "Settings Font", + "description": "Change the font used for the settings modal", + "custom": "Custom font", + "google": "Import from Google Fonts", + "weight": { + "title": "Font weight", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "style": { + "title": "Font style", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" } }, "accessibility": { diff --git a/src/i18n/locales/sv.json b/src/i18n/locales/sv.json index 6fa8fbdd..9f55eb00 100644 --- a/src/i18n/locales/sv.json +++ b/src/i18n/locales/sv.json @@ -153,6 +153,38 @@ "change_hour_colour": "Change hour text colour", "change_minute_colour": "Change minute text colour", "change_second_colour": "Change second text colour" + }, + "appearance": { + "title": "Appearance", + "description": "Customise how the time looks", + "font": { + "title": "Font", + "description": "Change the font used for the time", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the time text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the time text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the time text" + } } }, "date": { @@ -203,6 +235,38 @@ "frequency": { "title": "Update Frequency", "subtitle": "How often the quote changes" + }, + "appearance": { + "title": "Appearance", + "description": "Customise how the quote looks", + "font": { + "title": "Font", + "description": "Change the font used for the quote", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the quote text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the quote text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the quote text" + } } }, "greeting": { @@ -223,7 +287,39 @@ "month": "Month", "no_events": "No Events", "no_events_description": "Add Some Events", - "add_event": "Add Event" + "add_event": "Add Event", + "appearance": { + "title": "Appearance", + "description": "Customise how the greeting looks", + "font": { + "title": "Font", + "description": "Change the font used for the greeting", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the greeting text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the greeting text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the greeting text" + } + } }, "background": { "title": "Background", @@ -496,9 +592,32 @@ }, "apps_subtitle": "Create a shortcut of your other commonly used websites." }, - "font": { - "title": "Font", - "description": "Change the font used in Mue", + "widget_font": { + "title": "Widget Font", + "description": "Change the font used for widgets on the new tab page", + "custom": "Custom font", + "google": "Import from Google Fonts", + "weight": { + "title": "Font weight", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "style": { + "title": "Font style", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + } + }, + "settings_font": { + "title": "Settings Font", + "description": "Change the font used for the settings modal", "custom": "Custom font", "google": "Import from Google Fonts", "weight": { diff --git a/src/i18n/locales/ta.json b/src/i18n/locales/ta.json index 913281f8..21f63932 100644 --- a/src/i18n/locales/ta.json +++ b/src/i18n/locales/ta.json @@ -153,6 +153,38 @@ "change_hour_colour": "மணிநேர உரை நிறத்தை மாற்றவும்", "change_minute_colour": "நிமிட உரை நிறத்தை மாற்றவும்", "change_second_colour": "இரண்டாவது உரை நிறத்தை மாற்றவும்" + }, + "appearance": { + "title": "Appearance", + "description": "Customise how the time looks", + "font": { + "title": "Font", + "description": "Change the font used for the time", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the time text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the time text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the time text" + } } }, "date": { @@ -203,6 +235,38 @@ "frequency": { "title": "Update Frequency", "subtitle": "How often the quote changes" + }, + "appearance": { + "title": "Appearance", + "description": "Customise how the quote looks", + "font": { + "title": "Font", + "description": "Change the font used for the quote", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the quote text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the quote text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the quote text" + } } }, "greeting": { @@ -223,7 +287,39 @@ "month": "மாதம்", "no_events": "நிகழ்வுகள் இல்லை", "no_events_description": "சில நிகழ்வுகளைச் சேர்க்கவும்", - "add_event": "நிகழ்வைச் சேர்க்கவும்" + "add_event": "நிகழ்வைச் சேர்க்கவும்", + "appearance": { + "title": "Appearance", + "description": "Customise how the greeting looks", + "font": { + "title": "Font", + "description": "Change the font used for the greeting", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the greeting text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the greeting text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the greeting text" + } + } }, "background": { "title": "பின்னணி", @@ -496,27 +592,50 @@ }, "apps_subtitle": "நீங்கள் பொதுவாகப் பயன்படுத்தப்படும் பிற வலைத்தளங்களின் குறுக்குவழியை உருவாக்கவும்." }, - "font": { - "title": "எழுத்துரு", - "description": "பயன்படுத்தப்படும் எழுத்துருவை மியூவில் மாற்றவும்", - "custom": "தனிப்பயன் எழுத்துரு", - "google": "Google எழுத்துருக்களிலிருந்து இறக்குமதி செய்யுங்கள்", + "widget_font": { + "title": "Widget Font", + "description": "Change the font used for widgets on the new tab page", + "custom": "Custom font", + "google": "Import from Google Fonts", "weight": { - "title": "எழுத்துரு எடை", - "thin": "மெல்லிய", - "extra_light": "கூடுதல் ஒளி", - "light": "ஒளி", - "normal": "சாதாரண", - "medium": "சராசரி", - "semi_bold": "அரை-பிணைப்பு", - "bold": "தடிமான", - "extra_bold": "கூடுதல்" + "title": "Font weight", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" }, "style": { - "title": "எழுத்துரு நடை", - "normal": "சாதாரண", - "italic": "சாய்வு", - "oblique": "சாய்வான" + "title": "Font style", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + } + }, + "settings_font": { + "title": "Settings Font", + "description": "Change the font used for the settings modal", + "custom": "Custom font", + "google": "Import from Google Fonts", + "weight": { + "title": "Font weight", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "style": { + "title": "Font style", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" } }, "accessibility": { diff --git a/src/i18n/locales/tr_TR.json b/src/i18n/locales/tr_TR.json index ce7dda60..711705a8 100644 --- a/src/i18n/locales/tr_TR.json +++ b/src/i18n/locales/tr_TR.json @@ -153,6 +153,38 @@ "change_hour_colour": "Saat kısmının metin rengini değiştirin", "change_minute_colour": "Dakika kısmının metin rengini değiştirin", "change_second_colour": "Saniye kısmının metin rengini değiştirin" + }, + "appearance": { + "title": "Appearance", + "description": "Customise how the time looks", + "font": { + "title": "Font", + "description": "Change the font used for the time", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the time text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the time text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the time text" + } } }, "date": { @@ -203,6 +235,38 @@ "frequency": { "title": "Update Frequency", "subtitle": "How often the quote changes" + }, + "appearance": { + "title": "Appearance", + "description": "Customise how the quote looks", + "font": { + "title": "Font", + "description": "Change the font used for the quote", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the quote text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the quote text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the quote text" + } } }, "greeting": { @@ -223,7 +287,39 @@ "month": "Ay", "no_events": "Olay Yok", "no_events_description": "Bazı Olaylar Ekleyin", - "add_event": "Olay Ekle" + "add_event": "Olay Ekle", + "appearance": { + "title": "Appearance", + "description": "Customise how the greeting looks", + "font": { + "title": "Font", + "description": "Change the font used for the greeting", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the greeting text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the greeting text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the greeting text" + } + } }, "background": { "title": "Arka Plan", @@ -496,27 +592,50 @@ }, "apps_subtitle": "Sık kullandığınız diğer web sitelerinin kısayollarını oluşturun." }, - "font": { - "title": "Yazı tipi", - "description": "Mue'da kullanılan yazı tipini değiştirin.", - "custom": "Özel yazı tipi", - "google": "Google Fonts'tan içeri aktar.", + "widget_font": { + "title": "Widget Font", + "description": "Change the font used for widgets on the new tab page", + "custom": "Custom font", + "google": "Import from Google Fonts", "weight": { - "title": "Yazı tipi genişliği", - "thin": "Ekstra İnce", - "extra_light": "İnce", - "light": "Hafif İnce", + "title": "Font weight", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", "normal": "Normal", - "medium": "Orta", - "semi_bold": "Hafif Kalın", - "bold": "Kalın", - "extra_bold": "Ekstra Kalın" + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" }, "style": { - "title": "Yazı stili", + "title": "Font style", "normal": "Normal", - "italic": "İtalik", - "oblique": "Eğik" + "italic": "Italic", + "oblique": "Oblique" + } + }, + "settings_font": { + "title": "Settings Font", + "description": "Change the font used for the settings modal", + "custom": "Custom font", + "google": "Import from Google Fonts", + "weight": { + "title": "Font weight", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "style": { + "title": "Font style", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" } }, "accessibility": { diff --git a/src/i18n/locales/uk.json b/src/i18n/locales/uk.json index 8cd0110d..07e401b1 100644 --- a/src/i18n/locales/uk.json +++ b/src/i18n/locales/uk.json @@ -153,6 +153,38 @@ "change_hour_colour": "Змінити колір тексту годинника", "change_minute_colour": "Змінити колір хвилинного тексту", "change_second_colour": "Змінити другий колір тексту" + }, + "appearance": { + "title": "Appearance", + "description": "Customise how the time looks", + "font": { + "title": "Font", + "description": "Change the font used for the time", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the time text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the time text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the time text" + } } }, "date": { @@ -203,6 +235,38 @@ "frequency": { "title": "Update Frequency", "subtitle": "How often the quote changes" + }, + "appearance": { + "title": "Appearance", + "description": "Customise how the quote looks", + "font": { + "title": "Font", + "description": "Change the font used for the quote", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the quote text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the quote text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the quote text" + } } }, "greeting": { @@ -223,7 +287,39 @@ "month": "Місяць", "no_events": "Немає подій", "no_events_description": "Додати кілька подій", - "add_event": "Додати подію" + "add_event": "Додати подію", + "appearance": { + "title": "Appearance", + "description": "Customise how the greeting looks", + "font": { + "title": "Font", + "description": "Change the font used for the greeting", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the greeting text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the greeting text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the greeting text" + } + } }, "background": { "title": "Фон", @@ -496,27 +592,50 @@ }, "apps_subtitle": "Створіть ярлик для інших сайтів, які ви часто використовуєте." }, - "font": { - "title": "Шрифт", - "description": "Змінити шрифт, який використовується у Mue", - "custom": "Користувацький шрифт", - "google": "Імпорт з Google Fonts", + "widget_font": { + "title": "Widget Font", + "description": "Change the font used for widgets on the new tab page", + "custom": "Custom font", + "google": "Import from Google Fonts", "weight": { - "title": "Товщина шрифту", - "thin": "Тонкий", - "extra_light": "Дуже тонкий", - "light": "Світло", - "normal": "Нормальний", + "title": "Font weight", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", "medium": "Medium", - "semi_bold": "Напівжирний", - "bold": "Жирний", - "extra_bold": "Дуже жирний" + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" }, "style": { - "title": "Стиль шрифту", + "title": "Font style", "normal": "Normal", "italic": "Italic", - "oblique": "Курсив" + "oblique": "Oblique" + } + }, + "settings_font": { + "title": "Settings Font", + "description": "Change the font used for the settings modal", + "custom": "Custom font", + "google": "Import from Google Fonts", + "weight": { + "title": "Font weight", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "style": { + "title": "Font style", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" } }, "accessibility": { diff --git a/src/i18n/locales/vi.json b/src/i18n/locales/vi.json index 3aaf8f66..ce73fa1f 100644 --- a/src/i18n/locales/vi.json +++ b/src/i18n/locales/vi.json @@ -153,6 +153,38 @@ "change_hour_colour": "Change hour text colour", "change_minute_colour": "Change minute text colour", "change_second_colour": "Change second text colour" + }, + "appearance": { + "title": "Appearance", + "description": "Customise how the time looks", + "font": { + "title": "Font", + "description": "Change the font used for the time", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the time text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the time text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the time text" + } } }, "date": { @@ -203,6 +235,38 @@ "frequency": { "title": "Update Frequency", "subtitle": "How often the quote changes" + }, + "appearance": { + "title": "Appearance", + "description": "Customise how the quote looks", + "font": { + "title": "Font", + "description": "Change the font used for the quote", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the quote text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the quote text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the quote text" + } } }, "greeting": { @@ -223,7 +287,39 @@ "month": "Month", "no_events": "No Events", "no_events_description": "Add Some Events", - "add_event": "Add Event" + "add_event": "Add Event", + "appearance": { + "title": "Appearance", + "description": "Customise how the greeting looks", + "font": { + "title": "Font", + "description": "Change the font used for the greeting", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the greeting text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the greeting text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the greeting text" + } + } }, "background": { "title": "Background", @@ -496,9 +592,32 @@ }, "apps_subtitle": "Create a shortcut of your other commonly used websites." }, - "font": { - "title": "Font", - "description": "Change the font used in Mue", + "widget_font": { + "title": "Widget Font", + "description": "Change the font used for widgets on the new tab page", + "custom": "Custom font", + "google": "Import from Google Fonts", + "weight": { + "title": "Font weight", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "style": { + "title": "Font style", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + } + }, + "settings_font": { + "title": "Settings Font", + "description": "Change the font used for the settings modal", "custom": "Custom font", "google": "Import from Google Fonts", "weight": { diff --git a/src/i18n/locales/zh_CN.json b/src/i18n/locales/zh_CN.json index 8a73f917..a5e55e73 100644 --- a/src/i18n/locales/zh_CN.json +++ b/src/i18n/locales/zh_CN.json @@ -153,6 +153,38 @@ "change_hour_colour": "选择小时数颜色", "change_minute_colour": "选择分钟数颜色", "change_second_colour": "选择秒钟数颜色" + }, + "appearance": { + "title": "Appearance", + "description": "Customise how the time looks", + "font": { + "title": "Font", + "description": "Change the font used for the time", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the time text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the time text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the time text" + } } }, "date": { @@ -203,6 +235,38 @@ "frequency": { "title": "Update Frequency", "subtitle": "How often the quote changes" + }, + "appearance": { + "title": "Appearance", + "description": "Customise how the quote looks", + "font": { + "title": "Font", + "description": "Change the font used for the quote", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the quote text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the quote text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the quote text" + } } }, "greeting": { @@ -223,7 +287,39 @@ "month": "月", "no_events": "没有事件", "no_events_description": "试着添加一些事件", - "add_event": "添加事件" + "add_event": "添加事件", + "appearance": { + "title": "Appearance", + "description": "Customise how the greeting looks", + "font": { + "title": "Font", + "description": "Change the font used for the greeting", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the greeting text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the greeting text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the greeting text" + } + } }, "background": { "title": "背景", @@ -496,27 +592,50 @@ }, "apps_subtitle": "Create a shortcut of your other commonly used websites." }, - "font": { - "title": "字体", - "description": "Change the font used in Mue", - "custom": "自定义字体", - "google": "从 Google Fonts 导入", + "widget_font": { + "title": "Widget Font", + "description": "Change the font used for widgets on the new tab page", + "custom": "Custom font", + "google": "Import from Google Fonts", "weight": { - "title": "字体粗细", - "thin": "极细", - "extra_light": "细字", - "light": "较细", - "normal": "一般", - "medium": "中等", - "semi_bold": "较粗", - "bold": "粗体", - "extra_bold": "加粗" + "title": "Font weight", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" }, "style": { - "title": "字体样式", - "normal": "常规", - "italic": "意大利斜体", - "oblique": "伪斜体" + "title": "Font style", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + } + }, + "settings_font": { + "title": "Settings Font", + "description": "Change the font used for the settings modal", + "custom": "Custom font", + "google": "Import from Google Fonts", + "weight": { + "title": "Font weight", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "style": { + "title": "Font style", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" } }, "accessibility": { diff --git a/src/i18n/locales/zh_Hant.json b/src/i18n/locales/zh_Hant.json index 6555e486..251a3e7b 100644 --- a/src/i18n/locales/zh_Hant.json +++ b/src/i18n/locales/zh_Hant.json @@ -153,6 +153,38 @@ "change_hour_colour": "變更小時文字顏色", "change_minute_colour": "變更分鐘文字顏色", "change_second_colour": "變更秒文字顏色" + }, + "appearance": { + "title": "Appearance", + "description": "Customise how the time looks", + "font": { + "title": "Font", + "description": "Change the font used for the time", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the time text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the time text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the time text" + } } }, "date": { @@ -203,6 +235,38 @@ "frequency": { "title": "Update Frequency", "subtitle": "How often the quote changes" + }, + "appearance": { + "title": "Appearance", + "description": "Customise how the quote looks", + "font": { + "title": "Font", + "description": "Change the font used for the quote", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the quote text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the quote text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the quote text" + } } }, "greeting": { @@ -223,7 +287,39 @@ "month": "Month", "no_events": "No Events", "no_events_description": "Add Some Events", - "add_event": "Add Event" + "add_event": "Add Event", + "appearance": { + "title": "Appearance", + "description": "Customise how the greeting looks", + "font": { + "title": "Font", + "description": "Change the font used for the greeting", + "custom": "Custom font" + }, + "font_weight": { + "title": "Font Weight", + "description": "Change the thickness of the greeting text", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "font_style": { + "title": "Font Style", + "description": "Change the style of the greeting text", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + }, + "color": { + "title": "Text Colour", + "description": "Change the colour of the greeting text" + } + } }, "background": { "title": "Background", @@ -496,9 +592,32 @@ }, "apps_subtitle": "Create a shortcut of your other commonly used websites." }, - "font": { - "title": "Font", - "description": "Change the font used in Mue", + "widget_font": { + "title": "Widget Font", + "description": "Change the font used for widgets on the new tab page", + "custom": "Custom font", + "google": "Import from Google Fonts", + "weight": { + "title": "Font weight", + "thin": "Thin", + "extra_light": "Extra Light", + "light": "Light", + "normal": "Normal", + "medium": "Medium", + "semi_bold": "Semi-Bold", + "bold": "Bold", + "extra_bold": "Extra-Bold" + }, + "style": { + "title": "Font style", + "normal": "Normal", + "italic": "Italic", + "oblique": "Oblique" + } + }, + "settings_font": { + "title": "Settings Font", + "description": "Change the font used for the settings modal", "custom": "Custom font", "google": "Import from Google Fonts", "weight": { diff --git a/src/utils/settings/load.js b/src/utils/settings/load.js index eaf11f69..07cf9138 100644 --- a/src/utils/settings/load.js +++ b/src/utils/settings/load.js @@ -6,6 +6,20 @@ import ExperimentalInit from 'utils/experimental'; * @param hotreload - boolean */ export function loadSettings(hotreload) { + // Migrate old font settings to new widgetFont settings for backwards compatibility + if (localStorage.getItem('font') && !localStorage.getItem('widgetFont')) { + localStorage.setItem('widgetFont', localStorage.getItem('font')); + localStorage.removeItem('font'); + } + if (localStorage.getItem('fontweight') && !localStorage.getItem('widgetFontWeight')) { + localStorage.setItem('widgetFontWeight', localStorage.getItem('fontweight')); + localStorage.removeItem('fontweight'); + } + if (localStorage.getItem('fontstyle') && !localStorage.getItem('widgetFontStyle')) { + localStorage.setItem('widgetFontStyle', localStorage.getItem('fontstyle')); + localStorage.removeItem('fontstyle'); + } + switch (localStorage.getItem('theme')) { case 'dark': document.body.classList.add('dark'); @@ -28,7 +42,14 @@ export function loadSettings(hotreload) { if (hotreload === true) { // remove old custom stuff and add new - const custom = ['customcss', 'customfont']; + const custom = [ + 'customcss', + 'customwidgetfont', + 'customsettingsfont', + 'customgreetingfont', + 'customclockfont', + 'customquotefont', + ]; custom.forEach((element) => { try { document.head.removeChild(document.getElementById(element)); @@ -74,23 +95,158 @@ export function loadSettings(hotreload) { document.head.insertAdjacentHTML('beforeend', ''); } - const font = localStorage.getItem('font'); - if (font) { - const fontWeight = localStorage.getItem('fontweight') || '400'; - const fontStyle = localStorage.getItem('fontstyle') || 'normal'; + const widgetFont = localStorage.getItem('widgetFont'); + if (widgetFont) { + const widgetFontWeight = localStorage.getItem('widgetFontWeight') || '400'; + const widgetFontStyle = localStorage.getItem('widgetFontStyle') || 'normal'; - const fontFamily = font.replace(/ /g, '+'); + const fontFamily = widgetFont.replace(/ /g, '+'); const googleFontUrl = `@import url('https://fonts.googleapis.com/css2?family=${fontFamily}:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');`; document.head.insertAdjacentHTML( 'beforeend', ` - + `, + ); + } + + const settingsFont = localStorage.getItem('settingsFont'); + if (settingsFont) { + const settingsFontWeight = localStorage.getItem('settingsFontWeight') || '400'; + const settingsFontStyle = localStorage.getItem('settingsFontStyle') || 'normal'; + + const fontFamily = settingsFont.replace(/ /g, '+'); + const googleFontUrl = `@import url('https://fonts.googleapis.com/css2?family=${fontFamily}:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');`; + + document.head.insertAdjacentHTML( + 'beforeend', + ` + + `, + ); + } + + // Per-widget fonts (override global widget font) + const greetingFont = localStorage.getItem('greetingFont'); + if (greetingFont) { + const greetingFontWeight = localStorage.getItem('greetingFontWeight') || '400'; + const greetingFontStyle = localStorage.getItem('greetingFontStyle') || 'normal'; + const greetingColor = localStorage.getItem('greetingColor') || '#ffffff'; + + const fontFamily = greetingFont.replace(/ /g, '+'); + const googleFontUrl = `@import url('https://fonts.googleapis.com/css2?family=${fontFamily}:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');`; + + document.head.insertAdjacentHTML( + 'beforeend', + ` + + `, + ); + } else if (localStorage.getItem('greetingColor')) { + const greetingColor = localStorage.getItem('greetingColor'); + document.head.insertAdjacentHTML( + 'beforeend', + ` + + `, + ); + } + + const clockFont = localStorage.getItem('clockFont'); + if (clockFont) { + const clockFontWeight = localStorage.getItem('clockFontWeight') || '400'; + const clockFontStyle = localStorage.getItem('clockFontStyle') || 'normal'; + const clockColor = localStorage.getItem('clockColor') || '#ffffff'; + + const fontFamily = clockFont.replace(/ /g, '+'); + const googleFontUrl = `@import url('https://fonts.googleapis.com/css2?family=${fontFamily}:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');`; + + document.head.insertAdjacentHTML( + 'beforeend', + ` + + `, + ); + } else if (localStorage.getItem('clockColor')) { + const clockColor = localStorage.getItem('clockColor'); + document.head.insertAdjacentHTML( + 'beforeend', + ` + + `, + ); + } + + const quoteFont = localStorage.getItem('quoteFont'); + if (quoteFont) { + const quoteFontWeight = localStorage.getItem('quoteFontWeight') || '400'; + const quoteFontStyle = localStorage.getItem('quoteFontStyle') || 'normal'; + const quoteColor = localStorage.getItem('quoteColor') || '#ffffff'; + + const fontFamily = quoteFont.replace(/ /g, '+'); + const googleFontUrl = `@import url('https://fonts.googleapis.com/css2?family=${fontFamily}:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');`; + + document.head.insertAdjacentHTML( + 'beforeend', + ` + + `, + ); + } else if (localStorage.getItem('quoteColor')) { + const quoteColor = localStorage.getItem('quoteColor'); + document.head.insertAdjacentHTML( + 'beforeend', + ` + `,