summaryrefslogtreecommitdiff
path: root/src/docs/cs-CZ/pages.md
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2021-04-18 00:23:38 +0900
committerGitHub <noreply@github.com>2021-04-18 00:23:38 +0900
commit7c26fbbb2ea1d35b94dde809c2a2a3ae272163d9 (patch)
tree41fb3b76789553b0a1ab91d4bca6b36694333ba8 /src/docs/cs-CZ/pages.md
parent12.77.0 (diff)
downloadmisskey-7c26fbbb2ea1d35b94dde809c2a2a3ae272163d9.tar.gz
misskey-7c26fbbb2ea1d35b94dde809c2a2a3ae272163d9.tar.bz2
misskey-7c26fbbb2ea1d35b94dde809c2a2a3ae272163d9.zip
New Crowdin updates (#7451)
* New translations ja-JP.yml (English) * New translations theme.md (English) * New translations ja-JP.yml (Ukrainian) * New translations ja-JP.yml (Chinese Traditional) * New translations theme.md (Chinese Simplified) * New translations ja-JP.yml (Chinese Simplified) * New translations ja-JP.yml (Japanese, Kansai) * New translations mfm.md (Czech) * New translations timelines.md (Czech) * New translations theme.md (Czech) * New translations reaction.md (Czech) * New translations pages.md (Czech) * New translations mute.md (Czech) * New translations follow.md (Czech) * New translations ja-JP.yml (Italian) * New translations theme.md (German) * New translations ja-JP.yml (German) * New translations keyboard-shortcut.md (Czech) * New translations custom-emoji.md (Czech) * New translations ja-JP.yml (Spanish) * New translations theme.md (French) * New translations stream.md (French) * New translations reversi-bot.md (French) * New translations create-plugin.md (Czech) * New translations aiscript.md (Czech) * New translations ja-JP.yml (Czech) * New translations ja-JP.yml (Arabic) * New translations ja-JP.yml (Polish) * New translations ja-JP.yml (Russian) * New translations mute.md (Korean) * New translations keyboard-shortcut.md (Korean) * New translations follow.md (Korean) * New translations custom-emoji.md (Korean) * New translations create-plugin.md (Korean) * New translations api.md (Korean) * New translations ja-JP.yml (Korean) * New translations reaction.md (Korean) * New translations pages.md (Korean) * New translations reversi-bot.md (Korean) * New translations stream.md (Korean) * New translations deck.md (Korean) * New translations timelines.md (Korean) * New translations theme.md (Korean)
Diffstat (limited to 'src/docs/cs-CZ/pages.md')
-rw-r--r--src/docs/cs-CZ/pages.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/docs/cs-CZ/pages.md b/src/docs/cs-CZ/pages.md
index a7311b95e6..7edfafe68e 100644
--- a/src/docs/cs-CZ/pages.md
+++ b/src/docs/cs-CZ/pages.md
@@ -1,6 +1,6 @@
-# Pages
+# Stránky
-## 変数
+## Proměnná
変数を使うことで動的なページを作成できます。テキスト内で <b>{ 変数名 }</b> と書くとそこに変数の値を埋め込めます。例えば <b>Hello { thing } world!</b> というテキストで、変数(thing)の値が <b>ai</b> だった場合、テキストは <b>Hello ai world!</b> になります。
変数の評価(値を算出すること)は上から下に行われるので、ある変数の中で自分より下の変数を参照することはできません。例えば上から <b>A、B、C</b> と3つの変数を定義したとき、<b>C</b>の中で<b>A</b>や<b>B</b>を参照することはできますが、<b>A</b>の中で<b>B</b>や<b>C</b>を参照することはできません。