]> BookStack Code Mirror - bookstack/blob - lang/ja/activities.php
add tests for priority
[bookstack] / lang / ja / activities.php
1 <?php
2 /**
3  * Activity text strings.
4  * Is used for all the text within activity logs & notifications.
5  */
6 return [
7
8     // Pages
9     'page_create'                 => 'がページを作成:',
10     'page_create_notification'    => 'ページを作成しました',
11     'page_update'                 => 'がページを更新:',
12     'page_update_notification'    => 'ページを更新しました',
13     'page_delete'                 => 'がページを削除:',
14     'page_delete_notification'    => 'ページを削除しました',
15     'page_restore'                => 'がページを復元:',
16     'page_restore_notification'   => 'ページを復元しました',
17     'page_move'                   => 'がページを移動:',
18     'page_move_notification'      => 'ページを移動しました',
19
20     // Chapters
21     'chapter_create'              => 'がチャプターを作成:',
22     'chapter_create_notification' => 'チャプターを作成しました',
23     'chapter_update'              => 'がチャプターを更新:',
24     'chapter_update_notification' => 'チャプターを更新しました',
25     'chapter_delete'              => 'がチャプターを削除:',
26     'chapter_delete_notification' => 'チャプターを削除しました',
27     'chapter_move'                => 'がチャプターを移動:',
28     'chapter_move_notification' => 'チャプタを移動しました',
29
30     // Books
31     'book_create'                 => 'がブックを作成:',
32     'book_create_notification'    => 'ブックを作成しました',
33     'book_create_from_chapter'              => 'がチャプターをブックに変換:',
34     'book_create_from_chapter_notification' => 'チャプターをブックに変換しました',
35     'book_update'                 => 'がブックを更新:',
36     'book_update_notification'    => 'ブックを更新しました',
37     'book_delete'                 => 'がブックを削除:',
38     'book_delete_notification'    => 'ブックを削除しました',
39     'book_sort'                   => 'がブックの並び順を変更:',
40     'book_sort_notification'      => 'ブックが再度並び変えられました',
41
42     // Bookshelves
43     'bookshelf_create'            => 'が本棚を作成:',
44     'bookshelf_create_notification'    => '本棚を作成しました',
45     'bookshelf_create_from_book'    => 'がブックを本棚に変換:',
46     'bookshelf_create_from_book_notification'    => 'ブックを本棚に変換しました',
47     'bookshelf_update'                 => 'が本棚を更新:',
48     'bookshelf_update_notification'    => '本棚を更新しました',
49     'bookshelf_delete'                 => 'が本棚を削除:',
50     'bookshelf_delete_notification'    => '本棚を削除しました',
51
52     // Revisions
53     'revision_restore' => 'restored revision',
54     'revision_delete' => 'deleted revision',
55     'revision_delete_notification' => 'リビジョンを削除しました',
56
57     // Favourites
58     'favourite_add_notification' => '":name"がお気に入りに追加されました',
59     'favourite_remove_notification' => '":name"がお気に入りから削除されました',
60
61     // Auth
62     'auth_login' => 'logged in',
63     'auth_register' => 'registered as new user',
64     'auth_password_reset_request' => 'requested user password reset',
65     'auth_password_reset_update' => 'reset user password',
66     'mfa_setup_method' => 'configured MFA method',
67     'mfa_setup_method_notification' => '多要素認証を設定しました',
68     'mfa_remove_method' => 'removed MFA method',
69     'mfa_remove_method_notification' => '多要素認証を解除しました',
70
71     // Settings
72     'settings_update' => 'updated settings',
73     'settings_update_notification' => '設定を更新しました',
74     'maintenance_action_run' => 'ran maintenance action',
75
76     // Webhooks
77     'webhook_create' => 'がWebhookを作成:',
78     'webhook_create_notification' => 'Webhookを作成しました',
79     'webhook_update' => 'がWebhookを更新:',
80     'webhook_update_notification' => 'Webhookを更新しました',
81     'webhook_delete' => 'がWebhookを削除:',
82     'webhook_delete_notification' => 'Webhookを削除しました',
83
84     // Users
85     'user_create' => 'created user',
86     'user_create_notification' => 'ユーザーを作成しました',
87     'user_update' => 'updated user',
88     'user_update_notification' => 'ユーザーを更新しました',
89     'user_delete' => 'deleted user',
90     'user_delete_notification' => 'ユーザーを削除しました',
91
92     // API Tokens
93     'api_token_create' => 'created api token',
94     'api_token_create_notification' => 'APIトークンを作成しました',
95     'api_token_update' => 'updated api token',
96     'api_token_update_notification' => 'APIトークンを更新しました',
97     'api_token_delete' => 'deleted api token',
98     'api_token_delete_notification' => 'APIトークンを削除しました',
99
100     // Roles
101     'role_create' => 'created role',
102     'role_create_notification' => '役割を作成しました',
103     'role_update' => 'updated role',
104     'role_update_notification' => '役割を更新しました',
105     'role_delete' => 'deleted role',
106     'role_delete_notification' => '役割を削除しました',
107
108     // Recycle Bin
109     'recycle_bin_empty' => 'emptied recycle bin',
110     'recycle_bin_restore' => 'restored from recycle bin',
111     'recycle_bin_destroy' => 'removed from recycle bin',
112
113     // Other
114     'commented_on'                => 'がコメント:',
115     'permissions_update'          => 'が権限を更新:',
116 ];