mirror of
https://github.com/mue/mue.git
synced 2026-07-27 02:31:06 +02:00
feat: finish 5.0 (mostly)
Co-authored-by: Alex Sparkes <turbomarshmello@gmail.com>
This commit is contained in:
@@ -92,18 +92,18 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.ReactModal__Overlay {
|
.ReactModal__Content {
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
transform: scale(0);
|
transform: scale(0);
|
||||||
transition: all 300ms cubic-bezier(.47, 1.64, .41, .8);
|
transition: all 300ms cubic-bezier(.47, 1.64, .41, .8);
|
||||||
}
|
}
|
||||||
|
|
||||||
.ReactModal__Overlay--after-open {
|
.ReactModal__Content--after-open {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
transform: scale(1);
|
transform: scale(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
.ReactModal__Overlay--before-close {
|
.ReactModal__Content--before-close {
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
transform: scale(0);
|
transform: scale(0);
|
||||||
}
|
}
|
||||||
@@ -356,6 +356,10 @@ li {
|
|||||||
.resetfooter {
|
.resetfooter {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
bottom: 20px;
|
bottom: 20px;
|
||||||
|
|
||||||
|
button.reset {
|
||||||
|
margin-right: 43px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.resetoverlay {
|
.resetoverlay {
|
||||||
|
|||||||
@@ -72,11 +72,17 @@ export default class About extends React.PureComponent {
|
|||||||
<p>{this.language.copyright} 2018-{new Date().getFullYear()} Mue Tab (BSD-3 License)</p>
|
<p>{this.language.copyright} 2018-{new Date().getFullYear()} Mue Tab (BSD-3 License)</p>
|
||||||
<p>{this.language.version.title} {window.constants.VERSION} ({this.state.update})</p>
|
<p>{this.language.version.title} {window.constants.VERSION} ({this.state.update})</p>
|
||||||
|
|
||||||
<h3>{window.language.modals.welcome.support}</h3>
|
<h3>{this.language.contact_us}</h3>
|
||||||
<a href='mailto:hello@muetab.com' className='welcomeLink' target='_blank' rel='noopener noreferrer'><EmailIcon/></a>
|
<a href='mailto:hello@muetab.com' className='welcomeLink' target='_blank' rel='noopener noreferrer'><EmailIcon/></a>
|
||||||
<a href='https://twitter.com/getmue' className='welcomeLink' target='_blank' rel='noopener noreferrer'><TwitterIcon/></a>
|
<a href='https://twitter.com/getmue' className='welcomeLink' target='_blank' rel='noopener noreferrer'><TwitterIcon/></a>
|
||||||
<a href='https://discord.gg/zv8C9F8' className='welcomeLink' target='_blank' rel='noopener noreferrer'><ForumIcon/></a>
|
<a href='https://discord.gg/zv8C9F8' className='welcomeLink' target='_blank' rel='noopener noreferrer'><ForumIcon/></a>
|
||||||
|
|
||||||
|
<h3>{this.language.support_mue}</h3>
|
||||||
|
<p><a href='https://github.com/sponsors/davidjcralph' className='welcomeLink' target='_blank' rel='noopener noreferrer'>GitHub Sponsors</a>
|
||||||
|
• <a href='https://ko-fi.com/davidjcralph' className='welcomeLink' target='_blank' rel='noopener noreferrer'>Ko-Fi</a>
|
||||||
|
• <a href='https://patreon.com/davidjcralph' className='welcomeLink' target='_blank' rel='noopener noreferrer'>Patreon</a>
|
||||||
|
</p>
|
||||||
|
|
||||||
<h3>{this.language.resources_used.title}</h3>
|
<h3>{this.language.resources_used.title}</h3>
|
||||||
<p>Pexels ({this.language.resources_used.bg_images})</p>
|
<p>Pexels ({this.language.resources_used.bg_images})</p>
|
||||||
<p>Google ({this.language.resources_used.pin_icon})</p>
|
<p>Google ({this.language.resources_used.pin_icon})</p>
|
||||||
|
|||||||
@@ -34,10 +34,10 @@ export default class TimeSettings extends React.PureComponent {
|
|||||||
const digitalSettings = (
|
const digitalSettings = (
|
||||||
<>
|
<>
|
||||||
<h3>{time.digital.title}</h3>
|
<h3>{time.digital.title}</h3>
|
||||||
<Radio title={time.format} name='timeformat' options={digitalOptions} smallTitle={true} category='clock' />
|
<Radio title={time.format} name='timeformat' options={digitalOptions} smallTitle={true} category='clock' element='.other' />
|
||||||
<br/>
|
<br/>
|
||||||
<Checkbox name='seconds' text={time.digital.seconds} category='clock' />
|
<Checkbox name='seconds' text={time.digital.seconds} category='clock' element='.other' />
|
||||||
<Checkbox name='zero' text={time.digital.zero} category='clock' />
|
<Checkbox name='zero' text={time.digital.zero} category='clock' element='.other' />
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
|
|
||||||
@@ -62,21 +62,21 @@ export default class TimeSettings extends React.PureComponent {
|
|||||||
|
|
||||||
const longSettings = (
|
const longSettings = (
|
||||||
<>
|
<>
|
||||||
<Checkbox name='dayofweek' text={time.date.day_of_week} category='date' />
|
<Checkbox name='dayofweek' text={time.date.day_of_week} category='date' element='.date' />
|
||||||
<Checkbox name='datenth' text={time.date.datenth} category='date' />
|
<Checkbox name='datenth' text={time.date.datenth} category='date' element='.date' />
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
|
|
||||||
const shortSettings = (
|
const shortSettings = (
|
||||||
<>
|
<>
|
||||||
<br/>
|
<br/>
|
||||||
<Dropdown label={time.date.short_format} name='dateFormat' category='date'>
|
<Dropdown label={time.date.short_format} name='dateFormat' category='date' element='.date'>
|
||||||
<option value='DMY'>DMY</option>
|
<option value='DMY'>DMY</option>
|
||||||
<option value='MDY'>MDY</option>
|
<option value='MDY'>MDY</option>
|
||||||
<option value='YMD'>YMD</option>
|
<option value='YMD'>YMD</option>
|
||||||
</Dropdown>
|
</Dropdown>
|
||||||
<br/><br/>
|
<br/><br/>
|
||||||
<Dropdown label={time.date.short_separator.title} name='shortFormat' category='date'>
|
<Dropdown label={time.date.short_separator.title} name='shortFormat' category='date' element='.date'>
|
||||||
<option value='dots'>{time.date.short_separator.dots}</option>
|
<option value='dots'>{time.date.short_separator.dots}</option>
|
||||||
<option value='dash'>{time.date.short_separator.dash}</option>
|
<option value='dash'>{time.date.short_separator.dash}</option>
|
||||||
<option value='gaps'>{time.date.short_separator.gaps}</option>
|
<option value='gaps'>{time.date.short_separator.gaps}</option>
|
||||||
@@ -95,7 +95,7 @@ export default class TimeSettings extends React.PureComponent {
|
|||||||
<>
|
<>
|
||||||
<h2>{time.title}</h2>
|
<h2>{time.title}</h2>
|
||||||
<Switch name='time' text={this.language.enabled} category='clock' element='.clock' />
|
<Switch name='time' text={this.language.enabled} category='clock' element='.clock' />
|
||||||
<Dropdown label={time.type} name='timeType' onChange={(value) => this.setState({ timeType: value })} category='clock'>
|
<Dropdown label={time.type} name='timeType' onChange={(value) => this.setState({ timeType: value })} category='clock' element='.other'>
|
||||||
<option value='digital'>{time.digital.title}</option>
|
<option value='digital'>{time.digital.title}</option>
|
||||||
<option value='analogue'>{time.analogue.title}</option>
|
<option value='analogue'>{time.analogue.title}</option>
|
||||||
<option value='percentageComplete'>{time.percentage_complete}</option>
|
<option value='percentageComplete'>{time.percentage_complete}</option>
|
||||||
@@ -103,13 +103,13 @@ export default class TimeSettings extends React.PureComponent {
|
|||||||
{timeSettings}
|
{timeSettings}
|
||||||
|
|
||||||
<h3>{time.date.title}</h3>
|
<h3>{time.date.title}</h3>
|
||||||
<Switch name='date' text={this.language.enabled} category='date' />
|
<Switch name='date' text={this.language.enabled} category='date' element='.date'/>
|
||||||
<Dropdown label={time.type} name='dateType' onChange={(value) => this.setState({ dateType: value })} category='date'>
|
<Dropdown label={time.type} name='dateType' onChange={(value) => this.setState({ dateType: value })} category='date' element='.date'>
|
||||||
<option value='long'>{time.date.type.long}</option>
|
<option value='long'>{time.date.type.long}</option>
|
||||||
<option value='short'>{time.date.type.short}</option>
|
<option value='short'>{time.date.type.short}</option>
|
||||||
</Dropdown>
|
</Dropdown>
|
||||||
<br/>
|
<br/>
|
||||||
<Checkbox name='weeknumber' text={time.date.week_number} category='date'/>
|
<Checkbox name='weeknumber' text={time.date.week_number} category='date' element='.date'/>
|
||||||
{dateSettings}
|
{dateSettings}
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -17,6 +17,15 @@ export default class TimeSettings extends React.PureComponent {
|
|||||||
localStorage.setItem('location', this.state.location);
|
localStorage.setItem('location', this.state.location);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
changeLocation(e) {
|
||||||
|
this.setState({
|
||||||
|
location: e.target.value
|
||||||
|
});
|
||||||
|
|
||||||
|
document.querySelector('.reminder-info').style.display = 'block';
|
||||||
|
localStorage.setItem('showReminder', true);
|
||||||
|
}
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
const language = window.language.modals.main.settings.sections.weather;
|
const language = window.language.modals.main.settings.sections.weather;
|
||||||
|
|
||||||
@@ -41,11 +50,12 @@ export default class TimeSettings extends React.PureComponent {
|
|||||||
<Switch name='weatherEnabled' text={this.language.enabled} category='widgets'/>
|
<Switch name='weatherEnabled' text={this.language.enabled} category='widgets'/>
|
||||||
<ul>
|
<ul>
|
||||||
<p>{language.location}</p>
|
<p>{language.location}</p>
|
||||||
<input type='text' value={this.state.location} onChange={(e) => this.setState({ location: e.target.value })}></input>
|
<input type='text' value={this.state.location} onChange={(e) => this.changeLocation(e)}></input>
|
||||||
</ul>
|
</ul>
|
||||||
<br/>
|
<br/>
|
||||||
<Radio name='tempformat' title={language.temp_format.title} options={tempFormat} category='weather'/>
|
<Radio name='tempformat' title={language.temp_format.title} options={tempFormat} category='weather'/>
|
||||||
<h3>{language.extra_info.title}</h3>
|
<h3>{language.extra_info.title}</h3>
|
||||||
|
<Checkbox name='showlocation' text={language.extra_info.show_location} category='weather'/>
|
||||||
<Checkbox name='humidity' text={language.extra_info.humidity} category='weather'/>
|
<Checkbox name='humidity' text={language.extra_info.humidity} category='weather'/>
|
||||||
<Checkbox name='windspeed' text={language.extra_info.wind_speed} category='weather'/>
|
<Checkbox name='windspeed' text={language.extra_info.wind_speed} category='weather'/>
|
||||||
<Checkbox name='mintemp' text={language.extra_info.min_temp} category='weather'/>
|
<Checkbox name='mintemp' text={language.extra_info.min_temp} category='weather'/>
|
||||||
|
|||||||
@@ -4,6 +4,8 @@
|
|||||||
h3 {
|
h3 {
|
||||||
text-shadow: none;
|
text-shadow: none;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
cursor: initial;
|
||||||
|
user-select: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -14,7 +14,9 @@ export default class QuickLinks extends React.PureComponent {
|
|||||||
items: JSON.parse(localStorage.getItem('quicklinks')),
|
items: JSON.parse(localStorage.getItem('quicklinks')),
|
||||||
name: '',
|
name: '',
|
||||||
url: '',
|
url: '',
|
||||||
showAddLink: 'hidden'
|
showAddLink: 'hidden',
|
||||||
|
nameError: '',
|
||||||
|
urlError: ''
|
||||||
};
|
};
|
||||||
this.language = window.language.widgets.quicklinks;
|
this.language = window.language.widgets.quicklinks;
|
||||||
}
|
}
|
||||||
@@ -35,6 +37,22 @@ export default class QuickLinks extends React.PureComponent {
|
|||||||
let data = JSON.parse(localStorage.getItem('quicklinks'));
|
let data = JSON.parse(localStorage.getItem('quicklinks'));
|
||||||
let url = this.state.url;
|
let url = this.state.url;
|
||||||
|
|
||||||
|
let nameError, urlError;
|
||||||
|
if (this.state.name.length <= 0) {
|
||||||
|
nameError = 'Must provide name';
|
||||||
|
}
|
||||||
|
|
||||||
|
if (url.length <= 0) {
|
||||||
|
urlError = 'Must provide URL';
|
||||||
|
}
|
||||||
|
|
||||||
|
if (nameError || urlError) {
|
||||||
|
return this.setState({
|
||||||
|
nameError: nameError,
|
||||||
|
urlError: urlError
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
if (!url.startsWith('http://') && !url.startsWith('https://')) {
|
if (!url.startsWith('http://') && !url.startsWith('https://')) {
|
||||||
url = 'http://' + url;
|
url = 'http://' + url;
|
||||||
}
|
}
|
||||||
@@ -99,8 +117,8 @@ export default class QuickLinks extends React.PureComponent {
|
|||||||
render() {
|
render() {
|
||||||
let target, rel = null;
|
let target, rel = null;
|
||||||
if (localStorage.getItem('quicklinksnewtab') === 'true') {
|
if (localStorage.getItem('quicklinksnewtab') === 'true') {
|
||||||
target ='_blank';
|
target = '_blank';
|
||||||
rel ='noopener noreferrer';
|
rel = 'noopener noreferrer';
|
||||||
}
|
}
|
||||||
|
|
||||||
const tooltipEnabled = localStorage.getItem('quicklinkstooltip');
|
const tooltipEnabled = localStorage.getItem('quicklinkstooltip');
|
||||||
@@ -113,7 +131,7 @@ export default class QuickLinks extends React.PureComponent {
|
|||||||
);
|
);
|
||||||
|
|
||||||
if (tooltipEnabled === 'true') {
|
if (tooltipEnabled === 'true') {
|
||||||
return <Tooltip title={item.name} key={item.name}>{link}</Tooltip>;
|
return <Tooltip title={item.name} key={item.name} draggable={false}>{link}</Tooltip>;
|
||||||
} else {
|
} else {
|
||||||
return link;
|
return link;
|
||||||
}
|
}
|
||||||
@@ -129,9 +147,9 @@ export default class QuickLinks extends React.PureComponent {
|
|||||||
<div className='topbarquicklinks'>
|
<div className='topbarquicklinks'>
|
||||||
<h4>{this.language.new}</h4>
|
<h4>{this.language.new}</h4>
|
||||||
<TextareaAutosize rowsMax={1} placeholder={this.language.name} value={this.state.name} onChange={(e) => this.setState({ name: e.target.value })} />
|
<TextareaAutosize rowsMax={1} placeholder={this.language.name} value={this.state.name} onChange={(e) => this.setState({ name: e.target.value })} />
|
||||||
<br/>
|
<p>{this.state.nameError}</p>
|
||||||
<TextareaAutosize rowsMax={10} placeholder={this.language.url} value={this.state.url} onChange={(e) => this.setState({ url: e.target.value })} />
|
<TextareaAutosize rowsMax={10} placeholder={this.language.url} value={this.state.url} onChange={(e) => this.setState({ url: e.target.value })} />
|
||||||
<br/>
|
<p>{this.state.urlError}</p>
|
||||||
<button className='pinNote' onClick={this.addLink}>{this.language.add}</button>
|
<button className='pinNote' onClick={this.addLink}>{this.language.add}</button>
|
||||||
</div>
|
</div>
|
||||||
</span>
|
</span>
|
||||||
|
|||||||
@@ -15,9 +15,8 @@
|
|||||||
text-align: center;
|
text-align: center;
|
||||||
border-radius: 12px;
|
border-radius: 12px;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 56%;
|
|
||||||
margin-left: -140px;
|
margin-left: -140px;
|
||||||
margin-top: 5px;
|
margin-top: 50px;
|
||||||
|
|
||||||
svg {
|
svg {
|
||||||
float: left;
|
float: left;
|
||||||
@@ -43,16 +42,18 @@ textarea {
|
|||||||
padding: 9px;
|
padding: 9px;
|
||||||
}
|
}
|
||||||
|
|
||||||
h3 {
|
|
||||||
font-size: 46px;
|
|
||||||
margin-right: 20px;
|
|
||||||
}
|
|
||||||
|
|
||||||
h4 {
|
h4 {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
cursor: initial;
|
cursor: initial;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
p {
|
||||||
|
font-size: 16px;
|
||||||
|
cursor: initial;
|
||||||
|
user-select: none;
|
||||||
|
color: rgba(255, 71, 87, 1);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.dark textarea {
|
.dark textarea {
|
||||||
@@ -79,6 +80,7 @@ textarea {
|
|||||||
height: 32px;
|
height: 32px;
|
||||||
width: auto;
|
width: auto;
|
||||||
transition: transform .2s;
|
transition: transform .2s;
|
||||||
|
user-select: none;
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
transform: scale(1.1);
|
transform: scale(1.1);
|
||||||
|
|||||||
@@ -13,7 +13,7 @@
|
|||||||
font-size: calc(5px + 1.2vmin);
|
font-size: calc(5px + 1.2vmin);
|
||||||
border: none;
|
border: none;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
background-color: rgba(0, 0, 0, 0.1);
|
background-color: rgba(0, 0, 0, 0.3);
|
||||||
-webkit-transition: width 0.5s ease-in-out;
|
-webkit-transition: width 0.5s ease-in-out;
|
||||||
transition: width 0.5s ease-in-out;
|
transition: width 0.5s ease-in-out;
|
||||||
color: white;
|
color: white;
|
||||||
@@ -22,7 +22,7 @@
|
|||||||
|
|
||||||
&:focus {
|
&:focus {
|
||||||
width: 400px;
|
width: 400px;
|
||||||
background-color: rgba(0, 0, 0, .3);
|
background-color: rgba(0, 0, 0, .5);
|
||||||
user-select: text;
|
user-select: text;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -114,14 +114,14 @@ export default class Clock extends React.PureComponent {
|
|||||||
clockHTML = (
|
clockHTML = (
|
||||||
<React.Suspense fallback={renderLoader()}>
|
<React.Suspense fallback={renderLoader()}>
|
||||||
<Analog
|
<Analog
|
||||||
className='analogclock clock-container'
|
className='analogclock clock-container'
|
||||||
value={this.state.time}
|
value={this.state.time}
|
||||||
renderHourMarks={enabled('hourMarks')}
|
renderMinuteMarks={enabled('minuteMarks')}
|
||||||
renderMinuteMarks={enabled('minuteMarks')}
|
renderHourMarks={enabled('hourMarks')}
|
||||||
renderSecondHand={enabled('secondHand')}
|
renderSecondHand={enabled('secondHand')}
|
||||||
renderMinuteHand={enabled('minuteHand')}
|
renderMinuteHand={enabled('minuteHand')}
|
||||||
renderHourHand={enabled('hourHand')}
|
renderHourHand={enabled('hourHand')}
|
||||||
/>
|
/>
|
||||||
</React.Suspense>
|
</React.Suspense>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -48,8 +48,14 @@ export default class Weather extends React.PureComponent {
|
|||||||
data = await (await fetch (window.constants.WEATHER_URL + `?city=${this.state.location}`)).json();
|
data = await (await fetch (window.constants.WEATHER_URL + `?city=${this.state.location}`)).json();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (data.cod === '404') {
|
||||||
|
return this.setState({
|
||||||
|
location: window.language.widgets.weather.not_found
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
let temp = data.main.temp;
|
let temp = data.main.temp;
|
||||||
let temp_min = data.main.temp_mix
|
let temp_min = data.main.temp_min;
|
||||||
let temp_max = data.main.temp_max;
|
let temp_max = data.main.temp_max;
|
||||||
let temp_text = 'K';
|
let temp_text = 'K';
|
||||||
|
|
||||||
@@ -105,6 +111,12 @@ export default class Weather extends React.PureComponent {
|
|||||||
return (localStorage.getItem(setting) === 'true');
|
return (localStorage.getItem(setting) === 'true');
|
||||||
};
|
};
|
||||||
|
|
||||||
|
if (this.state.location === window.language.widgets.weather.not_found) {
|
||||||
|
return (<div className='weather'>
|
||||||
|
<span className='loc'>{this.state.location}</span>
|
||||||
|
</div>);
|
||||||
|
};
|
||||||
|
|
||||||
const minmax = () => {
|
const minmax = () => {
|
||||||
const mintemp = (localStorage.getItem('mintemp') === 'true');
|
const mintemp = (localStorage.getItem('mintemp') === 'true');
|
||||||
const maxtemp = (localStorage.getItem('maxtemp') === 'true');
|
const maxtemp = (localStorage.getItem('maxtemp') === 'true');
|
||||||
@@ -129,7 +141,7 @@ export default class Weather extends React.PureComponent {
|
|||||||
{enabled('windspeed') ? <span className='loc'><br/><WiWindy/>{this.state.weather.windspeed}<span className='minmax'> m/s</span></span> : null}
|
{enabled('windspeed') ? <span className='loc'><br/><WiWindy/>{this.state.weather.windspeed}<span className='minmax'> m/s</span></span> : null}
|
||||||
{enabled('atmosphericpressure') ? <span className='loc'><br/>{this.state.weather.pressure}<span className='minmax'> hPa</span></span> : null}
|
{enabled('atmosphericpressure') ? <span className='loc'><br/>{this.state.weather.pressure}<span className='minmax'> hPa</span></span> : null}
|
||||||
<br/>
|
<br/>
|
||||||
<span className='loc'>{this.state.location}</span>
|
{enabled('showlocation') ? <span className='loc'>{this.state.location}</span> : null}
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -4,14 +4,18 @@
|
|||||||
right: 1rem;
|
right: 1rem;
|
||||||
cursor: initial;
|
cursor: initial;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
|
padding: 20px;
|
||||||
|
background-color: rgba(0, 0, 0, 0.3);
|
||||||
|
border-radius: 20px;
|
||||||
|
|
||||||
span {
|
span {
|
||||||
text-shadow: 0 0 10px rgb(0 0 0 / 50%);
|
text-shadow: 0 0 10px rgb(0 0 0 / 50%);
|
||||||
}
|
}
|
||||||
|
|
||||||
svg {
|
svg {
|
||||||
filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.3));
|
filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.1));
|
||||||
font-size: 0.8em;
|
vertical-align: middle;
|
||||||
|
font-size: 35px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.loc {
|
.loc {
|
||||||
|
|||||||
@@ -186,5 +186,17 @@
|
|||||||
{
|
{
|
||||||
"name": "notesEnabled",
|
"name": "notesEnabled",
|
||||||
"value": true
|
"value": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "showlocation",
|
||||||
|
"value": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "minuteHand",
|
||||||
|
"value": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "hourHand",
|
||||||
|
"value": true
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -12,13 +12,30 @@
|
|||||||
},
|
},
|
||||||
"background": {
|
"background": {
|
||||||
"credit": "Foto von",
|
"credit": "Foto von",
|
||||||
"information": "Informationen"
|
"unsplash": "on Unsplash",
|
||||||
|
"information": "Informationen",
|
||||||
|
"download": "Download"
|
||||||
},
|
},
|
||||||
"search": "Suche",
|
"search": "Suche",
|
||||||
|
"quicklinks": {
|
||||||
|
"new": "New Link",
|
||||||
|
"name": "Name",
|
||||||
|
"url": "URL",
|
||||||
|
"add": "Add",
|
||||||
|
"name_error": "Must provide name",
|
||||||
|
"url_error": "Must provide URL"
|
||||||
|
},
|
||||||
|
"date": {
|
||||||
|
"week": "Week"
|
||||||
|
},
|
||||||
|
"weather": {
|
||||||
|
"not_found": "Not Found"
|
||||||
|
},
|
||||||
"navbar": {
|
"navbar": {
|
||||||
"tooltips": {
|
"tooltips": {
|
||||||
"update": "Update Hinweise",
|
"update": "Update Hinweise",
|
||||||
"refresh": "Neuladen"
|
"refresh": "Neuladen",
|
||||||
|
"feedback": "Feedback"
|
||||||
},
|
},
|
||||||
"notes": {
|
"notes": {
|
||||||
"title": "Notizen",
|
"title": "Notizen",
|
||||||
@@ -30,21 +47,33 @@
|
|||||||
"main": {
|
"main": {
|
||||||
"title": "Einstellungen",
|
"title": "Einstellungen",
|
||||||
"loading": "Loading...",
|
"loading": "Loading...",
|
||||||
|
"file_upload_error": "File is over 2MB",
|
||||||
"navbar": {
|
"navbar": {
|
||||||
"settings": "Einstellungen",
|
"settings": "Einstellungen",
|
||||||
"addons": "Meine Addons",
|
"addons": "Meine Addons",
|
||||||
"marketplace": "Marktplatz"
|
"marketplace": "Marktplatz"
|
||||||
},
|
},
|
||||||
|
"error_boundary": {
|
||||||
|
"title": "Error",
|
||||||
|
"message": "Failed to load this component of Mue",
|
||||||
|
"refresh": "Refresh"
|
||||||
|
},
|
||||||
"settings": {
|
"settings": {
|
||||||
"enabled": "Aktivieren",
|
"enabled": "Aktivieren",
|
||||||
|
"reminder": {
|
||||||
|
"title": "NOTICE",
|
||||||
|
"message": "In order for all of the changes to take place, the page must be refreshed."
|
||||||
|
},
|
||||||
"sections": {
|
"sections": {
|
||||||
"time": {
|
"time": {
|
||||||
"title": "Uhrzeit",
|
"title": "Uhrzeit",
|
||||||
|
"format": "Format",
|
||||||
|
"type": "Type",
|
||||||
"digital": {
|
"digital": {
|
||||||
"title": "Digital",
|
"title": "Digital",
|
||||||
"seconds": "Sekunden",
|
"seconds": "Sekunden",
|
||||||
"twentyfourhour": "24 Stunden",
|
"twentyfourhour": "24 Stunden",
|
||||||
"ampm": "AM/PM (12 Stunden)",
|
"twelvehour": "12 hour",
|
||||||
"zero": "Nullen füllen"
|
"zero": "Nullen füllen"
|
||||||
},
|
},
|
||||||
"analogue": {
|
"analogue": {
|
||||||
@@ -58,8 +87,13 @@
|
|||||||
"percentage_complete": "Denn Tages fotschritt in Prozent anzeigen",
|
"percentage_complete": "Denn Tages fotschritt in Prozent anzeigen",
|
||||||
"date": {
|
"date": {
|
||||||
"title": "Datum",
|
"title": "Datum",
|
||||||
|
"week_number": "Week number",
|
||||||
"day_of_week": "Wochentag",
|
"day_of_week": "Wochentag",
|
||||||
"datenth": "Date nth",
|
"datenth": "Date nth",
|
||||||
|
"type": {
|
||||||
|
"short": "Short",
|
||||||
|
"long": "Long"
|
||||||
|
},
|
||||||
"short_date": "Kurzes Datum",
|
"short_date": "Kurzes Datum",
|
||||||
"short_format": "Kurzes Format",
|
"short_format": "Kurzes Format",
|
||||||
"short_separator": {
|
"short_separator": {
|
||||||
@@ -89,20 +123,31 @@
|
|||||||
"default": "Standard-Begrüßungsnachricht",
|
"default": "Standard-Begrüßungsnachricht",
|
||||||
"name": "Name zur Begrüßung",
|
"name": "Name zur Begrüßung",
|
||||||
"birthday": "Geburtstag",
|
"birthday": "Geburtstag",
|
||||||
|
"birthday_age": "Birthday age",
|
||||||
"birthday_date": "Geburtstags Datum"
|
"birthday_date": "Geburtstags Datum"
|
||||||
},
|
},
|
||||||
"background": {
|
"background": {
|
||||||
"title": "Hintergrund",
|
"title": "Hintergrund",
|
||||||
|
"ddg_proxy": "Use DuckDuckGo image proxy",
|
||||||
|
"transition": "Fade-in transition",
|
||||||
|
"category": "Category",
|
||||||
"buttons": {
|
"buttons": {
|
||||||
"title": "Buttons",
|
"title": "Buttons",
|
||||||
"view": "Ansicht",
|
"view": "Ansicht",
|
||||||
"favourite": "Favorit"
|
"favourite": "Favorit",
|
||||||
|
"download": "Download"
|
||||||
},
|
},
|
||||||
"effects": {
|
"effects": {
|
||||||
"title": "Effekte",
|
"title": "Effekte",
|
||||||
"blur": "Unschärfe anpassen",
|
"blur": "Unschärfe anpassen",
|
||||||
"brightness": "Helligkeit anpassen"
|
"brightness": "Helligkeit anpassen"
|
||||||
},
|
},
|
||||||
|
"type": {
|
||||||
|
"title": "Type",
|
||||||
|
"api": "API",
|
||||||
|
"custom_image": "Custom image",
|
||||||
|
"custom_colour": "Custom colour/gradient"
|
||||||
|
},
|
||||||
"source": {
|
"source": {
|
||||||
"title": "Quelle",
|
"title": "Quelle",
|
||||||
"api": "Hintergrund API",
|
"api": "Hintergrund API",
|
||||||
@@ -111,7 +156,9 @@
|
|||||||
"custom_colour": "Benutzerdefinierter Hintergrundfarbe",
|
"custom_colour": "Benutzerdefinierter Hintergrundfarbe",
|
||||||
"upload": "Upload",
|
"upload": "Upload",
|
||||||
"add_colour": "Farbe hinzufügen",
|
"add_colour": "Farbe hinzufügen",
|
||||||
"disabled": "Deaktiviert"
|
"disabled": "Deaktiviert",
|
||||||
|
"loop_video": "Loop video",
|
||||||
|
"mute_video": "Mute video"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"search": {
|
"search": {
|
||||||
@@ -120,10 +167,39 @@
|
|||||||
"custom": "Abfrage-URL",
|
"custom": "Abfrage-URL",
|
||||||
"voice_search": "Sprachsuche"
|
"voice_search": "Sprachsuche"
|
||||||
},
|
},
|
||||||
|
"weather": {
|
||||||
|
"title": "Weather",
|
||||||
|
"location": "Location",
|
||||||
|
"auto": "Auto",
|
||||||
|
"temp_format": {
|
||||||
|
"title": "Temperature format",
|
||||||
|
"celsius": "Celsius",
|
||||||
|
"fahrenheit": "Fahrenheit",
|
||||||
|
"kelvin": "Kelvin"
|
||||||
|
},
|
||||||
|
"extra_info": {
|
||||||
|
"title": "Extra information",
|
||||||
|
"show_location": "Show Location",
|
||||||
|
"humidity": "Humidity",
|
||||||
|
"wind_speed": "Wind speed",
|
||||||
|
"min_temp": "Minimum temperature",
|
||||||
|
"max_temp": "Maximum temperature",
|
||||||
|
"atmospheric_pressure": "Atmospheric pressure"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"quicklinks": {
|
||||||
|
"title": "Quick Links",
|
||||||
|
"open_new": "Open in new tab",
|
||||||
|
"tooltip": "Tooltip"
|
||||||
|
},
|
||||||
"appearance": {
|
"appearance": {
|
||||||
"title": "Erscheinungsbild",
|
"title": "Erscheinungsbild",
|
||||||
"dark_theme": "Dark Mode",
|
"theme": {
|
||||||
"night_mode": "Nacht Modus",
|
"title": "Theme",
|
||||||
|
"auto": "Auto",
|
||||||
|
"light": "Light",
|
||||||
|
"dark": "Dark"
|
||||||
|
},
|
||||||
"animations": "Animationen",
|
"animations": "Animationen",
|
||||||
"navbar": {
|
"navbar": {
|
||||||
"title": "Navigationsleiste",
|
"title": "Navigationsleiste",
|
||||||
@@ -133,26 +209,56 @@
|
|||||||
"font": {
|
"font": {
|
||||||
"title": "Schriftart",
|
"title": "Schriftart",
|
||||||
"custom": "Eigene Schriftart",
|
"custom": "Eigene Schriftart",
|
||||||
"google": "Importieren von Google Fonts"
|
"google": "Importieren von 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": {
|
"accessibility": {
|
||||||
"title": "Accessibility",
|
"title": "Accessibility",
|
||||||
"zoom": "Zoom",
|
"widget_zoom": "Widget zoom",
|
||||||
"toast_duration": "Toast Dauer",
|
"toast_duration": "Toast Dauer",
|
||||||
"milliseconds": "Millisekunden"
|
"milliseconds": "Millisekunden",
|
||||||
|
"zoom": "Zoom"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"order": {
|
||||||
|
"title": "Widget Order"
|
||||||
|
},
|
||||||
"advanced": {
|
"advanced": {
|
||||||
"title": "Erweitert",
|
"title": "Erweitert",
|
||||||
"offline_mode": "Offline Modus",
|
"offline_mode": "Offline Modus",
|
||||||
"data": "Daten",
|
"data": "Daten",
|
||||||
|
"reset_modal": {
|
||||||
|
"title": "WARNING",
|
||||||
|
"question": "Do you want to reset Mue?",
|
||||||
|
"information": "This will delete all data. If you wish to keep your data and preferences, please export them first.",
|
||||||
|
"cancel": "Cancel"
|
||||||
|
},
|
||||||
"customisation": "Anpassung",
|
"customisation": "Anpassung",
|
||||||
"custom_css": "Benutzerdefiniertes CSS",
|
"custom_css": "Benutzerdefiniertes CSS",
|
||||||
"custom_js": "Benutzerdefiniertes JS",
|
"custom_js": "Benutzerdefiniertes JS",
|
||||||
|
"tab_name": "Tab name",
|
||||||
"experimental_warning": "Bitte beachten Sie, dass das Mue Team keinen Support leisten kann, wenn Sie den experimentellen Modus aktiviert haben. Bitte deaktivieren Sie ihn zuerst und schauen Sie, ob das Problem weiterhin auftritt, bevor Sie den Support kontaktieren."
|
"experimental_warning": "Bitte beachten Sie, dass das Mue Team keinen Support leisten kann, wenn Sie den experimentellen Modus aktiviert haben. Bitte deaktivieren Sie ihn zuerst und schauen Sie, ob das Problem weiterhin auftritt, bevor Sie den Support kontaktieren."
|
||||||
},
|
},
|
||||||
"experimental": {
|
"experimental": {
|
||||||
"title": "Experimentell"
|
"title": "Experimentell",
|
||||||
|
"warning": "These settings have not been fully tested/implemented and may not work correctly!",
|
||||||
|
"developer": "Developer"
|
||||||
},
|
},
|
||||||
"language": {
|
"language": {
|
||||||
"title": "Sprache",
|
"title": "Sprache",
|
||||||
@@ -169,6 +275,8 @@
|
|||||||
"no_update": "Kein Update verfügbar",
|
"no_update": "Kein Update verfügbar",
|
||||||
"offline_mode": "Im Offline Modus kann nicht nach Updates gesucht werden"
|
"offline_mode": "Im Offline Modus kann nicht nach Updates gesucht werden"
|
||||||
},
|
},
|
||||||
|
"contact_us": "Contact Us",
|
||||||
|
"support_mue": "Support Mue",
|
||||||
"resources_used": {
|
"resources_used": {
|
||||||
"title": "Verwendete Ressourcen",
|
"title": "Verwendete Ressourcen",
|
||||||
"bg_images": "Offline Hintergrundbilder",
|
"bg_images": "Offline Hintergrundbilder",
|
||||||
@@ -176,7 +284,8 @@
|
|||||||
"pin_icon": "Pin Icon"
|
"pin_icon": "Pin Icon"
|
||||||
},
|
},
|
||||||
"contributors": "Mitwirkende",
|
"contributors": "Mitwirkende",
|
||||||
"supporters": "Unterstützer"
|
"supporters": "Unterstützer",
|
||||||
|
"photographers": "Photographers"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"buttons": {
|
"buttons": {
|
||||||
@@ -194,16 +303,13 @@
|
|||||||
"quote_packs": "Zitat-Pakete",
|
"quote_packs": "Zitat-Pakete",
|
||||||
"preset_settings": "Voreingestellte Einstellungen",
|
"preset_settings": "Voreingestellte Einstellungen",
|
||||||
"themes": "Themen",
|
"themes": "Themen",
|
||||||
|
"no_items": "No items in this category",
|
||||||
"product": {
|
"product": {
|
||||||
"overview": "Übersicht",
|
"overview": "Übersicht",
|
||||||
"information": "Information",
|
"information": "Information",
|
||||||
"last_updated": "Letzte Aktualisierung",
|
"last_updated": "Letzte Aktualisierung",
|
||||||
"version": "Version",
|
"version": "Version",
|
||||||
"author": "Autor",
|
"author": "Autor",
|
||||||
"notice": {
|
|
||||||
"title": "Hinweis",
|
|
||||||
"description": "Damit die Änderung erfolgt, muss die Seite neu geladen werden."
|
|
||||||
},
|
|
||||||
"buttons": {
|
"buttons": {
|
||||||
"addtomue": "Zu Mue hinzufügen",
|
"addtomue": "Zu Mue hinzufügen",
|
||||||
"remove": "Entfernen"
|
"remove": "Entfernen"
|
||||||
@@ -223,8 +329,7 @@
|
|||||||
"added": "Hinzugefügt",
|
"added": "Hinzugefügt",
|
||||||
"empty": {
|
"empty": {
|
||||||
"title": "Hier ist es leer",
|
"title": "Hier ist es leer",
|
||||||
"description": "Gehen Sie zum Marktplatz, um einige hinzuzufügen.",
|
"description": "Gehen Sie zum Marktplatz, um einige hinzuzufügen."
|
||||||
"button": "Bring mich dorthin"
|
|
||||||
},
|
},
|
||||||
"sideload": "Hochladen"
|
"sideload": "Hochladen"
|
||||||
}
|
}
|
||||||
@@ -255,6 +360,9 @@
|
|||||||
"question_one": "Wie würden Sie Ihre Erfahrungen mit dieser Mue Version bewerten?",
|
"question_one": "Wie würden Sie Ihre Erfahrungen mit dieser Mue Version bewerten?",
|
||||||
"question_two": "Auf welche Fehler sind Sie bei der Verwendung von Mue gestoßen?",
|
"question_two": "Auf welche Fehler sind Sie bei der Verwendung von Mue gestoßen?",
|
||||||
"question_three": "Wie wahrscheinlich ist es, dass Sie diese Version von Mue einem Freund oder Kollegen empfehlen würden?",
|
"question_three": "Wie wahrscheinlich ist es, dass Sie diese Version von Mue einem Freund oder Kollegen empfehlen würden?",
|
||||||
|
"question_four": "What do you want adding to the next Mue build?",
|
||||||
|
"not_filled": "Question box must be filled",
|
||||||
|
"success": "Sent successfully!",
|
||||||
"submit": "Senden"
|
"submit": "Senden"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -21,11 +21,16 @@
|
|||||||
"new": "New Link",
|
"new": "New Link",
|
||||||
"name": "Name",
|
"name": "Name",
|
||||||
"url": "URL",
|
"url": "URL",
|
||||||
"add": "Add"
|
"add": "Add",
|
||||||
|
"name_error": "Must provide name",
|
||||||
|
"url_error": "Must provide URL"
|
||||||
},
|
},
|
||||||
"date": {
|
"date": {
|
||||||
"week": "Week"
|
"week": "Week"
|
||||||
},
|
},
|
||||||
|
"weather": {
|
||||||
|
"not_found": "Not Found"
|
||||||
|
},
|
||||||
"navbar": {
|
"navbar": {
|
||||||
"tooltips": {
|
"tooltips": {
|
||||||
"update": "Update Patch Notes",
|
"update": "Update Patch Notes",
|
||||||
@@ -69,7 +74,6 @@
|
|||||||
"seconds": "Seconds",
|
"seconds": "Seconds",
|
||||||
"twentyfourhour": "24 Hour",
|
"twentyfourhour": "24 Hour",
|
||||||
"twelvehour": "12 hour",
|
"twelvehour": "12 hour",
|
||||||
"ampm": "AM/PM (12 hour)",
|
|
||||||
"zero": "Zero-padded"
|
"zero": "Zero-padded"
|
||||||
},
|
},
|
||||||
"analogue": {
|
"analogue": {
|
||||||
@@ -175,6 +179,7 @@
|
|||||||
},
|
},
|
||||||
"extra_info": {
|
"extra_info": {
|
||||||
"title": "Extra information",
|
"title": "Extra information",
|
||||||
|
"show_location": "Show Location",
|
||||||
"humidity": "Humidity",
|
"humidity": "Humidity",
|
||||||
"wind_speed": "Wind speed",
|
"wind_speed": "Wind speed",
|
||||||
"min_temp": "Minimum temperature",
|
"min_temp": "Minimum temperature",
|
||||||
@@ -269,6 +274,8 @@
|
|||||||
"no_update": "No update available",
|
"no_update": "No update available",
|
||||||
"offline_mode": "Cannot check for update in offline mode"
|
"offline_mode": "Cannot check for update in offline mode"
|
||||||
},
|
},
|
||||||
|
"contact_us": "Contact Us",
|
||||||
|
"support_mue": "Support Mue",
|
||||||
"resources_used": {
|
"resources_used": {
|
||||||
"title": "Resources used",
|
"title": "Resources used",
|
||||||
"bg_images": "Offline background images",
|
"bg_images": "Offline background images",
|
||||||
@@ -284,10 +291,6 @@
|
|||||||
"reset": "Reset",
|
"reset": "Reset",
|
||||||
"import": "Import",
|
"import": "Import",
|
||||||
"export": "Export"
|
"export": "Export"
|
||||||
},
|
|
||||||
"toasts": {
|
|
||||||
"reset": "Reset successfully",
|
|
||||||
"imported": "Successfully imported"
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"marketplace": {
|
"marketplace": {
|
||||||
|
|||||||
@@ -1,34 +1,370 @@
|
|||||||
{
|
{
|
||||||
"modals": {
|
"tabname": "New Tab",
|
||||||
"main": {
|
"widgets": {
|
||||||
"settings": {
|
"greeting": {
|
||||||
"sections": {
|
"morning": "Good Morning",
|
||||||
"quote": {
|
"afternoon": "Good Afternoon",
|
||||||
"favourite": "Favorite",
|
"evening": "Good Evening",
|
||||||
"author_link": "Author Link",
|
"christmas": "Merry Christmas",
|
||||||
"custom_author": "Custom Author"
|
"newyear": "Happy New Year",
|
||||||
},
|
"halloween": "Happy Halloween",
|
||||||
"background": {
|
"birthday": "Happy Birthday"
|
||||||
"buttons": {
|
},
|
||||||
"favourite": "Favorite"
|
"background": {
|
||||||
},
|
"credit": "Photo by",
|
||||||
"type": {
|
"unsplash": "on Unsplash",
|
||||||
"custom_colour": "Custom Color/Gradient"
|
"information": "Information",
|
||||||
},
|
"download": "Download"
|
||||||
"source": {
|
},
|
||||||
"add_colour": "Add color"
|
"search": "Search",
|
||||||
}
|
"quicklinks": {
|
||||||
},
|
"new": "New Link",
|
||||||
"time": {
|
"name": "Name",
|
||||||
"analogue": {
|
"url": "URL",
|
||||||
"title": "Analog"
|
"add": "Add",
|
||||||
}
|
"name_error": "Must provide name",
|
||||||
},
|
"url_error": "Must provide URL"
|
||||||
"advanced": {
|
},
|
||||||
"customisation": "Customization"
|
"date": {
|
||||||
}
|
"week": "Week"
|
||||||
}
|
},
|
||||||
|
"weather": {
|
||||||
|
"not_found": "Not Found"
|
||||||
|
},
|
||||||
|
"navbar": {
|
||||||
|
"tooltips": {
|
||||||
|
"update": "Update Patch Notes",
|
||||||
|
"refresh": "Refresh Page",
|
||||||
|
"feedback": "Feedback"
|
||||||
|
},
|
||||||
|
"notes": {
|
||||||
|
"title": "Notes",
|
||||||
|
"placeholder": "Type here"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"modals": {
|
||||||
|
"main": {
|
||||||
|
"title": "Options",
|
||||||
|
"loading": "Loading...",
|
||||||
|
"file_upload_error": "File is over 2MB",
|
||||||
|
"navbar": {
|
||||||
|
"settings": "Settings",
|
||||||
|
"addons": "My Add-ons",
|
||||||
|
"marketplace": "Marketplace"
|
||||||
|
},
|
||||||
|
"error_boundary": {
|
||||||
|
"title": "Error",
|
||||||
|
"message": "Failed to load this component of Mue",
|
||||||
|
"refresh": "Refresh"
|
||||||
|
},
|
||||||
|
"settings": {
|
||||||
|
"enabled": "Enabled",
|
||||||
|
"reminder": {
|
||||||
|
"title": "NOTICE",
|
||||||
|
"message": "In order for all of the changes to take place, the page must be refreshed."
|
||||||
|
},
|
||||||
|
"sections": {
|
||||||
|
"time": {
|
||||||
|
"title": "Time",
|
||||||
|
"format": "Format",
|
||||||
|
"type": "Type",
|
||||||
|
"digital": {
|
||||||
|
"title": "Digital",
|
||||||
|
"seconds": "Seconds",
|
||||||
|
"twentyfourhour": "24 Hour",
|
||||||
|
"twelvehour": "12 hour",
|
||||||
|
"zero": "Zero-padded"
|
||||||
|
},
|
||||||
|
"analogue": {
|
||||||
|
"title": "Analog",
|
||||||
|
"second_hand": "Seconds hand",
|
||||||
|
"minute_hand": "Minutes hand",
|
||||||
|
"hour_hand": "Hours hand",
|
||||||
|
"hour_marks": "Hour marks",
|
||||||
|
"minute_marks": "Minute marks"
|
||||||
|
},
|
||||||
|
"percentage_complete": "Percentage complete",
|
||||||
|
"date": {
|
||||||
|
"title": "Date",
|
||||||
|
"week_number": "Week number",
|
||||||
|
"day_of_week": "Day of week",
|
||||||
|
"datenth": "Date nth",
|
||||||
|
"type": {
|
||||||
|
"short": "Short",
|
||||||
|
"long": "Long"
|
||||||
|
},
|
||||||
|
"short_date": "Short date",
|
||||||
|
"short_format": "Short format",
|
||||||
|
"short_separator": {
|
||||||
|
"title": "Short separator",
|
||||||
|
"dots": "Dots",
|
||||||
|
"dash": "Dash",
|
||||||
|
"gaps": "Gaps",
|
||||||
|
"slashes": "Slashes"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"quote": {
|
||||||
|
"title": "Quote",
|
||||||
|
"author_link": "Author link",
|
||||||
|
"custom": "Custom quote",
|
||||||
|
"custom_author": "Custom author",
|
||||||
|
"buttons": {
|
||||||
|
"title": "Buttons",
|
||||||
|
"copy": "Copy",
|
||||||
|
"tweet": "Tweet",
|
||||||
|
"favourite": "Favorite"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"greeting": {
|
||||||
|
"title": "Greeting",
|
||||||
|
"events": "Events",
|
||||||
|
"default": "Default greeting message",
|
||||||
|
"name": "Name for greeting",
|
||||||
|
"birthday": "Birthday",
|
||||||
|
"birthday_age": "Birthday age",
|
||||||
|
"birthday_date": "Birthday date"
|
||||||
|
},
|
||||||
|
"background": {
|
||||||
|
"title": "Background",
|
||||||
|
"ddg_proxy": "Use DuckDuckGo image proxy",
|
||||||
|
"transition": "Fade-in transition",
|
||||||
|
"category": "Category",
|
||||||
|
"buttons": {
|
||||||
|
"title": "Buttons",
|
||||||
|
"view": "Maximize",
|
||||||
|
"favourite": "Favourite",
|
||||||
|
"download": "Download"
|
||||||
|
},
|
||||||
|
"effects": {
|
||||||
|
"title": "Effects",
|
||||||
|
"blur": "Adjust blur",
|
||||||
|
"brightness": "Adjust brightness"
|
||||||
|
},
|
||||||
|
"type": {
|
||||||
|
"title": "Type",
|
||||||
|
"api": "API",
|
||||||
|
"custom_image": "Custom image",
|
||||||
|
"custom_colour": "Custom color/gradient"
|
||||||
|
},
|
||||||
|
"source": {
|
||||||
|
"title": "Source",
|
||||||
|
"api": "Background API",
|
||||||
|
"custom_url": "Custom background URL",
|
||||||
|
"custom_background": "Custom background",
|
||||||
|
"custom_colour": "Custom background color",
|
||||||
|
"upload": "Upload",
|
||||||
|
"add_colour": "Add color",
|
||||||
|
"disabled": "Disabled",
|
||||||
|
"loop_video": "Loop video",
|
||||||
|
"mute_video": "Mute video"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"search": {
|
||||||
|
"title": "Search",
|
||||||
|
"search_engine": "Search engine",
|
||||||
|
"custom": "Custom search URL",
|
||||||
|
"voice_search": "Voice search"
|
||||||
|
},
|
||||||
|
"weather": {
|
||||||
|
"title": "Weather",
|
||||||
|
"location": "Location",
|
||||||
|
"auto": "Auto",
|
||||||
|
"temp_format": {
|
||||||
|
"title": "Temperature format",
|
||||||
|
"celsius": "Celsius",
|
||||||
|
"fahrenheit": "Fahrenheit",
|
||||||
|
"kelvin": "Kelvin"
|
||||||
|
},
|
||||||
|
"extra_info": {
|
||||||
|
"title": "Extra information",
|
||||||
|
"show_location": "Show Location",
|
||||||
|
"humidity": "Humidity",
|
||||||
|
"wind_speed": "Wind speed",
|
||||||
|
"min_temp": "Minimum temperature",
|
||||||
|
"max_temp": "Maximum temperature",
|
||||||
|
"atmospheric_pressure": "Atmospheric pressure"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"quicklinks": {
|
||||||
|
"title": "Quick Links",
|
||||||
|
"open_new": "Open in new tab",
|
||||||
|
"tooltip": "Tooltip"
|
||||||
|
},
|
||||||
|
"appearance": {
|
||||||
|
"title": "Appearance",
|
||||||
|
"theme": {
|
||||||
|
"title": "Theme",
|
||||||
|
"auto": "Auto",
|
||||||
|
"light": "Light",
|
||||||
|
"dark": "Dark"
|
||||||
|
},
|
||||||
|
"animations": "Animations",
|
||||||
|
"navbar": {
|
||||||
|
"title": "Navbar",
|
||||||
|
"notes": "Notes",
|
||||||
|
"refresh": "Refresh button"
|
||||||
|
},
|
||||||
|
"font": {
|
||||||
|
"title": "Font",
|
||||||
|
"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": {
|
||||||
|
"title": "Accessibility",
|
||||||
|
"widget_zoom": "Widget zoom",
|
||||||
|
"toast_duration": "Toast duration",
|
||||||
|
"milliseconds": "milliseconds"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"order": {
|
||||||
|
"title": "Widget Order"
|
||||||
|
},
|
||||||
|
"advanced": {
|
||||||
|
"title": "Advanced",
|
||||||
|
"offline_mode": "Offline mode",
|
||||||
|
"data": "Data",
|
||||||
|
"reset_modal": {
|
||||||
|
"title": "WARNING",
|
||||||
|
"question": "Do you want to reset Mue?",
|
||||||
|
"information": "This will delete all data. If you wish to keep your data and preferences, please export them first.",
|
||||||
|
"cancel": "Cancel"
|
||||||
|
},
|
||||||
|
"customisation": "Customization",
|
||||||
|
"custom_css": "Custom CSS",
|
||||||
|
"custom_js": "Custom JS",
|
||||||
|
"tab_name": "Tab name",
|
||||||
|
"experimental_warning": "Please note that the Mue team cannot provide support if you have experimental mode on. Please disable it first and see if the issue continues to occur before contacting support."
|
||||||
|
},
|
||||||
|
"experimental": {
|
||||||
|
"title": "Experimental",
|
||||||
|
"warning": "These settings have not been fully tested/implemented and may not work correctly!",
|
||||||
|
"developer": "Developer"
|
||||||
|
},
|
||||||
|
"language": {
|
||||||
|
"title": "Language",
|
||||||
|
"quote": "Quote language"
|
||||||
|
},
|
||||||
|
"changelog": "Change Log",
|
||||||
|
"about": {
|
||||||
|
"title": "About",
|
||||||
|
"copyright": "Copyright",
|
||||||
|
"version": {
|
||||||
|
"title": "Version",
|
||||||
|
"checking_update": "Checking for update",
|
||||||
|
"update_available": "Update available",
|
||||||
|
"no_update": "No update available",
|
||||||
|
"offline_mode": "Cannot check for update in offline mode"
|
||||||
|
},
|
||||||
|
"contact_us": "Contact Us",
|
||||||
|
"support_mue": "Support Mue",
|
||||||
|
"resources_used": {
|
||||||
|
"title": "Resources used",
|
||||||
|
"bg_images": "Offline background images",
|
||||||
|
"welcome_img": "Welcome image",
|
||||||
|
"pin_icon": "Pin icon"
|
||||||
|
},
|
||||||
|
"contributors": "Contributors",
|
||||||
|
"supporters": "Supporters",
|
||||||
|
"photographers": "Photographers"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"buttons": {
|
||||||
|
"reset": "Reset",
|
||||||
|
"import": "Import",
|
||||||
|
"export": "Export"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"marketplace": {
|
||||||
|
"photo_packs": "Photo Packs",
|
||||||
|
"quote_packs": "Quote Packs",
|
||||||
|
"preset_settings": "Preset Settings",
|
||||||
|
"themes": "Themes",
|
||||||
|
"no_items": "No items in this category",
|
||||||
|
"product": {
|
||||||
|
"overview": "Overview",
|
||||||
|
"information": "Information",
|
||||||
|
"last_updated": "Last Updated",
|
||||||
|
"version": "Version",
|
||||||
|
"author": "Author",
|
||||||
|
"buttons": {
|
||||||
|
"addtomue": "Add To Mue",
|
||||||
|
"remove": "Remove"
|
||||||
|
},
|
||||||
|
"quote_warning": {
|
||||||
|
"title": "Warning",
|
||||||
|
"description": "This quote pack requests to external servers that may track you!"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"offline": {
|
||||||
|
"title": "Looks like you're offline",
|
||||||
|
"description": "Please connect to the internet."
|
||||||
|
},
|
||||||
|
"see_more": "See More"
|
||||||
|
},
|
||||||
|
"addons": {
|
||||||
|
"added": "Added",
|
||||||
|
"empty": {
|
||||||
|
"title": "Empty",
|
||||||
|
"description": "No addons are installed"
|
||||||
|
},
|
||||||
|
"sideload": "Sideload"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"update": {
|
||||||
|
"title": "Update",
|
||||||
|
"offline": {
|
||||||
|
"title": "Offline",
|
||||||
|
"description": "Cannot get update logs while in offline mode"
|
||||||
|
},
|
||||||
|
"error": {
|
||||||
|
"title": "Error",
|
||||||
|
"description": "Could not connect to the server"
|
||||||
|
},
|
||||||
|
"read_blog": "Read on the blog here",
|
||||||
|
"contact_support": "Contact us here"
|
||||||
|
},
|
||||||
|
"welcome": {
|
||||||
|
"title": "Welcome to",
|
||||||
|
"information": "Information",
|
||||||
|
"thankyoumessage1": "Thank you for installing Mue Tab,",
|
||||||
|
"thankyoumessage2": "we hope you enjoy your time with our extension.",
|
||||||
|
"support": "Support",
|
||||||
|
"close": "Close"
|
||||||
|
},
|
||||||
|
"feedback": {
|
||||||
|
"title": "Give us feedback",
|
||||||
|
"question_one": "How would you rate your experience of this Mue build?",
|
||||||
|
"question_two": "What bugs did you encounter in your use of Mue?",
|
||||||
|
"question_three": "How likely would you be to recommend this version of Mue to a friend or colleague?",
|
||||||
|
"question_four": "What do you want adding to the next Mue build?",
|
||||||
|
"not_filled": "Question box must be filled",
|
||||||
|
"success": "Sent successfully!",
|
||||||
|
"submit": "Submit"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"toasts": {
|
||||||
|
"quote": "Quote copied",
|
||||||
|
"installed": "Successfully installed",
|
||||||
|
"uninstalled": "Successfully removed",
|
||||||
|
"error": "Something went wrong"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
{
|
{
|
||||||
|
"tabname": "New Tab",
|
||||||
"widgets": {
|
"widgets": {
|
||||||
"greeting": {
|
"greeting": {
|
||||||
"morning": "Buenos días",
|
"morning": "Buenos días",
|
||||||
@@ -6,38 +7,111 @@
|
|||||||
"evening": "Buenas noches",
|
"evening": "Buenas noches",
|
||||||
"christmas": "Feliz Navidad",
|
"christmas": "Feliz Navidad",
|
||||||
"newyear": "Feliz año nuevo",
|
"newyear": "Feliz año nuevo",
|
||||||
"halloween": "Feliz Halloween"
|
"halloween": "Feliz Halloween",
|
||||||
|
"birthday": "Happy Birthday"
|
||||||
},
|
},
|
||||||
"background": {
|
"background": {
|
||||||
"credit": "Foto por"
|
"credit": "Foto por",
|
||||||
|
"unsplash": "on Unsplash",
|
||||||
|
"information": "Information",
|
||||||
|
"download": "Download"
|
||||||
},
|
},
|
||||||
"search": "Buscar"
|
"search": "Buscar",
|
||||||
|
"quicklinks": {
|
||||||
|
"new": "New Link",
|
||||||
|
"name": "Name",
|
||||||
|
"url": "URL",
|
||||||
|
"add": "Add",
|
||||||
|
"name_error": "Must provide name",
|
||||||
|
"url_error": "Must provide URL"
|
||||||
|
},
|
||||||
|
"date": {
|
||||||
|
"week": "Week"
|
||||||
|
},
|
||||||
|
"weather": {
|
||||||
|
"not_found": "Not Found"
|
||||||
|
},
|
||||||
|
"navbar": {
|
||||||
|
"tooltips": {
|
||||||
|
"update": "Update Patch Notes",
|
||||||
|
"refresh": "Refresh Page",
|
||||||
|
"feedback": "Feedback"
|
||||||
|
},
|
||||||
|
"notes": {
|
||||||
|
"title": "Notes",
|
||||||
|
"placeholder": "Type here"
|
||||||
|
}
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"modals": {
|
"modals": {
|
||||||
"main": {
|
"main": {
|
||||||
"title": "Opciones",
|
"title": "Opciones",
|
||||||
|
"loading": "Loading...",
|
||||||
|
"file_upload_error": "File is over 2MB",
|
||||||
"navbar": {
|
"navbar": {
|
||||||
"settings": "Ajustes",
|
"settings": "Ajustes",
|
||||||
"addons": "Mis complementos",
|
"addons": "Mis complementos",
|
||||||
"marketplace": "Tienda"
|
"marketplace": "Tienda"
|
||||||
},
|
},
|
||||||
|
"error_boundary": {
|
||||||
|
"title": "Error",
|
||||||
|
"message": "Failed to load this component of Mue",
|
||||||
|
"refresh": "Refresh"
|
||||||
|
},
|
||||||
"settings": {
|
"settings": {
|
||||||
|
"enabled": "Enabled",
|
||||||
|
"reminder": {
|
||||||
|
"title": "NOTICE",
|
||||||
|
"message": "In order for all of the changes to take place, the page must be refreshed."
|
||||||
|
},
|
||||||
"sections": {
|
"sections": {
|
||||||
"time": {
|
"time": {
|
||||||
"title": "Tiempo",
|
"title": "Tiempo",
|
||||||
|
"format": "Format",
|
||||||
|
"type": "Type",
|
||||||
"digital": {
|
"digital": {
|
||||||
|
"title": "Digital",
|
||||||
"seconds": "Segundos",
|
"seconds": "Segundos",
|
||||||
"twentyfourhour": "24 Horas",
|
"twentyfourhour": "24 Horas",
|
||||||
"ampm": "AM/PM (12 horas)",
|
"twelvehour": "12 hour",
|
||||||
"zero": "Sin ceros"
|
"zero": "Sin ceros"
|
||||||
},
|
},
|
||||||
"analogue": {
|
"analogue": {
|
||||||
"title": "Analógico"
|
"title": "Analógico",
|
||||||
|
"second_hand": "Seconds hand",
|
||||||
|
"minute_hand": "Minutes hand",
|
||||||
|
"hour_hand": "Hours hand",
|
||||||
|
"hour_marks": "Hour marks",
|
||||||
|
"minute_marks": "Minute marks"
|
||||||
|
},
|
||||||
|
"percentage_complete": "Percentage complete",
|
||||||
|
"date": {
|
||||||
|
"title": "Date",
|
||||||
|
"week_number": "Week number",
|
||||||
|
"day_of_week": "Day of week",
|
||||||
|
"datenth": "Date nth",
|
||||||
|
"type": {
|
||||||
|
"short": "Short",
|
||||||
|
"long": "Long"
|
||||||
|
},
|
||||||
|
"short_date": "Short date",
|
||||||
|
"short_format": "Short format",
|
||||||
|
"short_separator": {
|
||||||
|
"title": "Short separator",
|
||||||
|
"dots": "Dots",
|
||||||
|
"dash": "Dash",
|
||||||
|
"gaps": "Gaps",
|
||||||
|
"slashes": "Slashes"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"quote": {
|
"quote": {
|
||||||
"title": "Cita",
|
"title": "Cita",
|
||||||
|
"author_link": "Authour link",
|
||||||
|
"custom": "Custom quote",
|
||||||
|
"custom_author": "Custom authour",
|
||||||
"buttons": {
|
"buttons": {
|
||||||
|
"title": "Buttons",
|
||||||
"copy": "Copiar",
|
"copy": "Copiar",
|
||||||
"tweet": "Tweet",
|
"tweet": "Tweet",
|
||||||
"favourite": "Favoritos"
|
"favourite": "Favoritos"
|
||||||
@@ -47,26 +121,44 @@
|
|||||||
"title": "Saludos",
|
"title": "Saludos",
|
||||||
"events": "Eventos",
|
"events": "Eventos",
|
||||||
"default": "Mensaje del saludo por defecto",
|
"default": "Mensaje del saludo por defecto",
|
||||||
"name": "Nombre para el saludo"
|
"name": "Nombre para el saludo",
|
||||||
|
"birthday": "Birthday",
|
||||||
|
"birthday_age": "Birthday age",
|
||||||
|
"birthday_date": "Birthday date"
|
||||||
},
|
},
|
||||||
"background": {
|
"background": {
|
||||||
"title": "Fondo",
|
"title": "Fondo",
|
||||||
|
"ddg_proxy": "Use DuckDuckGo image proxy",
|
||||||
|
"transition": "Fade-in transition",
|
||||||
|
"category": "Category",
|
||||||
"buttons": {
|
"buttons": {
|
||||||
|
"title": "Buttons",
|
||||||
|
"view": "Ver",
|
||||||
"favourite": "Favorito",
|
"favourite": "Favorito",
|
||||||
"view": "Ver"
|
"download": "Download"
|
||||||
},
|
},
|
||||||
"effects": {
|
"effects": {
|
||||||
|
"title": "Effects",
|
||||||
"blur": "Ajustar difuminado",
|
"blur": "Ajustar difuminado",
|
||||||
"brightness": "Ajustar brillo"
|
"brightness": "Ajustar brillo"
|
||||||
},
|
},
|
||||||
|
"type": {
|
||||||
|
"title": "Type",
|
||||||
|
"api": "API",
|
||||||
|
"custom_image": "Custom image",
|
||||||
|
"custom_colour": "Custom colour/gradient"
|
||||||
|
},
|
||||||
"source": {
|
"source": {
|
||||||
|
"title": "Source",
|
||||||
"api": "Fondos API",
|
"api": "Fondos API",
|
||||||
"custom_url": "URL del fondo personalizado",
|
"custom_url": "URL del fondo personalizado",
|
||||||
"custom_background": "Fondo personalizado",
|
"custom_background": "Fondo personalizado",
|
||||||
"custom_colour": "Color del fondo personalizado",
|
"custom_colour": "Color del fondo personalizado",
|
||||||
"upload": "Subir",
|
"upload": "Subir",
|
||||||
"add_colour": "Añadir color",
|
"add_colour": "Añadir color",
|
||||||
"disabled": "Desactivado"
|
"disabled": "Desactivado",
|
||||||
|
"loop_video": "Loop video",
|
||||||
|
"mute_video": "Mute video"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"search": {
|
"search": {
|
||||||
@@ -75,19 +167,127 @@
|
|||||||
"custom": "URL de búsqueda personalizada",
|
"custom": "URL de búsqueda personalizada",
|
||||||
"voice_search": "Búsqueda por voz"
|
"voice_search": "Búsqueda por voz"
|
||||||
},
|
},
|
||||||
|
"weather": {
|
||||||
|
"title": "Weather",
|
||||||
|
"location": "Location",
|
||||||
|
"auto": "Auto",
|
||||||
|
"temp_format": {
|
||||||
|
"title": "Temperature format",
|
||||||
|
"celsius": "Celsius",
|
||||||
|
"fahrenheit": "Fahrenheit",
|
||||||
|
"kelvin": "Kelvin"
|
||||||
|
},
|
||||||
|
"extra_info": {
|
||||||
|
"title": "Extra information",
|
||||||
|
"show_location": "Show Location",
|
||||||
|
"humidity": "Humidity",
|
||||||
|
"wind_speed": "Wind speed",
|
||||||
|
"min_temp": "Minimum temperature",
|
||||||
|
"max_temp": "Maximum temperature",
|
||||||
|
"atmospheric_pressure": "Atmospheric pressure"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"quicklinks": {
|
||||||
|
"title": "Quick Links",
|
||||||
|
"open_new": "Open in new tab",
|
||||||
|
"tooltip": "Tooltip"
|
||||||
|
},
|
||||||
"appearance": {
|
"appearance": {
|
||||||
"dark_theme": "Tema Oscuro",
|
"title": "Appearance",
|
||||||
"night_mode": "Modo nocturno automático"
|
"theme": {
|
||||||
|
"title": "Theme",
|
||||||
|
"auto": "Auto",
|
||||||
|
"light": "Light",
|
||||||
|
"dark": "Dark"
|
||||||
|
},
|
||||||
|
"animations": "Animations",
|
||||||
|
"navbar": {
|
||||||
|
"title": "Navbar",
|
||||||
|
"notes": "Notes",
|
||||||
|
"refresh": "Refresh button"
|
||||||
|
},
|
||||||
|
"font": {
|
||||||
|
"title": "Font",
|
||||||
|
"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": {
|
||||||
|
"title": "Accessibility",
|
||||||
|
"widget_zoom": "Widget zoom",
|
||||||
|
"toast_duration": "Toast duration",
|
||||||
|
"milliseconds": "milliseconds"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"order": {
|
||||||
|
"title": "Widget Order"
|
||||||
},
|
},
|
||||||
"advanced": {
|
"advanced": {
|
||||||
"offline_mode": "Modo Offline"
|
"title": "Advanced",
|
||||||
|
"offline_mode": "Modo Offline",
|
||||||
|
"data": "Data",
|
||||||
|
"reset_modal": {
|
||||||
|
"title": "WARNING",
|
||||||
|
"question": "Do you want to reset Mue?",
|
||||||
|
"information": "This will delete all data. If you wish to keep your data and preferences, please export them first.",
|
||||||
|
"cancel": "Cancel"
|
||||||
|
},
|
||||||
|
"customisation": "Customisation",
|
||||||
|
"custom_css": "Custom CSS",
|
||||||
|
"custom_js": "Custom JS",
|
||||||
|
"tab_name": "Tab name",
|
||||||
|
"experimental_warning": "Please note that the Mue team cannot provide support if you have experimental mode on. Please disable it first and see if the issue continues to occur before contacting support."
|
||||||
|
},
|
||||||
|
"experimental": {
|
||||||
|
"title": "Experimental",
|
||||||
|
"warning": "These settings have not been fully tested/implemented and may not work correctly!",
|
||||||
|
"developer": "Developer"
|
||||||
},
|
},
|
||||||
"language": {
|
"language": {
|
||||||
"title": "Language"
|
"title": "Language",
|
||||||
|
"quote": "Quote language"
|
||||||
|
},
|
||||||
|
"changelog": "Change Log",
|
||||||
|
"about": {
|
||||||
|
"title": "About",
|
||||||
|
"copyright": "Copyright",
|
||||||
|
"version": {
|
||||||
|
"title": "Version",
|
||||||
|
"checking_update": "Checking for update",
|
||||||
|
"update_available": "Update available",
|
||||||
|
"no_update": "No update available",
|
||||||
|
"offline_mode": "Cannot check for update in offline mode"
|
||||||
|
},
|
||||||
|
"contact_us": "Contact Us",
|
||||||
|
"support_mue": "Support Mue",
|
||||||
|
"resources_used": {
|
||||||
|
"title": "Resources used",
|
||||||
|
"bg_images": "Offline background images",
|
||||||
|
"welcome_img": "Welcome image",
|
||||||
|
"pin_icon": "Pin icon"
|
||||||
|
},
|
||||||
|
"contributors": "Contributors",
|
||||||
|
"supporters": "Supporters",
|
||||||
|
"photographers": "Photographers"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"buttons": {
|
"buttons": {
|
||||||
"apply": "Aplicar",
|
|
||||||
"reset": "Reiniciar",
|
"reset": "Reiniciar",
|
||||||
"import": "Importar",
|
"import": "Importar",
|
||||||
"export": "Exportar"
|
"export": "Exportar"
|
||||||
@@ -102,21 +302,18 @@
|
|||||||
"quote_packs": "Paquetes de citas",
|
"quote_packs": "Paquetes de citas",
|
||||||
"preset_settings": "Ajustes preestablecidos",
|
"preset_settings": "Ajustes preestablecidos",
|
||||||
"themes": "Tema",
|
"themes": "Tema",
|
||||||
|
"no_items": "No items in this category",
|
||||||
"product": {
|
"product": {
|
||||||
"overview": "Visión general",
|
"overview": "Visión general",
|
||||||
"information": "Información",
|
"information": "Información",
|
||||||
"last_updated": "Última actualización",
|
"last_updated": "Última actualización",
|
||||||
"version": "Versión",
|
"version": "Versión",
|
||||||
"author": "Autor",
|
"author": "Autor",
|
||||||
"notice": {
|
|
||||||
"title": "Aviso",
|
|
||||||
"description": "Para que se realice el cambio, la página debe actualizarse."
|
|
||||||
},
|
|
||||||
"buttons": {
|
"buttons": {
|
||||||
"addtomue": "Añadir a Mue",
|
"addtomue": "Añadir a Mue",
|
||||||
"remove": "Remover"
|
"remove": "Remover"
|
||||||
},
|
},
|
||||||
"quoteWarning": {
|
"quote_warning": {
|
||||||
"title": "Advertencia",
|
"title": "Advertencia",
|
||||||
"description": "¡Este paquete de citas solicita a servidores externos que pueden rastrearlo!"
|
"description": "¡Este paquete de citas solicita a servidores externos que pueden rastrearlo!"
|
||||||
}
|
}
|
||||||
@@ -131,8 +328,7 @@
|
|||||||
"added": "Añadido",
|
"added": "Añadido",
|
||||||
"empty": {
|
"empty": {
|
||||||
"title": "Está vacío aquí",
|
"title": "Está vacío aquí",
|
||||||
"description": "Dirígete a la tienda para agregar algunos.",
|
"description": "Dirígete a la tienda para agregar algunos."
|
||||||
"button": "Llévame allí"
|
|
||||||
},
|
},
|
||||||
"sideload": "Cargar complemento localmente"
|
"sideload": "Cargar complemento localmente"
|
||||||
}
|
}
|
||||||
@@ -147,14 +343,36 @@
|
|||||||
"title": "Error",
|
"title": "Error",
|
||||||
"description": "No se pudo conectar con el servidor"
|
"description": "No se pudo conectar con el servidor"
|
||||||
},
|
},
|
||||||
|
"read_blog": "Read on the blog here",
|
||||||
|
"contact_support": "Contact us here",
|
||||||
"loading": "Cargando...",
|
"loading": "Cargando...",
|
||||||
"readblog": "Leer en el blog aquí",
|
"readblog": "Leer en el blog aquí",
|
||||||
"contactsupport": "Contáctanos aquí"
|
"contactsupport": "Contáctanos aquí"
|
||||||
|
},
|
||||||
|
"welcome": {
|
||||||
|
"title": "Welcome to",
|
||||||
|
"information": "Information",
|
||||||
|
"thankyoumessage1": "Thank you for installing Mue Tab,",
|
||||||
|
"thankyoumessage2": "we hope you enjoy your time with our extension.",
|
||||||
|
"support": "Support",
|
||||||
|
"close": "Close"
|
||||||
|
},
|
||||||
|
"feedback": {
|
||||||
|
"title": "Give us feedback",
|
||||||
|
"question_one": "How would you rate your experience of this Mue build?",
|
||||||
|
"question_two": "What bugs did you encounter in your use of Mue?",
|
||||||
|
"question_three": "How likely would you be to recommend this version of Mue to a friend or colleague?",
|
||||||
|
"question_four": "What do you want adding to the next Mue build?",
|
||||||
|
"not_filled": "Question box must be filled",
|
||||||
|
"success": "Sent successfully!",
|
||||||
|
"submit": "Submit"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"toasts": {
|
"toasts": {
|
||||||
"quote": "Cita copiada",
|
"quote": "Cita copiada",
|
||||||
"installed": "Instalado correctamente",
|
"installed": "Instalado correctamente",
|
||||||
|
"uninstalled": "Successfully removed",
|
||||||
|
"error": "Something went wrong",
|
||||||
"removed": "Retirado correctamente"
|
"removed": "Retirado correctamente"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
{
|
{
|
||||||
|
"tabname": "New Tab",
|
||||||
"widgets": {
|
"widgets": {
|
||||||
"greeting": {
|
"greeting": {
|
||||||
"morning": "Bonjour",
|
"morning": "Bonjour",
|
||||||
@@ -6,37 +7,109 @@
|
|||||||
"evening": "Bonsoir",
|
"evening": "Bonsoir",
|
||||||
"christmas": "Joyeux Noël",
|
"christmas": "Joyeux Noël",
|
||||||
"newyear": "Bonne année",
|
"newyear": "Bonne année",
|
||||||
"halloween": "Joyeux Halloween"
|
"halloween": "Joyeux Halloween",
|
||||||
|
"birthday": "Happy Birthday"
|
||||||
},
|
},
|
||||||
"background": {
|
"background": {
|
||||||
"credit": "Photo par"
|
"credit": "Photo par",
|
||||||
|
"unsplash": "on Unsplash",
|
||||||
|
"information": "Information",
|
||||||
|
"download": "Download"
|
||||||
},
|
},
|
||||||
"search": "Rechercher"
|
"search": "Rechercher",
|
||||||
|
"quicklinks": {
|
||||||
|
"new": "New Link",
|
||||||
|
"name": "Name",
|
||||||
|
"url": "URL",
|
||||||
|
"add": "Add",
|
||||||
|
"name_error": "Must provide name",
|
||||||
|
"url_error": "Must provide URL"
|
||||||
|
},
|
||||||
|
"date": {
|
||||||
|
"week": "Week"
|
||||||
|
},
|
||||||
|
"weather": {
|
||||||
|
"not_found": "Not Found"
|
||||||
|
},
|
||||||
|
"navbar": {
|
||||||
|
"tooltips": {
|
||||||
|
"update": "Update Patch Notes",
|
||||||
|
"refresh": "Refresh Page",
|
||||||
|
"feedback": "Feedback"
|
||||||
|
},
|
||||||
|
"notes": {
|
||||||
|
"title": "Notes",
|
||||||
|
"placeholder": "Type here"
|
||||||
|
}
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"modals": {
|
"modals": {
|
||||||
"main": {
|
"main": {
|
||||||
"title": "Options",
|
"title": "Options",
|
||||||
|
"loading": "Loading...",
|
||||||
|
"file_upload_error": "File is over 2MB",
|
||||||
"navbar": {
|
"navbar": {
|
||||||
"settings": "Paramètres",
|
"settings": "Paramètres",
|
||||||
"addons": "Mes Options",
|
"addons": "Mes Options",
|
||||||
"marketplace": "Marché"
|
"marketplace": "Marché"
|
||||||
},
|
},
|
||||||
|
"error_boundary": {
|
||||||
|
"title": "Error",
|
||||||
|
"message": "Failed to load this component of Mue",
|
||||||
|
"refresh": "Refresh"
|
||||||
|
},
|
||||||
"settings": {
|
"settings": {
|
||||||
|
"enabled": "Enabled",
|
||||||
|
"reminder": {
|
||||||
|
"title": "NOTICE",
|
||||||
|
"message": "In order for all of the changes to take place, the page must be refreshed."
|
||||||
|
},
|
||||||
"sections": {
|
"sections": {
|
||||||
"time": {
|
"time": {
|
||||||
"title": "Heure",
|
"title": "Heure",
|
||||||
|
"format": "Format",
|
||||||
|
"type": "Type",
|
||||||
"digital": {
|
"digital": {
|
||||||
|
"title": "Digital",
|
||||||
"seconds": "Secondes",
|
"seconds": "Secondes",
|
||||||
"twentyfourhour": "24 heures",
|
"twentyfourhour": "24 heures",
|
||||||
"ampm": "AM/PM (12 heures)",
|
"twelvehour": "12 hour",
|
||||||
"zero": "Complétion de zéros"
|
"zero": "Complétion de zéros"
|
||||||
},
|
},
|
||||||
"analogue": {
|
"analogue": {
|
||||||
"title": "Analogique"
|
"title": "Analogique",
|
||||||
|
"second_hand": "Seconds hand",
|
||||||
|
"minute_hand": "Minutes hand",
|
||||||
|
"hour_hand": "Hours hand",
|
||||||
|
"hour_marks": "Hour marks",
|
||||||
|
"minute_marks": "Minute marks"
|
||||||
|
},
|
||||||
|
"percentage_complete": "Percentage complete",
|
||||||
|
"date": {
|
||||||
|
"title": "Date",
|
||||||
|
"week_number": "Week number",
|
||||||
|
"day_of_week": "Day of week",
|
||||||
|
"datenth": "Date nth",
|
||||||
|
"type": {
|
||||||
|
"short": "Short",
|
||||||
|
"long": "Long"
|
||||||
|
},
|
||||||
|
"short_date": "Short date",
|
||||||
|
"short_format": "Short format",
|
||||||
|
"short_separator": {
|
||||||
|
"title": "Short separator",
|
||||||
|
"dots": "Dots",
|
||||||
|
"dash": "Dash",
|
||||||
|
"gaps": "Gaps",
|
||||||
|
"slashes": "Slashes"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"quote": {
|
"quote": {
|
||||||
"title": "Citation",
|
"title": "Citation",
|
||||||
|
"author_link": "Authour link",
|
||||||
|
"custom": "Custom quote",
|
||||||
|
"custom_author": "Custom authour",
|
||||||
"buttons": {
|
"buttons": {
|
||||||
"title": "Boutons",
|
"title": "Boutons",
|
||||||
"copy": "Copier",
|
"copy": "Copier",
|
||||||
@@ -48,44 +121,170 @@
|
|||||||
"title": "Salutation",
|
"title": "Salutation",
|
||||||
"events": "Événements",
|
"events": "Événements",
|
||||||
"default": "Salutation par défaut",
|
"default": "Salutation par défaut",
|
||||||
"name": "Nom pour salutation"
|
"name": "Nom pour salutation",
|
||||||
|
"birthday": "Birthday",
|
||||||
|
"birthday_age": "Birthday age",
|
||||||
|
"birthday_date": "Birthday date"
|
||||||
},
|
},
|
||||||
"background": {
|
"background": {
|
||||||
"title": "Fond",
|
"title": "Fond",
|
||||||
|
"ddg_proxy": "Use DuckDuckGo image proxy",
|
||||||
|
"transition": "Fade-in transition",
|
||||||
|
"category": "Category",
|
||||||
"buttons": {
|
"buttons": {
|
||||||
|
"title": "Buttons",
|
||||||
|
"view": "Mode vue",
|
||||||
"favourite": "Ajouter aux favoris",
|
"favourite": "Ajouter aux favoris",
|
||||||
"view": "Mode vue"
|
"download": "Download"
|
||||||
},
|
},
|
||||||
"effects": {
|
"effects": {
|
||||||
|
"title": "Effects",
|
||||||
"blur": "Ajuster le flou",
|
"blur": "Ajuster le flou",
|
||||||
"brightness": "Ajuster la luminosité"
|
"brightness": "Ajuster la luminosité"
|
||||||
},
|
},
|
||||||
|
"type": {
|
||||||
|
"title": "Type",
|
||||||
|
"api": "API",
|
||||||
|
"custom_image": "Custom image",
|
||||||
|
"custom_colour": "Custom colour/gradient"
|
||||||
|
},
|
||||||
"source": {
|
"source": {
|
||||||
|
"title": "Source",
|
||||||
"api": "Source",
|
"api": "Source",
|
||||||
"custom_url": "URL d'arrière-plan personnalisé",
|
"custom_url": "URL d'arrière-plan personnalisé",
|
||||||
"custom_background": "Arrière-plan personnalisé",
|
"custom_background": "Arrière-plan personnalisé",
|
||||||
"custom_colour": "Couleur d'arrière-plan personnalisée",
|
"custom_colour": "Couleur d'arrière-plan personnalisée",
|
||||||
"upload": "Ajouter",
|
"upload": "Ajouter",
|
||||||
"add_colour": "Ajouter une couleur"
|
"add_colour": "Ajouter une couleur",
|
||||||
|
"disabled": "Disabled",
|
||||||
|
"loop_video": "Loop video",
|
||||||
|
"mute_video": "Mute video"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"search": {
|
"search": {
|
||||||
"title": "Barre de Recherche",
|
"title": "Barre de Recherche",
|
||||||
"search_engine": "Moteur de recherche",
|
"search_engine": "Moteur de recherche",
|
||||||
"voice_search": "Recherche vocale",
|
"custom": "URL de recherche personnalisée",
|
||||||
"custom": "URL de recherche personnalisée"
|
"voice_search": "Recherche vocale"
|
||||||
|
},
|
||||||
|
"weather": {
|
||||||
|
"title": "Weather",
|
||||||
|
"location": "Location",
|
||||||
|
"auto": "Auto",
|
||||||
|
"temp_format": {
|
||||||
|
"title": "Temperature format",
|
||||||
|
"celsius": "Celsius",
|
||||||
|
"fahrenheit": "Fahrenheit",
|
||||||
|
"kelvin": "Kelvin"
|
||||||
|
},
|
||||||
|
"extra_info": {
|
||||||
|
"title": "Extra information",
|
||||||
|
"show_location": "Show Location",
|
||||||
|
"humidity": "Humidity",
|
||||||
|
"wind_speed": "Wind speed",
|
||||||
|
"min_temp": "Minimum temperature",
|
||||||
|
"max_temp": "Maximum temperature",
|
||||||
|
"atmospheric_pressure": "Atmospheric pressure"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"quicklinks": {
|
||||||
|
"title": "Quick Links",
|
||||||
|
"open_new": "Open in new tab",
|
||||||
|
"tooltip": "Tooltip"
|
||||||
},
|
},
|
||||||
"appearance": {
|
"appearance": {
|
||||||
"dark_theme": "Thème sombre"
|
"title": "Appearance",
|
||||||
|
"theme": {
|
||||||
|
"title": "Theme",
|
||||||
|
"auto": "Auto",
|
||||||
|
"light": "Light",
|
||||||
|
"dark": "Dark"
|
||||||
|
},
|
||||||
|
"animations": "Animations",
|
||||||
|
"navbar": {
|
||||||
|
"title": "Navbar",
|
||||||
|
"notes": "Notes",
|
||||||
|
"refresh": "Refresh button"
|
||||||
|
},
|
||||||
|
"font": {
|
||||||
|
"title": "Font",
|
||||||
|
"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": {
|
||||||
|
"title": "Accessibility",
|
||||||
|
"widget_zoom": "Widget zoom",
|
||||||
|
"toast_duration": "Toast duration",
|
||||||
|
"milliseconds": "milliseconds"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"order": {
|
||||||
|
"title": "Widget Order"
|
||||||
},
|
},
|
||||||
"advanced": {
|
"advanced": {
|
||||||
"offline_mode": "Mode Hors-Ligne"
|
"title": "Advanced",
|
||||||
|
"offline_mode": "Mode Hors-Ligne",
|
||||||
|
"data": "Data",
|
||||||
|
"reset_modal": {
|
||||||
|
"title": "WARNING",
|
||||||
|
"question": "Do you want to reset Mue?",
|
||||||
|
"information": "This will delete all data. If you wish to keep your data and preferences, please export them first.",
|
||||||
|
"cancel": "Cancel"
|
||||||
|
},
|
||||||
|
"customisation": "Customisation",
|
||||||
|
"custom_css": "Custom CSS",
|
||||||
|
"custom_js": "Custom JS",
|
||||||
|
"tab_name": "Tab name",
|
||||||
|
"experimental_warning": "Please note that the Mue team cannot provide support if you have experimental mode on. Please disable it first and see if the issue continues to occur before contacting support."
|
||||||
},
|
},
|
||||||
"experimental": {
|
"experimental": {
|
||||||
"title": "Expérimental"
|
"title": "Expérimental",
|
||||||
|
"warning": "These settings have not been fully tested/implemented and may not work correctly!",
|
||||||
|
"developer": "Developer"
|
||||||
},
|
},
|
||||||
"language": {
|
"language": {
|
||||||
"title": "Langue"
|
"title": "Langue",
|
||||||
|
"quote": "Quote language"
|
||||||
|
},
|
||||||
|
"changelog": "Change Log",
|
||||||
|
"about": {
|
||||||
|
"title": "About",
|
||||||
|
"copyright": "Copyright",
|
||||||
|
"version": {
|
||||||
|
"title": "Version",
|
||||||
|
"checking_update": "Checking for update",
|
||||||
|
"update_available": "Update available",
|
||||||
|
"no_update": "No update available",
|
||||||
|
"offline_mode": "Cannot check for update in offline mode"
|
||||||
|
},
|
||||||
|
"contact_us": "Contact Us",
|
||||||
|
"support_mue": "Support Mue",
|
||||||
|
"resources_used": {
|
||||||
|
"title": "Resources used",
|
||||||
|
"bg_images": "Offline background images",
|
||||||
|
"welcome_img": "Welcome image",
|
||||||
|
"pin_icon": "Pin icon"
|
||||||
|
},
|
||||||
|
"contributors": "Contributors",
|
||||||
|
"supporters": "Supporters",
|
||||||
|
"photographers": "Photographers"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"buttons": {
|
"buttons": {
|
||||||
@@ -103,16 +302,13 @@
|
|||||||
"quote_packs": "Packs Citations",
|
"quote_packs": "Packs Citations",
|
||||||
"preset_settings": "Paramètres prédéfinis",
|
"preset_settings": "Paramètres prédéfinis",
|
||||||
"themes": "Thèmes",
|
"themes": "Thèmes",
|
||||||
|
"no_items": "No items in this category",
|
||||||
"product": {
|
"product": {
|
||||||
"overview": "Aperçu",
|
"overview": "Aperçu",
|
||||||
"information": "Information",
|
"information": "Information",
|
||||||
"last_updated": "Dernière mise à jour",
|
"last_updated": "Dernière mise à jour",
|
||||||
"version": "Version",
|
"version": "Version",
|
||||||
"author": "Auteur",
|
"author": "Auteur",
|
||||||
"notice": {
|
|
||||||
"title": "Remarque",
|
|
||||||
"description": "Pour appliquer les changements, veuillez recharger la page."
|
|
||||||
},
|
|
||||||
"buttons": {
|
"buttons": {
|
||||||
"addtomue": "Ajouter à Mue",
|
"addtomue": "Ajouter à Mue",
|
||||||
"remove": "Enlever"
|
"remove": "Enlever"
|
||||||
@@ -132,8 +328,7 @@
|
|||||||
"added": "Ajoutées",
|
"added": "Ajoutées",
|
||||||
"empty": {
|
"empty": {
|
||||||
"title": "C'est vide par ici",
|
"title": "C'est vide par ici",
|
||||||
"description": "Dirigez vous vers le marché pour ajouter des options.",
|
"description": "Dirigez vous vers le marché pour ajouter des options."
|
||||||
"button": "Naviguer vers le marché"
|
|
||||||
},
|
},
|
||||||
"sideload": "Charger"
|
"sideload": "Charger"
|
||||||
}
|
}
|
||||||
@@ -148,15 +343,34 @@
|
|||||||
"title": "Erreur",
|
"title": "Erreur",
|
||||||
"description": "Impossible de se connecter au serveur"
|
"description": "Impossible de se connecter au serveur"
|
||||||
},
|
},
|
||||||
"loading": "Chargement...",
|
|
||||||
"read_blog": "Lire sur le blog ",
|
"read_blog": "Lire sur le blog ",
|
||||||
"contact_support": "Contactez-nous "
|
"contact_support": "Contactez-nous ",
|
||||||
|
"loading": "Chargement..."
|
||||||
|
},
|
||||||
|
"welcome": {
|
||||||
|
"title": "Welcome to",
|
||||||
|
"information": "Information",
|
||||||
|
"thankyoumessage1": "Thank you for installing Mue Tab,",
|
||||||
|
"thankyoumessage2": "we hope you enjoy your time with our extension.",
|
||||||
|
"support": "Support",
|
||||||
|
"close": "Close"
|
||||||
|
},
|
||||||
|
"feedback": {
|
||||||
|
"title": "Give us feedback",
|
||||||
|
"question_one": "How would you rate your experience of this Mue build?",
|
||||||
|
"question_two": "What bugs did you encounter in your use of Mue?",
|
||||||
|
"question_three": "How likely would you be to recommend this version of Mue to a friend or colleague?",
|
||||||
|
"question_four": "What do you want adding to the next Mue build?",
|
||||||
|
"not_filled": "Question box must be filled",
|
||||||
|
"success": "Sent successfully!",
|
||||||
|
"submit": "Submit"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"toasts": {
|
"toasts": {
|
||||||
"quote": "Citation copiée",
|
"quote": "Citation copiée",
|
||||||
"installed": "Installé avec succès",
|
"installed": "Installé avec succès",
|
||||||
"removed": "Enlevé avec succès",
|
"uninstalled": "Successfully removed",
|
||||||
"error": "Quelque chose s'est mal passé"
|
"error": "Quelque chose s'est mal passé",
|
||||||
|
"removed": "Enlevé avec succès"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
{
|
{
|
||||||
|
"tabname": "New Tab",
|
||||||
"widgets": {
|
"widgets": {
|
||||||
"greeting": {
|
"greeting": {
|
||||||
"morning": "Goedemorgen",
|
"morning": "Goedemorgen",
|
||||||
@@ -6,38 +7,111 @@
|
|||||||
"evening": "Goedenavond",
|
"evening": "Goedenavond",
|
||||||
"christmas": "Fijne kerstdagen",
|
"christmas": "Fijne kerstdagen",
|
||||||
"newyear": "Gelukkig nieuwjaar",
|
"newyear": "Gelukkig nieuwjaar",
|
||||||
"halloween": "Fijne Halloween"
|
"halloween": "Fijne Halloween",
|
||||||
|
"birthday": "Happy Birthday"
|
||||||
},
|
},
|
||||||
"background": {
|
"background": {
|
||||||
"credit": "Foto van"
|
"credit": "Foto van",
|
||||||
|
"unsplash": "on Unsplash",
|
||||||
|
"information": "Information",
|
||||||
|
"download": "Download"
|
||||||
},
|
},
|
||||||
"search": "Zoeken"
|
"search": "Zoeken",
|
||||||
|
"quicklinks": {
|
||||||
|
"new": "New Link",
|
||||||
|
"name": "Name",
|
||||||
|
"url": "URL",
|
||||||
|
"add": "Add",
|
||||||
|
"name_error": "Must provide name",
|
||||||
|
"url_error": "Must provide URL"
|
||||||
|
},
|
||||||
|
"date": {
|
||||||
|
"week": "Week"
|
||||||
|
},
|
||||||
|
"weather": {
|
||||||
|
"not_found": "Not Found"
|
||||||
|
},
|
||||||
|
"navbar": {
|
||||||
|
"tooltips": {
|
||||||
|
"update": "Update Patch Notes",
|
||||||
|
"refresh": "Refresh Page",
|
||||||
|
"feedback": "Feedback"
|
||||||
|
},
|
||||||
|
"notes": {
|
||||||
|
"title": "Notes",
|
||||||
|
"placeholder": "Type here"
|
||||||
|
}
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"modals": {
|
"modals": {
|
||||||
"main": {
|
"main": {
|
||||||
"title": "Opties",
|
"title": "Opties",
|
||||||
|
"loading": "Loading...",
|
||||||
|
"file_upload_error": "File is over 2MB",
|
||||||
"navbar": {
|
"navbar": {
|
||||||
"settings": "Instellingen",
|
"settings": "Instellingen",
|
||||||
"addons": "Mijn extensies",
|
"addons": "Mijn extensies",
|
||||||
"marketplace": "Marktplaats"
|
"marketplace": "Marktplaats"
|
||||||
},
|
},
|
||||||
|
"error_boundary": {
|
||||||
|
"title": "Error",
|
||||||
|
"message": "Failed to load this component of Mue",
|
||||||
|
"refresh": "Refresh"
|
||||||
|
},
|
||||||
"settings": {
|
"settings": {
|
||||||
|
"enabled": "Enabled",
|
||||||
|
"reminder": {
|
||||||
|
"title": "NOTICE",
|
||||||
|
"message": "In order for all of the changes to take place, the page must be refreshed."
|
||||||
|
},
|
||||||
"sections": {
|
"sections": {
|
||||||
"time": {
|
"time": {
|
||||||
"title": "Tijd",
|
"title": "Tijd",
|
||||||
|
"format": "Format",
|
||||||
|
"type": "Type",
|
||||||
"digital": {
|
"digital": {
|
||||||
|
"title": "Digital",
|
||||||
"seconds": "Seconden tonen",
|
"seconds": "Seconden tonen",
|
||||||
"twentyfourhour": "24-uursklok gebruiken",
|
"twentyfourhour": "24-uursklok gebruiken",
|
||||||
"ampm": "AM/PM (12-uursklok) gebruiken",
|
"twelvehour": "12 hour",
|
||||||
"zero": "Nulopvulling"
|
"zero": "Nulopvulling"
|
||||||
},
|
},
|
||||||
"analogue": {
|
"analogue": {
|
||||||
"title": "Analoog"
|
"title": "Analoog",
|
||||||
|
"second_hand": "Seconds hand",
|
||||||
|
"minute_hand": "Minutes hand",
|
||||||
|
"hour_hand": "Hours hand",
|
||||||
|
"hour_marks": "Hour marks",
|
||||||
|
"minute_marks": "Minute marks"
|
||||||
|
},
|
||||||
|
"percentage_complete": "Percentage complete",
|
||||||
|
"date": {
|
||||||
|
"title": "Date",
|
||||||
|
"week_number": "Week number",
|
||||||
|
"day_of_week": "Day of week",
|
||||||
|
"datenth": "Date nth",
|
||||||
|
"type": {
|
||||||
|
"short": "Short",
|
||||||
|
"long": "Long"
|
||||||
|
},
|
||||||
|
"short_date": "Short date",
|
||||||
|
"short_format": "Short format",
|
||||||
|
"short_separator": {
|
||||||
|
"title": "Short separator",
|
||||||
|
"dots": "Dots",
|
||||||
|
"dash": "Dash",
|
||||||
|
"gaps": "Gaps",
|
||||||
|
"slashes": "Slashes"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"quote": {
|
"quote": {
|
||||||
"title": "Citaat",
|
"title": "Citaat",
|
||||||
|
"author_link": "Authour link",
|
||||||
|
"custom": "Custom quote",
|
||||||
|
"custom_author": "Custom authour",
|
||||||
"buttons": {
|
"buttons": {
|
||||||
|
"title": "Buttons",
|
||||||
"copy": "Kopieerknop",
|
"copy": "Kopieerknop",
|
||||||
"tweet": "Tweetknop",
|
"tweet": "Tweetknop",
|
||||||
"favourite": "Knop 'Toevoegen aan favorieten'"
|
"favourite": "Knop 'Toevoegen aan favorieten'"
|
||||||
@@ -47,57 +121,186 @@
|
|||||||
"title": "Begroetingen",
|
"title": "Begroetingen",
|
||||||
"events": "Gebeurtenissen",
|
"events": "Gebeurtenissen",
|
||||||
"default": "Standaard begroetingsnaam",
|
"default": "Standaard begroetingsnaam",
|
||||||
"name": "Naam van begroeting"
|
"name": "Naam van begroeting",
|
||||||
|
"birthday": "Birthday",
|
||||||
|
"birthday_age": "Birthday age",
|
||||||
|
"birthday_date": "Birthday date"
|
||||||
},
|
},
|
||||||
"background": {
|
"background": {
|
||||||
"title": "Achtergrond",
|
"title": "Achtergrond",
|
||||||
|
"ddg_proxy": "Use DuckDuckGo image proxy",
|
||||||
|
"transition": "Fade-in transition",
|
||||||
|
"category": "Category",
|
||||||
"buttons": {
|
"buttons": {
|
||||||
|
"title": "Buttons",
|
||||||
"view": "Weergave",
|
"view": "Weergave",
|
||||||
|
"favourite": "Favourite",
|
||||||
|
"download": "Download",
|
||||||
"refresh": "Herladen",
|
"refresh": "Herladen",
|
||||||
"disabled": "Uitgeschakeld"
|
"disabled": "Uitgeschakeld"
|
||||||
},
|
},
|
||||||
"effects": {
|
"effects": {
|
||||||
"blur": "Vervaging instellen"
|
"title": "Effects",
|
||||||
|
"blur": "Vervaging instellen",
|
||||||
|
"brightness": "Adjust brightness"
|
||||||
|
},
|
||||||
|
"type": {
|
||||||
|
"title": "Type",
|
||||||
|
"api": "API",
|
||||||
|
"custom_image": "Custom image",
|
||||||
|
"custom_colour": "Custom colour/gradient"
|
||||||
},
|
},
|
||||||
"source": {
|
"source": {
|
||||||
|
"title": "Source",
|
||||||
"api": "Achtergrond-api",
|
"api": "Achtergrond-api",
|
||||||
"custom_url": "Aangepaste achtergrond-url",
|
"custom_url": "Aangepaste achtergrond-url",
|
||||||
"custom_background": "Aangepaste achtergrond",
|
"custom_background": "Aangepaste achtergrond",
|
||||||
"custom_colour": "Aangepaste achtergrondkleur",
|
"custom_colour": "Aangepaste achtergrondkleur",
|
||||||
"upload": "Uploaden",
|
"upload": "Uploaden",
|
||||||
"add_colour": "Kleur toevoegen"
|
"add_colour": "Kleur toevoegen",
|
||||||
|
"disabled": "Disabled",
|
||||||
|
"loop_video": "Loop video",
|
||||||
|
"mute_video": "Mute video"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"search": {
|
"search": {
|
||||||
"title": "Zoekbalk",
|
"title": "Zoekbalk",
|
||||||
"search_engine": "Zoekmachine",
|
"search_engine": "Zoekmachine",
|
||||||
"custom": "Aangepaste zoekmachine-url"
|
"custom": "Aangepaste zoekmachine-url",
|
||||||
|
"voice_search": "Voice search"
|
||||||
|
},
|
||||||
|
"weather": {
|
||||||
|
"title": "Weather",
|
||||||
|
"location": "Location",
|
||||||
|
"auto": "Auto",
|
||||||
|
"temp_format": {
|
||||||
|
"title": "Temperature format",
|
||||||
|
"celsius": "Celsius",
|
||||||
|
"fahrenheit": "Fahrenheit",
|
||||||
|
"kelvin": "Kelvin"
|
||||||
|
},
|
||||||
|
"extra_info": {
|
||||||
|
"title": "Extra information",
|
||||||
|
"show_location": "Show Location",
|
||||||
|
"humidity": "Humidity",
|
||||||
|
"wind_speed": "Wind speed",
|
||||||
|
"min_temp": "Minimum temperature",
|
||||||
|
"max_temp": "Maximum temperature",
|
||||||
|
"atmospheric_pressure": "Atmospheric pressure"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"quicklinks": {
|
||||||
|
"title": "Quick Links",
|
||||||
|
"open_new": "Open in new tab",
|
||||||
|
"tooltip": "Tooltip"
|
||||||
},
|
},
|
||||||
"appearance": {
|
"appearance": {
|
||||||
"dark_theme": "Donker thema"
|
"title": "Appearance",
|
||||||
|
"theme": {
|
||||||
|
"title": "Theme",
|
||||||
|
"auto": "Auto",
|
||||||
|
"light": "Light",
|
||||||
|
"dark": "Dark"
|
||||||
|
},
|
||||||
|
"animations": "Animations",
|
||||||
|
"navbar": {
|
||||||
|
"title": "Navbar",
|
||||||
|
"notes": "Notes",
|
||||||
|
"refresh": "Refresh button"
|
||||||
|
},
|
||||||
|
"font": {
|
||||||
|
"title": "Font",
|
||||||
|
"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": {
|
||||||
|
"title": "Accessibility",
|
||||||
|
"widget_zoom": "Widget zoom",
|
||||||
|
"toast_duration": "Toast duration",
|
||||||
|
"milliseconds": "milliseconds"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"order": {
|
||||||
|
"title": "Widget Order"
|
||||||
},
|
},
|
||||||
"advanced": {
|
"advanced": {
|
||||||
"offline_mode": "Offline-modus"
|
"title": "Advanced",
|
||||||
|
"offline_mode": "Offline-modus",
|
||||||
|
"data": "Data",
|
||||||
|
"reset_modal": {
|
||||||
|
"title": "WARNING",
|
||||||
|
"question": "Do you want to reset Mue?",
|
||||||
|
"information": "This will delete all data. If you wish to keep your data and preferences, please export them first.",
|
||||||
|
"cancel": "Cancel"
|
||||||
|
},
|
||||||
|
"customisation": "Customisation",
|
||||||
|
"custom_css": "Custom CSS",
|
||||||
|
"custom_js": "Custom JS",
|
||||||
|
"tab_name": "Tab name",
|
||||||
|
"experimental_warning": "Please note that the Mue team cannot provide support if you have experimental mode on. Please disable it first and see if the issue continues to occur before contacting support."
|
||||||
},
|
},
|
||||||
"experimental": {
|
"experimental": {
|
||||||
"title": "Experimenteel",
|
"title": "Experimenteel",
|
||||||
|
"warning": "These settings have not been fully tested/implemented and may not work correctly!",
|
||||||
|
"developer": "Developer",
|
||||||
"animations": "Animaties"
|
"animations": "Animaties"
|
||||||
},
|
},
|
||||||
"language": {
|
"language": {
|
||||||
"title": "Taal"
|
"title": "Taal",
|
||||||
|
"quote": "Quote language"
|
||||||
|
},
|
||||||
|
"changelog": "Change Log",
|
||||||
|
"about": {
|
||||||
|
"title": "About",
|
||||||
|
"copyright": "Copyright",
|
||||||
|
"version": {
|
||||||
|
"title": "Version",
|
||||||
|
"checking_update": "Checking for update",
|
||||||
|
"update_available": "Update available",
|
||||||
|
"no_update": "No update available",
|
||||||
|
"offline_mode": "Cannot check for update in offline mode"
|
||||||
|
},
|
||||||
|
"contact_us": "Contact Us",
|
||||||
|
"support_mue": "Support Mue",
|
||||||
|
"resources_used": {
|
||||||
|
"title": "Resources used",
|
||||||
|
"bg_images": "Offline background images",
|
||||||
|
"welcome_img": "Welcome image",
|
||||||
|
"pin_icon": "Pin icon"
|
||||||
|
},
|
||||||
|
"contributors": "Contributors",
|
||||||
|
"supporters": "Supporters",
|
||||||
|
"photographers": "Photographers"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"buttons": {
|
"buttons": {
|
||||||
"apply": "Toepassen",
|
|
||||||
"reset": "Herstellen",
|
"reset": "Herstellen",
|
||||||
"import": "Importeren",
|
"import": "Importeren",
|
||||||
"export": "Exporteren"
|
"export": "Exporteren"
|
||||||
},
|
},
|
||||||
"toasts": {
|
"toasts": {
|
||||||
|
"reset": "Reset successfully",
|
||||||
|
"imported": "Het importeren is voltooid",
|
||||||
"installed": "De installatie is voltooid",
|
"installed": "De installatie is voltooid",
|
||||||
"removed": "Het verwijderen is voltooid",
|
"removed": "Het verwijderen is voltooid",
|
||||||
"error": "Er is iets misgegaan",
|
"error": "Er is iets misgegaan"
|
||||||
"imported": "Het importeren is voltooid"
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"marketplace": {
|
"marketplace": {
|
||||||
@@ -105,21 +308,18 @@
|
|||||||
"quote_packs": "Citaatverzamelingen",
|
"quote_packs": "Citaatverzamelingen",
|
||||||
"preset_settings": "Voorinstellingen",
|
"preset_settings": "Voorinstellingen",
|
||||||
"themes": "Thema's",
|
"themes": "Thema's",
|
||||||
|
"no_items": "No items in this category",
|
||||||
"product": {
|
"product": {
|
||||||
"overview": "Overzicht",
|
"overview": "Overzicht",
|
||||||
"information": "Informatie",
|
"information": "Informatie",
|
||||||
"last_updated": "Laatst geüpdatet",
|
"last_updated": "Laatst geüpdatet",
|
||||||
"version": "Versie",
|
"version": "Versie",
|
||||||
"author": "Maker",
|
"author": "Maker",
|
||||||
"notice": {
|
|
||||||
"title": "Aankondiging",
|
|
||||||
"description": "Herlaad de pagina om de wijzigingen toe te passen."
|
|
||||||
},
|
|
||||||
"buttons": {
|
"buttons": {
|
||||||
"addtomue": "Toevoegen aan Mue",
|
"addtomue": "Toevoegen aan Mue",
|
||||||
"remove": "Verwijderen"
|
"remove": "Verwijderen"
|
||||||
},
|
},
|
||||||
"quoteWarning": {
|
"quote_warning": {
|
||||||
"title": "Waarschuwing",
|
"title": "Waarschuwing",
|
||||||
"description": "Deze citaatverzameling maakt verbinding met externe servers die kunnen worden gebruikt om je te internetverkeer te tracken!"
|
"description": "Deze citaatverzameling maakt verbinding met externe servers die kunnen worden gebruikt om je te internetverkeer te tracken!"
|
||||||
}
|
}
|
||||||
@@ -134,13 +334,49 @@
|
|||||||
"added": "Toegevoegd",
|
"added": "Toegevoegd",
|
||||||
"empty": {
|
"empty": {
|
||||||
"title": "Het is hier erg leeg",
|
"title": "Het is hier erg leeg",
|
||||||
"description": "Ga naar de marktplaats om een paar extensies toe te voegen.",
|
"description": "Ga naar de marktplaats om een paar extensies toe te voegen."
|
||||||
"button": "Open de marktplaats"
|
|
||||||
},
|
},
|
||||||
"sideload": "Sideloaden"
|
"sideload": "Sideloaden"
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"update": {
|
||||||
|
"title": "Update",
|
||||||
|
"offline": {
|
||||||
|
"title": "Offline",
|
||||||
|
"description": "Cannot get update logs while in offline mode"
|
||||||
|
},
|
||||||
|
"error": {
|
||||||
|
"title": "Error",
|
||||||
|
"description": "Could not connect to the server"
|
||||||
|
},
|
||||||
|
"read_blog": "Read on the blog here",
|
||||||
|
"contact_support": "Contact us here"
|
||||||
|
},
|
||||||
|
"welcome": {
|
||||||
|
"title": "Welcome to",
|
||||||
|
"information": "Information",
|
||||||
|
"thankyoumessage1": "Thank you for installing Mue Tab,",
|
||||||
|
"thankyoumessage2": "we hope you enjoy your time with our extension.",
|
||||||
|
"support": "Support",
|
||||||
|
"close": "Close"
|
||||||
|
},
|
||||||
|
"feedback": {
|
||||||
|
"title": "Give us feedback",
|
||||||
|
"question_one": "How would you rate your experience of this Mue build?",
|
||||||
|
"question_two": "What bugs did you encounter in your use of Mue?",
|
||||||
|
"question_three": "How likely would you be to recommend this version of Mue to a friend or colleague?",
|
||||||
|
"question_four": "What do you want adding to the next Mue build?",
|
||||||
|
"not_filled": "Question box must be filled",
|
||||||
|
"success": "Sent successfully!",
|
||||||
|
"submit": "Submit"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"toasts": {
|
||||||
|
"quote": "Quote copied",
|
||||||
|
"installed": "Successfully installed",
|
||||||
|
"uninstalled": "Successfully removed",
|
||||||
|
"error": "Something went wrong"
|
||||||
|
},
|
||||||
"update": {
|
"update": {
|
||||||
"title": "Wijzigingen",
|
"title": "Wijzigingen",
|
||||||
"offline": {
|
"offline": {
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
{
|
{
|
||||||
|
"tabname": "New Tab",
|
||||||
"widgets": {
|
"widgets": {
|
||||||
"greeting": {
|
"greeting": {
|
||||||
"morning": "God Morgen",
|
"morning": "God Morgen",
|
||||||
@@ -6,85 +7,296 @@
|
|||||||
"evening": "God Kveld",
|
"evening": "God Kveld",
|
||||||
"christmas": "God Jul",
|
"christmas": "God Jul",
|
||||||
"newyear": "Godt Nyttår",
|
"newyear": "Godt Nyttår",
|
||||||
"halloween": "Ha en god Halloween"
|
"halloween": "Ha en god Halloween",
|
||||||
|
"birthday": "Happy Birthday"
|
||||||
},
|
},
|
||||||
"background": {
|
"background": {
|
||||||
"credit": "Bilde av"
|
"credit": "Bilde av",
|
||||||
|
"unsplash": "on Unsplash",
|
||||||
|
"information": "Information",
|
||||||
|
"download": "Download"
|
||||||
},
|
},
|
||||||
"search": "Søk"
|
"search": "Søk",
|
||||||
|
"quicklinks": {
|
||||||
|
"new": "New Link",
|
||||||
|
"name": "Name",
|
||||||
|
"url": "URL",
|
||||||
|
"add": "Add",
|
||||||
|
"name_error": "Must provide name",
|
||||||
|
"url_error": "Must provide URL"
|
||||||
|
},
|
||||||
|
"date": {
|
||||||
|
"week": "Week"
|
||||||
|
},
|
||||||
|
"weather": {
|
||||||
|
"not_found": "Not Found"
|
||||||
|
},
|
||||||
|
"navbar": {
|
||||||
|
"tooltips": {
|
||||||
|
"update": "Update Patch Notes",
|
||||||
|
"refresh": "Refresh Page",
|
||||||
|
"feedback": "Feedback"
|
||||||
|
},
|
||||||
|
"notes": {
|
||||||
|
"title": "Notes",
|
||||||
|
"placeholder": "Type here"
|
||||||
|
}
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"modals": {
|
"modals": {
|
||||||
"main": {
|
"main": {
|
||||||
|
"title": "Options",
|
||||||
|
"loading": "Loading...",
|
||||||
|
"file_upload_error": "File is over 2MB",
|
||||||
"navbar": {
|
"navbar": {
|
||||||
"settings": "Instillinger",
|
"settings": "Instillinger",
|
||||||
"addons": "Mine add-ons",
|
"addons": "Mine add-ons",
|
||||||
"marketplace": "Markedsplass"
|
"marketplace": "Markedsplass"
|
||||||
},
|
},
|
||||||
|
"error_boundary": {
|
||||||
|
"title": "Error",
|
||||||
|
"message": "Failed to load this component of Mue",
|
||||||
|
"refresh": "Refresh"
|
||||||
|
},
|
||||||
"settings": {
|
"settings": {
|
||||||
|
"enabled": "Enabled",
|
||||||
|
"reminder": {
|
||||||
|
"title": "NOTICE",
|
||||||
|
"message": "In order for all of the changes to take place, the page must be refreshed."
|
||||||
|
},
|
||||||
"sections": {
|
"sections": {
|
||||||
"time": {
|
"time": {
|
||||||
"title": "Tid",
|
"title": "Tid",
|
||||||
|
"format": "Format",
|
||||||
|
"type": "Type",
|
||||||
"digital": {
|
"digital": {
|
||||||
|
"title": "Digital",
|
||||||
"seconds": "Sekunder",
|
"seconds": "Sekunder",
|
||||||
"twentyfourhour": "24 Timer",
|
"twentyfourhour": "24 Timer",
|
||||||
"ampm": "AM/PM (12 Timer)",
|
"twelvehour": "12 hour",
|
||||||
"zero": "Ekstra Null"
|
"zero": "Ekstra Null"
|
||||||
},
|
},
|
||||||
"analogue": {
|
"analogue": {
|
||||||
"title": "Analog"
|
"title": "Analog",
|
||||||
|
"second_hand": "Seconds hand",
|
||||||
|
"minute_hand": "Minutes hand",
|
||||||
|
"hour_hand": "Hours hand",
|
||||||
|
"hour_marks": "Hour marks",
|
||||||
|
"minute_marks": "Minute marks"
|
||||||
|
},
|
||||||
|
"percentage_complete": "Percentage complete",
|
||||||
|
"date": {
|
||||||
|
"title": "Date",
|
||||||
|
"week_number": "Week number",
|
||||||
|
"day_of_week": "Day of week",
|
||||||
|
"datenth": "Date nth",
|
||||||
|
"type": {
|
||||||
|
"short": "Short",
|
||||||
|
"long": "Long"
|
||||||
|
},
|
||||||
|
"short_date": "Short date",
|
||||||
|
"short_format": "Short format",
|
||||||
|
"short_separator": {
|
||||||
|
"title": "Short separator",
|
||||||
|
"dots": "Dots",
|
||||||
|
"dash": "Dash",
|
||||||
|
"gaps": "Gaps",
|
||||||
|
"slashes": "Slashes"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"quote": {
|
||||||
|
"title": "Sitat",
|
||||||
|
"author_link": "Authour link",
|
||||||
|
"custom": "Custom quote",
|
||||||
|
"custom_author": "Custom authour",
|
||||||
|
"buttons": {
|
||||||
|
"title": "Buttons",
|
||||||
|
"copy": "Kopier knapp",
|
||||||
|
"tweet": "Tweet",
|
||||||
|
"favourite": "Favourite"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"greeting": {
|
"greeting": {
|
||||||
"title": "Hallo",
|
"title": "Hallo",
|
||||||
"events": "Planer",
|
"events": "Planer",
|
||||||
"default": "Standard Hallo Melding",
|
"default": "Standard Hallo Melding",
|
||||||
"name": "Navn for Hallo"
|
"name": "Navn for Hallo",
|
||||||
},
|
"birthday": "Birthday",
|
||||||
"quote": {
|
"birthday_age": "Birthday age",
|
||||||
"title": "Sitat",
|
"birthday_date": "Birthday date"
|
||||||
"buttons": {
|
|
||||||
"copy": "Kopier knapp"
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
"background": {
|
"background": {
|
||||||
"title": "Bakgrunn",
|
"title": "Bakgrunn",
|
||||||
|
"ddg_proxy": "Use DuckDuckGo image proxy",
|
||||||
|
"transition": "Fade-in transition",
|
||||||
|
"category": "Category",
|
||||||
|
"buttons": {
|
||||||
|
"title": "Buttons",
|
||||||
|
"view": "Maximise",
|
||||||
|
"favourite": "Favourite",
|
||||||
|
"download": "Download"
|
||||||
|
},
|
||||||
"effects": {
|
"effects": {
|
||||||
"blur": "Juster Blur"
|
"title": "Effects",
|
||||||
|
"blur": "Juster Blur",
|
||||||
|
"brightness": "Adjust brightness"
|
||||||
|
},
|
||||||
|
"type": {
|
||||||
|
"title": "Type",
|
||||||
|
"api": "API",
|
||||||
|
"custom_image": "Custom image",
|
||||||
|
"custom_colour": "Custom colour/gradient"
|
||||||
},
|
},
|
||||||
"source": {
|
"source": {
|
||||||
|
"title": "Source",
|
||||||
"api": "Bakgrunn API",
|
"api": "Bakgrunn API",
|
||||||
"custom_url": "Personlig bakgrunn URL",
|
"custom_url": "Personlig bakgrunn URL",
|
||||||
"custom_background": "Personlig bakgrunn",
|
"custom_background": "Personlig bakgrunn",
|
||||||
"custom_colour": "Personlig Bakgrunn Farge",
|
"custom_colour": "Personlig Bakgrunn Farge",
|
||||||
"add_colour": "Legg til farge"
|
"upload": "Upload",
|
||||||
|
"add_colour": "Legg til farge",
|
||||||
|
"disabled": "Disabled",
|
||||||
|
"loop_video": "Loop video",
|
||||||
|
"mute_video": "Mute video"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"search": {
|
"search": {
|
||||||
"title": "Søkebar",
|
"title": "Søkebar",
|
||||||
"search_engine": "Søkemotor"
|
"search_engine": "Søkemotor",
|
||||||
|
"custom": "Custom search URL",
|
||||||
|
"voice_search": "Voice search"
|
||||||
},
|
},
|
||||||
"language": {
|
"weather": {
|
||||||
"title": "Språk"
|
"title": "Weather",
|
||||||
|
"location": "Location",
|
||||||
|
"auto": "Auto",
|
||||||
|
"temp_format": {
|
||||||
|
"title": "Temperature format",
|
||||||
|
"celsius": "Celsius",
|
||||||
|
"fahrenheit": "Fahrenheit",
|
||||||
|
"kelvin": "Kelvin"
|
||||||
|
},
|
||||||
|
"extra_info": {
|
||||||
|
"title": "Extra information",
|
||||||
|
"show_location": "Show Location",
|
||||||
|
"humidity": "Humidity",
|
||||||
|
"wind_speed": "Wind speed",
|
||||||
|
"min_temp": "Minimum temperature",
|
||||||
|
"max_temp": "Maximum temperature",
|
||||||
|
"atmospheric_pressure": "Atmospheric pressure"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"quicklinks": {
|
||||||
|
"title": "Quick Links",
|
||||||
|
"open_new": "Open in new tab",
|
||||||
|
"tooltip": "Tooltip"
|
||||||
},
|
},
|
||||||
"appearance": {
|
"appearance": {
|
||||||
"dark": "Mørkt tema"
|
"title": "Appearance",
|
||||||
|
"theme": {
|
||||||
|
"title": "Theme",
|
||||||
|
"auto": "Auto",
|
||||||
|
"light": "Light",
|
||||||
|
"dark": "Dark"
|
||||||
|
},
|
||||||
|
"animations": "Animations",
|
||||||
|
"navbar": {
|
||||||
|
"title": "Navbar",
|
||||||
|
"notes": "Notes",
|
||||||
|
"refresh": "Refresh button"
|
||||||
|
},
|
||||||
|
"font": {
|
||||||
|
"title": "Font",
|
||||||
|
"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": {
|
||||||
|
"title": "Accessibility",
|
||||||
|
"widget_zoom": "Widget zoom",
|
||||||
|
"toast_duration": "Toast duration",
|
||||||
|
"milliseconds": "milliseconds"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"order": {
|
||||||
|
"title": "Widget Order"
|
||||||
},
|
},
|
||||||
"advanced": {
|
"advanced": {
|
||||||
|
"title": "Advanced",
|
||||||
|
"offline_mode": "Offline mode",
|
||||||
|
"data": "Data",
|
||||||
|
"reset_modal": {
|
||||||
|
"title": "WARNING",
|
||||||
|
"question": "Do you want to reset Mue?",
|
||||||
|
"information": "This will delete all data. If you wish to keep your data and preferences, please export them first.",
|
||||||
|
"cancel": "Cancel"
|
||||||
|
},
|
||||||
|
"customisation": "Customisation",
|
||||||
|
"custom_css": "Custom CSS",
|
||||||
|
"custom_js": "Custom JS",
|
||||||
|
"tab_name": "Tab name",
|
||||||
|
"experimental_warning": "Please note that the Mue team cannot provide support if you have experimental mode on. Please disable it first and see if the issue continues to occur before contacting support.",
|
||||||
"offline": "Frakoblet Modus"
|
"offline": "Frakoblet Modus"
|
||||||
},
|
},
|
||||||
"experimental": {
|
"experimental": {
|
||||||
"title": "Eksperimental",
|
"title": "Eksperimental",
|
||||||
|
"warning": "These settings have not been fully tested/implemented and may not work correctly!",
|
||||||
|
"developer": "Developer",
|
||||||
"animations": "Animasjoner"
|
"animations": "Animasjoner"
|
||||||
|
},
|
||||||
|
"language": {
|
||||||
|
"title": "Språk",
|
||||||
|
"quote": "Quote language"
|
||||||
|
},
|
||||||
|
"changelog": "Change Log",
|
||||||
|
"about": {
|
||||||
|
"title": "About",
|
||||||
|
"copyright": "Copyright",
|
||||||
|
"version": {
|
||||||
|
"title": "Version",
|
||||||
|
"checking_update": "Checking for update",
|
||||||
|
"update_available": "Update available",
|
||||||
|
"no_update": "No update available",
|
||||||
|
"offline_mode": "Cannot check for update in offline mode"
|
||||||
|
},
|
||||||
|
"contact_us": "Contact Us",
|
||||||
|
"support_mue": "Support Mue",
|
||||||
|
"resources_used": {
|
||||||
|
"title": "Resources used",
|
||||||
|
"bg_images": "Offline background images",
|
||||||
|
"welcome_img": "Welcome image",
|
||||||
|
"pin_icon": "Pin icon"
|
||||||
|
},
|
||||||
|
"contributors": "Contributors",
|
||||||
|
"supporters": "Supporters",
|
||||||
|
"photographers": "Photographers"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"buttons": {
|
"buttons": {
|
||||||
"apply": "Bruk",
|
|
||||||
"reset": "Nullstill",
|
"reset": "Nullstill",
|
||||||
"import": "Importer",
|
"import": "Importer",
|
||||||
"export": "Eksporter"
|
"export": "Eksporter"
|
||||||
},
|
},
|
||||||
"toasts": {
|
"toasts": {
|
||||||
"reset": "Tilbakestillte vellykket",
|
"reset": "Tilbakestillte vellykket",
|
||||||
|
"imported": "Successfully imported",
|
||||||
"error": "Noe gikk galt"
|
"error": "Noe gikk galt"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@@ -93,19 +305,20 @@
|
|||||||
"quote_packs": "Sitat pakker",
|
"quote_packs": "Sitat pakker",
|
||||||
"preset_settings": "Preset instillinger",
|
"preset_settings": "Preset instillinger",
|
||||||
"themes": "Themes",
|
"themes": "Themes",
|
||||||
|
"no_items": "No items in this category",
|
||||||
"product": {
|
"product": {
|
||||||
"overview": "Oversikt",
|
"overview": "Oversikt",
|
||||||
"information": "Informasjon",
|
"information": "Informasjon",
|
||||||
"last_updated": "Sist oppdatert",
|
"last_updated": "Sist oppdatert",
|
||||||
"version": "Versjon",
|
"version": "Versjon",
|
||||||
"author": "Forfatter",
|
"author": "Forfatter",
|
||||||
"notice": {
|
|
||||||
"title": "Vær oppmerksom",
|
|
||||||
"description": "For at endringen skal ta skje, må siden relastes."
|
|
||||||
},
|
|
||||||
"buttons": {
|
"buttons": {
|
||||||
"addtomue": "Legg Til Mue",
|
"addtomue": "Legg Til Mue",
|
||||||
"remove": "Fjern"
|
"remove": "Fjern"
|
||||||
|
},
|
||||||
|
"quote_warning": {
|
||||||
|
"title": "Warning",
|
||||||
|
"description": "This quote pack requests to external servers that may track you!"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"offline": {
|
"offline": {
|
||||||
@@ -118,9 +331,9 @@
|
|||||||
"added": "Lagt til",
|
"added": "Lagt til",
|
||||||
"empty": {
|
"empty": {
|
||||||
"title": "Det er tomt her.",
|
"title": "Det er tomt her.",
|
||||||
"description": "Gå til markedsplassen å legg til noe.",
|
"description": "Gå til markedsplassen å legg til noe."
|
||||||
"button": "Ta meg der"
|
},
|
||||||
}
|
"sideload": "Sideload"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"update": {
|
"update": {
|
||||||
@@ -131,9 +344,36 @@
|
|||||||
},
|
},
|
||||||
"error": {
|
"error": {
|
||||||
"title": "Error",
|
"title": "Error",
|
||||||
|
"description": "Could not connect to the server",
|
||||||
"content": "Kan ikke koble til serveren."
|
"content": "Kan ikke koble til serveren."
|
||||||
},
|
},
|
||||||
|
"read_blog": "Read on the blog here",
|
||||||
|
"contact_support": "Contact us here",
|
||||||
"loading": "Laster..."
|
"loading": "Laster..."
|
||||||
|
},
|
||||||
|
"welcome": {
|
||||||
|
"title": "Welcome to",
|
||||||
|
"information": "Information",
|
||||||
|
"thankyoumessage1": "Thank you for installing Mue Tab,",
|
||||||
|
"thankyoumessage2": "we hope you enjoy your time with our extension.",
|
||||||
|
"support": "Support",
|
||||||
|
"close": "Close"
|
||||||
|
},
|
||||||
|
"feedback": {
|
||||||
|
"title": "Give us feedback",
|
||||||
|
"question_one": "How would you rate your experience of this Mue build?",
|
||||||
|
"question_two": "What bugs did you encounter in your use of Mue?",
|
||||||
|
"question_three": "How likely would you be to recommend this version of Mue to a friend or colleague?",
|
||||||
|
"question_four": "What do you want adding to the next Mue build?",
|
||||||
|
"not_filled": "Question box must be filled",
|
||||||
|
"success": "Sent successfully!",
|
||||||
|
"submit": "Submit"
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"toasts": {
|
||||||
|
"quote": "Quote copied",
|
||||||
|
"installed": "Successfully installed",
|
||||||
|
"uninstalled": "Successfully removed",
|
||||||
|
"error": "Something went wrong"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
{
|
{
|
||||||
|
"tabname": "New Tab",
|
||||||
"widgets": {
|
"widgets": {
|
||||||
"greeting": {
|
"greeting": {
|
||||||
"morning": "Доброе утро",
|
"morning": "Доброе утро",
|
||||||
@@ -6,62 +7,160 @@
|
|||||||
"evening": "Добрый вечер",
|
"evening": "Добрый вечер",
|
||||||
"christmas": "С Рождеством",
|
"christmas": "С Рождеством",
|
||||||
"newyear": "С Новым Годом",
|
"newyear": "С Новым Годом",
|
||||||
"halloween": "Счастливого Хэллоуина"
|
"halloween": "Счастливого Хэллоуина",
|
||||||
|
"birthday": "Happy Birthday"
|
||||||
},
|
},
|
||||||
"background": {
|
"background": {
|
||||||
"credit": "Фото"
|
"credit": "Фото",
|
||||||
|
"unsplash": "on Unsplash",
|
||||||
|
"information": "Information",
|
||||||
|
"download": "Download"
|
||||||
},
|
},
|
||||||
"search": "Поиск"
|
"search": "Поиск",
|
||||||
|
"quicklinks": {
|
||||||
|
"new": "New Link",
|
||||||
|
"name": "Name",
|
||||||
|
"url": "URL",
|
||||||
|
"add": "Add",
|
||||||
|
"name_error": "Must provide name",
|
||||||
|
"url_error": "Must provide URL"
|
||||||
|
},
|
||||||
|
"date": {
|
||||||
|
"week": "Week"
|
||||||
|
},
|
||||||
|
"weather": {
|
||||||
|
"not_found": "Not Found"
|
||||||
|
},
|
||||||
|
"navbar": {
|
||||||
|
"tooltips": {
|
||||||
|
"update": "Update Patch Notes",
|
||||||
|
"refresh": "Refresh Page",
|
||||||
|
"feedback": "Feedback"
|
||||||
|
},
|
||||||
|
"notes": {
|
||||||
|
"title": "Notes",
|
||||||
|
"placeholder": "Type here"
|
||||||
|
}
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"modals": {
|
"modals": {
|
||||||
"main": {
|
"main": {
|
||||||
|
"title": "Options",
|
||||||
|
"loading": "Loading...",
|
||||||
|
"file_upload_error": "File is over 2MB",
|
||||||
|
"navbar": {
|
||||||
|
"settings": "Settings",
|
||||||
|
"addons": "My Add-ons",
|
||||||
|
"marketplace": "Marketplace"
|
||||||
|
},
|
||||||
|
"error_boundary": {
|
||||||
|
"title": "Error",
|
||||||
|
"message": "Failed to load this component of Mue",
|
||||||
|
"refresh": "Refresh"
|
||||||
|
},
|
||||||
"settings": {
|
"settings": {
|
||||||
|
"enabled": "Enabled",
|
||||||
|
"reminder": {
|
||||||
|
"title": "NOTICE",
|
||||||
|
"message": "In order for all of the changes to take place, the page must be refreshed."
|
||||||
|
},
|
||||||
"sections": {
|
"sections": {
|
||||||
"time": {
|
"time": {
|
||||||
"title": "Время",
|
"title": "Время",
|
||||||
|
"format": "Format",
|
||||||
|
"type": "Type",
|
||||||
"digital": {
|
"digital": {
|
||||||
|
"title": "Digital",
|
||||||
"seconds": "Секунды",
|
"seconds": "Секунды",
|
||||||
"twentyfourhour": "24 Часа",
|
"twentyfourhour": "24 Часа",
|
||||||
"ampm": "AM/PM (12 часов)",
|
"twelvehour": "12 hour",
|
||||||
"zero": "Дополнительный ноль"
|
"zero": "Дополнительный ноль"
|
||||||
},
|
},
|
||||||
"analogue": {
|
"analogue": {
|
||||||
"title": "Аналоговое"
|
"title": "Аналоговое",
|
||||||
|
"second_hand": "Seconds hand",
|
||||||
|
"minute_hand": "Minutes hand",
|
||||||
|
"hour_hand": "Hours hand",
|
||||||
|
"hour_marks": "Hour marks",
|
||||||
|
"minute_marks": "Minute marks"
|
||||||
|
},
|
||||||
|
"percentage_complete": "Percentage complete",
|
||||||
|
"date": {
|
||||||
|
"title": "Date",
|
||||||
|
"week_number": "Week number",
|
||||||
|
"day_of_week": "Day of week",
|
||||||
|
"datenth": "Date nth",
|
||||||
|
"type": {
|
||||||
|
"short": "Short",
|
||||||
|
"long": "Long"
|
||||||
|
},
|
||||||
|
"short_date": "Short date",
|
||||||
|
"short_format": "Short format",
|
||||||
|
"short_separator": {
|
||||||
|
"title": "Short separator",
|
||||||
|
"dots": "Dots",
|
||||||
|
"dash": "Dash",
|
||||||
|
"gaps": "Gaps",
|
||||||
|
"slashes": "Slashes"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"quote": {
|
||||||
|
"title": "Цитата",
|
||||||
|
"author_link": "Authour link",
|
||||||
|
"custom": "Custom quote",
|
||||||
|
"custom_author": "Custom authour",
|
||||||
|
"buttons": {
|
||||||
|
"title": "Buttons",
|
||||||
|
"copy": "Кнопка копирования",
|
||||||
|
"tweet": "Кнопка твита",
|
||||||
|
"favourite": "Кнопка для оценки"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"greeting": {
|
"greeting": {
|
||||||
"title": "Приветствие",
|
"title": "Приветствие",
|
||||||
"events": "События",
|
"events": "События",
|
||||||
"default": "Сообщение с приветствием по-умолчанию",
|
"default": "Сообщение с приветствием по-умолчанию",
|
||||||
"name": "Имя для приветствия"
|
"name": "Имя для приветствия",
|
||||||
},
|
"birthday": "Birthday",
|
||||||
"quote": {
|
"birthday_age": "Birthday age",
|
||||||
"title": "Цитата",
|
"birthday_date": "Birthday date"
|
||||||
"buttons": {
|
|
||||||
"copy": "Кнопка копирования",
|
|
||||||
"tweet": "Кнопка твита",
|
|
||||||
"favourite": "Кнопка для оценки"
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
"background": {
|
"background": {
|
||||||
"title": "Фон",
|
"title": "Фон",
|
||||||
|
"ddg_proxy": "Use DuckDuckGo image proxy",
|
||||||
|
"transition": "Fade-in transition",
|
||||||
|
"category": "Category",
|
||||||
"buttons": {
|
"buttons": {
|
||||||
"favourite": "Любимые",
|
"title": "Buttons",
|
||||||
"view": "Просмотр",
|
"view": "Просмотр",
|
||||||
|
"favourite": "Любимые",
|
||||||
|
"download": "Download",
|
||||||
"refresh": "Обновить",
|
"refresh": "Обновить",
|
||||||
"disabled": "Выключен"
|
"disabled": "Выключен"
|
||||||
},
|
},
|
||||||
"effects": {
|
"effects": {
|
||||||
|
"title": "Effects",
|
||||||
"blur": "Размытие",
|
"blur": "Размытие",
|
||||||
"brightness": "Яркость"
|
"brightness": "Яркость"
|
||||||
},
|
},
|
||||||
|
"type": {
|
||||||
|
"title": "Type",
|
||||||
|
"api": "API",
|
||||||
|
"custom_image": "Custom image",
|
||||||
|
"custom_colour": "Custom colour/gradient"
|
||||||
|
},
|
||||||
"source": {
|
"source": {
|
||||||
|
"title": "Source",
|
||||||
"api": "API для фона",
|
"api": "API для фона",
|
||||||
"custom_url": "Ссылка для пользовательского фона",
|
"custom_url": "Ссылка для пользовательского фона",
|
||||||
"custom_background": "Пользовательский фон",
|
"custom_background": "Пользовательский фон",
|
||||||
"custom_colour": "Пользовательский цвет фона",
|
"custom_colour": "Пользовательский цвет фона",
|
||||||
"upload": "Загрузить",
|
"upload": "Загрузить",
|
||||||
"add_colour": "Добавить цвет"
|
"add_colour": "Добавить цвет",
|
||||||
|
"disabled": "Disabled",
|
||||||
|
"loop_video": "Loop video",
|
||||||
|
"mute_video": "Mute video"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"search": {
|
"search": {
|
||||||
@@ -70,30 +169,136 @@
|
|||||||
"custom": "Пользовательский поисковый движок",
|
"custom": "Пользовательский поисковый движок",
|
||||||
"voice_search": "Поиск голосом"
|
"voice_search": "Поиск голосом"
|
||||||
},
|
},
|
||||||
|
"weather": {
|
||||||
|
"title": "Weather",
|
||||||
|
"location": "Location",
|
||||||
|
"auto": "Auto",
|
||||||
|
"temp_format": {
|
||||||
|
"title": "Temperature format",
|
||||||
|
"celsius": "Celsius",
|
||||||
|
"fahrenheit": "Fahrenheit",
|
||||||
|
"kelvin": "Kelvin"
|
||||||
|
},
|
||||||
|
"extra_info": {
|
||||||
|
"title": "Extra information",
|
||||||
|
"show_location": "Show Location",
|
||||||
|
"humidity": "Humidity",
|
||||||
|
"wind_speed": "Wind speed",
|
||||||
|
"min_temp": "Minimum temperature",
|
||||||
|
"max_temp": "Maximum temperature",
|
||||||
|
"atmospheric_pressure": "Atmospheric pressure"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"quicklinks": {
|
||||||
|
"title": "Quick Links",
|
||||||
|
"open_new": "Open in new tab",
|
||||||
|
"tooltip": "Tooltip"
|
||||||
|
},
|
||||||
"appearance": {
|
"appearance": {
|
||||||
"dark_theme": "Тёмная тема"
|
"title": "Appearance",
|
||||||
|
"theme": {
|
||||||
|
"title": "Theme",
|
||||||
|
"auto": "Auto",
|
||||||
|
"light": "Light",
|
||||||
|
"dark": "Dark"
|
||||||
|
},
|
||||||
|
"animations": "Animations",
|
||||||
|
"navbar": {
|
||||||
|
"title": "Navbar",
|
||||||
|
"notes": "Notes",
|
||||||
|
"refresh": "Refresh button"
|
||||||
|
},
|
||||||
|
"font": {
|
||||||
|
"title": "Font",
|
||||||
|
"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": {
|
||||||
|
"title": "Accessibility",
|
||||||
|
"widget_zoom": "Widget zoom",
|
||||||
|
"toast_duration": "Toast duration",
|
||||||
|
"milliseconds": "milliseconds"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"order": {
|
||||||
|
"title": "Widget Order"
|
||||||
},
|
},
|
||||||
"advanced": {
|
"advanced": {
|
||||||
"offline_mode": "Офлайн режим"
|
"title": "Advanced",
|
||||||
|
"offline_mode": "Офлайн режим",
|
||||||
|
"data": "Data",
|
||||||
|
"reset_modal": {
|
||||||
|
"title": "WARNING",
|
||||||
|
"question": "Do you want to reset Mue?",
|
||||||
|
"information": "This will delete all data. If you wish to keep your data and preferences, please export them first.",
|
||||||
|
"cancel": "Cancel"
|
||||||
|
},
|
||||||
|
"customisation": "Customisation",
|
||||||
|
"custom_css": "Custom CSS",
|
||||||
|
"custom_js": "Custom JS",
|
||||||
|
"tab_name": "Tab name",
|
||||||
|
"experimental_warning": "Please note that the Mue team cannot provide support if you have experimental mode on. Please disable it first and see if the issue continues to occur before contacting support."
|
||||||
},
|
},
|
||||||
"experimental": {
|
"experimental": {
|
||||||
"title": "Экспериментальные настройки",
|
"title": "Экспериментальные настройки",
|
||||||
"animations": "Анимации",
|
"warning": "These settings have not been fully tested/implemented and may not work correctly!",
|
||||||
"nightmode": "Автоматический ночной режим"
|
"developer": "Developer",
|
||||||
|
"animations": "Анимации"
|
||||||
},
|
},
|
||||||
"language": {
|
"language": {
|
||||||
"title": "Язык"
|
"title": "Язык",
|
||||||
|
"quote": "Quote language"
|
||||||
|
},
|
||||||
|
"changelog": "Change Log",
|
||||||
|
"about": {
|
||||||
|
"title": "About",
|
||||||
|
"copyright": "Copyright",
|
||||||
|
"version": {
|
||||||
|
"title": "Version",
|
||||||
|
"checking_update": "Checking for update",
|
||||||
|
"update_available": "Update available",
|
||||||
|
"no_update": "No update available",
|
||||||
|
"offline_mode": "Cannot check for update in offline mode"
|
||||||
|
},
|
||||||
|
"contact_us": "Contact Us",
|
||||||
|
"support_mue": "Support Mue",
|
||||||
|
"resources_used": {
|
||||||
|
"title": "Resources used",
|
||||||
|
"bg_images": "Offline background images",
|
||||||
|
"welcome_img": "Welcome image",
|
||||||
|
"pin_icon": "Pin icon"
|
||||||
|
},
|
||||||
|
"contributors": "Contributors",
|
||||||
|
"supporters": "Supporters",
|
||||||
|
"photographers": "Photographers"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"toasts": {
|
|
||||||
"reset": "Сброшено!",
|
|
||||||
"error": "Что-то пошло не так",
|
|
||||||
"imported": "Успешно импортировано"
|
|
||||||
},
|
|
||||||
"buttons": {
|
"buttons": {
|
||||||
"reset": "Сбросить",
|
"reset": "Сбросить",
|
||||||
"import": "Импорт",
|
"import": "Импорт",
|
||||||
"export": "Экспорт"
|
"export": "Экспорт"
|
||||||
|
},
|
||||||
|
"toasts": {
|
||||||
|
"reset": "Сброшено!",
|
||||||
|
"imported": "Успешно импортировано",
|
||||||
|
"error": "Что-то пошло не так"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"marketplace": {
|
"marketplace": {
|
||||||
@@ -101,21 +306,18 @@
|
|||||||
"quote_packs": "Наборы цитат",
|
"quote_packs": "Наборы цитат",
|
||||||
"preset_settings": "Пресеты настроек",
|
"preset_settings": "Пресеты настроек",
|
||||||
"themes": "Темы",
|
"themes": "Темы",
|
||||||
|
"no_items": "No items in this category",
|
||||||
"product": {
|
"product": {
|
||||||
"overview": "Обзор",
|
"overview": "Обзор",
|
||||||
"information": "Информация",
|
"information": "Информация",
|
||||||
"last_updated": "Последнее обновление",
|
"last_updated": "Последнее обновление",
|
||||||
"version": "Версия",
|
"version": "Версия",
|
||||||
"author": "Автор",
|
"author": "Автор",
|
||||||
"notice": {
|
|
||||||
"title": "Предупреждение",
|
|
||||||
"description": "Для того, чтобы изменения вступили в силу необходимо обновить страницу."
|
|
||||||
},
|
|
||||||
"buttons": {
|
"buttons": {
|
||||||
"addtomue": "Добавить в Mue",
|
"addtomue": "Добавить в Mue",
|
||||||
"remove": "Удалить"
|
"remove": "Удалить"
|
||||||
},
|
},
|
||||||
"quoteWarning": {
|
"quote_warning": {
|
||||||
"title": "Предупреждение",
|
"title": "Предупреждение",
|
||||||
"description": "Этот пакет цитат обращается к внешнему серверу и может отслеживать вас!"
|
"description": "Этот пакет цитат обращается к внешнему серверу и может отслеживать вас!"
|
||||||
}
|
}
|
||||||
@@ -130,8 +332,7 @@
|
|||||||
"added": "Добавлен",
|
"added": "Добавлен",
|
||||||
"empty": {
|
"empty": {
|
||||||
"title": "Здесь пусто",
|
"title": "Здесь пусто",
|
||||||
"description": "Зайдите в магазин, чтобы найти что-то интересное.",
|
"description": "Зайдите в магазин, чтобы найти что-то интересное."
|
||||||
"button": "Перейти"
|
|
||||||
},
|
},
|
||||||
"sideload": "Загрузить"
|
"sideload": "Загрузить"
|
||||||
}
|
}
|
||||||
@@ -144,11 +345,38 @@
|
|||||||
},
|
},
|
||||||
"error": {
|
"error": {
|
||||||
"title": "Ошибка",
|
"title": "Ошибка",
|
||||||
|
"description": "Could not connect to the server",
|
||||||
"content": "Не удалось подключиться к серверу"
|
"content": "Не удалось подключиться к серверу"
|
||||||
},
|
},
|
||||||
|
"read_blog": "Read on the blog here",
|
||||||
|
"contact_support": "Contact us here",
|
||||||
"loading": "Загрузка...",
|
"loading": "Загрузка...",
|
||||||
"readblog": "Прочитайте об изменениях в блоге",
|
"readblog": "Прочитайте об изменениях в блоге",
|
||||||
"contactsupport": "Связаться с нами"
|
"contactsupport": "Связаться с нами"
|
||||||
|
},
|
||||||
|
"welcome": {
|
||||||
|
"title": "Welcome to",
|
||||||
|
"information": "Information",
|
||||||
|
"thankyoumessage1": "Thank you for installing Mue Tab,",
|
||||||
|
"thankyoumessage2": "we hope you enjoy your time with our extension.",
|
||||||
|
"support": "Support",
|
||||||
|
"close": "Close"
|
||||||
|
},
|
||||||
|
"feedback": {
|
||||||
|
"title": "Give us feedback",
|
||||||
|
"question_one": "How would you rate your experience of this Mue build?",
|
||||||
|
"question_two": "What bugs did you encounter in your use of Mue?",
|
||||||
|
"question_three": "How likely would you be to recommend this version of Mue to a friend or colleague?",
|
||||||
|
"question_four": "What do you want adding to the next Mue build?",
|
||||||
|
"not_filled": "Question box must be filled",
|
||||||
|
"success": "Sent successfully!",
|
||||||
|
"submit": "Submit"
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"toasts": {
|
||||||
|
"quote": "Quote copied",
|
||||||
|
"installed": "Successfully installed",
|
||||||
|
"uninstalled": "Successfully removed",
|
||||||
|
"error": "Something went wrong"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
{
|
{
|
||||||
|
"tabname": "New Tab",
|
||||||
"widgets": {
|
"widgets": {
|
||||||
"greeting": {
|
"greeting": {
|
||||||
"morning": "早上好",
|
"morning": "早上好",
|
||||||
@@ -6,71 +7,159 @@
|
|||||||
"evening": "晚上好",
|
"evening": "晚上好",
|
||||||
"christmas": "圣诞节快乐",
|
"christmas": "圣诞节快乐",
|
||||||
"newyear": "新年快乐",
|
"newyear": "新年快乐",
|
||||||
"halloween": "万圣节快乐"
|
"halloween": "万圣节快乐",
|
||||||
|
"birthday": "Happy Birthday"
|
||||||
},
|
},
|
||||||
"background": {
|
"background": {
|
||||||
"credit": "图像作者:"
|
"credit": "图像作者:",
|
||||||
|
"unsplash": "on Unsplash",
|
||||||
|
"information": "Information",
|
||||||
|
"download": "Download"
|
||||||
},
|
},
|
||||||
"search": "搜索"
|
"search": "搜索",
|
||||||
|
"quicklinks": {
|
||||||
|
"new": "New Link",
|
||||||
|
"name": "Name",
|
||||||
|
"url": "URL",
|
||||||
|
"add": "Add",
|
||||||
|
"name_error": "Must provide name",
|
||||||
|
"url_error": "Must provide URL"
|
||||||
|
},
|
||||||
|
"date": {
|
||||||
|
"week": "Week"
|
||||||
|
},
|
||||||
|
"weather": {
|
||||||
|
"not_found": "Not Found"
|
||||||
|
},
|
||||||
|
"navbar": {
|
||||||
|
"tooltips": {
|
||||||
|
"update": "Update Patch Notes",
|
||||||
|
"refresh": "Refresh Page",
|
||||||
|
"feedback": "Feedback"
|
||||||
|
},
|
||||||
|
"notes": {
|
||||||
|
"title": "Notes",
|
||||||
|
"placeholder": "Type here"
|
||||||
|
}
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"modals": {
|
"modals": {
|
||||||
"main": {
|
"main": {
|
||||||
"title": "选项",
|
"title": "选项",
|
||||||
|
"loading": "载入中...",
|
||||||
|
"file_upload_error": "File is over 2MB",
|
||||||
"navbar": {
|
"navbar": {
|
||||||
"settings": "设置",
|
"settings": "设置",
|
||||||
"addons": "我的插件",
|
"addons": "我的插件",
|
||||||
"marketplace": "插件市场"
|
"marketplace": "插件市场"
|
||||||
},
|
},
|
||||||
"loading": "载入中...",
|
"error_boundary": {
|
||||||
|
"title": "Error",
|
||||||
|
"message": "Failed to load this component of Mue",
|
||||||
|
"refresh": "Refresh"
|
||||||
|
},
|
||||||
"settings": {
|
"settings": {
|
||||||
"enabled": "已启用",
|
"enabled": "已启用",
|
||||||
|
"reminder": {
|
||||||
|
"title": "NOTICE",
|
||||||
|
"message": "In order for all of the changes to take place, the page must be refreshed."
|
||||||
|
},
|
||||||
"sections": {
|
"sections": {
|
||||||
"time": {
|
"time": {
|
||||||
"title": "时间",
|
"title": "时间",
|
||||||
|
"format": "Format",
|
||||||
|
"type": "Type",
|
||||||
"digital": {
|
"digital": {
|
||||||
|
"title": "Digital",
|
||||||
"seconds": "显示秒",
|
"seconds": "显示秒",
|
||||||
"twentyfourhour": "使用 24 小时制",
|
"twentyfourhour": "使用 24 小时制",
|
||||||
"ampm": "12 小时制下显示 AM/PM",
|
"twelvehour": "12 hour",
|
||||||
"zero": "加零补足二位数字"
|
"zero": "加零补足二位数字"
|
||||||
},
|
},
|
||||||
"analogue": {
|
"analogue": {
|
||||||
"title": "使用模拟时钟"
|
"title": "使用模拟时钟",
|
||||||
|
"second_hand": "Seconds hand",
|
||||||
|
"minute_hand": "Minutes hand",
|
||||||
|
"hour_hand": "Hours hand",
|
||||||
|
"hour_marks": "Hour marks",
|
||||||
|
"minute_marks": "Minute marks"
|
||||||
|
},
|
||||||
|
"percentage_complete": "Percentage complete",
|
||||||
|
"date": {
|
||||||
|
"title": "Date",
|
||||||
|
"week_number": "Week number",
|
||||||
|
"day_of_week": "Day of week",
|
||||||
|
"datenth": "Date nth",
|
||||||
|
"type": {
|
||||||
|
"short": "Short",
|
||||||
|
"long": "Long"
|
||||||
|
},
|
||||||
|
"short_date": "Short date",
|
||||||
|
"short_format": "Short format",
|
||||||
|
"short_separator": {
|
||||||
|
"title": "Short separator",
|
||||||
|
"dots": "Dots",
|
||||||
|
"dash": "Dash",
|
||||||
|
"gaps": "Gaps",
|
||||||
|
"slashes": "Slashes"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"quote": {
|
||||||
|
"title": "名言",
|
||||||
|
"author_link": "Authour link",
|
||||||
|
"custom": "Custom quote",
|
||||||
|
"custom_author": "Custom authour",
|
||||||
|
"buttons": {
|
||||||
|
"title": "Buttons",
|
||||||
|
"copy": "复制按钮",
|
||||||
|
"tweet": "发推按钮",
|
||||||
|
"favourite": "收藏按钮"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"greeting": {
|
"greeting": {
|
||||||
"title": "问候",
|
"title": "问候",
|
||||||
"events": "节日问候",
|
"events": "节日问候",
|
||||||
"default": "常规问候",
|
"default": "常规问候",
|
||||||
"name": "您在问候中的名字"
|
"name": "您在问候中的名字",
|
||||||
},
|
"birthday": "Birthday",
|
||||||
"quote": {
|
"birthday_age": "Birthday age",
|
||||||
"title": "名言",
|
"birthday_date": "Birthday date"
|
||||||
"buttons": {
|
|
||||||
"copy": "复制按钮",
|
|
||||||
"tweet": "发推按钮",
|
|
||||||
"favourite": "收藏按钮"
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
"background": {
|
"background": {
|
||||||
"title": "背景",
|
"title": "背景",
|
||||||
"api": "背景来源",
|
"ddg_proxy": "Use DuckDuckGo image proxy",
|
||||||
|
"transition": "Fade-in transition",
|
||||||
|
"category": "Category",
|
||||||
"buttons": {
|
"buttons": {
|
||||||
"favourite": "收藏",
|
"title": "Buttons",
|
||||||
"view": "查看",
|
"view": "查看",
|
||||||
"disabled": "已禁用",
|
"favourite": "收藏",
|
||||||
"download": "下载"
|
"download": "下载",
|
||||||
|
"disabled": "已禁用"
|
||||||
},
|
},
|
||||||
"effects": {
|
"effects": {
|
||||||
|
"title": "Effects",
|
||||||
"blur": "调整模糊",
|
"blur": "调整模糊",
|
||||||
"brightness": "调整亮度"
|
"brightness": "调整亮度"
|
||||||
},
|
},
|
||||||
|
"type": {
|
||||||
|
"title": "Type",
|
||||||
|
"api": "API",
|
||||||
|
"custom_image": "Custom image",
|
||||||
|
"custom_colour": "Custom colour/gradient"
|
||||||
|
},
|
||||||
"source": {
|
"source": {
|
||||||
"custom_url": "自定义背景链接",
|
"title": "Source",
|
||||||
"api": "背景背景来源",
|
"api": "背景背景来源",
|
||||||
|
"custom_url": "自定义背景链接",
|
||||||
"custom_background": "自定义背景",
|
"custom_background": "自定义背景",
|
||||||
"custom_colour": "自定义背景颜色",
|
"custom_colour": "自定义背景颜色",
|
||||||
"upload": "上传",
|
"upload": "上传",
|
||||||
"add_colour": "添加颜色"
|
"add_colour": "添加颜色",
|
||||||
|
"disabled": "Disabled",
|
||||||
|
"loop_video": "Loop video",
|
||||||
|
"mute_video": "Mute video"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"search": {
|
"search": {
|
||||||
@@ -79,29 +168,136 @@
|
|||||||
"custom": "自定义搜索链接",
|
"custom": "自定义搜索链接",
|
||||||
"voice_search": "语音搜索"
|
"voice_search": "语音搜索"
|
||||||
},
|
},
|
||||||
"advanced": {
|
"weather": {
|
||||||
"offline_mode": "离线模式"
|
"title": "Weather",
|
||||||
},
|
"location": "Location",
|
||||||
"dark": "暗黑主题",
|
"auto": "Auto",
|
||||||
"experimental": {
|
"temp_format": {
|
||||||
"title": "实验性功能",
|
"title": "Temperature format",
|
||||||
"webp": "启用 WebP",
|
"celsius": "Celsius",
|
||||||
"animations": "动画",
|
"fahrenheit": "Fahrenheit",
|
||||||
"nightmode": "夜间自动启用暗黑主题"
|
"kelvin": "Kelvin"
|
||||||
},
|
},
|
||||||
"appearance": {
|
"extra_info": {
|
||||||
"navbar": {
|
"title": "Extra information",
|
||||||
"refresh": "刷新按钮"
|
"show_location": "Show Location",
|
||||||
|
"humidity": "Humidity",
|
||||||
|
"wind_speed": "Wind speed",
|
||||||
|
"min_temp": "Minimum temperature",
|
||||||
|
"max_temp": "Maximum temperature",
|
||||||
|
"atmospheric_pressure": "Atmospheric pressure"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"quicklinks": {
|
||||||
|
"title": "Quick Links",
|
||||||
|
"open_new": "Open in new tab",
|
||||||
|
"tooltip": "Tooltip"
|
||||||
|
},
|
||||||
|
"appearance": {
|
||||||
|
"title": "Appearance",
|
||||||
|
"theme": {
|
||||||
|
"title": "Theme",
|
||||||
|
"auto": "Auto",
|
||||||
|
"light": "Light",
|
||||||
|
"dark": "Dark"
|
||||||
|
},
|
||||||
|
"animations": "Animations",
|
||||||
|
"navbar": {
|
||||||
|
"title": "Navbar",
|
||||||
|
"notes": "Notes",
|
||||||
|
"refresh": "刷新按钮"
|
||||||
|
},
|
||||||
|
"font": {
|
||||||
|
"title": "Font",
|
||||||
|
"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": {
|
||||||
|
"title": "Accessibility",
|
||||||
|
"widget_zoom": "Widget zoom",
|
||||||
|
"toast_duration": "Toast duration",
|
||||||
|
"milliseconds": "milliseconds"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"order": {
|
||||||
|
"title": "Widget Order"
|
||||||
|
},
|
||||||
|
"advanced": {
|
||||||
|
"title": "Advanced",
|
||||||
|
"offline_mode": "离线模式",
|
||||||
|
"data": "Data",
|
||||||
|
"reset_modal": {
|
||||||
|
"title": "WARNING",
|
||||||
|
"question": "Do you want to reset Mue?",
|
||||||
|
"information": "This will delete all data. If you wish to keep your data and preferences, please export them first.",
|
||||||
|
"cancel": "Cancel"
|
||||||
|
},
|
||||||
|
"customisation": "Customisation",
|
||||||
|
"custom_css": "Custom CSS",
|
||||||
|
"custom_js": "Custom JS",
|
||||||
|
"tab_name": "Tab name",
|
||||||
|
"experimental_warning": "Please note that the Mue team cannot provide support if you have experimental mode on. Please disable it first and see if the issue continues to occur before contacting support."
|
||||||
|
},
|
||||||
|
"experimental": {
|
||||||
|
"title": "实验性功能",
|
||||||
|
"warning": "These settings have not been fully tested/implemented and may not work correctly!",
|
||||||
|
"developer": "Developer",
|
||||||
|
"webp": "启用 WebP",
|
||||||
|
"animations": "动画"
|
||||||
|
},
|
||||||
"language": {
|
"language": {
|
||||||
"title": "语言"
|
"title": "语言",
|
||||||
|
"quote": "Quote language"
|
||||||
|
},
|
||||||
|
"changelog": "Change Log",
|
||||||
|
"about": {
|
||||||
|
"title": "About",
|
||||||
|
"copyright": "Copyright",
|
||||||
|
"version": {
|
||||||
|
"title": "Version",
|
||||||
|
"checking_update": "Checking for update",
|
||||||
|
"update_available": "Update available",
|
||||||
|
"no_update": "No update available",
|
||||||
|
"offline_mode": "Cannot check for update in offline mode"
|
||||||
|
},
|
||||||
|
"contact_us": "Contact Us",
|
||||||
|
"support_mue": "Support Mue",
|
||||||
|
"resources_used": {
|
||||||
|
"title": "Resources used",
|
||||||
|
"bg_images": "Offline background images",
|
||||||
|
"welcome_img": "Welcome image",
|
||||||
|
"pin_icon": "Pin icon"
|
||||||
|
},
|
||||||
|
"contributors": "Contributors",
|
||||||
|
"supporters": "Supporters",
|
||||||
|
"photographers": "Photographers"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"buttons": {
|
"buttons": {
|
||||||
"reset": "重置",
|
"reset": "重置",
|
||||||
"import": "导入",
|
"import": "导入",
|
||||||
"export": "导出"
|
"export": "导出"
|
||||||
|
},
|
||||||
|
"toasts": {
|
||||||
|
"reset": "Reset successfully",
|
||||||
|
"imported": "Successfully imported"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"marketplace": {
|
"marketplace": {
|
||||||
@@ -109,21 +305,18 @@
|
|||||||
"quote_packs": "名言包",
|
"quote_packs": "名言包",
|
||||||
"preset_settings": "预设设定",
|
"preset_settings": "预设设定",
|
||||||
"themes": "主题",
|
"themes": "主题",
|
||||||
|
"no_items": "No items in this category",
|
||||||
"product": {
|
"product": {
|
||||||
"overview": "总览",
|
"overview": "总览",
|
||||||
"information": "信息",
|
"information": "信息",
|
||||||
"last_updated": "更新日期",
|
"last_updated": "更新日期",
|
||||||
"version": "版本",
|
"version": "版本",
|
||||||
"author": "作者",
|
"author": "作者",
|
||||||
"notice": {
|
|
||||||
"title": "温馨提醒",
|
|
||||||
"description": "更改会在刷新页面后生效。"
|
|
||||||
},
|
|
||||||
"buttons": {
|
"buttons": {
|
||||||
"addtomue": "添加至 Mue",
|
"addtomue": "添加至 Mue",
|
||||||
"remove": "卸载"
|
"remove": "卸载"
|
||||||
},
|
},
|
||||||
"quoteWarning": {
|
"quote_warning": {
|
||||||
"title": "注意",
|
"title": "注意",
|
||||||
"description": "本名言包会连接到可能会跟踪您的外部服务器!"
|
"description": "本名言包会连接到可能会跟踪您的外部服务器!"
|
||||||
}
|
}
|
||||||
@@ -138,8 +331,7 @@
|
|||||||
"added": "已添加",
|
"added": "已添加",
|
||||||
"empty": {
|
"empty": {
|
||||||
"title": "这里空空如也",
|
"title": "这里空空如也",
|
||||||
"description": "请访问插件市场来添加插件。",
|
"description": "请访问插件市场来添加插件。"
|
||||||
"button": "带我去那儿"
|
|
||||||
},
|
},
|
||||||
"sideload": "上传插件"
|
"sideload": "上传插件"
|
||||||
}
|
}
|
||||||
@@ -154,17 +346,38 @@
|
|||||||
"title": "错误",
|
"title": "错误",
|
||||||
"description": "无法连接到服务器"
|
"description": "无法连接到服务器"
|
||||||
},
|
},
|
||||||
"loading": "载入中...",
|
"read_blog": "点此在我们的博客中阅读",
|
||||||
"readblog": "点此在我们的博客中阅读",
|
"contact_support": "点此联系我们",
|
||||||
"contactsupport": "点此联系我们"
|
"loading": "载入中..."
|
||||||
|
},
|
||||||
|
"welcome": {
|
||||||
|
"title": "Welcome to",
|
||||||
|
"information": "Information",
|
||||||
|
"thankyoumessage1": "Thank you for installing Mue Tab,",
|
||||||
|
"thankyoumessage2": "we hope you enjoy your time with our extension.",
|
||||||
|
"support": "Support",
|
||||||
|
"close": "Close"
|
||||||
|
},
|
||||||
|
"feedback": {
|
||||||
|
"title": "Give us feedback",
|
||||||
|
"question_one": "How would you rate your experience of this Mue build?",
|
||||||
|
"question_two": "What bugs did you encounter in your use of Mue?",
|
||||||
|
"question_three": "How likely would you be to recommend this version of Mue to a friend or colleague?",
|
||||||
|
"question_four": "What do you want adding to the next Mue build?",
|
||||||
|
"not_filled": "Question box must be filled",
|
||||||
|
"success": "Sent successfully!",
|
||||||
|
"submit": "Submit"
|
||||||
},
|
},
|
||||||
"toasts": {
|
"toasts": {
|
||||||
"quote": "名言已复制",
|
|
||||||
"reset": "重置成功",
|
"reset": "重置成功",
|
||||||
"installed": "安装成功",
|
|
||||||
"removed": "卸载成功",
|
"removed": "卸载成功",
|
||||||
"error": "发生了错误",
|
|
||||||
"imported": "导入成功"
|
"imported": "导入成功"
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"toasts": {
|
||||||
|
"quote": "名言已复制",
|
||||||
|
"installed": "安装成功",
|
||||||
|
"uninstalled": "Successfully removed",
|
||||||
|
"error": "发生了错误"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user