BookStack/lang/ja/activities.php

117 lines
5.4 KiB
PHP

<?php
/**
* Activity text strings.
* Is used for all the text within activity logs & notifications.
*/
return [
// Pages
'page_create' => 'がページを作成:',
'page_create_notification' => 'ページを作成しました',
'page_update' => 'がページを更新:',
'page_update_notification' => 'ページを更新しました',
'page_delete' => 'がページを削除:',
'page_delete_notification' => 'ページを削除しました',
'page_restore' => 'がページを復元:',
'page_restore_notification' => 'ページを復元しました',
'page_move' => 'がページを移動:',
'page_move_notification' => 'Page successfully moved',
// Chapters
'chapter_create' => 'がチャプターを作成:',
'chapter_create_notification' => 'チャプターを作成しました',
'chapter_update' => 'がチャプターを更新:',
'chapter_update_notification' => 'チャプターを更新しました',
'chapter_delete' => 'がチャプターを削除:',
'chapter_delete_notification' => 'チャプターを削除しました',
'chapter_move' => 'がチャプターを移動:',
'chapter_move_notification' => 'Chapter successfully moved',
// Books
'book_create' => 'がブックを作成:',
'book_create_notification' => 'ブックを作成しました',
'book_create_from_chapter' => 'がチャプターをブックに変換:',
'book_create_from_chapter_notification' => 'チャプターをブックに変換しました',
'book_update' => 'がブックを更新:',
'book_update_notification' => 'ブックを更新しました',
'book_delete' => 'がブックを削除:',
'book_delete_notification' => 'ブックを削除しました',
'book_sort' => 'がブックの並び順を変更:',
'book_sort_notification' => 'ブックが再度並び変えられました',
// Bookshelves
'bookshelf_create' => 'が本棚を作成:',
'bookshelf_create_notification' => '本棚を作成しました',
'bookshelf_create_from_book' => 'がブックを本棚に変換:',
'bookshelf_create_from_book_notification' => 'ブックを本棚に変換しました',
'bookshelf_update' => 'が本棚を更新:',
'bookshelf_update_notification' => '本棚を更新しました',
'bookshelf_delete' => 'が本棚を削除:',
'bookshelf_delete_notification' => '本棚を削除しました',
// Revisions
'revision_restore' => 'restored revision',
'revision_delete' => 'deleted revision',
'revision_delete_notification' => 'Revision successfully deleted',
// Favourites
'favourite_add_notification' => '":name"がお気に入りに追加されました',
'favourite_remove_notification' => '":name"がお気に入りから削除されました',
// Auth
'auth_login' => 'logged in',
'auth_register' => 'registered as new user',
'auth_password_reset_request' => 'requested user password reset',
'auth_password_reset_update' => 'reset user password',
'mfa_setup_method' => 'configured MFA method',
'mfa_setup_method_notification' => '多要素認証を設定しました',
'mfa_remove_method' => 'removed MFA method',
'mfa_remove_method_notification' => '多要素認証を解除しました',
// Settings
'settings_update' => 'updated settings',
'settings_update_notification' => 'Settings successfully updated',
'maintenance_action_run' => 'ran maintenance action',
// Webhooks
'webhook_create' => 'がWebhookを作成:',
'webhook_create_notification' => 'Webhookを作成しました',
'webhook_update' => 'がWebhookを更新:',
'webhook_update_notification' => 'Webhookを更新しました',
'webhook_delete' => 'がWebhookを削除:',
'webhook_delete_notification' => 'Webhookを削除しました',
// Users
'user_create' => 'created user',
'user_create_notification' => 'User successfully created',
'user_update' => 'updated user',
'user_update_notification' => 'ユーザーを更新しました',
'user_delete' => 'deleted user',
'user_delete_notification' => 'ユーザーを削除しました',
// API Tokens
'api_token_create' => 'created api token',
'api_token_create_notification' => 'API token successfully created',
'api_token_update' => 'updated api token',
'api_token_update_notification' => 'API token successfully updated',
'api_token_delete' => 'deleted api token',
'api_token_delete_notification' => 'API token successfully deleted',
// Roles
'role_create' => 'created role',
'role_create_notification' => '役割を作成しました',
'role_update' => 'updated role',
'role_update_notification' => '役割を更新しました',
'role_delete' => 'deleted role',
'role_delete_notification' => '役割を削除しました',
// Recycle Bin
'recycle_bin_empty' => 'emptied recycle bin',
'recycle_bin_restore' => 'restored from recycle bin',
'recycle_bin_destroy' => 'removed from recycle bin',
// Other
'commented_on' => 'がコメント:',
'permissions_update' => 'が権限を更新:',
];