Language Translated Untranslated Untranslated words Checks Suggestions Comments
Arabic This component is linked to the LXQt Panel/Panel repository. GPL-2.0
Asturian This component is linked to the LXQt Panel/Panel repository. GPL-2.0 0% 56 721
Bulgarian This component is linked to the LXQt Panel/Panel repository. GPL-2.0
Catalan This component is linked to the LXQt Panel/Panel repository. GPL-2.0
Chinese (Simplified) (zh_CN) This component is linked to the LXQt Panel/Panel repository. GPL-2.0
Croatian This component is linked to the LXQt Panel/Panel repository. GPL-2.0 98% 1 593
Czech This component is linked to the LXQt Panel/Panel repository. GPL-2.0
Danish This component is linked to the LXQt Panel/Panel repository. GPL-2.0
Dutch This component is linked to the LXQt Panel/Panel repository. GPL-2.0
English This translation is used for source strings. This component is linked to the LXQt Panel/Panel repository. GPL-2.0
Estonian This component is linked to the LXQt Panel/Panel repository. GPL-2.0
Finnish This component is linked to the LXQt Panel/Panel repository. GPL-2.0 48% 29 674 2
French This component is linked to the LXQt Panel/Panel repository. GPL-2.0
Galician This component is linked to the LXQt Panel/Panel repository. GPL-2.0 94% 3 601
German This component is linked to the LXQt Panel/Panel repository. GPL-2.0
Greek This component is linked to the LXQt Panel/Panel repository. GPL-2.0 1 1
Hebrew This component is linked to the LXQt Panel/Panel repository. GPL-2.0
Hungarian This component is linked to the LXQt Panel/Panel repository. GPL-2.0 98% 1 593 1
Indonesian This component is linked to the LXQt Panel/Panel repository. GPL-2.0 98% 1 593
Italian This component is linked to the LXQt Panel/Panel repository. GPL-2.0
Japanese This component is linked to the LXQt Panel/Panel repository. GPL-2.0
Korean This component is linked to the LXQt Panel/Panel repository. GPL-2.0
Latvian This component is linked to the LXQt Panel/Panel repository. GPL-2.0 1
Lithuanian This component is linked to the LXQt Panel/Panel repository. GPL-2.0
Luganda This component is linked to the LXQt Panel/Panel repository. GPL-2.0
Mapudungun This component is linked to the LXQt Panel/Panel repository. GPL-2.0 0% 56 721
Norwegian Bokmål This component is linked to the LXQt Panel/Panel repository. GPL-2.0
Occitan This component is linked to the LXQt Panel/Panel repository. GPL-2.0 98% 1 593 1
Polish This component is linked to the LXQt Panel/Panel repository. GPL-2.0
Portuguese This component is linked to the LXQt Panel/Panel repository. GPL-2.0
Portuguese (Brazil) This component is linked to the LXQt Panel/Panel repository. GPL-2.0
Punjabi This component is linked to the LXQt Panel/Panel repository. GPL-2.0 98% 1 593 1
Russian This component is linked to the LXQt Panel/Panel repository. GPL-2.0
Serbian This component is linked to the LXQt Panel/Panel repository. GPL-2.0 94% 3 5
Sinhala This component is linked to the LXQt Panel/Panel repository. GPL-2.0 0% 56 721
Slovak This component is linked to the LXQt Panel/Panel repository. GPL-2.0 98% 1 593
Spanish This component is linked to the LXQt Panel/Panel repository. GPL-2.0
Turkish This component is linked to the LXQt Panel/Panel repository. GPL-2.0
Ukrainian This component is linked to the LXQt Panel/Panel repository. GPL-2.0 2
Welsh This component is linked to the LXQt Panel/Panel repository. GPL-2.0 92% 4 606 40
Please sign in to see the alerts.
Project website https://github.com/lxqt/lxqt-panel
Instructions for translators

Welcome to the LXQt-Weblate Platform!

For adding language files that are not already present please contact administrators.

Credits for translations (shown in LXQt-About) can be inserted in lxqt/lxqt-about/tree/master/translatorsinfo/translators_XY.info.

Translation process
  • Translations can be made directly.
  • Translation suggestions can be made.
  • Any authenticated user can contribute.
  • The translation uses bilingual files.
Translation license GNU General Public License v2.0 or later
Repository https://github.com/lxqt/lxqt-panel
Repository branch master
Last remote commit Pre-release changes (#2050) 51da9961
User avatar tsujan authored 6 days ago
Repository containing Weblate translations https://translate.lxqt-project.org/git/lxqt-panel/panel/
Filemaskplugin-worldclock/translations/worldclock_*.ts
Number of strings 2,240
Number of words 28,840
Number of characters 206,800
Number of languages 40
Number of source strings 56
Number of source words 721
Number of source characters 5,170
User avatar Vistaus

Translation changed

LXQt Panel / plugin-worldclockDutch

<h1>Custom Date/Time Format Syntax</h1>
<p>A date pattern is a string of characters, where specific strings of characters are replaced with date and time data from a calendar when formatting or used to generate data for a calendar when parsing.</p>
<p>The Date Field Symbol Table below contains the characters used in patterns to show the appropriate formats for a given locale, such as yyyy for the year. Characters may be used multiple times. For example, if y is used for the year, 'yy' might produce '99', whereas 'yyyy' produces '1999'. For most numerical fields, the number of characters specifies the field width. For example, if h is the hour, 'h' might produce '5', but 'hh' produces '05'. For some characters, the count specifies whether an abbreviated or full form should be used, but may have other choices, as given below.</p>
<p>Two single quotes represents a literal single quote, either inside or outside single quotes. Text within single quotes is not interpreted in any way (except for two adjacent single quotes). Otherwise all ASCII letter from a to z and A to Z are reserved as syntax characters, and require quoting if they are to represent literal characters. In addition, certain ASCII punctuation characters may become variable in the future (eg ":" being interpreted as the time separator and '/' as a date separator, and replaced by respective locale-sensitive characters in display).<br /></p>
<table border="1" width="100%" cellpadding="4" cellspacing="0">
<tr><th width="20%">Code</th><th>Meaning</th></tr>
<tr><td>d</td><td>the day as number without a leading zero (1 to 31)</td></tr>
<tr><td>dd</td><td>the day as number with a leading zero (01 to 31)</td></tr>
<tr><td>ddd</td><td>the abbreviated localized day name (e.g. 'Mon' to 'Sun').</td></tr>
<tr><td>dddd</td><td>the long localized day name (e.g. 'Monday' to 'Sunday').</td></tr>
<tr><td>M</td><td>the month as number without a leading zero (1-12)</td></tr>
<tr><td>MM</td><td>the month as number with a leading zero (01-12)</td></tr>
<tr><td>MMM</td><td>the abbreviated localized month name (e.g. 'Jan' to 'Dec').</td></tr>
<tr><td>MMMM</td><td>the long localized month name (e.g. 'January' to 'December').</td></tr>
<tr><td>yy</td><td>the year as two digit number (00-99)</td></tr>
<tr><td>yyyy</td><td>the year as four digit number</td></tr>
<tr><td>h</td><td>the hour without a leading zero (0 to 23 or 1 to 12 if AM/PM display)</td></tr>
<tr><td>hh</td><td>the hour with a leading zero (00 to 23 or 01 to 12 if AM/PM display)</td></tr>
<tr><td>H</td><td>the hour without a leading zero (0 to 23, even with AM/PM display)</td></tr>
<tr><td>HH</td><td>the hour with a leading zero (00 to 23, even with AM/PM display)</td></tr>
<tr><td>m</td><td>the minute without a leading zero (0 to 59)</td></tr>
<tr><td>mm</td><td>the minute with a leading zero (00 to 59)</td></tr>
<tr><td>s</td><td>the second without a leading zero (0 to 59)</td></tr>
<tr><td>ss</td><td>the second with a leading zero (00 to 59)</td></tr>
<tr><td>AP <i>or</i> A</td><td>use AM/PM display. <b>A/AP</b> will be replaced by either "AM" or "PM".</td></tr>
<tr><td>ap <i>or</i> a</td><td>use am/pm display. <b>a/ap</b> will be replaced by either "am" or "pm".</td></tr>
<tr><td>t</td><td>the timezone (e.g. "CEST")</td></tr>
<tr><td>T</td><td>the offset from UTC</td></tr>
<tr><td>TT</td><td>the timezone IANA id</td></tr>
<tr><td>TTT</td><td>the timezone abbreviation</td></tr>
<tr><td>TTTT</td><td>the timezone short display name</td></tr>
<tr><td>TTTTT</td><td>the timezone long display name</td></tr>
<tr><td>TTTTTT</td><td>the timezone custom name. You can change it the 'Time zones' tab of the configuration window</td></tr></table>
<br /><b>Notes:</b> <ul><li>Any characters in the pattern that are not in the ranges of ['a'..'z'] and ['A'..'Z'] will be treated as quoted text. For instance, characters like ':', '.', ' ', '#' and '@' will appear in the resulting time text even they are not enclosed within single quotes. The single quote is used to 'escape' letters. Two single quotes in a row, whether inside or outside a quoted sequence, represent a 'real' single quote.</li><li>Minimal update interval is 1 second. If z or zzz is configured time is shown with the milliseconds fraction, but not updated on millisecond basis (avoiding big performance hit).</li><ul>
<h1>Eigen datum-/tijdopmaak</h1>
<p>Een eigen datumpatroon bestaat uit tekens, waar specifieke tekens vervangen worden door de datum en tijd uit een agenda/kalender of tijdens het verwerken.</p>
<p>Onderstaande tabel bevat tekens die gebruikt kunnen worden in de patronen, zoals ‘yyyy’ om een jaartal te tonen. Tekens kunnen meermaals gebruikt worden. Voorbeeld: als ‘y’ gebruikt wordt om het jaar te tonen, dan toont ‘yy’ ‘99’ en ‘yyyy’ ‘1999’. In de meeste numerieke velden bepaalt het aantal tekens de breedte van de velden. Voorbeeld: als ‘h’ gebruikt wordt om het uur te tonen, dan toont ‘h’ ‘5’ en ‘hh’ ‘05’. Bij sommige getallen geeft het aantal aan of een verkorte of volledige versie dient te worden gebruikt, maar er zijn ook variaties mogelijk.</p>
<p>Twee losse aanhalingstekens zijn gelijk aan één dubbel aanhalingsteken. Tekst binnen enkele aanhalingstekens wordt niet ingelezen (behalve als er twee achter elkaar staan). Verder worden alle ascii-letters van a tot z en A tot Z gebruikt als syntaxistekens en dienen binnen twee losse aanhalingstekens te staan als ze letterlijk als letter dienen te worden gebruikt. Ook kan bepaalde ascii-punctuatie worden gebruikt, bijvoorbeeld ‘:’ om uren en minuten te scheiden en ‘/’ om dagen, maandnamen en jaren te scheiden.<br /></p>
<table border="1" width="100%" cellpadding="4" cellspacing="0">
<tr><th width="20%">Code</th><th>Betekenis</th></tr>
<tr><td>d</td><td>dag zonder voorloopnul (1 tot 31)</td></tr>
<tr><td>dd</td><td>dag met voorloopnul (01 tot 31)</td></tr>
<tr><td>ddd</td><td>verkorte naam van de dag in de eigen taal (bijv. ,‘Ma’ tot ‘Zo’).</td></tr>
<tr><td>dddd</td><td>volledige naam van de dag in de eigen taal (bijv. ‘Maandag’ tot ‘Zondag’).</td></tr>
<tr><td>M</td><td>nummer van de maand zonder voorloopnul (1-12)</td></tr>
<tr><td>MM</td><td>nummer van de maand met voorloopnul (01-12)</td></tr>
<tr><td>MMM</td><td>verkorte naam van de maand in de eigen taal (bijv. ‘Jan’ tot ‘Dec’).</td></tr>
<tr><td>MMMM</td><td>volledige naam van de maand in de eigen taal (bijv. ‘Januari’ tot ‘December’).</td></tr>
<tr><td>yy</td><td>jaar bestaande uit twee getallen (00-99)</td></tr>
<tr><td>yyyy</td><td>jaar bestaande uit vier getallen (2000-2099)</td></tr>
<tr><td>h</td><td>uur zonder voorloopnul (0 tot 23, of 1 tot 12 indien am/pm)</td></tr>
<tr><td>hh</td><td>uur met voorloopnul (00 tot 23, of 01 tot 12 indien am/pm)</td></tr>
<tr><td>H</td><td>uur zonder voorloopnul (0 tot 23, zelfs bij gebruik van am/pm)</td></tr>
<tr><td>HH</td><td>uur met voorloopnul (00 tot 23, zelfs bij gebruik van am/pm)</td></tr>
<tr><td>m</td><td>minuut zonder voorloopnul (0 tot 59)</td></tr>
<tr><td>mm</td><td>minuut met voorloopnul (00 tot 59)</td></tr>
<tr><td>s</td><td>seconde zonder voorloopnul (0 tot 59)</td></tr>
<tr><td>ss</td><td>segonde met voorloopnul (00 tot 59)</td></tr>
<tr><td>AP <i>of</i> A</td><td>AM/PM tonen<b>A/AP</b> wordt vervangen door ‘AM’ of ‘PM’.</td></tr>
<tr><td>ap <i>of</i> a</td><td>am/pm tonen <b>a/ap</b> wordt vervangen door ‘am’ of ‘pm’.</td></tr>
<tr><td>t</td><td>tijdzone (bijv. ‘CEST’)</td></tr>
<tr><td>T</td><td>verschil ten opzichte van UTC</td></tr>
<tr><td>TT</td><td>tijdzone met IANA-id</td></tr>
<tr><td>TTT</td><td>verkorte naam van tijdzone</td></tr>
<tr><td>TTTT</td><td>verkorte naam van tijdzone</td></tr>
<tr><td>TTTTT</td><td>volledige naam van tijdzone</td></tr>
<tr><td>TTTTTT</td><td>eigen tijdzonenaam, op basis van de op het tabblad ‘Tijdzones’ ingestelde naam</td></tr></table>
<br /><b>Let op:</b> <ul><li>tekens buiten buiten de reeksen [‘a’…‘z’] en [‘A’…‘Z’] worden gebruikt om tekst te tonen. Voorbeeld: ‘:’, ‘.’, ‘ ’, ‘#’ en ‘@’ worden als tekst naast de tijd getoond, tenzij ze worden omsloten door enkele aanhalingstekens.</li><li>De minimale bijwerktussenpoos is 1 seconde. Als z of zzz is ingesteld, dan wordt de tijd aangeduid met behulp van milliseconden, maar niet op basis daarvan bijgewerkt in verband met prestatieredenen.</li><ul>
4 days ago
User avatar Vistaus

Translation changed

LXQt Panel / plugin-worldclockDutch

<h1>Custom Date/Time Format Syntax</h1>
<p>A date pattern is a string of characters, where specific strings of characters are replaced with date and time data from a calendar when formatting or used to generate data for a calendar when parsing.</p>
<p>The Date Field Symbol Table below contains the characters used in patterns to show the appropriate formats for a given locale, such as yyyy for the year. Characters may be used multiple times. For example, if y is used for the year, 'yy' might produce '99', whereas 'yyyy' produces '1999'. For most numerical fields, the number of characters specifies the field width. For example, if h is the hour, 'h' might produce '5', but 'hh' produces '05'. For some characters, the count specifies whether an abbreviated or full form should be used, but may have other choices, as given below.</p>
<p>Two single quotes represents a literal single quote, either inside or outside single quotes. Text within single quotes is not interpreted in any way (except for two adjacent single quotes). Otherwise all ASCII letter from a to z and A to Z are reserved as syntax characters, and require quoting if they are to represent literal characters. In addition, certain ASCII punctuation characters may become variable in the future (eg ":" being interpreted as the time separator and '/' as a date separator, and replaced by respective locale-sensitive characters in display).<br /></p>
<table border="1" width="100%" cellpadding="4" cellspacing="0">
<tr><th width="20%">Code</th><th>Meaning</th></tr>
<tr><td>d</td><td>the day as number without a leading zero (1 to 31)</td></tr>
<tr><td>dd</td><td>the day as number with a leading zero (01 to 31)</td></tr>
<tr><td>ddd</td><td>the abbreviated localized day name (e.g. 'Mon' to 'Sun').</td></tr>
<tr><td>dddd</td><td>the long localized day name (e.g. 'Monday' to 'Sunday').</td></tr>
<tr><td>M</td><td>the month as number without a leading zero (1-12)</td></tr>
<tr><td>MM</td><td>the month as number with a leading zero (01-12)</td></tr>
<tr><td>MMM</td><td>the abbreviated localized month name (e.g. 'Jan' to 'Dec').</td></tr>
<tr><td>MMMM</td><td>the long localized month name (e.g. 'January' to 'December').</td></tr>
<tr><td>yy</td><td>the year as two digit number (00-99)</td></tr>
<tr><td>yyyy</td><td>the year as four digit number</td></tr>
<tr><td>h</td><td>the hour without a leading zero (0 to 23 or 1 to 12 if AM/PM display)</td></tr>
<tr><td>hh</td><td>the hour with a leading zero (00 to 23 or 01 to 12 if AM/PM display)</td></tr>
<tr><td>H</td><td>the hour without a leading zero (0 to 23, even with AM/PM display)</td></tr>
<tr><td>HH</td><td>the hour with a leading zero (00 to 23, even with AM/PM display)</td></tr>
<tr><td>m</td><td>the minute without a leading zero (0 to 59)</td></tr>
<tr><td>mm</td><td>the minute with a leading zero (00 to 59)</td></tr>
<tr><td>s</td><td>the second without a leading zero (0 to 59)</td></tr>
<tr><td>ss</td><td>the second with a leading zero (00 to 59)</td></tr>
<tr><td>AP <i>or</i> A</td><td>use AM/PM display. <b>A/AP</b> will be replaced by either "AM" or "PM".</td></tr>
<tr><td>ap <i>or</i> a</td><td>use am/pm display. <b>a/ap</b> will be replaced by either "am" or "pm".</td></tr>
<tr><td>t</td><td>the timezone (e.g. "CEST")</td></tr>
<tr><td>T</td><td>the offset from UTC</td></tr>
<tr><td>TT</td><td>the timezone IANA id</td></tr>
<tr><td>TTT</td><td>the timezone abbreviation</td></tr>
<tr><td>TTTT</td><td>the timezone short display name</td></tr>
<tr><td>TTTTT</td><td>the timezone long display name</td></tr>
<tr><td>TTTTTT</td><td>the timezone custom name. You can change it the 'Time zones' tab of the configuration window</td></tr></table>
<br /><b>Notes:</b> <ul><li>Any characters in the pattern that are not in the ranges of ['a'..'z'] and ['A'..'Z'] will be treated as quoted text. For instance, characters like ':', '.', ' ', '#' and '@' will appear in the resulting time text even they are not enclosed within single quotes. The single quote is used to 'escape' letters. Two single quotes in a row, whether inside or outside a quoted sequence, represent a 'real' single quote.</li><li>Minimal update interval is 1 second. If z or zzz is configured time is shown with the milliseconds fraction, but not updated on millisecond basis (avoiding big performance hit).</li><ul>
<h1>Custom Date/Time Format Syntax</h1>
<p>A date pattern is a string of characters, where specific strings of characters are replaced with date and time data from a calendar when formatting or used to generate data for a calendar when parsing.</p>
<p>The Date Field Symbol Table below contains the characters used in patterns to show the appropriate formats for a given locale, such as yyyy for the year. Characters may be used multiple times. For example, if y is used for the year, 'yy' might produce '99', whereas 'yyyy' produces '1999'. For most numerical fields, the number of characters specifies the field width. For example, if h is the hour, 'h' might produce '5', but 'hh' produces '05'. For some characters, the count specifies whether an abbreviated or full form should be used, but may have other choices, as given below.</p>
<p>Two single quotes represents a literal single quote, either inside or outside single quotes. Text within single quotes is not interpreted in any way (except for two adjacent single quotes). Otherwise all ASCII letter from a to z and A to Z are reserved as syntax characters, and require quoting if they are to represent literal characters. In addition, certain ASCII punctuation characters may become variable in the future (eg ":" being interpreted as the time separator and '/' as a date separator, and replaced by respective locale-sensitive characters in display).<br /></p>
<table border="1" width="100%" cellpadding="4" cellspacing="0">
<tr><th width="20%">Code</th><th>Meaning</th></tr>
<tr><td>d</td><td>the day as number without a leading zero (1 to 31)</td></tr>
<tr><td>dd</td><td>the day as number with a leading zero (01 to 31)</td></tr>
<tr><td>ddd</td><td>the abbreviated localized day name (e.g. 'Mon' to 'Sun').</td></tr>
<tr><td>dddd</td><td>the long localized day name (e.g. 'Monday' to 'Sunday').</td></tr>
<tr><td>M</td><td>the month as number without a leading zero (1-12)</td></tr>
<tr><td>MM</td><td>the month as number with a leading zero (01-12)</td></tr>
<tr><td>MMM</td><td>the abbreviated localized month name (e.g. 'Jan' to 'Dec').</td></tr>
<tr><td>MMMM</td><td>the long localized month name (e.g. 'January' to 'December').</td></tr>
<tr><td>yy</td><td>the year as two digit number (00-99)</td></tr>
<tr><td>yyyy</td><td>the year as four digit number</td></tr>
<tr><td>h</td><td>the hour without a leading zero (0 to 23 or 1 to 12 if AM/PM display)</td></tr>
<tr><td>hh</td><td>the hour with a leading zero (00 to 23 or 01 to 12 if AM/PM display)</td></tr>
<tr><td>H</td><td>the hour without a leading zero (0 to 23, even with AM/PM display)</td></tr>
<tr><td>HH</td><td>the hour with a leading zero (00 to 23, even with AM/PM display)</td></tr>
<tr><td>m</td><td>the minute without a leading zero (0 to 59)</td></tr>
<tr><td>mm</td><td>the minute with a leading zero (00 to 59)</td></tr>
<tr><td>s</td><td>the second without a leading zero (0 to 59)</td></tr>
<tr><td>ss</td><td>the second with a leading zero (00 to 59)</td></tr>
<tr><td>AP <i>or</i> A</td><td>use AM/PM display. <b>A/AP</b> will be replaced by either "AM" or "PM".</td></tr>
<tr><td>ap <i>or</i> a</td><td>use am/pm display. <b>a/ap</b> will be replaced by either "am" or "pm".</td></tr>
<tr><td>t</td><td>the timezone (e.g. "CEST")</td></tr>
<tr><td>T</td><td>the offset from UTC</td></tr>
<tr><td>TT</td><td>the timezone IANA id</td></tr>
<tr><td>TTT</td><td>the timezone abbreviation</td></tr>
<tr><td>TTTT</td><td>the timezone short display name</td></tr>
<tr><td>TTTTT</td><td>the timezone long display name</td></tr>
<tr><td>TTTTTT</td><td>the timezone custom name. You can change it the 'Time zones' tab of the configuration window</td></tr></table>
<br /><b>Notes:</b> <ul><li>Any characters in the pattern that are not in the ranges of ['a'..'z'] and ['A'..'Z'] will be treated as quoted text. For instance, characters like ':', '.', ' ', '#' and '@' will appear in the resulting time text even they are not enclosed within single quotes. The single quote is used to 'escape' letters. Two single quotes in a row, whether inside or outside a quoted sequence, represent a 'real' single quote.</li><li>Minimal update interval is 1 second. If z or zzz is configured time is shown with the milliseconds fraction, but not updated on millisecond basis (avoiding big performance hit)
Eigen datum-/tijdopmaak</h1>
<p>Een eigen datumpatroon bestaat uit tekens, waar specifieke tekens vervangen worden door de datum en tijd uit een agenda/kalender of tijdens het verwerken.</p>
<p>Onderstaande tabel bevat tekens die gebruikt kunnen worden in de patronen, zoals ‘yyyy’ om een jaartal te tonen. Tekens kunnen meermaals gebruikt worden. Voorbeeld: als ‘y’ gebruikt wordt om het jaar te tonen, dan toont ‘yy’ ‘99’ en ‘yyyy’ ‘1999’. In de meeste numerieke velden bepaalt het aantal tekens de breedte van de velden. Voorbeeld: als ‘h’ gebruikt wordt om het uur te tonen, dan toont ‘h’ ‘5’ en ‘hh’ ‘05’. Bij sommige getallen geeft het aantal aan of een verkorte of volledige versie dient te worden gebruikt, maar er zijn ook variaties mogelijk.</p>
<p>Twee losse aanhalingstekens zijn gelijk aan één dubbel aanhalingsteken. Tekst binnen enkele aanhalingstekens wordt niet ingelezen (behalve als er twee achter elkaar staan). Verder worden alle ascii-letters van a tot z en A tot Z gebruikt als syntaxistekens en dienen binnen twee losse aanhalingstekens te staan als ze letterlijk als letter dienen te worden gebruikt. Ook kan bepaalde ascii-punctuatie worden gebruikt, bijvoorbeeld ‘:’ om uren en minuten te scheiden en ‘/’ om dagen, maandnamen en jaren te scheiden.<br /></p>
<table border="1" width="100%" cellpadding="4" cellspacing="0">
<tr><th width="20%">Code</th><th>Betekenis</th></tr>
<tr><td>d</td><td>dag zonder voorloopnul (1 tot 31)</td></tr>
<tr><td>dd</td><td>dag met voorloopnul (01 tot 31)</td></tr>
<tr><td>ddd</td><td>verkorte naam van de dag in de eigen taal (bijv. ,‘Ma’ tot ‘Zo’).</td></tr>
<tr><td>dddd</td><td>volledige naam van de dag in de eigen taal (bijv. ‘Maandag’ tot ‘Zondag’).</td></tr>
<tr><td>M</td><td>nummer van de maand zonder voorloopnul (1-12)</td></tr>
<tr><td>MM</td><td>nummer van de maand met voorloopnul (01-12)</td></tr>
<tr><td>MMM</td><td>verkorte naam van de maand in de eigen taal (bijv. ‘Jan’ tot ‘Dec’).</td></tr>
<tr><td>MMMM</td><td>volledige naam van de maand in de eigen taal (bijv. ‘Januari’ tot ‘December’).</td></tr>
<tr><td>yy</td><td>jaar bestaande uit twee getallen (00-99)</td></tr>
<tr><td>yyyy</td><td>jaar bestaande uit vier getallen (2000-2099)</td></tr>
<tr><td>h</td><td>uur zonder voorloopnul (0 tot 23, of 1 tot 12 indien am/pm)</td></tr>
<tr><td>hh</td><td>uur met voorloopnul (00 tot 23, of 01 tot 12 indien am/pm)</td></tr>
<tr><td>H</td><td>uur zonder voorloopnul (0 tot 23, zelfs bij gebruik van am/pm)</td></tr>
<tr><td>HH</td><td>uur met voorloopnul (00 tot 23, zelfs bij gebruik van am/pm)</td></tr>
<tr><td>m</td><td>minuut zonder voorloopnul (0 tot 59)</td></tr>
<tr><td>mm</td><td>minuut met voorloopnul (00 tot 59)</td></tr>
<tr><td>s</td><td>seconde zonder voorloopnul (0 tot 59)</td></tr>
<tr><td>ss</td><td>segonde met voorloopnul (00 tot 59)</td></tr>
<tr><td>AP <i>of</i> A</td><td>AM/PM tonen<b>A/AP</b> wordt vervangen door ‘AM’ of ‘PM’.</td></tr>
<tr><td>ap <i>of</i> a</td><td>am/pm tonen <b>a/ap</b> wordt vervangen door ‘am’ of ‘pm’.</td></tr>
<tr><td>t</td><td>tijdzone (bijv. ‘CEST’)</td></tr>
<tr><td>T</td><td>verschil ten opzichte van UTC</td></tr>
<tr><td>TT</td><td>tijdzone met IANA-id</td></tr>
<tr><td>TTT</td><td>verkorte naam van tijdzone</td></tr>
<tr><td>TTTT</td><td>verkorte naam van tijdzone</td></tr>
<tr><td>TTTTT</td><td>volledige naam van tijdzone</td></tr>
<tr><td>TTTTTT</td><td>eigen tijdzonenaam, op basis van de op het tabblad ‘Tijdzones’ ingestelde naam</td></tr></table>
<br /><b>Let op:</b> <ul><li>tekens buiten buiten de reeksen [‘a’…‘z’] en [‘A’…‘Z’] worden gebruikt om tekst te tonen. Voorbeeld: ‘:’, ‘.’, ‘ ’, ‘#’ en ‘@’ worden als tekst naast de tijd getoond, tenzij ze worden omsloten door enkele aanhalingstekens.</li><li>De minimale bijwerktussenpoos is 1 seconde. Als z of zzz is ingesteld, dan wordt de tijd aangeduid met behulp van milliseconden, maar niet op basis daarvan bijgewerkt in verband met prestatieredenen
.</li><ul>
4 days ago
User avatar adem4ik

Translation changed

LXQt Panel / plugin-worldclockRussian

<h1>Custom Date/Time Format Syntax</h1>
<p>A date pattern is a string of characters, where specific strings of characters are replaced with date and time data from a calendar when formatting or used to generate data for a calendar when parsing.</p>
<p>The Date Field Symbol Table below contains the characters used in patterns to show the appropriate formats for a given locale, such as yyyy for the year. Characters may be used multiple times. For example, if y is used for the year, 'yy' might produce '99', whereas 'yyyy' produces '1999'. For most numerical fields, the number of characters specifies the field width. For example, if h is the hour, 'h' might produce '5', but 'hh' produces '05'. For some characters, the count specifies whether an abbreviated or full form should be used, but may have other choices, as given below.</p>
<p>Two single quotes represents a literal single quote, either inside or outside single quotes. Text within single quotes is not interpreted in any way (except for two adjacent single quotes). Otherwise all ASCII letter from a to z and A to Z are reserved as syntax characters, and require quoting if they are to represent literal characters. In addition, certain ASCII punctuation characters may become variable in the future (eg ":" being interpreted as the time separator and '/' as a date separator, and replaced by respective locale-sensitive characters in display).<br /></p>
<table border="1" width="100%" cellpadding="4" cellspacing="0">
<tr><th width="20%">Code</th><th>Meaning</th></tr>
<tr><td>d</td><td>the day as number without a leading zero (1 to 31)</td></tr>
<tr><td>dd</td><td>the day as number with a leading zero (01 to 31)</td></tr>
<tr><td>ddd</td><td>the abbreviated localized day name (e.g. 'Mon' to 'Sun').</td></tr>
<tr><td>dddd</td><td>the long localized day name (e.g. 'Monday' to 'Sunday').</td></tr>
<tr><td>M</td><td>the month as number without a leading zero (1-12)</td></tr>
<tr><td>MM</td><td>the month as number with a leading zero (01-12)</td></tr>
<tr><td>MMM</td><td>the abbreviated localized month name (e.g. 'Jan' to 'Dec').</td></tr>
<tr><td>MMMM</td><td>the long localized month name (e.g. 'January' to 'December').</td></tr>
<tr><td>yy</td><td>the year as two digit number (00-99)</td></tr>
<tr><td>yyyy</td><td>the year as four digit number</td></tr>
<tr><td>h</td><td>the hour without a leading zero (0 to 23 or 1 to 12 if AM/PM display)</td></tr>
<tr><td>hh</td><td>the hour with a leading zero (00 to 23 or 01 to 12 if AM/PM display)</td></tr>
<tr><td>H</td><td>the hour without a leading zero (0 to 23, even with AM/PM display)</td></tr>
<tr><td>HH</td><td>the hour with a leading zero (00 to 23, even with AM/PM display)</td></tr>
<tr><td>m</td><td>the minute without a leading zero (0 to 59)</td></tr>
<tr><td>mm</td><td>the minute with a leading zero (00 to 59)</td></tr>
<tr><td>s</td><td>the second without a leading zero (0 to 59)</td></tr>
<tr><td>ss</td><td>the second with a leading zero (00 to 59)</td></tr>
<tr><td>AP <i>or</i> A</td><td>use AM/PM display. <b>A/AP</b> will be replaced by either "AM" or "PM".</td></tr>
<tr><td>ap <i>or</i> a</td><td>use am/pm display. <b>a/ap</b> will be replaced by either "am" or "pm".</td></tr>
<tr><td>t</td><td>the timezone (e.g. "CEST")</td></tr>
<tr><td>T</td><td>the offset from UTC</td></tr>
<tr><td>TT</td><td>the timezone IANA id</td></tr>
<tr><td>TTT</td><td>the timezone abbreviation</td></tr>
<tr><td>TTTT</td><td>the timezone short display name</td></tr>
<tr><td>TTTTT</td><td>the timezone long display name</td></tr>
<tr><td>TTTTTT</td><td>the timezone custom name. You can change it the 'Time zones' tab of the configuration window</td></tr></table>
<br /><b>Notes:</b> <ul><li>Any characters in the pattern that are not in the ranges of ['a'..'z'] and ['A'..'Z'] will be treated as quoted text. For instance, characters like ':', '.', ' ', '#' and '@' will appear in the resulting time text even they are not enclosed within single quotes. The single quote is used to 'escape' letters. Two single quotes in a row, whether inside or outside a quoted sequence, represent a 'real' single quote.</li><li>Minimal update interval is 1 second. If z or zzz is configured time is shown with the milliseconds fraction, but not updated on millisecond basis (avoiding big performance hit).</li><ul>
<h1>Синтаксис пользовательского формата даты/времени</h1>
<p>Шаблон даты — это строка, в которой определённые последовательности символов при форматировании заменяются значениями календарных даты и времени или при синтаксическом анализе используются для раздора соответствующих календарных данных.</p>
<p>Таблица ниже содержит буквы, используемые в шаблонах для отображения соответствующих форматов в данной локали, например, «yyyy» — это год. Отдельные буквы могут повторяться разное количество раз. Например, «y» означает год, тогда значение «yy» может вывести «99», а «yyyy» — «1999». Для большинства числовых полей количество повторяющихся букв определяет ширину поля. Например, «h» — это час, тогда «h» выведет «5», а «hh» — «05». Для некоторых букв количество повторений указывает, следует ли использовать сокращённую или полную форму, но может иметь и другие значения, как указано далее.</p>
<p>Две одинарные кавычки, идущие подряд, дают одну фактическую одинарную кавычку в выводе (как внутри, так и снаружи других кавычек). Если текст заключён внутрь одинарных кавычек, то он никоим образом не интерпретируется (за исключением двух соседних кавычек). В противном случае все латинские буквенные символы таблицы ASCII (от a до z и от A до Z) считаются имеющими специальные значения и требуют обрамления в кавычки, в случае если они подразумеваются непосредственно как буквы. Кроме того, некоторые знаки препинания ASCII также могут стать переменными в будущем (например, «:» может интерпретироваться как разделитель времени, а «/» — как разделитель даты и заменяться соответствующими зависящими от локали символами при отображении).<br/></р>
<table border="1" width="100%" cellpadding="4" cellspacing="0">
<tr><th width="20%">Код</th><th>Значение</th></tr>
<tr><td>d</td><td>день в виде числа без ведущего нуля (от 1 до 31)</td></tr>
<tr><td>dd</td><td>день в виде числа с ведущим нулём (от 01 до 31)</td></tr>
<tr><td>ddd</td><td>сокращённое локализованное название дня (например, от «пн» до «вс»).</td></tr>
<tr><td>dddd</td><td>длинное локализованное название дня (например, от «понедельник» до «воскресенье»).</td></tr>
<tr><td>M</td><td>месяц в виде числа без ведущего нуля (1-12)</td></tr>
<tr><td>MM</td><td>месяц как число с ведущим нулём (01-12)</td></tr>
<tr><td>MMM</td><td>сокращённое локализованное название месяца (например, от «янв» до «дек»).</td></tr>
<tr><td>MMMM</td><td>длинное локализованное название месяца (например, от «январь» до «декабрь»).</td></tr>
<tr><td>yy</td><td>год в виде двузначного числа (00-99)</td></tr>
<tr><td>yyyy</td><td>год в виде четырёхзначного числа</td></tr>
<tr><td>h</td><td>час без ведущего нуля (от 0 до 23 или от 1 до 12, если используется AM/PM)</td></tr>
<tr><td>hh</td><td>час с ведущим нулём (от 00 до 23 или от 01 до 12, если используется AM/PM)</td></tr>
<tr><td>H</td><td>час без ведущего нуля (от 0 до 23, даже при использовании AM/PM)</td></tr>
<tr><td>HH</td><td>час с ведущим нулём (от 00 до 23, даже при использовании AM/PM)</td></tr>
<tr><td>m</td><td>минуты без ведущего нуля (от 0 до 59)</td></tr>
<tr><td>mm</td><td>минуты с ведущим нулём (от 00 до 59)</td></tr>
<tr><td>s</td><td>секунды без ведущего нуля (от 0 до 59)</td></tr>
<tr><td>ss</td><td>секунды с ведущим нулём (от 00 до 59)</td></tr>
<tr><td>AP<i>или</i>A</td><td>использовать формат AM/PM.<b>A/AP</b>будет заменено на «ДП» (до полудня) или «ПП» (после полудня). Конкретные значения могут зависят от локали.</td></tr>
<tr><td>ap<i>или</i>a</td><td>использовать формат am/pm.<b>a/ap</b>будет заменено на «дп» или «пп». Конкретные значения могут зависят от локали.</td></tr>
<tr><td>t</td><td>часовой пояс (например, «MSK»)</td></tr>
<tr><td>T</td><td>смещение относительно UTC (например, «+03:00»)</td></tr>
<tr><td>TT</td><td>идентификатор IANA часового пояса (например «Europe/Moscow»)</td></tr>
<tr><td>TTT</td><td>аббревиатура имени часового пояса (например «MSK»)</td></tr>
<tr><td>TTTT</td><td>краткое имя часового пояса (например «GMT+3»)</td></tr>
<tr><td>TTTTT</td><td>длинное имя часового пояса (например «Москва, стандартное время»)</td></tr>
<tr><td>TTTTTT</td><td>пользовательское имя часового пояса. Вы можете изменить его на вкладке «Часовые пояса»</td></tr>
</table>
<br/><b>Примечания.</b>
<ul>
<li>Любые символы в шаблоне, не входящие в диапазоны ['a' … 'z'] и ['A' … 'Z'] будут рассматриваться как фактический текст. В частности, такие символы, как ':', '.', ' ', '#' и '@', будут отображаться в результирующем тексте, даже если они не заключены в одинарные кавычки. Одиночная кавычка используется для «экранирования» латинских букв. Две одинарные кавычки подряд, внутри или вне других кавычек, представляют собой «настоящие» одинарные кавычки.</li>
<li>Минимальный интервалпериод обновления составляетравен 1 секундае. Если z или zzz включены в формат, то время будет отображаться с миллисекундами, но не обновляется каждую миллисекунду (во избежание значительного снижения производительности).</li>
</ul>
6 days ago
New contributor 6 days ago
User avatar Nixx

Translation changed

LXQt Panel / plugin-worldclockPolish

Offset from UTC
Różnica względem URTC
a month ago
User avatar Nixx

New contributor

LXQt Panel / plugin-worldclockPolish

New contributor a month ago
User avatar standreas

Suggestion accepted

LXQt Panel / plugin-worldclockItalian

<h1>Custom Date/Time Format Syntax</h1>
<p>A date pattern is a string of characters, where specific strings of characters are replaced with date and time data from a calendar when formatting or used to generate data for a calendar when parsing.</p>
<p>The Date Field Symbol Table below contains the characters used in patterns to show the appropriate formats for a given locale, such as yyyy for the year. Characters may be used multiple times. For example, if y is used for the year, 'yy' might produce '99', whereas 'yyyy' produces '1999'. For most numerical fields, the number of characters specifies the field width. For example, if h is the hour, 'h' might produce '5', but 'hh' produces '05'. For some characters, the count specifies whether an abbreviated or full form should be used, but may have other choices, as given below.</p>
<p>Two single quotes represents a literal single quote, either inside or outside single quotes. Text within single quotes is not interpreted in any way (except for two adjacent single quotes). Otherwise all ASCII letter from a to z and A to Z are reserved as syntax characters, and require quoting if they are to represent literal characters. In addition, certain ASCII punctuation characters may become variable in the future (eg ":" being interpreted as the time separator and '/' as a date separator, and replaced by respective locale-sensitive characters in display).<br /></p>
<table border="1" width="100%" cellpadding="4" cellspacing="0">
<tr><th width="20%">Code</th><th>Meaning</th></tr>
<tr><td>d</td><td>the day as number without a leading zero (1 to 31)</td></tr>
<tr><td>dd</td><td>the day as number with a leading zero (01 to 31)</td></tr>
<tr><td>ddd</td><td>the abbreviated localized day name (e.g. 'Mon' to 'Sun').</td></tr>
<tr><td>dddd</td><td>the long localized day name (e.g. 'Monday' to 'Sunday').</td></tr>
<tr><td>M</td><td>the month as number without a leading zero (1-12)</td></tr>
<tr><td>MM</td><td>the month as number with a leading zero (01-12)</td></tr>
<tr><td>MMM</td><td>the abbreviated localized month name (e.g. 'Jan' to 'Dec').</td></tr>
<tr><td>MMMM</td><td>the long localized month name (e.g. 'January' to 'December').</td></tr>
<tr><td>yy</td><td>the year as two digit number (00-99)</td></tr>
<tr><td>yyyy</td><td>the year as four digit number</td></tr>
<tr><td>h</td><td>the hour without a leading zero (0 to 23 or 1 to 12 if AM/PM display)</td></tr>
<tr><td>hh</td><td>the hour with a leading zero (00 to 23 or 01 to 12 if AM/PM display)</td></tr>
<tr><td>H</td><td>the hour without a leading zero (0 to 23, even with AM/PM display)</td></tr>
<tr><td>HH</td><td>the hour with a leading zero (00 to 23, even with AM/PM display)</td></tr>
<tr><td>m</td><td>the minute without a leading zero (0 to 59)</td></tr>
<tr><td>mm</td><td>the minute with a leading zero (00 to 59)</td></tr>
<tr><td>s</td><td>the second without a leading zero (0 to 59)</td></tr>
<tr><td>ss</td><td>the second with a leading zero (00 to 59)</td></tr>
<tr><td>AP <i>or</i> A</td><td>use AM/PM display. <b>A/AP</b> will be replaced by either "AM" or "PM".</td></tr>
<tr><td>ap <i>or</i> a</td><td>use am/pm display. <b>a/ap</b> will be replaced by either "am" or "pm".</td></tr>
<tr><td>t</td><td>the timezone (e.g. "CEST")</td></tr>
<tr><td>T</td><td>the offset from UTC</td></tr>
<tr><td>TT</td><td>the timezone IANA id</td></tr>
<tr><td>TTT</td><td>the timezone abbreviation</td></tr>
<tr><td>TTTT</td><td>the timezone short display name</td></tr>
<tr><td>TTTTT</td><td>the timezone long display name</td></tr>
<tr><td>TTTTTT</td><td>the timezone custom name. You can change it the 'Time zones' tab of the configuration window</td></tr></table>
<br /><b>Notes:</b> <ul><li>Any characters in the pattern that are not in the ranges of ['a'..'z'] and ['A'..'Z'] will be treated as quoted text. For instance, characters like ':', '.', ' ', '#' and '@' will appear in the resulting time text even they are not enclosed within single quotes. The single quote is used to 'escape' letters. Two single quotes in a row, whether inside or outside a quoted sequence, represent a 'real' single quote.</li><li>Minimal update interval is 1 second. If z or zzz is configured time is shown with the milliseconds fraction, but not updated on millisecond basis (avoiding big performance hit).</li><ul>
<h1>Sintassi personalizzata per Data e Ora</h1>
<p>Un modello di data è una stringa di caratteri, in cui caratteri specifici vengono sostituite con quelle di data e ora da un calendario durante la formattazione.</p>
<p>La Tabella dei Simboli del Campo Data seguente contiene i caratteri utilizzati nei modelli per mostrare i formati appropriati per una data locale, ad esempio aaaa per l'anno. I caratteri possono essere utilizzati più volte. Ad esempio, se y è utilizzato per l'anno, "yy" potrebbe produrre "99", mentre "yyyy" restituirà "1999". Per la maggior parte dei campi numerici, il numero di caratteri specifica la larghezza del campo. Ad esempio, se h è l'ora, "h" potrebbe produrre "5", ma "hh" restituirà "05". Per alcuni caratteri, il conteggio specifica se deve essere utilizzata una forma abbreviata o completa, ma può avere altre scelte, come indicato di seguito.</p>
<p>Due virgolette singole rappresentano una virgoletta singola letterale, all'interno o all'esterno di virgolette singole. Il testo all'interno di virgolette singole non viene interpretato in alcun modo (ad eccezione di due virgolette singole adiacenti). Altrimenti tutte le lettere ASCII dalla a alla z dalla A alla Z sono riservate come caratteri di sintassi e richiedono la citazione se devono rappresentare caratteri letterali. Inoltre, alcuni caratteri di punteggiatura ASCII potrebbero diventare variabili in futuro (ad es. ":" Interpretato come separatore dell'ora e "/" come separatore della data e sostituito dai rispettivi caratteri sensibili alle impostazioni internazionali sul display).<br /></p>
<table border="1" width="100%" cellpadding="4" cellspacing="0">
<tr><th width="20%">Codice</th><th>Significato</th></tr>
<tr><td>d</td><td>Il giorno come numero senza zero iniziale (1 a 31)</td></tr>
<tr><td>dd</td><td>Il giorno come numero con uno zero iniziale (01 a 31)</td></tr>
<tr><td>ddd</td><td>Il nome abbreviato localizzato (p.e. 'Lun' a 'Dom').</td></tr>
<tr><td>dddd</td><td>Il nome completo localizzato (p.e. 'Lunedì' a 'Domenica').</td></tr>
<tr><td>M</td><td>Il mese come numero senza zero iniziale (1-12)</td></tr>
<tr><td>MM</td><td>Il mese come numero con uno zero iniziale (01-12)</td></tr>
<tr><td>MMM</td><td>Il nome abbreviato del mese localizzato (p.e. 'Gen' a 'Dec')</td></tr>
<tr><td>MMMM</td><td>In nome completo del mese localizzato (p.e. 'Gennaio' a 'Dicembre')</td></tr>
<tr><td>yy</td><td>L'anno in due numeri (00-99)</td></tr>
<tr><td>yyyy</td><td>L'anno in quattro numeri</td></tr>
<tr><td>h</td><td>L'ora senza zero iniziale (0 a 23 o 1 a 12 con AM/PM)</td></tr>
<tr><td>hh</td><td>L'ora con uno zero iniziale (00 a 23 o 01 a 12 con AM/PM)</td></tr>
<tr><td>H</td><td>L'ora senza zero iniziale (0 a 23, anche con AM/PM)</td></tr>
<tr><td>HH</td><td>L'ora con uno zero iniziale (00 to 23, anche con AM/PM)</td></tr>
<tr><td>m</td><td>Il minuto senza zero iniziale (0 a 59)</td></tr>
<tr><td>mm</td><td>Il minuto con uno zero iniziale (00 a 59)</td></tr>
<tr><td>s</td><td>Il secondo senza uno zero iniziale (0 a 59)</td></tr>
<tr><td>ss</td><td>Il secondo secondo con uno zero iniziale (00 a 59)</td></tr>
<tr><td>AP <i>o</i> A</td><td>Usa visualizzazione AM/PM. <b>A/AP</b> sarà sostituito con "AM" o "PM"</td></tr>
<tr><td>ap <i>o</i> a</td><td>Usa visualizzazione am/pm. <b>a/ap</b> sarà sostituito con "am" o "pm"</td></tr>
<tr><td>t</td><td>Il fuso orario (p.e. "CEST")</td></tr>
<tr><td>T</td><td>La differenza a UTC</td></tr>
<tr><td>TT</td><td>L'id del fuso orario IANA</td></tr>
<tr><td>TTT</td><td>L'abbreviazione del fuso orario</td></tr>
<tr><td>TTTT</td><td>Il nome abbreviato del fuso orario</td></tr>
<tr><td>TTTTT</td><td>Il nome completo del fuso orario</td></tr>
<tr><td>TTTTTT</td><td>Il nome personalizzato del fuso orario. E' possibile modificarlo nella scheda 'Fusi orari' nella finestra di configurazione.</td></tr></table>
<br /><b>Note:</b> <ul><li>Qualsiasi carattere nel modello che non si trova negli intervalli di ['a' .. 'z'] e ['A' .. 'Z'] verrà trattato come testo citato. Ad esempio, caratteri come ":", ".", "", "#" e "@" appariranno nel orologio anche se non sono racchiusi tra virgolette singole. La virgoletta singola viene utilizzata per "sfuggire" alle lettere. Due virgolette singole di seguito, sia all'interno che all'esterno di una sequenza tra virgolette, rappresentano una virgoletta singola "reale".</li><li>L'intervallo di aggiornamento minimo è 1 secondo. Se è configurato z or zzz l'ora viene mostrata con la frazione di millisecondi ma non verrà aggiornata in questo ritmo per (evitando un grande impatto sulle prestazioni).</li><ul>
a month ago
User avatar None

Suggestion added

LXQt Panel / plugin-worldclockItalian

<h1>Custom Date/Time Format Syntax</h1>
<p>A date pattern is a string of characters, where specific strings of characters are replaced with date and time data from a calendar when formatting or used to generate data for a calendar when parsing.</p>
<p>The Date Field Symbol Table below contains the characters used in patterns to show the appropriate formats for a given locale, such as yyyy for the year. Characters may be used multiple times. For example, if y is used for the year, 'yy' might produce '99', whereas 'yyyy' produces '1999'. For most numerical fields, the number of characters specifies the field width. For example, if h is the hour, 'h' might produce '5', but 'hh' produces '05'. For some characters, the count specifies whether an abbreviated or full form should be used, but may have other choices, as given below.</p>
<p>Two single quotes represents a literal single quote, either inside or outside single quotes. Text within single quotes is not interpreted in any way (except for two adjacent single quotes). Otherwise all ASCII letter from a to z and A to Z are reserved as syntax characters, and require quoting if they are to represent literal characters. In addition, certain ASCII punctuation characters may become variable in the future (eg ":" being interpreted as the time separator and '/' as a date separator, and replaced by respective locale-sensitive characters in display).<br /></p>
<table border="1" width="100%" cellpadding="4" cellspacing="0">
<tr><th width="20%">Code</th><th>Meaning</th></tr>
<tr><td>d</td><td>the day as number without a leading zero (1 to 31)</td></tr>
<tr><td>dd</td><td>the day as number with a leading zero (01 to 31)</td></tr>
<tr><td>ddd</td><td>the abbreviated localized day name (e.g. 'Mon' to 'Sun').</td></tr>
<tr><td>dddd</td><td>the long localized day name (e.g. 'Monday' to 'Sunday').</td></tr>
<tr><td>M</td><td>the month as number without a leading zero (1-12)</td></tr>
<tr><td>MM</td><td>the month as number with a leading zero (01-12)</td></tr>
<tr><td>MMM</td><td>the abbreviated localized month name (e.g. 'Jan' to 'Dec').</td></tr>
<tr><td>MMMM</td><td>the long localized month name (e.g. 'January' to 'December').</td></tr>
<tr><td>yy</td><td>the year as two digit number (00-99)</td></tr>
<tr><td>yyyy</td><td>the year as four digit number</td></tr>
<tr><td>h</td><td>the hour without a leading zero (0 to 23 or 1 to 12 if AM/PM display)</td></tr>
<tr><td>hh</td><td>the hour with a leading zero (00 to 23 or 01 to 12 if AM/PM display)</td></tr>
<tr><td>H</td><td>the hour without a leading zero (0 to 23, even with AM/PM display)</td></tr>
<tr><td>HH</td><td>the hour with a leading zero (00 to 23, even with AM/PM display)</td></tr>
<tr><td>m</td><td>the minute without a leading zero (0 to 59)</td></tr>
<tr><td>mm</td><td>the minute with a leading zero (00 to 59)</td></tr>
<tr><td>s</td><td>the second without a leading zero (0 to 59)</td></tr>
<tr><td>ss</td><td>the second with a leading zero (00 to 59)</td></tr>
<tr><td>AP <i>or</i> A</td><td>use AM/PM display. <b>A/AP</b> will be replaced by either "AM" or "PM".</td></tr>
<tr><td>ap <i>or</i> a</td><td>use am/pm display. <b>a/ap</b> will be replaced by either "am" or "pm".</td></tr>
<tr><td>t</td><td>the timezone (e.g. "CEST")</td></tr>
<tr><td>T</td><td>the offset from UTC</td></tr>
<tr><td>TT</td><td>the timezone IANA id</td></tr>
<tr><td>TTT</td><td>the timezone abbreviation</td></tr>
<tr><td>TTTT</td><td>the timezone short display name</td></tr>
<tr><td>TTTTT</td><td>the timezone long display name</td></tr>
<tr><td>TTTTTT</td><td>the timezone custom name. You can change it the 'Time zones' tab of the configuration window</td></tr></table>
<br /><b>Notes:</b> <ul><li>Any characters in the pattern that are not in the ranges of ['a'..'z'] and ['A'..'Z'] will be treated as quoted text. For instance, characters like ':', '.', ' ', '#' and '@' will appear in the resulting time text even they are not enclosed within single quotes. The single quote is used to 'escape' letters. Two single quotes in a row, whether inside or outside a quoted sequence, represent a 'real' single quote.</li><li>Minimal update interval is 1 second. If z or zzz is configured time is shown with the milliseconds fraction, but not updated on millisecond basis (avoiding big performance hit).</li><ul>
<h1>Sintassi personalizzata per Data e Ora</h1>
<p>Un modello di data è una stringa di caratteri, in cui caratteri specifici vengono sostituite con quelle di data e ora da un calendario durante la formattazione.</p>
<p>La Tabella dei Simboli del Campo Data seguente contiene i caratteri utilizzati nei modelli per mostrare i formati appropriati per una data locale, ad esempio aaaa per l'anno. I caratteri possono essere utilizzati più volte. Ad esempio, se y è utilizzato per l'anno, "yy" potrebbe produrre "99", mentre "yyyy" restituirà "1999". Per la maggior parte dei campi numerici, il numero di caratteri specifica la larghezza del campo. Ad esempio, se h è l'ora, "h" potrebbe produrre "5", ma "hh" restituirà "05". Per alcuni caratteri, il conteggio specifica se deve essere utilizzata una forma abbreviata o completa, ma può avere altre scelte, come indicato di seguito.</p>
<p>Due virgolette singole rappresentano una virgoletta singola letterale, all'interno o all'esterno di virgolette singole. Il testo all'interno di virgolette singole non viene interpretato in alcun modo (ad eccezione di due virgolette singole adiacenti). Altrimenti tutte le lettere ASCII dalla a alla z dalla A alla Z sono riservate come caratteri di sintassi e richiedono la citazione se devono rappresentare caratteri letterali. Inoltre, alcuni caratteri di punteggiatura ASCII potrebbero diventare variabili in futuro (ad es. ":" Interpretato come separatore dell'ora e "/" come separatore della data e sostituito dai rispettivi caratteri sensibili alle impostazioni internazionali sul display).<br /></p>
<table border="1" width="100%" cellpadding="4" cellspacing="0">
<tr><th width="20%">Codice</th><th>Significato</th></tr>
<tr><td>d</td><td>Il giorno come numero senza zero iniziale (1 a 31)</td></tr>
<tr><td>dd</td><td>Il giorno come numero con uno zero iniziale (01 a 31)</td></tr>
<tr><td>ddd</td><td>Il nome abbreviato localizzato (p.e. 'Lun' a 'Dom').</td></tr>
<tr><td>dddd</td><td>Il nome completo localizzato (p.e. 'Lunedì' a 'Domenica').</td></tr>
<tr><td>M</td><td>Il mese come numero senza zero iniziale (1-12)</td></tr>
<tr><td>MM</td><td>Il mese come numero con uno zero iniziale (01-12)</td></tr>
<tr><td>MMM</td><td>Il nome abbreviato del mese localizzato (p.e. 'Gen' a 'Dec')</td></tr>
<tr><td>MMMM</td><td>In nome completo del mese localizzato (p.e. 'Gennaio' a 'Dicembre')</td></tr>
<tr><td>yy</td><td>L'anno in due numeri (00-99)</td></tr>
<tr><td>yyyy</td><td>L'anno in quattro numeri</td></tr>
<tr><td>h</td><td>L'ora senza zero iniziale (0 a 23 o 1 a 12 con AM/PM)</td></tr>
<tr><td>hh</td><td>L'ora con uno zero iniziale (00 a 23 o 01 a 12 con AM/PM)</td></tr>
<tr><td>H</td><td>L'ora senza zero iniziale (0 a 23, anche con AM/PM)</td></tr>
<tr><td>HH</td><td>L'ora con uno zero iniziale (00 to 23, anche con AM/PM)</td></tr>
<tr><td>m</td><td>Il minuto senza zero iniziale (0 a 59)</td></tr>
<tr><td>mm</td><td>Il minuto con uno zero iniziale (00 a 59)</td></tr>
<tr><td>s</td><td>Il secondo senza uno zero iniziale (0 a 59)</td></tr>
<tr><td>ss</td><td>Il secondo con uno zero iniziale (00 a 59)</td></tr>
<tr><td>AP <i>o</i> A</td><td>Usa visualizzazione AM/PM. <b>A/AP</b> sarà sostituito con "AM" o "PM"</td></tr>
<tr><td>ap <i>o</i> a</td><td>Usa visualizzazione am/pm. <b>a/ap</b> sarà sostituito con "am" o "pm"</td></tr>
<tr><td>t</td><td>Il fuso orario (p.e. "CEST")</td></tr>
<tr><td>T</td><td>La differenza a UTC</td></tr>
<tr><td>TT</td><td>L'id del fuso orario IANA</td></tr>
<tr><td>TTT</td><td>L'abbreviazione del fuso orario</td></tr>
<tr><td>TTTT</td><td>Il nome abbreviato del fuso orario</td></tr>
<tr><td>TTTTT</td><td>Il nome completo del fuso orario</td></tr>
<tr><td>TTTTTT</td><td>Il nome personalizzato del fuso orario. E' possibile modificarlo nella scheda 'Fusi orari' nella finestra di configurazione.</td></tr></table>
<br /><b>Note:</b> <ul><li>Qualsiasi carattere nel modello che non si trova negli intervalli di ['a' .. 'z'] e ['A' .. 'Z'] verrà trattato come testo citato. Ad esempio, caratteri come ":", ".", "", "#" e "@" appariranno nel orologio anche se non sono racchiusi tra virgolette singole. La virgoletta singola viene utilizzata per "sfuggire" alle lettere. Due virgolette singole di seguito, sia all'interno che all'esterno di una sequenza tra virgolette, rappresentano una virgoletta singola "reale".</li><li>L'intervallo di aggiornamento minimo è 1 secondo. Se è configurato z or zzz l'ora viene mostrata con la frazione di millisecondi ma non verrà aggiornata in questo ritmo per (evitando un grande impatto sulle prestazioni).</li><ul>
a month ago
Component unlocked 3 months ago
Component locked 3 months ago
Browse all component changes

Daily activity

Daily activity

Weekly activity

Weekly activity
Got it
LXQt Weblate is using cookies. More information