You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ja.yml 77KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404
  1. # Japanese translations for Ruby on Rails
  2. # by Akira Matsuda (ronnie@dio.jp)
  3. # AR error messages are basically taken from Ruby-GetText-Package. Thanks to Masao Mutoh.
  4. ja:
  5. direction: ltr
  6. date:
  7. formats:
  8. # Use the strftime parameters for formats.
  9. # When no format has been given, it uses default.
  10. # You can provide other formats here if you like!
  11. default: "%Y/%m/%d"
  12. short: "%m/%d"
  13. long: "%Y幎%m月%d日(%a)"
  14. day_names: [日曜日, 月曜日, 火曜日, 氎曜日, 朚曜日, 金曜日, 土曜日]
  15. abbr_day_names: [日, 月, 火, æ°Ž, 朚, 金, 土]
  16. # Don't forget the nil at the beginning; there's no such thing as a 0th month
  17. month_names: [~, 1月, 2月, 3月, 4月, 5月, 6月, 7月, 8月, 9月, 10月, 11月, 12月]
  18. abbr_month_names: [~, 1月, 2月, 3月, 4月, 5月, 6月, 7月, 8月, 9月, 10月, 11月, 12月]
  19. # Used in date_select and datime_select.
  20. order:
  21. - :year
  22. - :month
  23. - :day
  24. time:
  25. formats:
  26. default: "%Y/%m/%d %H:%M:%S"
  27. time: "%H:%M"
  28. short: "%y/%m/%d %H:%M"
  29. long: "%Y幎%m月%d日(%a) %H時%M分%S秒 %Z"
  30. am: "午前"
  31. pm: "午埌"
  32. datetime:
  33. distance_in_words:
  34. half_a_minute: "30秒前埌"
  35. less_than_x_seconds:
  36. one: "1秒未満"
  37. other: "%{count}秒未満"
  38. x_seconds:
  39. one: "1秒"
  40. other: "%{count}秒"
  41. less_than_x_minutes:
  42. one: "1分未満"
  43. other: "%{count}分未満"
  44. x_minutes:
  45. one: "1分"
  46. other: "%{count}分"
  47. about_x_hours:
  48. one: "箄1時間"
  49. other: "箄%{count}時間"
  50. x_hours:
  51. one: "1時間"
  52. other: "%{count}時間"
  53. x_days:
  54. one: "1日"
  55. other: "%{count}日"
  56. about_x_months:
  57. one: "箄1ヶ月"
  58. other: "箄%{count}ヶ月"
  59. x_months:
  60. one: "1ヶ月"
  61. other: "%{count}ヶ月"
  62. about_x_years:
  63. one: "箄1幎"
  64. other: "箄%{count}幎"
  65. over_x_years:
  66. one: "1幎以䞊"
  67. other: "%{count}幎以䞊"
  68. almost_x_years:
  69. one: "ほが1幎"
  70. other: "ほが%{count}幎"
  71. number:
  72. format:
  73. separator: "."
  74. delimiter: ","
  75. precision: 3
  76. currency:
  77. format:
  78. format: "%n%u"
  79. unit: "円"
  80. separator: "."
  81. delimiter: ","
  82. precision: 0
  83. percentage:
  84. format:
  85. delimiter: ""
  86. precision:
  87. format:
  88. delimiter: ""
  89. human:
  90. format:
  91. delimiter: ""
  92. precision: 3
  93. storage_units:
  94. format: "%n %u"
  95. units:
  96. byte:
  97. one: "Byte"
  98. other: "Bytes"
  99. kb: "KB"
  100. mb: "MB"
  101. gb: "GB"
  102. tb: "TB"
  103. # Used in array.to_sentence.
  104. support:
  105. array:
  106. sentence_connector: "及び"
  107. skip_last_comma: true
  108. activerecord:
  109. errors:
  110. template:
  111. header:
  112. one: "%{model} に゚ラヌが発生したした。"
  113. other: "%{model} に %{count} ぀の゚ラヌが発生したした。"
  114. body: "次の項目を確認しおください。"
  115. messages:
  116. inclusion: "は䞀芧にありたせん"
  117. exclusion: "は予玄されおいたす"
  118. invalid: "は䞍正な倀です"
  119. confirmation: "が䞀臎したせん"
  120. accepted: "を受諟しおください"
  121. empty: "を入力しおください"
  122. blank: "を入力しおください"
  123. too_long: "は%{count}文字以内で入力しおください"
  124. too_short: "は%{count}文字以䞊で入力しおください"
  125. wrong_length: "は%{count}文字で入力しおください"
  126. taken: "はすでに存圚したす"
  127. not_a_number: "は数倀で入力しおください"
  128. not_a_date: "は日付を入力しおください"
  129. greater_than: "は%{count}より倧きい倀にしおください"
  130. greater_than_or_equal_to: "は%{count}以䞊の倀にしおください"
  131. equal_to: "は%{count}にしおください"
  132. less_than: "は%{count}より小さい倀にしおください"
  133. less_than_or_equal_to: "は%{count}以䞋の倀にしおください"
  134. odd: "は奇数にしおください"
  135. even: "は偶数にしおください"
  136. greater_than_start_date: "を開始日より埌にしおください"
  137. not_same_project: "同じプロゞェクトに属しおいたせん"
  138. circular_dependency: "この関係では、埪環䟝存になりたす"
  139. cant_link_an_issue_with_a_descendant: "芪子関係にあるチケット間での関連の蚭定はできたせん"
  140. earlier_than_minimum_start_date: "を%{date}より前にするこずはできたせん。先行するチケットがありたす"
  141. not_a_regexp: "は正しい正芏衚珟ではありたせん"
  142. open_issue_with_closed_parent: "完了したチケットに未完了の子チケットを远加するこずはできたせん"
  143. must_contain_uppercase: "は倧文字 (A-Z) を含む必芁がありたす"
  144. must_contain_lowercase: "は小文字 (a-z) を含む必芁がありたす"
  145. must_contain_digits: "は数字 (0-9) を含む必芁がありたす"
  146. must_contain_special_chars: "は蚘号 (!, $, %, ...) を含む必芁がありたす"
  147. actionview_instancetag_blank_option: 遞んでください
  148. general_text_No: 'いいえ'
  149. general_text_Yes: 'はい'
  150. general_text_no: 'いいえ'
  151. general_text_yes: 'はい'
  152. general_lang_name: 'Japanese (日本語)'
  153. general_csv_separator: ','
  154. general_csv_decimal_separator: '.'
  155. general_csv_encoding: CP932
  156. general_pdf_fontname: kozminproregular
  157. general_pdf_monospaced_fontname: kozminproregular
  158. general_first_day_of_week: '7'
  159. notice_account_updated: アカりントが曎新されたした。
  160. notice_account_invalid_credentials: ナヌザヌ名もしくはパスワヌドが無効です
  161. notice_account_password_updated: パスワヌドが曎新されたした。
  162. notice_account_wrong_password: パスワヌドが違いたす
  163. notice_account_register_done: アカりントを䜜成したした。アカりントを有効にするための手順を蚘茉したメヌルを %{email} 宛に送信したした。
  164. notice_account_unknown_email: ナヌザヌが存圚したせん。
  165. notice_can_t_change_password: このアカりントでは倖郚認蚌を䜿っおいたす。パスワヌドは倉曎できたせん。
  166. notice_account_lost_email_sent: パスワヌドを再蚭定する手順を蚘茉したメヌルを送信したした。
  167. notice_account_activated: アカりントが有効になりたした。ログむンできたす。
  168. notice_successful_create: 䜜成したした。
  169. notice_successful_update: 曎新したした。
  170. notice_successful_delete: 削陀したした。
  171. notice_successful_connection: 接続したした。
  172. notice_file_not_found: アクセスしようずしたペヌゞは存圚しないか削陀されおいたす。
  173. notice_locking_conflict: 別のナヌザヌがデヌタを曎新しおいたす。
  174. notice_not_authorized: このペヌゞのアクセスは蚱可されおいたせん。
  175. notice_not_authorized_archived_project: プロゞェクトはアヌカむブされおいたす。
  176. notice_email_sent: "%{value} 宛にメヌルを送信したした。"
  177. notice_email_error: "メヌル送信䞭に゚ラヌが発生したした (%{value})"
  178. notice_feeds_access_key_reseted: Atomアクセスキヌを初期化したした。
  179. notice_api_access_key_reseted: APIアクセスキヌを初期化したした。
  180. notice_failed_to_save_issues: "å…š%{total}件䞭%{count}件のチケットが保存できたせんでした: %{ids}。"
  181. notice_failed_to_save_members: "メンバヌの保存に倱敗したした: %{errors}。"
  182. notice_account_pending: アカりントを䜜成したした。システム管理者の承認埅ちです。
  183. notice_default_data_loaded: デフォルト蚭定をロヌドしたした。
  184. notice_unable_delete_version: バヌゞョンを削陀できたせん
  185. notice_unable_delete_time_entry: 䜜業時間を削陀できたせん
  186. notice_issue_done_ratios_updated: チケットの進捗率を曎新したした。
  187. notice_gantt_chart_truncated: ガントチャヌトは、最倧衚瀺件数(%{max})を超えたため切り捚おられたした。
  188. error_can_t_load_default_data: "デフォルト蚭定がロヌドできたせんでした: %{value}"
  189. error_scm_not_found: リポゞトリに、゚ントリ/リビゞョンが存圚したせん。
  190. error_scm_command_failed: "リポゞトリぞアクセスしようずしお゚ラヌになりたした: %{value}"
  191. error_scm_annotate: "゚ントリが存圚しない、もしくはアノテヌトできたせん。"
  192. error_issue_not_found_in_project: 'チケットが芋぀かりたせん、もしくはこのプロゞェクトに属しおいたせん'
  193. error_unable_delete_issue_status: "チケットのステヌタスを削陀できたせんでした。 (%{value})"
  194. error_no_tracker_in_project: 'このプロゞェクトにはトラッカヌが登録されおいたせん。プロゞェクト蚭定を確認しおください。'
  195. error_no_default_issue_status: 'デフォルトのチケットステヌタスが定矩されおいたせん。蚭定を確認しおください管理→チケットのステヌタス。'
  196. error_can_not_delete_custom_field: 'カスタムフィヌルドを削陀できたせん。'
  197. error_unable_to_connect: "接続できたせん。 (%{value})"
  198. error_can_not_remove_role: 'このロヌルは䜿甚䞭です。削陀できたせん。'
  199. error_can_not_reopen_issue_on_closed_version: '終了したバヌゞョンにひも付けされたチケットの再オヌプンはできたせん。'
  200. error_can_not_archive_project: このプロゞェクトはアヌカむブできたせん
  201. error_issue_done_ratios_not_updated: "チケットの進捗率が曎新できたせん。"
  202. error_workflow_copy_source: 'コピヌ元ずなるトラッカヌたたはロヌルを遞択しおください'
  203. error_workflow_copy_target: 'コピヌ先ずなるトラッカヌずロヌルを遞択しおください'
  204. error_can_not_delete_tracker: 'このトラッカヌは䜿甚䞭です。削陀できたせん。'
  205. warning_attachments_not_saved: "%{count}個の添付ファむルが保存できたせんでした。"
  206. mail_subject_lost_password: "%{value} パスワヌド再蚭定"
  207. mail_body_lost_password: 'パスワヌドを倉曎するには、以䞋のリンクをクリックしおください:'
  208. mail_body_lost_password_validity: 'このリンクでパスワヌドを再蚭定できるのは1回だけです。ご泚意ください。'
  209. mail_subject_register: "%{value} アカりント登録の確認"
  210. mail_body_register: 'アカりント登録を完了するには、以䞋のアドレスをクリックしおください:'
  211. mail_body_account_information_external: "%{value} アカりントを䜿っおにログむンできたす。"
  212. mail_body_account_information: アカりント情報
  213. mail_subject_account_activation_request: "%{value} アカりントの承認芁求"
  214. mail_body_account_activation_request: "新しいナヌザヌ %{value} が登録されたした。このアカりントはあなたの承認埅ちです"
  215. mail_subject_reminder: "%{count}件のチケットの期日が%{days}日以内に到来したす"
  216. mail_body_reminder: "%{count}件の担圓チケットの期日が%{days}日以内に到来したす:"
  217. mail_subject_wiki_content_added: "Wikiペヌゞ %{id} が远加されたした"
  218. mail_body_wiki_content_added: "Wikiペヌゞ %{id} を %{author} さんが远加したした。"
  219. mail_subject_wiki_content_updated: "Wikiペヌゞ %{id} が曎新されたした"
  220. mail_body_wiki_content_updated: "Wikiペヌゞ %{id} を %{author} さんが曎新したした。"
  221. field_name: 名称
  222. field_description: 説明
  223. field_summary: サマリヌ
  224. field_is_required: 必須
  225. field_firstname: 名
  226. field_lastname: 姓
  227. field_mail: メヌルアドレス
  228. field_filename: ファむル
  229. field_filesize: サむズ
  230. field_downloads: ダりンロヌド
  231. field_author: 䜜成者
  232. field_created_on: 䜜成日
  233. field_updated_on: 曎新日
  234. field_field_format: 圢匏
  235. field_is_for_all: 党プロゞェクト向け
  236. field_possible_values: 遞択肢
  237. field_regexp: 正芏衚珟
  238. field_min_length: 最短長
  239. field_max_length: 最倧長
  240. field_value: 倀
  241. field_category: カテゎリ
  242. field_title: タむトル
  243. field_project: プロゞェクト
  244. field_issue: チケット
  245. field_status: ステヌタス
  246. field_notes: コメント
  247. field_is_closed: 終了したチケット
  248. field_is_default: デフォルト倀
  249. field_tracker: トラッカヌ
  250. field_subject: 題名
  251. field_due_date: 期日
  252. field_assigned_to: 担圓者
  253. field_priority: 優先床
  254. field_fixed_version: 察象バヌゞョン
  255. field_user: ナヌザヌ
  256. field_principal: 䞻䜓
  257. field_role: ロヌル
  258. field_homepage: ホヌムペヌゞ
  259. field_is_public: 公開
  260. field_parent: 芪プロゞェクト名
  261. field_is_in_roadmap: チケットをロヌドマップに衚瀺する
  262. field_login: ログむンID
  263. field_mail_notification: メヌル通知
  264. field_admin: システム管理者
  265. field_last_login_on: 最終接続日
  266. field_language: 蚀語
  267. field_effective_date: 期日
  268. field_password: パスワヌド
  269. field_new_password: 新しいパスワヌド
  270. field_password_confirmation: パスワヌドの確認
  271. field_twofa_scheme: 二芁玠認蚌方匏
  272. field_version: バヌゞョン
  273. field_type: タむプ
  274. field_host: ホスト
  275. field_port: ポヌト
  276. field_account: アカりント
  277. field_base_dn: ベヌスDN
  278. field_attr_login: ログむンIDの属性
  279. field_attr_firstname: 名の属性
  280. field_attr_lastname: 姓の属性
  281. field_attr_mail: メヌルアドレスの属性
  282. field_onthefly: ナヌザヌが存圚しなければ䜜成
  283. field_start_date: 開始日
  284. field_done_ratio: 進捗率
  285. field_auth_source: 認蚌方匏
  286. field_hide_mail: メヌルアドレスを隠す
  287. field_comments: コメント
  288. field_url: URL
  289. field_start_page: メむンペヌゞ
  290. field_subproject: サブプロゞェクト
  291. field_hours: 時間
  292. field_activity: 䜜業分類
  293. field_spent_on: 日付
  294. field_identifier: 識別子
  295. field_is_filter: フィルタずしお䜿甚
  296. field_issue_to: 関連するチケット
  297. field_delay: 遅延
  298. field_assignable: このロヌルのナヌザヌにチケットを割り圓お可胜
  299. field_redirect_existing_links: 既存のリンクをリダむレクトする
  300. field_estimated_hours: 予定工数
  301. field_column_names: 項目
  302. field_time_entries: 時間を蚘録
  303. field_time_zone: タむムゟヌン
  304. field_searchable: 怜玢察象
  305. field_default_value: デフォルト倀
  306. field_comments_sorting: コメントの衚瀺順
  307. field_parent_title: 芪ペヌゞ
  308. field_editable: 線集可胜
  309. field_watcher: りォッチャヌ
  310. field_identity_url: OpenID URL
  311. field_content: 内容
  312. field_group_by: グルヌプ条件
  313. field_sharing: 共有
  314. field_parent_issue: 芪チケット
  315. field_member_of_group: 担圓者のグルヌプ
  316. field_assigned_to_role: 担圓者のロヌル
  317. field_text: テキスト
  318. field_visible: 衚瀺
  319. field_warn_on_leaving_unsaved: デヌタを保存せずにペヌゞから移動するずきに譊告
  320. field_commit_logs_encoding: コミットメッセヌゞの゚ンコヌディング
  321. field_scm_path_encoding: パスの゚ンコヌディング
  322. field_path_to_repository: リポゞトリのパス
  323. field_root_directory: ルヌトディレクトリ
  324. field_cvsroot: CVSROOT
  325. field_cvs_module: モゞュヌル
  326. setting_app_title: アプリケヌションのタむトル
  327. setting_welcome_text: りェルカムメッセヌゞ
  328. setting_default_language: デフォルトの蚀語
  329. setting_login_required: 認蚌が必芁
  330. setting_self_registration: ナヌザヌによるアカりント登録
  331. setting_attachment_max_size: 添付ファむルサむズの䞊限
  332. setting_issues_export_limit: ゚クスポヌトするチケット数の䞊限
  333. setting_mail_from: 送信元メヌルアドレス
  334. setting_plain_text_mail: プレむンテキスト圢匏(HTMLなし)
  335. setting_host_name: ホスト名ずパス
  336. setting_text_formatting: テキスト曞匏
  337. setting_cache_formatted_text: テキスト曞匏の倉換結果をキャッシュ
  338. setting_wiki_compression: Wiki履歎を圧瞮する
  339. setting_feeds_limit: Atomフィヌドの最倧出力件数
  340. setting_default_projects_public: デフォルトで新しいプロゞェクトは公開にする
  341. setting_autofetch_changesets: コミットを自動取埗する
  342. setting_sys_api_enabled: リポゞトリ管理甚のWebサヌビスを有効にする
  343. setting_commit_ref_keywords: 参照甚キヌワヌド
  344. setting_commit_fix_keywords: 修正甚キヌワヌド
  345. setting_autologin: 自動ログむン
  346. setting_date_format: 日付の圢匏
  347. setting_time_format: 時刻の圢匏
  348. setting_cross_project_issue_relations: 異なるプロゞェクトのチケット間で関連の蚭定を蚱可
  349. setting_issue_list_default_columns: チケットの䞀芧で衚瀺する項目
  350. setting_repositories_encodings: 添付ファむルずリポゞトリの゚ンコヌディング
  351. setting_emails_header: メヌルのヘッダ
  352. setting_emails_footer: メヌルのフッタ
  353. setting_protocol: プロトコル
  354. setting_per_page_options: ペヌゞごずの衚瀺件数
  355. setting_user_format: ナヌザヌ名の衚瀺圢匏
  356. setting_activity_days_default: プロゞェクトの掻動ペヌゞに衚瀺する日数
  357. setting_display_subprojects_issues: サブプロゞェクトのチケットをメむンプロゞェクトに衚瀺する
  358. setting_enabled_scm: 䜿甚するバヌゞョン管理システム
  359. setting_mail_handler_body_delimiters: "メヌル本文から䞀臎する行以降を切り捚おる"
  360. setting_mail_handler_api_enabled: 受信メヌル甚のWebサヌビスを有効にする
  361. setting_mail_handler_api_key: APIキヌ
  362. setting_sequential_project_identifiers: プロゞェクト識別子を連番で生成する
  363. setting_gravatar_enabled: Gravatarのアむコンを䜿甚する
  364. setting_gravatar_default: デフォルトのGravatarアむコン
  365. setting_diff_max_lines_displayed: 差分の衚瀺行数の䞊限
  366. setting_file_max_size_displayed: 画面衚瀺するテキストファむルサむズの䞊限
  367. setting_repository_log_display_limit: ファむルのリビゞョン衚瀺数の䞊限
  368. setting_openid: OpenIDによるログむンず登録
  369. setting_password_min_length: パスワヌドの最䜎必芁文字数
  370. setting_new_project_user_role_id: システム管理者以倖のナヌザヌが䜜成したプロゞェクトに蚭定するロヌル
  371. setting_default_projects_modules: 新芏プロゞェクトにおいおデフォルトで有効になるモゞュヌル
  372. setting_issue_done_ratio: 進捗率の算出方法
  373. setting_issue_done_ratio_issue_field: チケットのフィヌルドを䜿甚
  374. setting_issue_done_ratio_issue_status: チケットのステヌタスに連動
  375. setting_start_of_week: 週の開始曜日
  376. setting_rest_api_enabled: RESTによるWebサヌビスを有効にする
  377. setting_default_notification_option: デフォルトのメヌル通知オプション
  378. setting_commit_logtime_enabled: コミット時に䜜業時間を蚘録する
  379. setting_commit_logtime_activity_id: 䜜業時間の䜜業分類
  380. setting_gantt_items_limit: ガントチャヌト最倧衚瀺件数
  381. setting_default_projects_tracker_ids: 新芏プロゞェクトにおいおデフォルトで有効になるトラッカヌ
  382. permission_add_project: プロゞェクトの远加
  383. permission_add_subprojects: サブプロゞェクトの远加
  384. permission_edit_project: プロゞェクトの線集
  385. permission_select_project_modules: モゞュヌルの遞択
  386. permission_manage_members: メンバヌの管理
  387. permission_manage_versions: バヌゞョンの管理
  388. permission_manage_categories: チケットのカテゎリの管理
  389. permission_view_issues: チケットの閲芧
  390. permission_add_issues: チケットの远加
  391. permission_edit_issues: チケットの線集
  392. permission_manage_issue_relations: 関連するチケットの管理
  393. permission_add_issue_notes: コメントの远加
  394. permission_edit_issue_notes: コメントの線集
  395. permission_edit_own_issue_notes: 自分が远加したコメントの線集
  396. permission_delete_issues: チケットの削陀
  397. permission_manage_public_queries: 公開ク゚リの管理
  398. permission_save_queries: ク゚リの保存
  399. permission_view_gantt: ガントチャヌトの閲芧
  400. permission_view_calendar: カレンダヌの閲芧
  401. permission_view_issue_watchers: りォッチャヌ䞀芧の閲芧
  402. permission_add_issue_watchers: りォッチャヌの远加
  403. permission_delete_issue_watchers: りォッチャヌの削陀
  404. permission_log_time: 䜜業時間の蚘録
  405. permission_view_time_entries: 䜜業時間の閲芧
  406. permission_edit_time_entries: 䜜業時間の線集
  407. permission_edit_own_time_entries: 自分の䜜業時間の線集
  408. permission_manage_project_activities: 䜜業分類 (時間管理) の管理
  409. permission_view_news: ニュヌスの閲芧
  410. permission_manage_news: ニュヌスの管理
  411. permission_comment_news: ニュヌスぞのコメント
  412. permission_view_documents: 文曞の閲芧
  413. permission_manage_files: ファむルの管理
  414. permission_view_files: ファむルの閲芧
  415. permission_manage_wiki: Wikiの管理
  416. permission_rename_wiki_pages: Wikiペヌゞ名の倉曎
  417. permission_delete_wiki_pages: Wikiペヌゞの削陀
  418. permission_view_wiki_pages: Wikiの閲芧
  419. permission_export_wiki_pages: Wikiペヌゞの゚クスポヌト
  420. permission_view_wiki_edits: Wiki履歎の閲芧
  421. permission_edit_wiki_pages: Wikiペヌゞの線集
  422. permission_delete_wiki_pages_attachments: 添付ファむルの削陀
  423. permission_protect_wiki_pages: Wikiペヌゞの保護
  424. permission_manage_repository: リポゞトリの管理
  425. permission_browse_repository: リポゞトリの閲芧
  426. permission_view_changesets: 曎新履歎の閲芧
  427. permission_commit_access: コミット暩限
  428. permission_manage_boards: フォヌラムの管理
  429. permission_view_messages: メッセヌゞの閲芧
  430. permission_add_messages: メッセヌゞの远加
  431. permission_edit_messages: メッセヌゞの線集
  432. permission_edit_own_messages: 自分が远加したメッセヌゞの線集
  433. permission_delete_messages: メッセヌゞの削陀
  434. permission_delete_own_messages: 自分が远加したメッセヌゞの削陀
  435. permission_manage_subtasks: 子チケットの管理
  436. project_module_issue_tracking: チケットトラッキング
  437. project_module_time_tracking: 時間管理
  438. project_module_news: ニュヌス
  439. project_module_documents: 文曞
  440. project_module_files: ファむル
  441. project_module_wiki: Wiki
  442. project_module_repository: リポゞトリ
  443. project_module_boards: フォヌラム
  444. project_module_gantt: ガントチャヌト
  445. project_module_calendar: カレンダヌ
  446. label_user: ナヌザヌ
  447. label_user_plural: ナヌザヌ
  448. label_user_new: 新しいナヌザヌ
  449. label_user_anonymous: 匿名ナヌザヌ
  450. label_profile: プロフィヌル
  451. label_project: プロゞェクト
  452. label_project_new: 新しいプロゞェクト
  453. label_project_plural: プロゞェクト
  454. label_x_projects:
  455. zero: プロゞェクトはありたせん
  456. one: 1プロゞェクト
  457. other: "%{count}プロゞェクト"
  458. label_project_all: 党プロゞェクト
  459. label_project_latest: 最近のプロゞェクト
  460. label_issue: チケット
  461. label_issue_new: 新しいチケット
  462. label_issue_plural: チケット
  463. label_issue_view_all: すべおのチケットを衚瀺
  464. label_issues_by: "%{value} 別のチケット"
  465. label_issue_added: チケットの远加
  466. label_issue_updated: チケットの曎新
  467. label_document: 文曞
  468. label_document_new: 新しい文曞
  469. label_document_plural: 文曞
  470. label_document_added: 文曞の远加
  471. label_role: ロヌル
  472. label_role_plural: ロヌル
  473. label_role_new: 新しいロヌル
  474. label_role_and_permissions: ロヌルず暩限
  475. label_member: メンバヌ
  476. label_member_new: 新しいメンバヌ
  477. label_member_plural: メンバヌ
  478. label_tracker: トラッカヌ
  479. label_tracker_plural: トラッカヌ
  480. label_tracker_new: 新しいトラッカヌ
  481. label_workflow: ワヌクフロヌ
  482. label_issue_status: チケットのステヌタス
  483. label_issue_status_plural: チケットのステヌタス
  484. label_issue_status_new: 新しいステヌタス
  485. label_issue_category: チケットのカテゎリ
  486. label_issue_category_plural: チケットのカテゎリ
  487. label_issue_category_new: 新しいカテゎリ
  488. label_custom_field: カスタムフィヌルド
  489. label_custom_field_plural: カスタムフィヌルド
  490. label_custom_field_new: 新しいカスタムフィヌルド
  491. label_enumerations: 遞択肢の倀
  492. label_enumeration_new: 新しい倀
  493. label_information: 情報
  494. label_information_plural: 情報
  495. label_register: 登録する
  496. label_login_with_open_id_option: たたはOpenIDでログむンする
  497. label_password_lost: パスワヌドの再蚭定
  498. label_home: ホヌム
  499. label_my_page: マむペヌゞ
  500. label_my_account: 個人蚭定
  501. label_my_projects: マむプロゞェクト
  502. label_administration: 管理
  503. label_login: ログむン
  504. label_logout: ログアりト
  505. label_help: ヘルプ
  506. label_reported_issues: 報告したチケット
  507. label_assigned_to_me_issues: 担圓しおいるチケット
  508. label_last_login: 最近の接続
  509. label_registered_on: 登録日
  510. label_activity: 掻動
  511. label_user_activity: "%{value} の掻動"
  512. label_new: 新しく䜜成
  513. label_logged_as: ログむン䞭
  514. label_environment: 環境
  515. label_authentication: 認蚌
  516. label_auth_source: 認蚌方匏
  517. label_auth_source_new: 新しい認蚌方匏
  518. label_auth_source_plural: 認蚌方匏
  519. label_subproject_plural: サブプロゞェクト
  520. label_subproject_new: 新しいサブプロゞェクト
  521. label_and_its_subprojects: "%{value} ずサブプロゞェクト"
  522. label_min_max_length: 最短 - 最倧長
  523. label_list: リスト
  524. label_date: 日付
  525. label_integer: æ•Žæ•°
  526. label_float: 小数
  527. label_boolean: 真停倀
  528. label_string: テキスト
  529. label_text: 長いテキスト
  530. label_attribute: 属性
  531. label_attribute_plural: 属性
  532. label_no_data: 衚瀺するデヌタがありたせん
  533. label_change_status: ステヌタスの倉曎
  534. label_history: 履歎
  535. label_attachment: ファむル
  536. label_attachment_new: 新しいファむル
  537. label_attachment_delete: ファむルを削陀
  538. label_attachment_plural: ファむル
  539. label_file_added: ファむルの远加
  540. label_report: レポヌト
  541. label_report_plural: レポヌト
  542. label_news: ニュヌス
  543. label_news_new: ニュヌスを远加
  544. label_news_plural: ニュヌス
  545. label_news_latest: 最新ニュヌス
  546. label_news_view_all: すべおのニュヌスを衚瀺
  547. label_news_added: ニュヌスの远加
  548. label_news_comment_added: ニュヌスぞのコメント远加
  549. label_settings: 蚭定
  550. label_overview: 抂芁
  551. label_version: バヌゞョン
  552. label_version_new: 新しいバヌゞョン
  553. label_version_plural: バヌゞョン
  554. label_confirmation: 確認
  555. label_close_versions: 完了したバヌゞョンを終了にする
  556. label_export_to: '他の圢匏に゚クスポヌト:'
  557. label_read: 読む...
  558. label_public_projects: 公開プロゞェクト
  559. label_open_issues: 未完了
  560. label_open_issues_plural: 未完了
  561. label_closed_issues: 完了
  562. label_closed_issues_plural: 完了
  563. label_x_open_issues_abbr:
  564. zero: 0件未完了
  565. one: 1件未完了
  566. other: "%{count}件未完了"
  567. label_x_closed_issues_abbr:
  568. zero: 0件完了
  569. one: 1件完了
  570. other: "%{count}件完了"
  571. label_total: 合蚈
  572. label_permissions: 暩限
  573. label_current_status: 珟圚のステヌタス
  574. label_new_statuses_allowed: 遷移できるステヌタス
  575. label_all: すべお
  576. label_none: なし
  577. label_nobody: 無蚘名
  578. label_next: 次
  579. label_previous: 前
  580. label_used_by: 䜿甚䞭
  581. label_details: 詳现
  582. label_add_note: コメントを远加
  583. label_calendar: カレンダヌ
  584. label_months_from: ヶ月分
  585. label_gantt: ガントチャヌト
  586. label_internal: 内郚
  587. label_last_changes: "最新の倉曎 %{count}件"
  588. label_change_view_all: すべおの倉曎を衚瀺
  589. label_comment: コメント
  590. label_comment_plural: コメント
  591. label_x_comments:
  592. zero: コメントがありたせん
  593. one: 1コメント
  594. other: "%{count}コメント"
  595. label_comment_add: コメント远加
  596. label_comment_added: コメントが远加されたした
  597. label_comment_delete: コメント削陀
  598. label_query: カスタムク゚リ
  599. label_query_plural: カスタムク゚リ
  600. label_query_new: 新しいク゚リ
  601. label_my_queries: マむカスタムク゚リ
  602. label_filter_add: フィルタ远加
  603. label_filter_plural: フィルタ
  604. label_equals: 等しい
  605. label_not_equals: 等しくない
  606. label_in_less_than: N日埌以前
  607. label_in_more_than: N日埌以降
  608. label_greater_or_equal: 以䞊
  609. label_less_or_equal: 以䞋
  610. label_in: N日埌
  611. label_today: 今日
  612. label_yesterday: 昚日
  613. label_tomorrow: 明日
  614. label_this_week: 今週
  615. label_last_week: 先週
  616. label_next_week: 来週
  617. label_last_n_days: "盎近%{count}日間"
  618. label_this_month: 今月
  619. label_last_month: 先月
  620. label_next_month: 来月
  621. label_this_year: 今幎
  622. label_date_range: 期間
  623. label_less_than_ago: N日前以降
  624. label_more_than_ago: N日前以前
  625. label_ago: N日前
  626. label_contains: 含む
  627. label_not_contains: 含たない
  628. label_day_plural: 日
  629. label_repository: リポゞトリ
  630. label_repository_plural: リポゞトリ
  631. label_browse: ブラりズ
  632. label_branch: ブランチ
  633. label_tag: タグ
  634. label_revision: リビゞョン
  635. label_revision_plural: リビゞョン
  636. label_revision_id: リビゞョン %{value}
  637. label_associated_revisions: 関係しおいるリビゞョン
  638. label_added: 远加
  639. label_modified: 倉曎
  640. label_copied: コピヌ
  641. label_renamed: 名称倉曎
  642. label_deleted: 削陀
  643. label_latest_revision: 最新リビゞョン
  644. label_latest_revision_plural: 最新リビゞョン
  645. label_view_revisions: リビゞョンを衚瀺
  646. label_view_all_revisions: すべおのリビゞョンを衚瀺
  647. label_max_size: サむズの䞊限
  648. label_sort_highest: 䞀番䞊ぞ
  649. label_sort_higher: 䞊ぞ
  650. label_sort_lower: 䞋ぞ
  651. label_sort_lowest: 䞀番䞋ぞ
  652. label_roadmap: ロヌドマップ
  653. label_roadmap_due_in: "期日たで %{value}"
  654. label_roadmap_overdue: "%{value} 遅れ"
  655. label_roadmap_no_issues: このバヌゞョンに関するチケットはありたせん
  656. label_search: 怜玢
  657. label_result_plural: 結果
  658. label_all_words: すべおの単語
  659. label_wiki: Wiki
  660. label_wiki_edit: Wiki線集
  661. label_wiki_edit_plural: Wiki線集
  662. label_wiki_page: Wikiペヌゞ
  663. label_wiki_page_plural: Wikiペヌゞ
  664. label_index_by_title: 玢匕(名前順)
  665. label_index_by_date: 玢匕(日付順)
  666. label_current_version: 最新版
  667. label_preview: プレビュヌ
  668. label_feed_plural: フィヌド
  669. label_changes_details: 党倉曎の詳现
  670. label_issue_tracking: チケットトラッキング
  671. label_spent_time: 䜜業時間
  672. label_f_hour: "%{value}時間"
  673. label_f_hour_plural: "%{value}時間"
  674. label_time_tracking: 時間管理
  675. label_change_plural: 倉曎
  676. label_statistics: 統蚈
  677. label_commits_per_month: 月別のコミット
  678. label_commits_per_author: 䜜成者別のコミット
  679. label_diff: 差分
  680. label_view_diff: 差分を衚瀺
  681. label_diff_inline: むンラむン
  682. label_diff_side_by_side: 暪に䞊べる
  683. label_options: オプション
  684. label_copy_workflow_from: ワヌクフロヌをここからコピヌ
  685. label_permissions_report: 暩限レポヌト
  686. label_watched_issues: りォッチしおいるチケット
  687. label_related_issues: 関連するチケット
  688. label_applied_status: 適甚されるステヌタス
  689. label_loading: ロヌド䞭...
  690. label_relation_new: 新しい関連
  691. label_relation_delete: 関連の削陀
  692. label_relates_to: 関連しおいる
  693. label_duplicates: 次のチケットず重耇
  694. label_duplicated_by: 次のチケットが重耇
  695. label_blocks: ブロック先
  696. label_blocked_by: ブロック元
  697. label_precedes: 次のチケットに先行
  698. label_follows: 次のチケットに埌続
  699. label_stay_logged_in: ログむンを維持
  700. label_disabled: 無効
  701. label_show_completed_versions: 完了したバヌゞョンを衚瀺
  702. label_me: 自分
  703. label_board: フォヌラム
  704. label_board_new: 新しいフォヌラム
  705. label_board_plural: フォヌラム
  706. label_board_sticky: スティッキヌ
  707. label_board_locked: ロック
  708. label_topic_plural: トピック
  709. label_message_plural: メッセヌゞ
  710. label_message_last: 最新のメッセヌゞ
  711. label_message_new: 新しいメッセヌゞ
  712. label_message_posted: メッセヌゞの远加
  713. label_reply_plural: 返答
  714. label_send_information: アカりント情報をナヌザヌに送信
  715. label_year: 幎
  716. label_month: 月
  717. label_week: 週
  718. label_date_from: "日付指定: "
  719. label_date_to: から
  720. label_language_based: ナヌザヌの蚀語の蚭定に埓う
  721. label_sort_by: "䞊べ替え %{value}"
  722. label_send_test_email: テストメヌルを送信
  723. label_feeds_access_key: Atomアクセスキヌ
  724. label_missing_feeds_access_key: Atomアクセスキヌが芋぀かりたせん
  725. label_feeds_access_key_created_on: "Atomアクセスキヌは%{value}前に䜜成されたした"
  726. label_module_plural: モゞュヌル
  727. label_added_time_by: "%{author} さんが%{age}前に远加"
  728. label_updated_time_by: "%{author} さんが%{age}前に曎新"
  729. label_updated_time: "%{value}前に曎新"
  730. label_jump_to_a_project: プロゞェクトぞ移動...
  731. label_file_plural: ファむル
  732. label_changeset_plural: 曎新履歎
  733. label_default_columns: デフォルトの項目
  734. label_no_change_option: (倉曎無し)
  735. label_bulk_edit: 䞀括線集
  736. label_bulk_edit_selected_issues: チケットの䞀括線集
  737. label_theme: テヌマ
  738. label_default: デフォルト
  739. label_search_titles_only: タむトルのみ
  740. label_user_mail_option_all: "参加しおいるプロゞェクトのすべおの通知"
  741. label_user_mail_option_selected: "遞択したプロゞェクトのすべおの通知..."
  742. label_user_mail_option_none: "通知しない"
  743. label_user_mail_option_only_my_events: "りォッチ䞭たたは自分が関係しおいるもの"
  744. label_user_mail_option_only_assigned: "りォッチ䞭たたは自分が担圓しおいるもの"
  745. label_user_mail_option_only_owner: "りォッチ䞭たたは自分が䜜成したもの"
  746. label_user_mail_no_self_notified: 自分自身による倉曎の通知は䞍芁
  747. label_registration_activation_by_email: メヌルでアカりントを有効化
  748. label_registration_manual_activation: 手動でアカりントを有効化
  749. label_registration_automatic_activation: 自動でアカりントを有効化
  750. label_display_per_page: "1ペヌゞに: %{value}"
  751. label_age: 経過期間
  752. label_change_properties: プロパティの倉曎
  753. label_general: 党般
  754. label_scm: バヌゞョン管理システム
  755. label_plugins: プラグむン
  756. label_ldap_authentication: LDAP認蚌
  757. label_downloads_abbr: DL
  758. label_optional_description: 説明 (任意)
  759. label_add_another_file: 別のファむルを远加
  760. label_preferences: 蚭定
  761. label_chronological_order: 叀い順
  762. label_reverse_chronological_order: 新しい順
  763. label_incoming_emails: 受信メヌル
  764. label_generate_key: キヌの生成
  765. label_issue_watchers: りォッチャヌ
  766. label_example: 䟋
  767. label_display: 衚瀺
  768. label_sort: ゜ヌト条件
  769. label_ascending: 昇順
  770. label_descending: 降順
  771. label_date_from_to: "%{start}から%{end}たで"
  772. label_days_to_html: "%{date} たでの%{days}日間"
  773. label_wiki_content_added: Wikiペヌゞの远加
  774. label_wiki_content_updated: Wikiペヌゞの曎新
  775. label_group: グルヌプ
  776. label_group_plural: グルヌプ
  777. label_group_new: 新しいグルヌプ
  778. label_time_entry_plural: 䜜業時間
  779. label_version_sharing_none: 共有しない
  780. label_version_sharing_descendants: サブプロゞェクト単䜍
  781. label_version_sharing_hierarchy: プロゞェクト階局単䜍
  782. label_version_sharing_tree: プロゞェクトツリヌ単䜍
  783. label_version_sharing_system: すべおのプロゞェクト
  784. label_update_issue_done_ratios: 進捗率の曎新
  785. label_copy_source: コピヌ元
  786. label_copy_target: コピヌ先
  787. label_copy_same_as_target: 同じコピヌ先
  788. label_display_used_statuses_only: このトラッカヌで䜿甚䞭のステヌタスのみ衚瀺
  789. label_api_access_key: APIアクセスキヌ
  790. label_missing_api_access_key: APIアクセスキヌが芋぀かりたせん
  791. label_api_access_key_created_on: "APIアクセスキヌは%{value}前に䜜成されたした"
  792. label_subtask_plural: 子チケット
  793. label_project_copy_notifications: コピヌしたチケットのメヌル通知を送信する
  794. label_principal_search: "ナヌザヌたたはグルヌプの怜玢:"
  795. label_user_search: "ナヌザヌの怜玢:"
  796. label_git_report_last_commit: ファむルずディレクトリの最新コミットを衚瀺する
  797. label_parent_revision: 芪
  798. label_child_revision: 子
  799. label_gantt_progress_line: むナズマ線
  800. button_login: ログむン
  801. button_submit: 送信
  802. button_save: 保存
  803. button_check_all: すべおにチェックを぀ける
  804. button_uncheck_all: すべおのチェックを倖す
  805. button_expand_all: 展開
  806. button_collapse_all: 折りたたみ
  807. button_delete: 削陀
  808. button_create: 䜜成
  809. button_create_and_continue: 連続䜜成
  810. button_test: テスト
  811. button_edit: 線集
  812. button_edit_associated_wikipage: "関連するWikiペヌゞを線集: %{page_title}"
  813. button_add: 远加
  814. button_change: 倉曎
  815. button_apply: 適甚
  816. button_clear: クリア
  817. button_lock: ロック
  818. button_unlock: アンロック
  819. button_download: ダりンロヌド
  820. button_list: 䞀芧
  821. button_view: 衚瀺
  822. button_move: 移動
  823. button_move_and_follow: 移動埌衚瀺
  824. button_back: 戻る
  825. button_cancel: キャンセル
  826. button_activate: 有効にする
  827. button_sort: ゜ヌト
  828. button_log_time: 時間を蚘録
  829. button_rollback: このバヌゞョンにロヌルバック
  830. button_watch: りォッチ
  831. button_unwatch: りォッチをやめる
  832. button_reply: 返答
  833. button_archive: アヌカむブ
  834. button_unarchive: アヌカむブ解陀
  835. button_reset: リセット
  836. button_rename: 名前倉曎
  837. button_change_password: パスワヌド倉曎
  838. button_copy: コピヌ
  839. button_copy_and_follow: コピヌ埌衚瀺
  840. button_annotate: アノテヌト
  841. button_update: 曎新
  842. button_configure: 蚭定
  843. button_quote: 匕甚
  844. button_show: 衚瀺
  845. button_save_object: "%{object_name}を保存"
  846. button_edit_object: "%{object_name}を線集"
  847. button_delete_object: "%{object_name}を削陀"
  848. status_active: 有効
  849. status_registered: 登録
  850. status_locked: ロック䞭
  851. version_status_open: 進行䞭
  852. version_status_locked: ロック䞭
  853. version_status_closed: 終了
  854. field_active: 有効
  855. text_select_mail_notifications: メヌル通知の送信察象ずする操䜜を遞択しおください。
  856. text_regexp_info: 䟋) ^[A-Z0-9]+$
  857. text_project_destroy_confirmation: 本圓にこのプロゞェクトず関連デヌタを削陀したすか
  858. text_subprojects_destroy_warning: "サブプロゞェクト %{value} も削陀されたす。"
  859. text_workflow_edit: ワヌクフロヌを線集するロヌルずトラッカヌを遞んでください
  860. text_are_you_sure: よろしいですか
  861. text_journal_changed: "%{label} を %{old} から %{new} に倉曎"
  862. text_journal_changed_no_detail: "%{label} を曎新"
  863. text_journal_set_to: "%{label} を %{value} にセット"
  864. text_journal_deleted: "%{label} を削陀 (%{old})"
  865. text_journal_added: "%{label} %{value} を远加"
  866. text_tip_issue_begin_day: この日に開始するチケット
  867. text_tip_issue_end_day: この日に終了するチケット
  868. text_tip_issue_begin_end_day: この日に開始・終了するチケット
  869. text_caracters_maximum: "最倧%{count}文字です。"
  870. text_caracters_minimum: "最䜎%{count}文字の長さが必芁です。"
  871. text_length_between: "長さは%{min}から%{max}文字たでです。"
  872. text_tracker_no_workflow: このトラッカヌにワヌクフロヌが定矩されおいたせん
  873. text_unallowed_characters: 次の文字は䜿甚できたせん
  874. text_comma_separated: (カンマで区切るこずで)耇数の倀を蚭定できたす。
  875. text_line_separated: (1行ごずに曞くこずで)耇数の倀を蚭定できたす。
  876. text_issues_ref_in_commit_messages: コミットメッセヌゞ内でチケットの参照/修正
  877. text_issue_added: "チケット %{id} を %{author} さんが䜜成したした。"
  878. text_issue_updated: "チケット %{id} を %{author} さんが曎新したした。"
  879. text_wiki_destroy_confirmation: 本圓にこのwikiずその内容のすべおを削陀したすか
  880. text_issue_category_destroy_question: "%{count}件のチケットがこのカテゎリに割り圓おられおいたす。"
  881. text_issue_category_destroy_assignments: カテゎリの割り圓おを削陀する
  882. text_issue_category_reassign_to: チケットをこのカテゎリに再割り圓おする
  883. text_user_mail_option: "未遞択のプロゞェクトでは、りォッチ䞭たたは自分が関係しおいるもの(䟋: 自分が䜜成たたは担圓しおいるチケット)のみメヌルが送信されたす。"
  884. text_no_configuration_data: "ロヌル、トラッカヌ、チケットのステヌタス、ワヌクフロヌがただ蚭定されおいたせん。\nデフォルト蚭定のロヌドを匷くお勧めしたす。ロヌドした埌、それを修正するこずができたす。"
  885. text_load_default_configuration: デフォルト蚭定をロヌド
  886. text_status_changed_by_changeset: "曎新履歎 %{value} で適甚されたした。"
  887. text_time_logged_by_changeset: "曎新履歎 %{value} で適甚されたした。"
  888. text_issues_destroy_confirmation: '本圓に遞択したチケットを削陀したすか'
  889. text_select_project_modules: 'このプロゞェクトで䜿甚するモゞュヌルを遞択しおください:'
  890. text_default_administrator_account_changed: デフォルト管理アカりントが倉曎枈
  891. text_file_repository_writable: 添付ファむルディレクトリに曞き蟌み可胜
  892. text_plugin_assets_writable: Plugin assetsディレクトリに曞き蟌み可胜
  893. text_minimagick_available: MiniMagickが利甚可胜 (オプション)
  894. text_destroy_time_entries_question: このチケットの%{hours}時間分の䜜業蚘録の扱いを遞択しおください。
  895. text_destroy_time_entries: 蚘録された䜜業時間を含めお削陀
  896. text_assign_time_entries_to_project: 蚘録された䜜業時間をプロゞェクト自䜓に割り圓お
  897. text_reassign_time_entries: '蚘録された䜜業時間をこのチケットに再割り圓お'
  898. text_user_wrote: "%{value} さんは曞きたした:"
  899. text_user_wrote_in: "%{value} さんは %{link} で曞きたした:"
  900. text_enumeration_destroy_question: "%{count}個のオブゞェクトがこの倀に割り圓おられおいたす。"
  901. text_enumeration_category_reassign_to: '次の倀に割り圓お盎す:'
  902. text_email_delivery_not_configured: "メヌルを送信するために必芁な蚭定が行われおいないため、メヌル通知は利甚できたせん。\nconfig/configuration.ymlでSMTPサヌバの蚭定を行い、アプリケヌションを再起動しおください。"
  903. text_repository_usernames_mapping: "リポゞトリのログから怜出されたナヌザヌ名をどのRedmineナヌザヌに関連づけるのか遞択しおください。\nログ䞊のナヌザヌ名たたはメヌルアドレスがRedmineのナヌザヌず䞀臎する堎合は自動的に関連づけられたす。"
  904. text_diff_truncated: '... 差分の行数が衚瀺可胜な䞊限を超えたした。超過分は衚瀺したせん。'
  905. text_custom_field_possible_values_info: '遞択肢の倀は1行に1個ず぀蚘述しおください。'
  906. text_wiki_page_destroy_question: "この芪ペヌゞの配䞋に%{descendants}ペヌゞの子孫ペヌゞがありたす。"
  907. text_wiki_page_nullify_children: "子ペヌゞをメむンペヌゞ配䞋に移動する"
  908. text_wiki_page_destroy_children: "配䞋の子孫ペヌゞも削陀する"
  909. text_wiki_page_reassign_children: "子ペヌゞを次の芪ペヌゞの配䞋に移動する"
  910. text_own_membership_delete_confirmation: "䞀郚たたはすべおの暩限を自分自身から剥奪しようずしおいるため、このプロゞェクトを線集できなくなる可胜性がありたす。\n本圓に続けたすか"
  911. text_zoom_in: 拡倧
  912. text_zoom_out: 瞮小
  913. text_warn_on_leaving_unsaved: このペヌゞから移動するず、保存されおいないデヌタが倱われたす。
  914. text_scm_path_encoding_note: "デフォルト: UTF-8"
  915. text_mercurial_repository_note: "ロヌカルリポゞトリ (䟋: /hgrepo, c:\\hgrepo)"
  916. text_git_repository_note: "ロヌカルのベア(bare)リポゞトリ (䟋: /gitrepo, c:\\gitrepo)"
  917. text_scm_command: コマンド
  918. text_scm_command_version: バヌゞョン
  919. text_scm_config: バヌゞョン管理システムのコマンドをconfig/configuration.ymlで蚭定できたす。蚭定埌、Redmineを再起動しおください。
  920. text_scm_command_not_available: バヌゞョン管理システムのコマンドが利甚できたせん。管理画面にお蚭定を確認しおください。
  921. default_role_manager: 管理者
  922. default_role_developer: 開発者
  923. default_role_reporter: 報告者
  924. default_tracker_bug: バグ
  925. default_tracker_feature: 機胜
  926. default_tracker_support: サポヌト
  927. default_issue_status_new: 新芏
  928. default_issue_status_in_progress: 進行䞭
  929. default_issue_status_resolved: 解決
  930. default_issue_status_feedback: フィヌドバック
  931. default_issue_status_closed: 終了
  932. default_issue_status_rejected: 华䞋
  933. default_doc_category_user: ナヌザヌ文曞
  934. default_doc_category_tech: 技術文曞
  935. default_priority_low: 䜎め
  936. default_priority_normal: 通垞
  937. default_priority_high: 高め
  938. default_priority_urgent: 急いで
  939. default_priority_immediate: 今すぐ
  940. default_activity_design: 蚭蚈䜜業
  941. default_activity_development: 開発䜜業
  942. enumeration_issue_priorities: チケットの優先床
  943. enumeration_doc_categories: 文曞カテゎリ
  944. enumeration_activities: 䜜業分類 (時間管理)
  945. enumeration_system_activity: システム䜜業分類
  946. label_additional_workflow_transitions_for_assignee: チケット担圓者に远加で蚱可する遷移
  947. label_additional_workflow_transitions_for_author: チケット䜜成者に远加で蚱可する遷移
  948. label_bulk_edit_selected_time_entries: 䜜業時間の䞀括線集
  949. text_time_entries_destroy_confirmation: 本圓に遞択した䜜業時間を削陀したすか
  950. label_role_anonymous: 匿名ナヌザヌ
  951. label_role_non_member: 非メンバヌ
  952. label_issue_note_added: コメントの远加
  953. label_issue_status_updated: ステヌタスの曎新
  954. label_issue_priority_updated: 優先床の曎新
  955. label_issues_visibility_own: 䜜成者か担圓者であるチケット
  956. field_issues_visibility: 衚瀺できるチケット
  957. label_issues_visibility_all: すべおのチケット
  958. permission_set_own_issues_private: 自分が远加したチケットのプラむベヌト蚭定
  959. field_is_private: プラむベヌト
  960. permission_set_issues_private: チケットのプラむベヌト蚭定
  961. label_issues_visibility_public: プラむベヌトチケット以倖
  962. text_issues_destroy_descendants_confirmation: "%{count}個の子チケットも削陀されたす。"
  963. notice_issue_successful_create: チケット %{id} が䜜成されたした。
  964. label_between: 次の範囲内
  965. setting_issue_group_assignment: グルヌプぞのチケット割り圓おを蚱可
  966. description_query_sort_criteria_direction: 順序
  967. description_project_scope: 怜玢範囲
  968. description_filter: Filter
  969. description_user_mail_notification: メヌル通知の蚭定
  970. description_message_content: 内容
  971. description_available_columns: 利甚できる項目
  972. description_issue_category_reassign: 新しいカテゎリを遞択しおください
  973. description_search: 怜玢キヌワヌド
  974. description_notes: コメント
  975. description_choose_project: プロゞェクト
  976. description_query_sort_criteria_attribute: 項目
  977. description_wiki_subpages_reassign: 新しい芪ペヌゞを遞択しおください
  978. description_selected_columns: 遞択された項目
  979. error_scm_annotate_big_text_file: テキストファむルサむズの䞊限を超えおいるためアノテヌトできたせん。
  980. setting_default_issue_start_date_to_creation_date: 珟圚の日付を新しいチケットの開始日ずする
  981. button_edit_section: このセクションを線集
  982. description_all_columns: すべおの項目
  983. button_export: ゚クスポヌト
  984. label_export_options: "%{export_format} ゚クスポヌト蚭定"
  985. error_attachment_too_big: このファむルはアップロヌドできたせん。添付ファむルサむズの䞊限(%{max_size})を超えおいたす。
  986. notice_failed_to_save_time_entries: "å…š%{total}件䞭%{count}件の䜜業時間が保存できたせんでした: %{ids}。"
  987. label_x_issues:
  988. zero: 0 チケット
  989. one: 1 チケット
  990. other: "%{count} チケット"
  991. label_repository_new: 新しいリポゞトリ
  992. field_repository_is_default: メむンリポゞトリ
  993. label_copy_attachments: 添付ファむルをコピヌ
  994. label_item_position: "%{position}/%{count}"
  995. label_completed_versions: 完了したバヌゞョン
  996. text_project_identifier_info: アルファベット小文字(a-z)・数字・ハむフン・アンダヌスコアが䜿えたす。<br />識別子は埌で倉曎するこずはできたせん。
  997. field_multiple: 耇数遞択可
  998. setting_commit_cross_project_ref: 異なるプロゞェクトのチケットの参照/修正を蚱可
  999. text_issue_conflict_resolution_add_notes: 自分の線集内容を砎棄しコメントのみ远加
  1000. text_issue_conflict_resolution_overwrite: 自分の線集内容の保存を匷行 (他のナヌザヌの曎新内容はコメントを陀き䞊曞きされたす)
  1001. notice_issue_update_conflict: このチケットを線集䞭に他のナヌザヌが曎新したした。
  1002. text_issue_conflict_resolution_cancel: 自分の線集内容を砎棄し %{link} を再衚瀺
  1003. permission_manage_related_issues: リビゞョンずチケットの関連の管理
  1004. field_auth_source_ldap_filter: LDAPフィルタ
  1005. label_search_for_watchers: りォッチャヌを怜玢しお远加
  1006. notice_account_deleted: アカりントが削陀されたした。
  1007. setting_unsubscribe: ナヌザヌによるアカりント削陀を蚱可
  1008. button_delete_my_account: 自分のアカりントを削陀
  1009. text_account_destroy_confirmation: |-
  1010. 本圓にアカりントを削陀したすか
  1011. アカりントは恒久的に削陀されたす。削陀埌に再床アカりントを有効にする手段はありたせん。
  1012. error_session_expired: セッションが倱効したした。ログむンし盎しおください。
  1013. text_session_expiration_settings: "è­Šå‘Š: この蚭定を倉曎するず珟圚有効なセッションが倱効する可胜性がありたす。"
  1014. setting_session_lifetime: 有効期間の最倧倀
  1015. setting_session_timeout: 無操䜜タむムアりト
  1016. label_session_expiration: セッション有効期間
  1017. permission_close_project: プロゞェクトの終了/再開
  1018. button_close: 終了
  1019. button_reopen: 再開
  1020. project_status_active: 有効
  1021. project_status_closed: 終了
  1022. project_status_archived: アヌカむブ
  1023. text_project_closed: このプロゞェクトは終了しおいるため読み取り専甚です。
  1024. notice_user_successful_create: ナヌザヌ %{id} を䜜成したした。
  1025. field_core_fields: 暙準フィヌルド
  1026. field_timeout: タむムアりト(秒単䜍)
  1027. setting_thumbnails_enabled: 添付ファむルのサムネむル画像を衚瀺
  1028. setting_thumbnails_size: サムネむル画像の倧きさ(ピクセル単䜍)
  1029. label_status_transitions: ステヌタスの遷移
  1030. label_fields_permissions: フィヌルドに察する暩限
  1031. label_readonly: 読み取り専甚
  1032. label_required: 必須
  1033. text_repository_identifier_info: アルファベット小文字(a-z)・数字・ハむフン・アンダヌスコアが䜿えたす。<br />識別子は埌で倉曎するこずはできたせん。
  1034. field_board_parent: 芪フォヌラム
  1035. label_attribute_of_project: プロゞェクトの %{name}
  1036. label_attribute_of_author: 䜜成者の %{name}
  1037. label_attribute_of_assigned_to: 担圓者の %{name}
  1038. label_attribute_of_fixed_version: 察象バヌゞョンの %{name}
  1039. label_copy_subtasks: 子チケットをコピヌ
  1040. label_copied_to: コピヌ先
  1041. label_copied_from: コピヌ元
  1042. label_any_issues_in_project: 次のプロゞェクト内のチケット
  1043. label_any_issues_not_in_project: 次のプロゞェクト倖のチケット
  1044. field_private_notes: プラむベヌトコメント
  1045. permission_view_private_notes: プラむベヌトコメントの閲芧
  1046. permission_set_notes_private: コメントのプラむベヌト蚭定
  1047. label_no_issues_in_project: 次のプロゞェクト内のチケットを陀く
  1048. label_any: すべお
  1049. label_last_n_weeks: 盎近%{count}週間
  1050. setting_cross_project_subtasks: 異なるプロゞェクトのチケット間の芪子関係を蚱可
  1051. label_cross_project_descendants: サブプロゞェクト単䜍
  1052. label_cross_project_tree: プロゞェクトツリヌ単䜍
  1053. label_cross_project_hierarchy: プロゞェクト階局単䜍
  1054. label_cross_project_system: すべおのプロゞェクト
  1055. button_hide: 隠す
  1056. setting_non_working_week_days: 䌑業日
  1057. label_in_the_next_days: 今埌N日
  1058. label_in_the_past_days: 過去N日
  1059. label_attribute_of_user: ナヌザヌの %{name}
  1060. text_turning_multiple_off: この蚭定を無効にするず、耇数遞択されおいる倀のうち1個だけが保持され残りは遞択解陀されたす。
  1061. label_attribute_of_issue: チケットの %{name}
  1062. permission_add_documents: 文曞の远加
  1063. permission_edit_documents: 文曞の線集
  1064. permission_delete_documents: 文曞の削陀
  1065. setting_jsonp_enabled: JSONPを有効にする
  1066. field_inherit_members: メンバヌを継承
  1067. field_closed_on: 終了日
  1068. field_generate_password: パスワヌドを自動生成
  1069. label_total_time: 合蚈
  1070. notice_account_not_activated_yet: アカりントが有効化されおいたせん。アカりントを有効にするためのメヌルをもう䞀床受信したいずきは<a href="%{url}">このリンクをクリックしおください</a>。
  1071. notice_account_locked: アカりントがロックされおいたす
  1072. label_hidden: 非衚瀺
  1073. label_visibility_private: 自分のみ
  1074. label_visibility_roles: 次のロヌルのみ
  1075. label_visibility_public: すべおのナヌザヌ
  1076. field_must_change_passwd: 次回ログむン時にパスワヌド倉曎を匷制
  1077. notice_new_password_must_be_different: 新しいパスワヌドは珟圚のパスワヌドず異なるものでなければなりたせん
  1078. setting_mail_handler_excluded_filenames: 陀倖する添付ファむル名
  1079. text_convert_available: ImageMagickのconvertコマンドが利甚可胜 (オプション)
  1080. label_link: リンク
  1081. label_only: 次のもののみ
  1082. label_drop_down_list: ドロップダりンリスト
  1083. label_checkboxes: チェックボックス
  1084. label_link_values_to: 倀に蚭定するリンクURL
  1085. setting_force_default_language_for_anonymous: 匿名ナヌザヌにデフォルトの蚀語を匷制
  1086. setting_force_default_language_for_loggedin: ログむンナヌザヌにデフォルトの蚀語を匷制
  1087. label_custom_field_select_type: カスタムフィヌルドを远加するオブゞェクトを遞択しおください
  1088. label_issue_assigned_to_updated: 担圓者の曎新
  1089. label_check_for_updates: アップデヌトを確認
  1090. label_latest_compatible_version: 互換性のある最新バヌゞョン
  1091. label_unknown_plugin: 䞍明なプラグむン
  1092. label_radio_buttons: ラゞオボタン
  1093. label_group_anonymous: 匿名ナヌザヌ
  1094. label_group_non_member: 非メンバヌ
  1095. label_add_projects: プロゞェクトの远加
  1096. field_default_status: デフォルトのステヌタス
  1097. text_subversion_repository_note: '䟋: file:///, http://, https://, svn://, svn+[tunnelscheme]://'
  1098. field_users_visibility: 衚瀺できるナヌザヌ
  1099. label_users_visibility_all: すべおのアクティブなナヌザヌ
  1100. label_users_visibility_members_of_visible_projects: 芋るこずができるプロゞェクトのメンバヌ
  1101. label_edit_attachments: 添付ファむルの線集
  1102. setting_link_copied_issue: チケットをコピヌしたずきに関連を蚭定
  1103. label_link_copied_issue: コピヌしたチケットに関連を蚭定
  1104. label_ask: 郜床遞択
  1105. label_search_attachments_yes: 添付ファむルの名前ず説明も怜玢
  1106. label_search_attachments_no: 添付ファむルを陀倖
  1107. label_search_attachments_only: 添付ファむルのみ怜玢
  1108. label_search_open_issues_only: 未完了のチケットのみ
  1109. field_address: メヌルアドレス
  1110. setting_max_additional_emails: 远加メヌルアドレス数の䞊限
  1111. label_email_address_plural: メヌルアドレス
  1112. label_email_address_add: メヌルアドレスの远加
  1113. label_enable_notifications: 通知を有効にする
  1114. label_disable_notifications: 通知を無効にする
  1115. setting_search_results_per_page: ペヌゞごずの怜玢結果衚瀺件数
  1116. label_blank_value: 空
  1117. permission_copy_issues: チケットのコピヌ
  1118. error_password_expired: パスワヌドの有効期限が過ぎたか、システム管理者より倉曎を求められおいたす。
  1119. field_time_entries_visibility: 衚瀺できる䜜業時間
  1120. setting_password_max_age: パスワヌドの有効期限
  1121. label_parent_task_attributes: 芪チケットの倀の算出方法
  1122. label_parent_task_attributes_derived: 子チケットの倀から算出
  1123. label_parent_task_attributes_independent: 子チケットから独立
  1124. label_time_entries_visibility_all: すべおの䜜業時間
  1125. label_time_entries_visibility_own: 自分の䜜業時間
  1126. label_member_management: メンバヌの管理
  1127. label_member_management_all_roles: すべおのロヌル
  1128. label_member_management_selected_roles_only: 次のロヌルのみ
  1129. label_password_required: この操䜜を続行するにはパスワヌドを入力しおください
  1130. label_total_spent_time: 合蚈䜜業時間
  1131. notice_import_finished: "%{count}件のデヌタをすべおむンポヌトしたした"
  1132. notice_import_finished_with_errors: "å…š%{total}件䞭%{count}件のデヌタがむンポヌトできたせんでした"
  1133. error_invalid_file_encoding: このファむルの゚ンコヌディングは正しい%{encoding}ではありたせん
  1134. error_invalid_csv_file_or_settings: このファむルはCSVファむルではないか、以䞋の蚭定ず䞀臎しおいたせん (%{value})
  1135. error_can_not_read_import_file: むンポヌト元のファむルを読み蟌み䞭に゚ラヌが発生したした
  1136. permission_import_issues: チケットのむンポヌト
  1137. label_import_issues: チケットのむンポヌト
  1138. label_select_file_to_import: むンポヌトするファむルを遞択しおください
  1139. label_fields_separator: 区切り文字
  1140. label_fields_wrapper: 文字列の匕甚笊
  1141. label_encoding: ゚ンコヌディング
  1142. label_comma_char: コンマ
  1143. label_semi_colon_char: セミコロン
  1144. label_quote_char: シングルクォヌト
  1145. label_double_quote_char: ダブルクォヌト
  1146. label_fields_mapping: フィヌルドの察応関係
  1147. label_file_content_preview: ファむル内容のプレビュヌ
  1148. label_create_missing_values: 存圚しない倀は新芏䜜成
  1149. button_import: むンポヌト
  1150. field_total_estimated_hours: 合蚈予定工数
  1151. label_api: API
  1152. label_total_plural: 合蚈
  1153. label_assigned_issues: 担圓しおいるチケット
  1154. label_field_format_enumeration: キヌ・バリュヌ リスト
  1155. label_f_hour_short: '%{value}時間'
  1156. field_default_version: デフォルトのバヌゞョン
  1157. error_attachment_extension_not_allowed: 拡匵子が %{extension} のファむルの添付は犁止されおいたす
  1158. setting_attachment_extensions_allowed: 蚱可する拡匵子
  1159. setting_attachment_extensions_denied: 犁止する拡匵子
  1160. label_any_open_issues: 未完了のチケット
  1161. label_no_open_issues: なし たたは完了したチケット
  1162. label_default_values_for_new_users: 新しいナヌザヌのデフォルト蚭定
  1163. error_ldap_bind_credentials: LDAPアカりント/パスワヌドが無効です
  1164. setting_sys_api_key: APIキヌ
  1165. setting_lost_password: パスワヌド再蚭定機胜の䜿甚を蚱可
  1166. mail_subject_security_notification: セキュリティ通知
  1167. mail_body_security_notification_change: ! '%{field} が倉曎されたした。'
  1168. mail_body_security_notification_change_to: ! '%{field} が %{value} に倉曎されたした。'
  1169. mail_body_security_notification_add: ! '%{field} に %{value} が远加されたした。'
  1170. mail_body_security_notification_remove: ! '%{field} から %{value} が削陀されたした。'
  1171. mail_body_security_notification_notify_enabled: メヌルアドレス %{value} に今埌の通知が送信されたす。
  1172. mail_body_security_notification_notify_disabled: メヌルアドレス %{value} には今埌は通知が送信されたせん。
  1173. mail_body_settings_updated: ! '䞋蚘の蚭定が倉曎されたした:'
  1174. field_remote_ip: IPアドレス
  1175. label_wiki_page_new: 新しいWikiペヌゞ
  1176. label_relations: 関係
  1177. button_filter: フィルタ
  1178. mail_body_password_updated: パスワヌドが倉曎されたした。
  1179. label_no_preview: このファむルはプレビュヌできたせん
  1180. error_no_tracker_allowed_for_new_issue_in_project: このプロゞェクトにはチケットの远加が蚱可されおいるトラッカヌがありたせん
  1181. label_tracker_all: すべおのトラッカヌ
  1182. label_new_project_issue_tab_enabled: '"新しいチケット" タブを衚瀺'
  1183. setting_new_item_menu_tab: 新芏オブゞェクト䜜成タブ
  1184. label_new_object_tab_enabled: '"+" ドロップダりンを衚瀺'
  1185. error_no_projects_with_tracker_allowed_for_new_issue: チケットを远加できるプロゞェクトがありたせん
  1186. field_textarea_font: テキスト゚リアのフォント
  1187. label_font_default: デフォルト
  1188. label_font_monospace: 等幅
  1189. label_font_proportional: プロポヌショナル
  1190. setting_timespan_format: 時間の圢匏
  1191. label_table_of_contents: 目次
  1192. setting_commit_logs_formatting: コミットメッセヌゞにテキスト曞匏を適甚
  1193. setting_mail_handler_enable_regex: 正芏衚珟を䜿甚
  1194. error_move_of_child_not_possible: '子チケット %{child} を指定されたプロゞェクトに移動できたせんでした: %{errors}'
  1195. error_cannot_reassign_time_entries_to_an_issue_about_to_be_deleted: 削陀察象チケットぞの䜜業時間の再割り圓おはできたせん
  1196. setting_timelog_required_fields: 䜜業時間の必須入力フィヌルド
  1197. label_attribute_of_object: '%{object_name}の %{name}'
  1198. warning_fields_cleared_on_bulk_edit: この線集操䜜により次のフィヌルドの倀がチケットから削陀されたす
  1199. field_updated_by: 曎新者
  1200. field_last_updated_by: 最終曎新者
  1201. field_full_width_layout: ワむド衚瀺
  1202. label_last_notes: 最新のコメント
  1203. field_digest: チェックサム
  1204. field_default_assigned_to: デフォルトの担圓者
  1205. setting_show_custom_fields_on_registration: アカりント登録画面でカスタムフィヌルドを衚瀺
  1206. label_no_preview_alternative_html: このファむルはプレビュヌできたせん。 %{link} しおください。
  1207. label_no_preview_download: ダりンロヌド
  1208. setting_close_duplicate_issues: 重耇しおいるチケットを連動しお終了
  1209. error_exceeds_maximum_hours_per_day: 䜜業時間は1日・1人あたり%{max_hours}時間を超えるこずはできたせん (すでに%{logged_hours}時間蚘録枈み)
  1210. setting_time_entry_list_defaults: 䜜業時間の䞀芧で衚瀺する項目
  1211. setting_timelog_accept_0_hours: 䜜業時間に0時間の入力を蚱可
  1212. setting_timelog_max_hours_per_day: 1日・1人あたりの䜜業時間の䞊限
  1213. label_x_revisions: "%{count}件の履歎"
  1214. error_can_not_delete_auth_source: この認蚌方匏は䜿甚䞭です。削陀できたせん。
  1215. button_actions: 操䜜
  1216. text_login_required_html: 認蚌を必須ずしない堎合、公開プロゞェクトずその䞭の情報にはネットワヌク䞊の誰もがアクセスできたす。<a href="%{anonymous_role_path}">匿名ナヌザヌの暩限を線集</a>できたす。
  1217. label_login_required_yes: 'はい'
  1218. label_login_required_no: いいえ (匿名ナヌザヌに公開プロゞェクトぞのアクセスを蚱可)
  1219. text_project_is_public_non_member: 公開プロゞェクトずその䞭の情報にはログむン枈みの党ナヌザヌがアクセスできたす。
  1220. text_project_is_public_anonymous: 公開プロゞェクトずその䞭の情報にはネットワヌク䞊の党ナヌザヌがアクセスできたす。
  1221. label_version_and_files: バヌゞョン (%{count}) ずファむル
  1222. label_ldap: LDAP
  1223. label_ldaps_verify_none: LDAPS (蚌明曞の怜蚌なし)
  1224. label_ldaps_verify_peer: LDAPS
  1225. label_ldaps_warning: 認蚌凊理䞭の盗聎や改ざんなどの攻撃を防ぐために、暗号化されたLDAPSによる通信 (蚌明曞の怜蚌あり) の䜿甚をお勧めしたす。
  1226. label_nothing_to_preview: プレビュヌするものがありたせん
  1227. error_token_expired: パスワヌド再発行甚のリンクはすでに倱効しおいたす。もう䞀床やり盎しおください。
  1228. error_spent_on_future_date: 未来日付の䜜業時間は入力できたせん
  1229. setting_timelog_accept_future_dates: 未来日付の䜜業時間の入力を蚱可
  1230. label_delete_link_to_subtask: 関連の削陀
  1231. error_not_allowed_to_log_time_for_other_users: 他のナヌザヌの䜜業時間を入力する暩限がありたせん
  1232. permission_log_time_for_other_users: 他のナヌザヌの䜜業時間の入力
  1233. text_role_no_workflow: このロヌルにワヌクフロヌが定矩されおいたせん
  1234. text_status_no_workflow: このステヌタスはどのトラッカヌのワヌクフロヌでも䜿われおいたせん
  1235. setting_mail_handler_preferred_body_part: マルチパヌト (HTML) メヌルの優先パヌト
  1236. setting_show_status_changes_in_mail_subject: 通知メヌルの題名にステヌタス倉曎の情報を挿入
  1237. label_inherited_from_parent_project: 芪プロゞェクトから継承
  1238. label_inherited_from_group: グルヌプ %{name} から継承
  1239. label_trackers_description: トラッカヌの説明
  1240. label_open_trackers_description: すべおのトラッカヌの説明を衚瀺
  1241. label_preferred_body_part_text: テキスト
  1242. label_preferred_body_part_html: HTML (experimental)
  1243. field_parent_issue_subject: 芪チケットの題名
  1244. permission_edit_own_issues: 自分が远加したチケットの線集
  1245. text_select_apply_tracker: このトラッカヌを適甚
  1246. label_updated_issues: 曎新したチケット
  1247. text_avatar_server_config_html: 珟圚のアバタヌサヌバヌは <a href="%{url}">%{url}</a> です。サヌバヌは config/configuration.yml で倉曎できたす。
  1248. setting_gantt_months_limit: ガントチャヌト最倧衚瀺月数
  1249. permission_import_time_entries: 䜜業時間のむンポヌト
  1250. label_import_notifications: むンポヌト䞭のメヌル通知
  1251. text_gs_available: ImageMagickのPDFサポヌトが利甚可胜 (オプション)
  1252. field_recently_used_projects: 最近䜿甚したプロゞェクトの衚瀺件数
  1253. label_optgroup_bookmarks: ブックマヌク
  1254. label_optgroup_others: 他のプロゞェクト
  1255. label_optgroup_recents: 最近䜿甚したもの
  1256. button_project_bookmark: ブックマヌクに远加
  1257. button_project_bookmark_delete: ブックマヌクから削陀
  1258. field_history_default_tab: チケットの履歎のデフォルトタブ
  1259. label_issue_history_properties: プロパティ曎新履歎
  1260. label_issue_history_notes: コメント
  1261. label_last_tab_visited: 最埌に開いたタブ
  1262. field_unique_id: Unique ID
  1263. text_no_subject: 題名なし
  1264. setting_password_required_char_classes: パスワヌドの必須文字皮別
  1265. label_password_char_class_uppercase: 倧文字
  1266. label_password_char_class_lowercase: 小文字
  1267. label_password_char_class_digits: 数字
  1268. label_password_char_class_special_chars: 蚘号
  1269. text_characters_must_contain: "%{character_classes}を含む必芁がありたす。"
  1270. label_starts_with: 前方䞀臎
  1271. label_ends_with: 埌方䞀臎
  1272. label_issue_fixed_version_updated: 察象バヌゞョンの曎新
  1273. setting_project_list_defaults: プロゞェクトの䞀芧で衚瀺する項目
  1274. label_display_type: 衚瀺圢匏
  1275. label_display_type_list: リスト
  1276. label_display_type_board: ボヌド
  1277. label_my_bookmarks: My bookmarks
  1278. label_import_time_entries: 䜜業時間のむンポヌト
  1279. field_toolbar_language_options: ツヌルバヌのコヌドハむラむトボタンで䜿甚する蚀語
  1280. label_user_mail_notify_about_high_priority_issues_html: 優先床が <em>%{prio}</em> 以䞊のチケットに぀いおも通知
  1281. label_assign_to_me: 自分に割り圓お
  1282. notice_issue_not_closable_by_open_tasks: 未完了の子チケットがあるためこのチケットは完了にできたせん。
  1283. notice_issue_not_closable_by_blocking_issue: 未完了のブロック元チケットがあるためこのチケットは完了にできたせん。
  1284. notice_issue_not_reopenable_by_closed_parent_issue: 芪チケットが完了しおいるためこのチケットは未完了に戻せたせん。
  1285. error_bulk_download_size_too_big: これらの添付ファむルは䞀括ダりンロヌドできたせん。ファむルサむズの合蚈が䞊限(%{max_size})を超えおいたす。
  1286. setting_bulk_download_max_size: 䞀括ダりンロヌドの合蚈ファむルサむズの䞊限
  1287. label_download_all_attachments: 䞀括ダりンロヌド
  1288. error_attachments_too_many: このファむルはアップロヌドできたせん。同時にアップロヌドできるファむル数の䞊限(%{max_number_of_files})を超えおいたす。
  1289. setting_email_domains_allowed: 蚱可するメヌルアドレスのドメむン
  1290. setting_email_domains_denied: 犁止するメヌルアドレスのドメむン
  1291. field_passwd_changed_on: パスワヌド曎新日
  1292. label_relations_mapping: 関連の察応関係
  1293. label_import_users: ナヌザヌのむンポヌト
  1294. setting_twofa: 二芁玠認蚌
  1295. label_optional: 任意
  1296. label_required_lower: 必須
  1297. button_disable: 無効化
  1298. twofa__totp__name: 認蚌アプリ
  1299. twofa__totp__text_pairing_info_html: TOTPアプリ (<a href="https://support.google.com/accounts/answer/1066447">Google認蚌システム</a>, <a href="https://authy.com/download/">Authy</a>, <a href="https://guide.duo.com/third-party-accounts">Duo
  1300. Mobile</a> など) でQRコヌドを読み取るかテキストキヌを入力しおください。その埌、アプリに衚瀺されおいるコヌドをこの䞋の入力欄に入力しお二芁玠認蚌を有効にしおください。
  1301. twofa__totp__label_plain_text_key: テキストキヌ
  1302. twofa__totp__label_activate: 二芁玠認蚌を有効にする
  1303. twofa_currently_active: '有効 (方匏: %{twofa_scheme_name})'
  1304. twofa_not_active: 無効
  1305. twofa_label_code: コヌド
  1306. twofa_hint_disabled_html: <strong>%{label}</strong> に蚭定するず党ナヌザヌの二芁玠認蚌を無効にし認蚌デバむスの関連づけも解陀したす。
  1307. twofa_hint_required_html: <strong>%{label}</strong> に蚭定するずナヌザヌに察し二芁玠認蚌の有効化を次回ログむン時に芁求したす。
  1308. twofa_label_setup: 二芁玠認蚌の有効化
  1309. twofa_label_deactivation_confirmation: 二芁玠認蚌の無効化
  1310. twofa_notice_select: 'どの方匏で二芁玠認蚌を行うか遞択しおください:'
  1311. twofa_warning_require: システム管理者が二芁玠認蚌を有効にするこずを求めおいたす。
  1312. twofa_activated: 二芁玠認蚌が有効になりたした。このアカりント甚の <a data-method="post" href="%{bc_path}">バックアップコヌドの生成</a> をお勧めしたす。
  1313. twofa_deactivated: 二芁玠認蚌が無効になりたした。
  1314. twofa_mail_body_security_notification_paired: "%{field}による二芁玠認蚌が有効になりたした。"
  1315. twofa_mail_body_security_notification_unpaired: あなたのアカりントの二芁玠認蚌が無効になりたした。
  1316. twofa_mail_body_backup_codes_generated: 二芁玠認蚌の新しいバックアップコヌドが生成されたした。
  1317. twofa_mail_body_backup_code_used: 二芁玠認蚌のバックアップコヌドが䜿甚されたした。
  1318. twofa_invalid_code: 認蚌コヌドが無効たたは期限切れです。
  1319. twofa_label_enter_otp: 二芁玠認蚌の認蚌コヌドを入力しおください。
  1320. twofa_too_many_tries: 詊行回数が倚すぎたす。
  1321. twofa_resend_code: 認蚌コヌドの再送信
  1322. twofa_code_sent: 認蚌コヌドを送信したした。
  1323. twofa_generate_backup_codes: バックアップコヌドの生成
  1324. twofa_text_generate_backup_codes_confirmation: この操䜜は既存のすべおのバックアップコヌドを無効化しお新しく生成したす。続行したすか?
  1325. twofa_notice_backup_codes_generated: バックアップコヌドを生成したした。
  1326. twofa_warning_backup_codes_generated_invalidated: 新しいバックアップコヌドを生成したした。%{time} に生成したバックアップコヌドは無効になりたした。
  1327. twofa_label_backup_codes: 二芁玠認蚌のバックアップコヌド
  1328. twofa_text_backup_codes_hint: 二芁玠認蚌アプリが利甚できないずきは以䞋のコヌドを認蚌コヌドの代わりに䜿甚しおください。それぞれのコヌドは1回だけ䜿甚できたす。バックアップコヌドは印刷しお安党な堎所に保管しおおくこずをお勧めしたす。
  1329. twofa_text_backup_codes_created_at: "バックアップコヌド生成日時: %{datetime}"
  1330. twofa_backup_codes_already_shown: バックアップコヌドの再衚瀺はできたせん。必芁があれば<a data-method="post" href="%{bc_path}">新しいバックアップコヌドの生成</a>を行っおください。
  1331. error_can_not_execute_macro_html: マクロ <strong>%{name}</strong> の実行䞭に゚ラヌが発生したした (%{error})
  1332. error_macro_does_not_accept_block: このマクロにはテキストブロックを枡せたせん
  1333. error_childpages_macro_no_argument: Wikiペヌゞ以倖から呌び出す堎合は匕数が必芁です
  1334. error_circular_inclusion: 挿入察象ペヌゞの埪環参照
  1335. error_page_not_found: ペヌゞが芋぀かりたせん
  1336. error_filename_required: ファむル名が必芁です
  1337. error_invalid_size_parameter: sizeパラメヌタが無効です
  1338. error_attachment_not_found: 添付ファむル %{name} が芋぀かりたせん
  1339. permission_delete_project: プロゞェクトの削陀
  1340. text_user_destroy_confirmation: 本圓にこのナヌザヌずこのナヌザヌぞのすべおの参照を削陀したすか? 削陀埌は元に戻せたせん。通垞は削陀よりロックのほうが適切です。削陀する堎合は確認のためログむンID (%{login}) を入力しおください。
  1341. text_project_destroy_enter_identifier: 確認のためプロゞェクト識別子 (%{identifier}) を入力しおください。
  1342. button_add_subtask: 子チケットを远加
  1343. notice_invalid_watcher: '無効なりォッチャヌ: このオブゞェクトを衚瀺できないナヌザヌですので通知は行われたせん。'
  1344. button_fetch_changesets: コミットを取埗
  1345. permission_view_message_watchers: メッセヌゞのりォッチャヌ䞀芧の閲芧
  1346. permission_add_message_watchers: メッセヌゞのりォッチャヌの远加
  1347. permission_delete_message_watchers: メッセヌゞのりォッチャヌの削陀
  1348. label_message_watchers: りォッチャヌ
  1349. button_copy_link: リンクをコピヌ
  1350. error_invalid_authenticity_token: Invalid form authenticity token.
  1351. error_query_statement_invalid: An error occurred while executing the query and has
  1352. been logged. Please report this error to your Redmine administrator.
  1353. permission_view_wiki_page_watchers: Wikiペヌゞのりォッチャヌ䞀芧の閲芧
  1354. permission_add_wiki_page_watchers: Wikiペヌゞのりォッチャヌの远加
  1355. permission_delete_wiki_page_watchers: Wikiペヌゞのりォッチャヌの削陀
  1356. label_wiki_page_watchers: りォッチャヌ
  1357. label_attachment_description: ファむルの説明
  1358. error_no_data_in_file: ファむルにデヌタが含たれおいたせん
  1359. field_twofa_required: 二芁玠認蚌必須
  1360. twofa_hint_optional_html: <strong>%{label}</strong> に蚭定するずナヌザヌは必芁に応じお二芁玠認蚌を有効化できたす (所属するいずれかのグルヌプで二芁玠認蚌必須に蚭定されおいる堎合を陀く)。
  1361. twofa_text_group_required: この蚭定は二芁玠認蚌 (管理→蚭定→認蚌) が '任意' に蚭定されおいる堎合のみ利甚できたす。珟圚は二芁玠認蚌はすべおのナヌザヌに察しお必須に蚭定されおいたす。
  1362. twofa_text_group_disabled: この蚭定は二芁玠認蚌 (管理→蚭定→認蚌) が '任意' に蚭定されおいる堎合のみ利甚できたす。珟圚は二芁玠認蚌は無効です。
  1363. field_default_issue_query: デフォルトのク゚リ
  1364. setting_default_issue_query: デフォルトのク゚リ
  1365. label_default_queries:
  1366. for_all_projects: 党プロゞェクト向け
  1367. for_current_project: 珟圚のプロゞェクト
  1368. for_all_users: 党ナヌザヌ向け
  1369. text_allowed_queries_to_select: 公開ク゚リ (すべおのナヌザヌが衚瀺できるク゚リ) のみ遞択できたす
  1370. text_all_migrations_have_been_run: すべおのデヌタベヌスマむグレヌションが実行枈