Translation status

56 Strings 100% Translate
721 Words 100%

Other components

Component Translated Untranslated Untranslated words Checks Suggestions Comments
plugin-qeyes This component is linked to the LXQt Panel/Panel repository. This translation does not yet exist. GPL-2.0 0%
plugin-qeyes (Name & Description) This component is linked to the LXQt Panel/Panel repository. This translation does not yet exist. GPL-2.0 0%
plugin-colorpicker This component is linked to the LXQt Panel/Panel repository. This translation does not yet exist. GPL-2.0 0%
plugin-fancymenu (Name & Description) This component is linked to the LXQt Panel/Panel repository. This translation does not yet exist. GPL-2.0 0%
plugin-fancymenu This component is linked to the LXQt Panel/Panel repository. GPL-2.0 70% 13 35
plugin-showdesktop This component is linked to the LXQt Panel/Panel repository. GPL-2.0
plugin-mount This component is linked to the LXQt Panel/Panel repository. GPL-2.0
Panel GPL-2.0 3
plugin-mainmenu This component is linked to the LXQt Panel/Panel repository. GPL-2.0
plugin-networkmonitor This component is linked to the LXQt Panel/Panel repository. GPL-2.0

Translation Information

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 2 days ago
Repository containing Weblate translations https://translate.lxqt-project.org/git/lxqt-panel/panel/
Filemaskplugin-worldclock/translations/worldclock_*.ts
Translation file plugin-worldclock/translations/worldclock_ja.ts
User avatar None

Resource update

LXQt Panel / plugin-worldclockJapanese

Resource update 2 years ago
User avatar ito32bit

Translation uploaded

LXQt Panel / plugin-worldclockJapanese

<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>
2 つの連続した一重引用符は、文字内か外側の 1 つの一重引用符を表します。
一重引用符内のテキストは、変換されません(隣接する 2 つの引用符を除く)。
それ以外の場合、 a から z および A から Z までの全ての ASCII 文字は形式の文字として予約されており、文字自身を表す場合は引用符が必要です。
さらに、特定の ASCII 記号は将来変更になる可能性があります(例: ":" は時刻の区切り文字として、 '/' は日付の区切り文字としてみられ、それぞれのロケール依存文字に置き換えられます)。
<br /></p>
<table border="1" width="100%" cellpadding="4" cellspacing="0">
<tr><th width="20%">記号</th><th>意味</th></tr>
<tr><td> d</td><td>日(1〜31)先頭に 0 を付けない数字</td></tr>
<tr><td>dd</td><td>日(01〜31)先頭に 0 を付けた数字</td></tr>
<tr><td>ddd</td><td>ローカライズされた曜日の短縮名(例: '月'~'日')。</td></tr>
<tr><td>dddd</td><td>ローカライズされた長い曜日名(例: '月曜日'~'日曜日')。</td></tr>
<tr><td> M </ td><td>月(1〜12)先頭に 0 を付けない数字</td></tr>
<tr><td> MM </ td><td>月(01〜12)先頭に 0 を付けた数字</td></tr>
<tr><td> MMM</td><td>ローカライズされた月の省略名(例: '1月'~'12月')。</td></tr>
<tr><td> MMMM</td><td>ローカライズされた長い月の名前(例: '1月'~'12月')。(訳注: 日本語では MMM と MMMM は同じ表示のようです)</td></tr>
<tr><td>yy</td><td>年 2 桁の数字(00〜99)</td></tr>
<tr><td> yyyy</td><td>年 4 桁の数字</td></tr>
<tr><td>h</td><td>時刻(0〜23、または午前/午後を表示する場合は 1〜12)先頭に 0 なし</td></tr>
<tr><td>hh</td><td>時刻(00〜23、または午前/午後を表示する場合は 01〜12)先頭に 0 が付く</td></tr>
<tr><td>H</td><td>時刻(午前/午後の表示でも 0〜23)先頭に 0 なし</td></tr>
<tr><td>HH</td><td>時刻(午前/午後の表示でも 00〜23)先頭に 0 が付く</td></tr>
<tr><td> m</td><td>分(0〜59)先頭に 0 なし</td></tr>
<tr><td> mm</td><td>分(00~59)先頭に 0 が付く</td></tr>
<tr><td> s</td><td>秒(0〜59)先頭に 0 なし</td></tr>
<tr><td>ss</td><td>秒(00〜59)先頭に 0 が付く</td></tr>
<tr><td> AP <i>または</i> A </td><td>午前/午後の表示に使用します。 <b> A/AP </b>は "AM" または "PM" に置き換えられます。</td></tr>
<tr><td> ap <i>または</i> a </td><td>午前/午後の表示に使用します。 <b> a/ap </b>は "am" または "pm" に置き換えられます。(訳注: 日本語では AP と ap はどちらも"午前"または"午後"に置き換えられるようです)</td></tr>
<tr><td>t</td><td>タイムゾーン(例: "JST")</td></tr>
<tr><td> T</td><td> UTC (世界協定時) からの時差</td></tr>
<tr><td>TT</td><td>タイムゾーンの IANA ID </td></tr>
<tr><td>TTT</td><td>タイムゾーンの省略形</td></tr>
<tr><td>TTTT</td><td>タイムゾーンの短い表示名</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'] の範囲内にない文字は引用テキストとして扱われます。
たとえば、':', '.', ' ', '#', '@' などの文字は、一重引用符 (') で囲まれていなくても、結果のテキストに表示されます。
一重引用符 (') は、文字を<b>エスケープする</b>ために使用されます。行内の 2 つの連続した一重引用符は、引用符付き文字列の内側でも外側でも、<b>実際の</b> 1 つの一重引用符を表します。
</li><li>
最小の更新間隔は 1 秒です。
z または zzz が設定されている場合、時刻はミリ秒単位で表示されますが、ミリ秒単位では更新されません(大きなパフォーマンスの低下を避けるため)。
</li><ul>
3 years ago
User avatar ito32bit

Translation uploaded

LXQt Panel / plugin-worldclockJapanese

<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>
2 つの連続した一重引用符は、文字内か外側の 1 つの一重引用符を表します。
一重引用符内のテキストは、変換されません(隣接する 2 つの引用符を除く)。
それ以外の場合、 a から z および A から Z までの全ての ASCII 文字は形式の文字として予約されており、文字自身を表す場合は引用符が必要です。
さらに、特定の ASCII 記号は将来変更になる可能性があります(例: ":" は時刻の区切り文字として、 '/' は日付の区切り文字としてみられ、それぞれのロケール依存文字に置き換えられます)。
<br /></p>
<table border="1" width="100%" cellpadding="4" cellspacing="0">
<tr><th width="20%">記号</th><th>意味</th></tr>
<tr><td> d</td><td>日(1〜31)先頭に 0 を付けない数字</td></tr>
<tr><td>dd</td><td>日(01〜31)先頭に 0 を付けた数字</td></tr>
<tr><td>ddd</td><td>ローカライズされた曜日の短縮名(例: '月'~'日')。</td></tr>
<tr><td>dddd</td><td>ローカライズされた長い曜日名(例: '月曜日'~'日曜日')。</td></tr>
<tr><td> M </ td><td>月(1〜12)先頭に 0 を付けない数字</td></tr>
<tr><td> MM </ td><td>月(01〜12)先頭に 0 を付けた数字</td></tr>
<tr><td> MMM</td><td>ローカライズされた月の省略名(例: '1月'~'12月')。</td></tr>
<tr><td> MMMM</td><td>ローカライズされた長い月の名前(例: '1月'~'12月')。(訳注: 日本語では MMM と MMMM は同じ表示のようです)</td></tr>
<tr><td>yy</td><td>年 2 桁の数字(00〜99)</td></tr>
<tr><td> yyyy</td><td>年 4 桁の数字</td></tr>
<tr><td>h</td><td>時刻(0〜23、または午前/午後を表示する場合は 1〜12)先頭に 0 なし</td></tr>
<tr><td>hh</td><td>時刻(00〜23、または午前/午後を表示する場合は 01〜12)先頭に 0 が付く</td></tr>
<tr><td>H</td><td>時刻(午前/午後の表示でも 0〜23)先頭に 0 なし</td></tr>
<tr><td>HH</td><td>時刻(午前/午後の表示でも 00〜23)先頭に 0 が付く</td></tr>
<tr><td> m</td><td>分(0〜59)先頭に 0 なし</td></tr>
<tr><td> mm</td><td>分(00~59)先頭に 0 が付く</td></tr>
<tr><td> s</td><td>秒(0〜59)先頭に 0 なし</td></tr>
<tr><td>ss</td><td>秒(00〜59)先頭に 0 が付く</td></tr>
<tr><td> AP <i>または</i> A </td><td>午前/午後の表示に使用します。 <b> A/AP </b>は "AM" または "PM" に置き換えられます。</td></tr>
<tr><td> ap <i>または</i> a </td><td>午前/午後の表示に使用します。 <b> a/ap </b>は "am" または "pm" に置き換えられます。(訳注: 日本語では AP と ap はどちらも"午前"または"午後"に置き換えられるようです)</td></tr>
<tr><td>t</td><td>タイムゾーン(例: "JST")</td></tr>
<tr><td> T</td><td> UTC (世界協定時) からの時差</td></tr>
<tr><td>TT</td><td>タイムゾーンの IANA ID </td></tr>
<tr><td>TTT</td><td>タイムゾーンの省略形</td></tr>
<tr><td>TTTT</td><td>タイムゾーンの短い表示名</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'] の範囲内にない文字は引用テキストとして扱われます。
たとえば、':', '.', ' ', '#', '@' などの文字は、一重引用符 (') で囲まれていなくても、結果のテキストに表示されます。
一重引用符 (') は、文字を<b>エスケープする</b>ために使用されます。行内の 2 つの連続した一重引用符は、引用符付き文字列の内側でも外側でも、<b>実際の</b> 1 つの一重引用符を表します。
</li><li>
最小の更新間隔は 1 秒です。
z または zzz が設定されている場合、時刻はミリ秒単位で表示されますが、ミリ秒単位では更新されません(大きなパフォーマンスの低下を避けるため)。
</li><ul>
3 years ago
User avatar ito32bit

Translation uploaded

LXQt Panel / plugin-worldclockJapanese

World Clock Manual Format Configuration
世界時計 手動形式の設定
3 years ago
User avatar ito32bit

Translation changed

LXQt Panel / plugin-worldclockJapanese

&Customise ...
指定する(&C) ...
3 years ago
User avatar ito32bit

Translation changed

LXQt Panel / plugin-worldclockJapanese

<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>
2 つの連続した一重引用符は、文字内か外側の 1 つの一重引用符を表します。
一重引用符内のテキストは、変換されません(隣接する 2 つの引用符を除く)。
それ以外の場合、 a から z および A から Z までの全ての ASCII 文字は形式の文字として予約されており、文字自身を表す場合は引用符が必要です。
さらに、特定の ASCII 記号は将来変更になる可能性があります(例: ":" は時刻の区切り文字として、 '/' は日付の区切り文字としてみられ、それぞれのロケール依存文字に置き換えられます)。
<br /></p>
<table border="1" width="100%" cellpadding="4" cellspacing="0">
<tr><th width="20%">記号</th><th>意味</th></tr>
<tr><td> d</td> <td>日(1〜31)先頭に 0 を付けない数字</td> </tr>
<tr><td>dd</td> <td>日(01〜31)先頭に 0 を付けた数字</td> </tr>
<tr><td>ddd</td> <td>ローカライズされた曜日の短縮名(例: '月'~'日')。</td> </tr>
<tr><td>dddd</td> <td>ローカライズされた長い曜日名(例: '月曜日'~'日曜日')。</td> </tr>
<tr><td> M </ td> <td>月(1〜12)先頭に 0 を付けない数字</td> </tr>
<tr><td> MM </ td> <td>月(01〜12)先頭に 0 を付けた数字</td> </tr>
<tr><td> MMM</td> <td>ローカライズされた月の省略名(例: '1月'~'12月')。</td> </tr>
<tr><td> MMMM</td> <td>ローカライズされた長い月の名前(例: '1月'~'12月')。(訳注: 日本語では MMM と MMMM は同じ表示のようです)</td> </tr>
<tr><td>yy</td> <td>年 2 桁の数字(00〜99)</td> </tr>
<tr><td> yyyy</td> <td>年 4 桁の数字</td> </tr>
<tr><td>h</td> <td>時刻(0〜23、または午前/午後を表示する場合は 1〜12)先頭に 0 なし</td> </tr>
<tr><td>hh</td> <td>時刻(00〜23、または午前/午後を表示する場合は 01〜12)先頭に 0 が付く</td> </tr>
<tr><td>H</td> <td>時刻(午前/午後の表示でも 0〜23)先頭に 0 なし</td> </tr>
<tr><td>HH</td> <td>時刻(午前/午後の表示でも 00〜23)先頭に 0 が付く</td> </tr>
<tr><td> m</td> <td>分(0〜59)先頭に 0 なし</td> </tr>
<tr><td> mm</td> <td>分(00~59)先頭に 0 が付く</td> </tr>
<tr><td> s</td> <td>秒(0〜59)先頭に 0 なし</td> </tr>
<tr><td>ss</td> <td>秒(00〜59)先頭に 0 が付く</td> </tr>
<tr> <td> AP <i>または</i> A </td> <td>午前/午後の表示に使用します。 <b> A/AP </b>は "AM" または "PM" に置き換えられます。</td> </tr>
<tr> <td> ap <i>または</i> a </td> <td>午前/午後の表示に使用します。 <b> a/ap </b>は "am" または "pm" に置き換えられます。(訳注: 日本語では AP と ap はどちらも"午前"または"午後"に置き換えられるようです)</td> </tr>
<tr><td>t</td> <td>タイムゾーン(例: "JST")</td> </tr>
<tr><td> T</td> <td> UTC (世界協定時) からの時差</td> </tr>
<tr><td>TT</td> <td>タイムゾーンの IANA ID </td> </tr>
<tr><td>TTT</td> <td>タイムゾーンの省略形</td> </tr>
<tr><td>TTTT</td> <td>タイムゾーンの短い表示名</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'] の範囲内にない文字は引用テキストとして扱われます。
たとえば、':', '.', ' ', '#', '@' などの文字は、一重引用符 (') で囲まれていなくても、結果のテキストに表示されます。
一重引用符 (') は、文字を<b>エスケープする</b>ために使用されます。行内の 2 つの連続した一重引用符は、引用符付き文字列の内側でも外側でも、<b>実際の</b> 1 つの一重引用符を表します。
</li><li>
最小の更新間隔は 1 秒です。
z または zzz が設定されている場合、時刻はミリ秒単位で表示されますが、ミリ秒単位では更新されません(大きなパフォーマンスの低下を避けるため)。
</li><ul>
3 years ago
User avatar ito32bit

Translation changed

LXQt Panel / plugin-worldclockJapanese

<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>
2 つの連続した一重引用符は、文字内か外側の 1 つの一重引用符を表します。
一重引用符内のテキストは、変換されません(隣接する 2 つの引用符を除く)。
それ以外の場合、 a から z および A から Z までの全ての ASCII 文字は形式の文字として予約されており、文字自身を表す場合は引用符が必要です。
さらに、特定の ASCII 記号は将来変更になる可能性があります(例: ":" は時刻の区切り文字として、 '/' は日付の区切り文字としてみられ、それぞれのロケール依存文字に置き換えられます)。
<br /></p>
<table border="1" width="100%" cellpadding="4" cellspacing="0">
<tr><th width="20%">記号</th><th>意味</th></tr>
<tr><td> d</td> <td>日(1〜31)先頭に 0 を付けない数字</td> </tr>
<tr><td>dd</td> <td>日(01〜31)先頭に 0 を付けた数字</td> </tr>
<tr><td>ddd</td> <td>ローカライズされた曜日の短縮名(例: '月''日')。</td> </tr>
<tr><td>dddd</td> <td>ローカライズされた長い曜日名(例: '月曜日''日曜日')。</td> </tr>
<tr><td> M </ td> <td>月(1〜12)先頭に 0 を付けない数字</td> </tr>
<tr><td> MM </ td> <td>月(01〜12)先頭に 0 を付けた数字</td> </tr>
<tr><td> MMM</td> <td>ローカライズされた月の省略名(例: '1月''12月')。</td> </tr>
<tr><td> MMMM</td> <td>ローカライズされた長い月の名前(例: '1月''12月')。(訳注: 日本語では MMM と MMMM は同じ表示のようです)</td> </tr>
<tr><td>yy</td> <td>年 2 桁の数字(00〜99)</td> </tr>
<tr><td> yyyy</td> <td>年 4 桁の数字</td> </tr>
<tr><td>h</td> <td>時刻(0〜23、または午前/午後を表示する場合は 1〜12)先頭に 0 なし</td> </tr>
<tr><td>hh</td> <td>時刻(00〜23、または午前/午後を表示する場合は 01〜12)先頭に 0 が付く</td> </tr>
<tr><td>H</td> <td>時刻(午前/午後の表示でも 0〜23)先頭に 0 なし</td> </tr>
<tr><td>HH</td> <td>時刻(午前/午後の表示でも 00〜23)先頭に 0 が付く</td> </tr>
<tr><td> m</td> <td>分(0〜59)先頭に 0 なし</td> </tr>
<tr><td> mm</td> <td>分(00~59)先頭に 0 が付く</td> </tr>
<tr><td> s</td> <td>秒(0〜59)先頭に 0 なし</td> </tr>
<tr><td>ss</td> <td>秒(00〜59)先頭に 0 が付く</td> </tr>
<tr> <td> AP <i>または</i> A </td> <td>午前/午後の表示に使用します。 <b> A/AP </b>は "AM" または "PM" に置き換えられます。</td> </tr>
<tr> <td> ap <i>または</i> a </td> <td>午前/午後の表示に使用します。 <b> a/ap </b>は "am" または "pm" に置き換えられます。(訳注: 日本語では AP と ap はどちらも"午前"または"午後"に置き換えられるようです)</td> </tr>
<tr><td>t</td> <td>タイムゾーン(例: "JST")</td> </tr>
<tr><td> T</td> <td> UTC (世界協定時) からの時差</td> </tr>
<tr><td>TT</td> <td>タイムゾーンの IANA ID </td> </tr>
<tr><td>TTT</td> <td>タイムゾーンの省略形</td> </tr>
<tr><td>TTTT</td> <td>タイムゾーンの短い表示名</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'] の範囲内にない文字は引用テキストとして扱われます。
たとえば、':', '.', ' ', '#', '@' などの文字は、一重引用符 (') で囲まれていなくても、結果のテキストに表示されます。
一重引用符 (') は、文字を<b>エスケープする</b>ために使用されます。行内の 2 つの連続した一重引用符は、引用符付き文字列の内側でも外側でも、“実際” の<b>実際の</b> 1 つの一重引用符を表します。
</li><li>
最小の更新間隔は 1 秒です。
z または zzz が設定されている場合、時刻はミリ秒単位で表示されますが、ミリ秒単位では更新されません(大きなパフォーマンスの低下を避けるため)。
</li><ul>
3 years ago
User avatar ito32bit

Translation changed

LXQt Panel / plugin-worldclockJapanese

<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>
2 つの連続した一重引用符は、文字内か外側の 1 つの一重引用符を表します。
一重引用符内のテキストは、変換されません(隣接する 2 つの引用符を除く)。
それ以外の場合、 a から z および A から Z までのすべての ASCII 文字は形式の文字として予約されており、文字自身を表す場合は引用符が必要です。
さらに、特定の ASCII 記号は将来変更になる可能性があります(例: ":" は時刻の区切り文字として、 '/' は日付の区切り文字としてみられ、それぞれのロケール依存文字に置き換えられます)。
<br /></p>
<table border="1" width="100%" cellpadding="4" cellspacing="0">
<tr><th width="20%">記号</th><th>意味</th></tr>
<tr><td> d</td> <td>日(1〜31)先頭に0 0 を付けない数字</td> </tr>
<tr><td>dd</td> <td>日(01〜31)先頭に0 0 を付けた数字</td> </tr>
<tr><td>ddd</td> <td>ローカライズされた曜日の短縮名(例: '月'から '日')。</td> </tr>
<tr><td>dddd</td> <td>ローカライズされた長い曜日名(例: '月曜日'から '日曜日')。</td> </tr>
<tr><td> M </ td> <td>月(1〜12)先頭に0 0 を付けない数字</td> </tr>
<tr><td> MM </ td> <td>月(01-12)先頭に0 0 を付けた数字</td> </tr>
<tr><td> MMM</td> <td>ローカライズされた月の省略名(例: '1月'から '12月')。</td> </tr>
<tr><td> MMMM</td> <td>ローカライズされた長い月の名前(例: '1月'から '12月')。(訳注: 日本語では MMM と MMMM は同じ表示のようです)</td> </tr>
<tr><td>yy</td> <td>年 2 桁の数字(00〜99)2桁の数字</td> </tr>
<tr><td> yyyy</td> <td>年を4 4 桁の数字</td> </tr>
<tr><td>h</td> <td>時刻(0〜23、または午前/午後を表示する場合は 1〜12)先頭に0 0 なし</td> </tr>
<tr><td>hh</td> <td>時刻(00から23、または午前/午後を表示する場合は 01から12)先頭に0がつ 0 が付く</td> </tr>
<tr><td>H</td> <td>時刻(午前/午後の表示でも 0〜23)先頭に0 0 なし</td> </tr>
<tr><td>HH</td> <td>時刻(午前/午後の表示でも 00〜23)先頭に0がつ 0 が付く</td> </tr>
<tr><td> m</td> <td>分(0〜59)先頭に0 0 なし</td> </tr>
<tr><td> mm</td> <td>分(00から59)先頭に0がつ 0 が付く</td> </tr>
<tr><td> s</td> <td>秒(0〜59)先頭に0 0 なし</td> </tr>
<tr><td>ss</td> <td>秒(00〜59)先頭に0がつ 0 が付く</td> </tr>
<tr> <td> AP <i>または</i> A </td> <td>午前/午後の表示に使用します。 <b> A/AP </b>は "AM" または "PM" に置き換えられます。</td> </tr>
<tr> <td> ap <i>または</i> a </td> <td>午前/午後の表示に使用します。 <b> a/ap </b>は "am" または "pm" に置き換えられます。(訳注: 日本語では AP と ap はどちらも"午前"または"午後"に置き換えられるようです)</td> </tr>
<tr><td>t</td> <td>タイムゾーン(例: "JST")</td> </tr>
<tr><td> T</td> <td> UTC (世界協定時) からの時差</td> </tr>
<tr><td>TT</td> <td>タイムゾーンの IANA ID </td> </tr>
<tr><td>TTT</td> <td>タイムゾーンの省略形</td> </tr>
<tr><td>TTTT</td> <td>タイムゾーンの短い表示名</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'] の範囲内にない文字は引用テキストとして扱われます。
たとえば、 ':', '.', ' ', '#', '@' などの文字は、一重引用符 (') で囲まれていなくても、結果のテキストに表示されます。
一重引用符 (') は、文字を “エスケープ” するために使用されます。行内の2 2 つの連続した一重引用符は、引用符付き文字列の内側でも外側でも、“実際”の1 の 1 つの一重引用符を表します。
</li><li>
最小の更新間隔は1 1 秒です。
z または zzz が設定されている場合、時刻はミリ秒単位で表示されますが、ミリ秒単位では更新されません(大きなパフォーマンスの低下を避けるため)。
</li><ul>
3 years ago
User avatar ito32bit

Translation changed

LXQt Panel / plugin-worldclockJapanese

<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>
2つの連続した一重引用符は、文字内か外側の1つの一重引用符を表します。
一重引用符内のテキストは、変換されません(隣接する2つの引用符を除く)。
それ以外の場合、 a から z および A から Z までのすべてのASCII文字は形式の文字として予約されており、文字自身を表す場合は引用符が必要です。
さらに、特定のASCII記号は将来変更になる可能性があります(例: ":" は時刻の区切り文字として、 '/' は日付の区切り文字としてみられ、それぞれのロケール依存文字に置き換えられます)。
<br /></p>
<table border="1" width="100%" cellpadding="4" cellspacing="0">
<tr><th width="20%">記号</th><th>意味</th></tr>
<tr><td> d</td> <td>日(1〜31)先頭に0を付けない数字</td> </tr>
<tr><td>dd</td> <td>日(01〜31)先頭に0を付けた数字</td> </tr>
<tr><td>ddd</td> <td>ローカライズされた曜日の短縮名(例: '月'から '日')。</td> </tr>
<tr><td>dddd</td> <td>ローカライズされた長い曜日名(例: '月曜日'から '日曜日')。</td> </tr>
<tr><td> M </ td> <td>月(1〜12)先頭に0を付けない数字</td> </tr>
<tr><td> MM </ td> <td>月(01-12)先頭に0を付けた数字</td> </tr>
<tr><td> MMM</td> <td>ローカライズされた月の省略名(例: '1月'から '12月')。</td> </tr>
<tr><td> MMMM</td> <td>ローカライズされた長い月の名前(例: '1月'から '12月')。(訳注: 日本語では MMM と MMMM は同じ表示のようです)</td> </tr>
<tr><td>yy</td> <td>年(00〜99)2桁の数字</td> </tr>
<tr><td> yyyy</td> <td>年を4桁の数字</td> </tr>
<tr><td>h</td> <td>時刻(0〜23、または午前/午後を表示する場合は1〜12)先頭に0なし</td> </tr>
<tr><td>hh</td> <td>時刻(00から23、または午前/午後を表示する場合は01から12)先頭に0がつく</td> </tr>
<tr><td>H</td> <td>時刻(午前/午後の表示でも0〜23)先頭に0なし</td> </tr>
<tr><td>HH</td> <td>時刻(午前/午後の表示でも00〜23)先頭に0がつく</td> </tr>
<tr><td> m</td> <td>分(0〜59)先頭に0なし</td> </tr>
<tr><td> mm</td> <td>分(00から59)先頭に0がつく</td> </tr>
<tr><td> s</td> <td>秒(0〜59)先頭に0なし</td> </tr>
<tr><td>ss</td> <td>秒(00〜59)先頭に0がつく</td> </tr>
<tr> <td> AP <i>または</i> A </td> <td>午前/午後の表示に使用します。 <b> A/AP </b>は "AM" または "PM" に置き換えられます。</td> </tr>
<tr> <td> ap <i>または</i> a </td> <td>午前/午後の表示に使用します。 <b> a/ap </b>は "am" または "pm" に置き換えられます。(訳注: 日本語では AP と ap はどちらも"午前"または"午後"に置き換えられるようです)</td> </tr>
<tr><td>t</td> <td>タイムゾーン(例: "JST")</td> </tr>
<tr><td> T</td> <td> UTC(世界協定時)からの時差</td> </tr>
<tr><td>TT</td> <td>タイムゾーンの IANA ID </td> </tr>
<tr><td>TTT</td> <td>タイムゾーンの省略形</td> </tr>
<tr><td>TTTT</td> <td>タイムゾーンの短い表示名</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'] の範囲内にない文字は引用テキストとして扱われます。
たとえば、 ':', '.', ' ', '#', '@'などの文字は、一重引用符(')で囲まれていなくても、結果のテキストに表示されます。
一重引用符(')は、文字を“エスケープ”するために使用されます。行内の2つの連続した一重引用符は、引用符付き文字列の内側でも外側でも、“実際”の1つの一重引用符を表します。
</li><li>
最小の更新間隔は1秒です。
z または zzz が設定されている場合、時刻はミリ秒単位で表示されますが、ミリ秒単位では更新されません(大きなパフォーマンスの低下を避けるため)。
</li><ul>
3 years ago
User avatar ito32bit

Translation changed

LXQt Panel / plugin-worldclockJapanese

World Clock Manual Format Configuration
世界時計 手動形式の手動設定
3 years ago
Browse all translation changes

Statistics

Percent Strings Words Chars
Total 56 721 5,170
Translated 100% 56 721 5,170
Needs editing 0% 0 0 0
Failing checks 0% 0 0 0

Last activity

Last change April 4, 2021, 11:53 a.m.
Last author Masamichi Ito

Daily activity

Daily activity

Weekly activity

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