2 // +----------------------------------------------------------------------+
 
   3 // | Anuko Time Tracker
 
   4 // +----------------------------------------------------------------------+
 
   5 // | Copyright (c) Anuko International Ltd. (https://www.anuko.com)
 
   6 // +----------------------------------------------------------------------+
 
   7 // | LIBERAL FREEWARE LICENSE: This source code document may be used
 
   8 // | by anyone for any purpose, and freely redistributed alone or in
 
   9 // | combination with other software, provided that the license is obeyed.
 
  11 // | There are only two ways to violate the license:
 
  13 // | 1. To redistribute this code in source form, with the copyright
 
  14 // |    notice or license removed or altered. (Distributing in compiled
 
  15 // |    forms without embedded copyright notices is permitted).
 
  17 // | 2. To redistribute modified versions of this code in *any* form
 
  18 // |    that bears insufficient indications that the modifications are
 
  19 // |    not the work of the original author(s).
 
  21 // | This license applies to this document only, not any other software
 
  22 // | that it may be combined with.
 
  24 // +----------------------------------------------------------------------+
 
  26 // | https://www.anuko.com/time_tracker/credits.htm
 
  27 // +----------------------------------------------------------------------+
 
  29 // Note: escape apostrophes with THREE backslashes, like here:  choisir l\\\'option.
 
  30 // Other characters (such as double-quotes in http links, etc.) do not have to be escaped.
 
  32 $i18n_language = '日本語';
 
  33 $i18n_months = array('1月', '2月', '3月', '4月', '5月', '6月', '7月', '8月', '9月', '10月', '11月', '12月');
 
  34 $i18n_weekdays = array('日曜日', '月曜日', '火曜日', '水曜日', '木曜日', '金曜日', '土曜日');
 
  35 $i18n_weekdays_short = array('日', '月', '火', '水', '木', '金', '土');
 
  37 $i18n_holidays = array('01/01', '01/12', '03/20', '05/03', '05/04', '05/05', '05/06', '09/21', '09/22', '09/23', '11/03', '11/23');
 
  39 $i18n_key_words = array(
 
  41 // Menus - short selection strings that are displayed on top of application web pages.
 
  42 // Example: https://timetracker.anuko.com (black menu on top).
 
  43 'menu.login' => 'ログイン',
 
  44 'menu.logout' => 'ログアウト',
 
  45 // TODO: translate the following.
 
  46 // 'menu.forum' => 'Forum',
 
  48 // TODO: translate the following.
 
  49 // 'menu.create_team' => 'Create Team',
 
  50 'menu.profile' => 'プロファイル',
 
  52 // TODO: translate the following.
 
  53 // 'menu.expenses' => 'Expenses',
 
  54 'menu.reports' => 'レポート',
 
  55 // TODO: translate the following.
 
  56 // 'menu.charts' => 'Charts',
 
  57 'menu.projects' => 'プロジェクト',
 
  58 // TODO: translate the following.
 
  59 // 'menu.tasks' => 'Tasks',
 
  60 // 'menu.users' => 'Users',
 
  61 'menu.teams' => 'チーム',
 
  62 // TODO: translate the following.
 
  63 // 'menu.export' => 'Export',
 
  64 'menu.clients' => 'クライアント',
 
  65 'menu.options' => 'オプション',
 
  67 // Footer - strings on the bottom of most pages.
 
  68 // TODO: translate the following.
 
  69 // 'footer.contribute_msg' => 'You can contribute to Time Tracker in different ways.',
 
  70 // 'footer.credits' => 'Credits',
 
  71 // 'footer.license' => 'License',
 
  72 // 'footer.improve' => 'Contribute', // Translators: this could mean "Improve", if it makes better sense in your language.
 
  73                                      // This is a link to a webpage that describes how to contribute to the project.
 
  76 // TODO: All error messages should be complete sentences with a period (full stop) in the end. Put them there.
 
  77 // TODO: translate the following.
 
  78 // 'error.access_denied' => 'Access denied.',
 
  79 // 'error.sys' => 'System error.',
 
  80 'error.db' => 'データベースのエラー',
 
  81 'error.field' => '不正確な"{0}"データ',
 
  82 'error.empty' => '"{0}"のフィールドが空白です',
 
  83 'error.not_equal' => '"{0}"のフィールドは"{1}"のフィールドと違います',
 
  84 // TODO: translate the following.
 
  85 // 'error.interval' => 'Field "{0}" must be greater than "{1}".',
 
  86 'error.project' => 'プロジェクトの選択',
 
  87 // TODO: translate the following.
 
  88 // 'error.task' => 'Select task.',
 
  89 // 'error.client' => 'Select client.',
 
  90 // 'error.report' => 'Select report.',
 
  91 // 'error.record' => 'Select record.',
 
  92 'error.auth' => '不正確なログインあるいはパスワードが不正確です',
 
  93 'error.user_exists' => 'このログインと関連されたユーザーは既に存在します',
 
  94 'error.project_exists' => 'この名前のプロジェクトは既に存在します',
 
  95 // TODO: translate the following.
 
  96 // 'error.task_exists' => 'Task with this name already exists.',
 
  97 // 'error.client_exists' => 'Client with this name already exists.',
 
  98 // 'error.invoice_exists' => 'Invoice with this number already exists.',
 
  99 // 'error.no_invoiceable_items' => 'There are no invoiceable items.',
 
 100 'error.no_login' => 'このログインと関連されたユーザーはいません',
 
 101 // TODO: translate the following.
 
 102 // 'error.no_teams' => 'Your database is empty. Login as admin and create a new team.',
 
 103 'error.upload' => 'ファイルのアップロードのエラー',
 
 104 // TODO: translate the following.
 
 105 // 'error.range_locked' => 'Date range is locked.',
 
 106 'error.mail_send' => 'メールの送信中のエラー',
 
 107 // TODO: translate the following.
 
 108 // 'error.no_email' => 'No email associated with this login.',
 
 109 // 'error.uncompleted_exists' => 'Uncompleted entry already exists. Close or delete it.',
 
 110 // 'error.goto_uncompleted' => 'Go to uncompleted entry.',
 
 111 // 'error.overlap' => 'Time interval overlaps with existing records.',
 
 112 // 'error.future_date' => 'Date is in future.',
 
 114 // Labels for buttons.
 
 115 'button.login' => 'ログイン',
 
 116 'button.now' => '現在',
 
 117 'button.save' => '保存',
 
 118 // TODO: translate the following.
 
 119 // 'button.copy' => 'Copy',
 
 120 'button.cancel' => 'キャンセル',
 
 121 'button.submit' => '送信',
 
 122 // TODO: translate the following.
 
 123 // 'button.add_user' => 'Add user',
 
 124 // 'button.add_project' => 'Add project',
 
 125 // 'button.add_task' => 'Add task',
 
 126 // 'button.add_client' => 'Add client',
 
 127 // 'button.add_invoice' => 'Add invoice',
 
 128 // 'button.add_option' => 'Add option',
 
 129 'button.add' => '追加',
 
 130 'button.generate' => '生成',
 
 131 // TODO: translate the following.
 
 132 // 'button.reset_password' => 'Reset password',
 
 133 'button.send' => '送信',
 
 134 'button.send_by_email' => 'Eメールの送信',
 
 135 // TODO: translate the following.
 
 136 // 'button.create_team' => 'Create team',
 
 137 'button.export' => 'チームのエクスポート',
 
 138 'button.import' => 'チームのインポート',
 
 139 // TODO: translate the following.
 
 140 // 'button.close' => 'Close',
 
 141 // 'button.stop' => 'Stop',
 
 143 // Labels for controls on forms. Labels in this section are used on multiple forms.
 
 144 // TODO: translate the following.
 
 145 // 'label.team_name' => 'Team name',
 
 146 // 'label.address' => 'Address',
 
 147 'label.currency' => '通貨',
 
 148 // TODO: translate the following.
 
 149 // 'label.manager_name' => 'Manager name',
 
 150 // 'label.manager_login' => 'Manager login',
 
 151 'label.person_name' => '名前',
 
 152 'label.thing_name' => '名前',
 
 153 // TODO: translate the following.
 
 154 // 'label.login' => 'Login',
 
 155 'label.password' => 'パスワード',
 
 156 'label.confirm_password' => 'パスワードの確認',
 
 157 'label.email' => 'Eメール',
 
 158 // TODO: translate the following.
 
 159 // 'label.cc' => 'Cc',
 
 160 // 'label.bcc' => 'Bcc',
 
 161 'label.subject' => '主題',
 
 162 // TODO: translate the following.
 
 163 // 'label.date' => 'Date',
 
 164 // 'label.start_date' => 'Start date',
 
 165 // 'label.end_date' => 'End date',
 
 166 // 'label.user' => 'User',
 
 167 // 'label.users' => 'Users',
 
 168 // 'label.client' => 'Client',
 
 169 // 'label.clients' => 'Clients',
 
 170 // 'label.option' => 'Option',
 
 171 // 'label.invoice' => 'Invoice',
 
 172 // 'label.project' => 'Project',
 
 173 // 'label.projects' => 'Projects',
 
 174 // 'label.task' => 'Task',
 
 175 // 'label.tasks' => 'Tasks',
 
 176 // 'label.description' => 'Description',
 
 177 // 'label.start' => 'Start',
 
 178 // 'label.finish' => 'Finish',
 
 179 // 'label.duration' => 'Duration',
 
 180 // 'label.note' => 'Note',
 
 181 // 'label.notes' => 'Notes',
 
 182 // 'label.item' => 'Item',
 
 183 // 'label.cost' => 'Cost',
 
 184 // 'label.day_total' => 'Day total',
 
 185 // 'label.week_total' => 'Week total',
 
 186 // 'label.month_total' => 'Month total',
 
 187 'label.today' => '今日',
 
 188 // TODO: translate the following.
 
 189 // 'label.total_hours' => 'Total hours',
 
 190 // 'label.total_cost' => 'Total cost',
 
 191 // 'label.view' => 'View',
 
 192 'label.edit' => '編集',
 
 193 'label.delete' => '削除',
 
 194 // TODO: translate the following.
 
 195 // 'label.configure' => 'Configure',
 
 196 // 'label.select_all' => 'Select all',
 
 197 // 'label.select_none' => 'Deselect all',
 
 198 // 'label.day_view' => 'Day view',
 
 199 // 'label.week_view' => 'Week view',
 
 200 // 'label.id' => 'ID',
 
 201 // 'label.language' => 'Language',
 
 202 // 'label.decimal_mark' => 'Decimal mark',
 
 203 // 'label.date_format' => 'Date format',
 
 204 // 'label.time_format' => 'Time format',
 
 205 // 'label.week_start' => 'First day of week',
 
 206 // 'label.comment' => 'Comment',
 
 207 // 'label.status' => 'Status',
 
 208 // 'label.tax' => 'Tax',
 
 209 // 'label.subtotal' => 'Subtotal',
 
 210 'label.total' => '合計',
 
 211 // TODO: translate the following.
 
 212 // 'label.client_name' => 'Client name',
 
 213 // 'label.client_address' => 'Client address',
 
 214 // 'label.or' => 'or',
 
 215 // 'label.error' => 'Error',
 
 216 // 'label.ldap_hint' => 'Type your <b>Windows login</b> and <b>password</b> in the fields below.',
 
 217 // 'label.required_fields' => '* - required fields',
 
 218 'label.on_behalf' => 'を代表して',
 
 219 // TODO: translate all 3 roles properly, see https://www.anuko.com/time_tracker/user_guide/user_accounts.htm
 
 220 // This may require different terms for role_manager and role_comanager.
 
 221 'label.role_manager' => '(管理者)',
 
 222 'label.role_comanager' => '(共同管理者)',
 
 223 // 'label.role_admin' => '(administrator)',
 
 224 // TODO: translate the following.
 
 225 // 'label.page' => 'Page',
 
 226 // 'label.condition' => 'Condition',
 
 227 // 'label.yes' => 'yes',
 
 228 // 'label.no' => 'no',
 
 229 // Labels for plugins (extensions to Time Tracker that provide additional features).
 
 230 // TODO: translate the following.
 
 231 // 'label.custom_fields' => 'Custom fields',
 
 232 // 'label.monthly_quotas' => 'Monthly quotas',
 
 233 // 'label.type' => 'Type',
 
 234 // 'label.type_dropdown' => 'dropdown',
 
 235 // 'label.type_text' => 'text',
 
 236 // 'label.required' => 'Required',
 
 237 // 'label.fav_report' => 'Favorite report',
 
 238 // 'label.cron_schedule' => 'Cron schedule',
 
 239 // 'label.what_is_it' => 'What is it?',
 
 240 // 'label.expense' => 'Expense',
 
 241 // 'label.quantity' => 'Quantity',
 
 242 // 'label.paid_status' => 'Paid status',
 
 243 // 'label.paid' => 'Paid',
 
 244 // 'label.mark_paid' => 'Mark paid',
 
 245 // 'label.week_note' => 'Week note',
 
 246 // 'label.week_list' => 'Week list',
 
 249 'title.login' => 'ログイン',
 
 250 // TODO: translate the following.
 
 251 // 'title.teams' => 'Teams',
 
 252 // 'title.create_team' => 'Creating Team',
 
 253 // 'title.edit_team' => 'Editing Team',
 
 254 // 'title.delete_team' => 'Deleting Team',
 
 255 'title.reset_password' => 'パスワードの初期化',
 
 256 // TODO: translate the following.
 
 257 // 'title.change_password' => 'Changing Password',
 
 258 // 'title.time' => 'Time',
 
 259 // 'title.edit_time_record' => 'Editing Time Record',
 
 260 // 'title.delete_time_record' => 'Deleting Time Record',
 
 261 // 'title.expenses' => 'Expenses',
 
 262 // 'title.edit_expense' => 'Editing Expense Item',
 
 263 // 'title.delete_expense' => 'Deleting Expense Item',
 
 264 // 'title.predefined_expenses' => 'Predefined Expenses',
 
 265 // 'title.add_predefined_expense' => 'Adding Predefined Expense',
 
 266 // 'title.edit_predefined_expense' => 'Editing Predefined Expense',
 
 267 // 'title.delete_predefined_expense' => 'Deleting Predefined Expense',
 
 268 // 'title.reports' => 'Reports',
 
 269 // 'title.report' => 'Report',
 
 270 // 'title.send_report' => 'Sending Report',
 
 271 // 'title.invoice' => 'Invoice',
 
 272 // 'title.send_invoice' => 'Sending Invoice',
 
 273 // 'title.charts' => 'Charts',
 
 274 // 'title.projects' => 'Projects',
 
 275 // 'title.add_project' => 'Adding Project',
 
 276 // 'title.edit_project' => 'Editing Project',
 
 277 // 'title.delete_project' => 'Deleting Project',
 
 278 // 'title.tasks' => 'Tasks',
 
 279 // 'title.add_task' => 'Adding Task',
 
 280 // 'title.edit_task' => 'Editing Task',
 
 281 // 'title.delete_task' => 'Deleting Task',
 
 282 // 'title.users' => 'Users',
 
 283 // 'title.add_user' => 'Adding User',
 
 284 // 'title.edit_user' => 'Editing User',
 
 285 // 'title.delete_user' => 'Deleting User',
 
 286 // 'title.clients' => 'Clients',
 
 287 // 'title.add_client' => 'Adding Client',
 
 288 // 'title.edit_client' => 'Editing Client',
 
 289 // 'title.delete_client' => 'Deleting Client',
 
 290 // 'title.invoices' => 'Invoices',
 
 291 // 'title.add_invoice' => 'Adding Invoice',
 
 292 // 'title.view_invoice' => 'Viewing Invoice',
 
 293 // 'title.delete_invoice' => 'Deleting Invoice',
 
 294 // 'title.notifications' => 'Notifications',
 
 295 // 'title.add_notification' => 'Adding Notification',
 
 296 // 'title.edit_notification' => 'Editing Notification',
 
 297 // 'title.delete_notification' => 'Deleting Notification',
 
 298 // 'title.monthly_quotas' => 'Monthly Quotas',
 
 299 // 'title.export' => 'Exporting Team Data',
 
 300 // 'title.import' => 'Importing Team Data',
 
 301 // 'title.options' => 'Options',
 
 302 // 'title.profile' => 'Profile',
 
 303 // 'title.cf_custom_fields' => 'Custom Fields',
 
 304 // 'title.cf_add_custom_field' => 'Adding Custom Field',
 
 305 // 'title.cf_edit_custom_field' => 'Editing Custom Field',
 
 306 // 'title.cf_delete_custom_field' => 'Deleting Custom Field',
 
 307 // 'title.cf_dropdown_options' => 'Dropdown Options',
 
 308 // 'title.cf_add_dropdown_option' => 'Adding Option',
 
 309 // 'title.cf_edit_dropdown_option' => 'Editing Option',
 
 310 // 'title.cf_delete_dropdown_option' => 'Deleting Option',
 
 311 // NOTE TO TRANSLATORS: Locking is a feature to lock records from modifications (ex: weekly on Mondays we lock all previous weeks).
 
 312 // It is also a name for the Locking plugin on the Team profile page.
 
 313 // 'title.locking' => 'Locking',
 
 314 // 'title.week_view' => 'Week View',
 
 316 // Section for common strings inside combo boxes on forms. Strings shared between forms shall be placed here.
 
 317 // Strings that are used in a single form must go to the specific form section.
 
 318 // TODO: translate the following.
 
 319 // 'dropdown.all' => '--- all ---',
 
 320 // 'dropdown.no' => '--- no ---',
 
 321 // 'dropdown.current_day' => 'today',
 
 322 // 'dropdown.previous_day' => 'yesterday',
 
 323 // 'dropdown.selected_day' => 'day',
 
 324 // 'dropdown.current_week' => 'this week',
 
 325 // 'dropdown.previous_week' => 'previous week',
 
 326 // 'dropdown.selected_week' => 'week',
 
 327 // 'dropdown.current_month' => 'this month',
 
 328 // 'dropdown.previous_month' => 'previous month',
 
 329 // 'dropdown.selected_month' => 'month',
 
 330 // 'dropdown.current_year' => 'this year',
 
 331 // 'dropdown.previous_year' => 'previous year',
 
 332 // 'dropdown.selected_year' => 'year',
 
 333 // 'dropdown.all_time' => 'all time',
 
 334 // 'dropdown.projects' => 'projects',
 
 335 // 'dropdown.tasks' => 'tasks',
 
 336 // 'dropdown.clients' => 'clients',
 
 337 // 'dropdown.select' => '--- select ---',
 
 338 // 'dropdown.select_invoice' => '--- select invoice ---',
 
 339 // 'dropdown.status_active' => 'active',
 
 340 // 'dropdown.status_inactive' => 'inactive',
 
 341 // 'dropdown.delete'=>'delete',
 
 342 // 'dropdown.do_not_delete'=>'do not delete',
 
 343 // 'dropdown.paid' => 'paid',
 
 344 // 'dropdown.not_paid' => 'not paid',
 
 346 // Login form. See example at https://timetracker.anuko.com/login.php.
 
 347 // TODO: translate the following.
 
 348 // 'form.login.forgot_password' => 'Forgot password?',
 
 349 // 'form.login.about' =>'Anuko <a href="https://www.anuko.com/lp/tt_2.htm" target="_blank">Time Tracker</a> is a simple, easy to use, open source time tracking system.',
 
 351 // Resetting Password form. See example at https://timetracker.anuko.com/password_reset.php.
 
 352 // TODO: translate the following.
 
 353 // 'form.reset_password.message' => 'Password reset request sent by email.',
 
 354 // 'form.reset_password.email_subject' => 'Anuko Time Tracker password reset request',
 
 355 // 'form.reset_password.email_body' => "Dear User,\n\nSomeone, possibly you, requested your Anuko Time Tracker password reset. Please visit this link if you want to reset your password.\n\n%s\n\nAnuko Time Tracker is a simple, easy to use, open source time tracking system. Visit https://www.anuko.com for more information.\n\n",
 
 357 // Changing Password form. See example at https://timetracker.anuko.com/password_change.php?ref=1.
 
 358 // TODO: translate the following.
 
 359 // 'form.change_password.tip' => 'Type new password and click on Save.',
 
 361 // Time form. See example at https://timetracker.anuko.com/time.php.
 
 362 // TODO: translate the following.
 
 363 // 'form.time.duration_format' => '(hh:mm or 0.0h)',
 
 364 // 'form.time.billable' => 'Billable',
 
 365 // 'form.time.uncompleted' => 'Uncompleted',
 
 366 // 'form.time.remaining_quota' => 'Remaining quota',
 
 367 // 'form.time.over_quota' => 'Over quota',
 
 371 // TODO: refactoring ongoing down from here.
 
 373 "form.filter.project" => 'プロジェクト',
 
 374 "form.filter.filter" => 'お気に入りレポート',
 
 375 "form.filter.filter_new" => 'お気に入りに保存',
 
 376 "form.filter.filter_confirm_delete" => 'このお気に入りレポートを削除しますか?',
 
 378 // password reminder form attributes
 
 379 "form.fpass.login" => 'ログイン',
 
 380 "form.fpass.send_pass_str" => '送信したパスワードの初期化の要求',
 
 381 "form.fpass.send_pass_subj" => 'Anuko Time Trackerのパスワードの初期化の要求',
 
 382 // Note to translators: the ending of this string below needs to be translated.
 
 383 "form.fpass.send_pass_body" => "尊敬なるお客様、\n\n誰から(多分あなた)あなたのAnuko Time Trackerのパスワードの初期化が要求されました。あなたのパスワードを初期化しようとこのリンクを押してください。\n\n%s\n\nAnuko Time Tracker is a simple, easy to use, open source time tracking system. Visit https://www.anuko.com for more information.\n\n",
 
 384 "form.fpass.reset_comment" => "あなたのパスワードを初期化しようとパスワードを入力して保存をクリックしてください",
 
 386 // administrator form
 
 387 "form.admin.title" => '管理者',
 
 388 "form.admin.duty_text" => '新規チームの管理者のアカウントを生成して新規チームを作成します。<br>あなたはなお他のAnuko Time Trackerサーバのxmlのファイルからチームデータをインポートすることができます(ログインの衝突は許可されません)。',
 
 390 "form.admin.change_pass" => '管理者のアカウントのパスワードの変更',
 
 391 "form.admin.profile.title" => 'チーム',
 
 392 "form.admin.profile.noprofiles" => 'あなたのデータベースは空いています。管理者にログインして新規チームを作成してください。',
 
 393 "form.admin.profile.comment" => 'チームの削除',
 
 394 "form.admin.profile.th.id" => '識別子',
 
 395 "form.admin.profile.th.active" => '活動内容',
 
 396 "form.admin.options" => 'オプション',
 
 397 "form.admin.custom_date_format" => "日付形式",
 
 398 "form.admin.custom_time_format" => "時間形式",
 
 399 "form.admin.start_week" => "週の開始日",
 
 401 // my time form attributes
 
 402 "form.mytime.title" => '私の時間',
 
 403 "form.mytime.edit_title" => '時間レコードの編集',
 
 404 "form.mytime.del_str" => '時間レコードの削除',
 
 405 "form.mytime.time_form" => ' (hh:mm)',
 
 406 "form.mytime.date" => '日付',
 
 407 "form.mytime.project" => 'プロジェクト',
 
 408 "form.mytime.activity" => '活動内容',
 
 409 "form.mytime.start" => '開始',
 
 410 "form.mytime.finish" => '終了',
 
 411 "form.mytime.duration" => '期間',
 
 412 "form.mytime.note" => 'ノート',
 
 413 "form.mytime.daily" => '日課',
 
 414 "form.mytime.total" => '合計時間: ',
 
 415 "form.mytime.th.project" => 'プロジェクト',
 
 416 "form.mytime.th.start" => '開始',
 
 417 "form.mytime.th.finish" => '終了',
 
 418 "form.mytime.th.duration" => '期間',
 
 419 "form.mytime.th.note" => 'ノート',
 
 420 "form.mytime.del_yes" => '時間レコードが成功的に削除されました',
 
 421 "form.mytime.no_finished_rec" => 'このレコードは開始時間だけで保存されました。これはエラーではありません。もし必要があればログアウトしてください。',
 
 422 "form.mytime.billable" => '請求できる',
 
 423 "form.mytime.warn_tozero_rec" => 'この時間レコードの期間が満了されましたから、この時間レコードは削除されることが必要です',
 
 424 "form.mytime.uncompleted" => '未完成の',
 
 426 // profile form attributes
 
 427 // Note to translators: we need a more accurate translation of form.profile.create_title
 
 428 "form.profile.create_title" => '新規管理者のアカウントの作成',
 
 429 "form.profile.edit_title" => 'プロファイルの編集',
 
 430 "form.profile.login" => 'ログインID',
 
 432 "form.profile.showchart" => 'パイ図表の表示',
 
 433 "form.profile.lang" => '言語',
 
 434 "form.profile.custom_date_format" => "日付形式",
 
 435 "form.profile.custom_time_format" => "時間形式",
 
 436 "form.profile.default_format" => "(デフォルト)",
 
 437 "form.profile.start_week" => "週の開始日",
 
 439 // people form attributes
 
 440 "form.people.ppl_str" => 'メンバー',
 
 441 "form.people.createu_str" => '新規ユーザーの作成',
 
 442 "form.people.edit_str" => 'ユーザーの編集',
 
 443 "form.people.del_str" => 'ユーザーの削除',
 
 444 "form.people.th.login" => 'ログインID',
 
 445 "form.people.th.role" => 'ルール',
 
 446 "form.people.th.status" => '状態',
 
 447 "form.people.th.project" => 'プロジェクト',
 
 448 "form.people.th.rate" => '給料',
 
 449 "form.people.manager" => '管理者',
 
 450 "form.people.comanager" => '共同管理者',
 
 451 "form.people.empl" => 'ユーザー',
 
 452 "form.people.login" => 'ログインID',
 
 454 "form.people.rate" => 'デフォルト時間当り給料',
 
 455 "form.people.comanager" => '共同管理者',
 
 456 "form.people.projects" => 'プロジェクト',
 
 458 // projects form attributes
 
 459 "form.project.proj_title" => 'プロジェクト',
 
 460 "form.project.edit_str" => 'プロジェクトの編集',
 
 461 "form.project.add_str" => '新規プロジェクトの追加',
 
 462 "form.project.del_str" => 'プロジェクトの削除',
 
 464 // activities form attributes
 
 465 "form.activity.act_title" => '活動内容',
 
 466 "form.activity.add_title" => '新規活動内容の追加',
 
 467 "form.activity.edit_str" => '活動内容の編集',
 
 468 "form.activity.del_str" => '活動内容の削除',
 
 469 "form.activity.project" => 'プロジェクト',
 
 470 "form.activity.th.project" => 'プロジェクト',
 
 473 "form.report.title" => 'レポート',
 
 474 "form.report.from" => '開始日付',
 
 475 "form.report.to" => '終了日付',
 
 476 "form.report.groupby_user" => 'ユーザー',
 
 477 "form.report.groupby_project" => 'プロジェクト',
 
 478 "form.report.duration" => '期間',
 
 479 "form.report.start" => '開始',
 
 480 "form.report.finish" => '終了',
 
 481 "form.report.note" => 'ノート',
 
 482 "form.report.project" => 'プロジェクト',
 
 483 "form.report.totals_only" => '全体だけ',
 
 484 "form.report.total" => '合計時間',
 
 485 "form.report.th.empllist" => 'ユーザー',
 
 486 "form.report.th.date" => '日付',
 
 487 "form.report.th.project" => 'プロジェクト',
 
 488 "form.report.th.start" => '開始',
 
 489 "form.report.th.finish" => '終了',
 
 490 "form.report.th.duration" => '期間',
 
 491 "form.report.th.note" => 'ノート',
 
 493 // mail form attributes
 
 494 "form.mail.from" => 'から',
 
 495 "form.mail.to" => 'まで',
 
 496 "form.mail.comment" => 'コメント',
 
 497 "form.mail.above" => 'このレポートをEメールで送信',
 
 498 // Note to translators: this string needs to be translated.
 
 499 // "form.mail.footer_str" => 'Anuko Time Tracker is a simple, easy to use, open source<br>time tracking system. Visit <a href="https://www.anuko.com">www.anuko.com</a> for more information.',
 
 500 "form.mail.sending_str" => '<b>送信したメッセージ</b>',
 
 502 // invoice attributes
 
 503 "form.invoice.title" => '送り状',
 
 504 "form.invoice.caption" => '送り状',
 
 505 "form.invoice.above" => '送り状の追加の情報',
 
 506 "form.invoice.select_cust" => 'クライアントの選択',
 
 507 "form.invoice.fillform" => 'フィールドの作成',
 
 508 "form.invoice.date" => '日付',
 
 509 "form.invoice.number" => '送り状の番号',
 
 510 "form.invoice.tax" => '税',
 
 511 "form.invoice.comment" => 'コメント ',
 
 512 "form.invoice.th.username" => '個人',
 
 513 "form.invoice.th.time" => '時間',
 
 514 "form.invoice.th.rate" => '給料',
 
 515 "form.invoice.th.summ" => '数量',
 
 516 "form.invoice.subtotal" => '小計',
 
 517 "form.invoice.customer" => 'クライアント',
 
 518 "form.invoice.mailinv_above" => '送り状をEメールで送信',
 
 519 "form.invoice.sending_str" => '<b>送信した送り状</b>',
 
 521 "form.migration.zip" => '圧縮',
 
 522 "form.migration.file" => 'ファイルの選択',
 
 523 "form.migration.import.title" => 'データのインポート',
 
 524 "form.migration.import.success" => 'インポートが成功的に完了されました',
 
 525 "form.migration.import.text" => 'xmlファイルからチームのデータをインポート',
 
 526 "form.migration.export.title" => 'データのエクスポート',
 
 527 "form.migration.export.success" => 'エクスポートが成功的に完了されました',
 
 528 "form.migration.export.text" => 'あなたはすべてのチームのデータをxmlファイルにエクスポートすることができます。これはあなたの自分のサーバに移動する時に有用します。',
 
 529 "form.migration.compression.none" => 'なし',
 
 530 "form.migration.compression.gzip" => 'gzip',
 
 531 "form.migration.compression.bzip" => 'bzip',
 
 533 "form.client.title" => 'クライアント',
 
 534 "form.client.add_title" => 'クライアントの追加',
 
 535 "form.client.edit_title" => 'クライアントの編集',
 
 536 "form.client.del_title" => 'クライアントの削除',
 
 537 "form.client.tax" => '税',
 
 538 "form.client.comment" => 'コメント ',
 
 540 // miscellaneous strings
 
 541 "forward.forgot_password" => 'パスワードを忘れましたか?',
 
 542 "forward.edit" => '編集',
 
 543 "forward.delete" => '削除',
 
 544 "forward.tocsvfile" => 'csvファイルにエクスポート',
 
 545 "forward.toxmlfile" => 'xmlファイルにエクスポート',
 
 546 "forward.geninvoice" => '送り状の作成',
 
 547 "forward.change" => 'クライアントの構成',
 
 549 // strings inside contols on forms
 
 550 "controls.select.project" => '--- プロジェクトの選択 ---',
 
 551 "controls.select.activity" => '--- 活動内容の選択 ---',
 
 552 "controls.select.client" => '--- クライアントの選択 ---',
 
 553 "controls.project_bind" => '--- すべて ---',
 
 554 "controls.all" => '--- すべて ---',
 
 555 "controls.notbind" => '--- いいえ ---',
 
 556 "controls.per_tm" => '今月',
 
 557 "controls.per_lm" => '先月',
 
 558 "controls.per_tw" => '今週',
 
 559 "controls.per_lw" => '先週',
 
 560 "controls.per_td" => '今日',
 
 561 "controls.per_at" => 'すべての時間',
 
 562 "controls.per_ty" => '今年',
 
 563 "controls.sel_period" => '--- 時間期間の選択 ---',
 
 564 "controls.sel_groupby" => '--- グループの機能がありません ---',
 
 565 "controls.inc_billable" => '請求できる',
 
 566 "controls.inc_nbillable" => '請求できません',
 
 567 "controls.default" => '--- デフォルト ---',
 
 570 "label.chart.title1" => 'ユーザーに対する活動内容',
 
 571 "label.chart.title2" => 'ユーザーに対するプロジェクト',
 
 572 "label.chart.period" => '期間表示のチャート',
 
 574 "label.req_fields" => '* 必須のフィールド',
 
 575 "label.sel_project" => 'プロジェクトの選択',
 
 576 "label.sel_activity" => '活動内容の選択',
 
 577 "label.sel_tp" => '時間期間の選択',
 
 578 "label.set_tp" => 'あるいは日付を設定',
 
 579 "label.fields" => 'フィールドの表示',
 
 580 "label.group_title" => '次のようにグループ化',
 
 581 "label.include_title" => 'レコードの含み',
 
 582 "label.inv_str" => '送り状',
 
 583 "label.set_empl" => 'ユーザーの選択',
 
 584 "label.sel_all" => 'すべて選択',
 
 585 "label.sel_none" => 'すべて解除',
 
 586 "label.or" => 'あるいは',
 
 587 "label.disable" => '使用中止',
 
 588 "label.enable" => '使用可能',
 
 589 "label.filter" => 'フィルター',
 
 590 "label.timeweek" => '週合計',
 
 592 "label.errors" => 'エラー',
 
 593 "label.ldap_hint" => '下記のフィールドにあなたの<b>WindowsのログインID</b>と<b>パスワード</b>を入力してください。',