]> BookStack Code Mirror - bookstack/blob - lang/cs/activities.php
add tests for priority
[bookstack] / lang / cs / 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'                 => 'vytvořil/a stránku',
10     'page_create_notification'    => 'Stránka byla úspěšně vytvořena',
11     'page_update'                 => 'aktualizoval/a stránku',
12     'page_update_notification'    => 'Stránka byla úspěšně aktualizována',
13     'page_delete'                 => 'odstranil/a stránku',
14     'page_delete_notification'    => 'Stránka byla úspěšně smazána',
15     'page_restore'                => 'obnovil/a stránku',
16     'page_restore_notification'   => 'Stránka byla úspěšně obnovena',
17     'page_move'                   => 'přesunul/a stránku',
18     'page_move_notification'      => 'Page successfully moved',
19
20     // Chapters
21     'chapter_create'              => 'vytvořil/a kapitolu',
22     'chapter_create_notification' => 'Kapitola byla úspěšně vytvořena',
23     'chapter_update'              => 'aktualizoval/a kapitolu',
24     'chapter_update_notification' => 'Kapitola byla úspěšně aktualizována',
25     'chapter_delete'              => 'odstranila/a kapitolu',
26     'chapter_delete_notification' => 'Kapitola byla úspěšně odstraněna',
27     'chapter_move'                => 'přesunul/a kapitolu',
28     'chapter_move_notification' => 'Chapter successfully moved',
29
30     // Books
31     'book_create'                 => 'vytvořil/a knihu',
32     'book_create_notification'    => 'Kniha byla úspěšně vytvořena',
33     'book_create_from_chapter'              => 'převést kapitolu na knihu',
34     'book_create_from_chapter_notification' => 'Kapitola byla úspěšně převedena na knihu',
35     'book_update'                 => 'aktualizoval/a knihu',
36     'book_update_notification'    => 'Kniha byla úspěšně aktualizována',
37     'book_delete'                 => 'odstranil/a knihu',
38     'book_delete_notification'    => 'Kniha byla úspěšně odstraněna',
39     'book_sort'                   => 'seřadil/a knihu',
40     'book_sort_notification'      => 'Kniha byla úspěšně seřazena',
41
42     // Bookshelves
43     'bookshelf_create'            => 'vytvořit knihovnu',
44     'bookshelf_create_notification'    => 'Knihovna byla úspěšně vytvořena',
45     'bookshelf_create_from_book'    => 'převést knihu na knihovnu',
46     'bookshelf_create_from_book_notification'    => 'Kniha byla úspěšně převedena na knihovnu',
47     'bookshelf_update'                 => 'aktualizovat knihovnu',
48     'bookshelf_update_notification'    => 'Knihovna byla úspěšně aktualizována',
49     'bookshelf_delete'                 => 'odstranit knihovnu',
50     'bookshelf_delete_notification'    => 'Knihovna byla úspěšně smazána',
51
52     // Revisions
53     'revision_restore' => 'restored revision',
54     'revision_delete' => 'deleted revision',
55     'revision_delete_notification' => 'Revision successfully deleted',
56
57     // Favourites
58     'favourite_add_notification' => '":name" byla přidána do Vašich oblíbených',
59     'favourite_remove_notification' => '":name" byla odstraněna z Vašich oblíbených',
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' => 'Vícefaktorová metoda byla úspěšně nakonfigurována',
68     'mfa_remove_method' => 'removed MFA method',
69     'mfa_remove_method_notification' => 'Vícefaktorová metoda byla úspěšně odstraněna',
70
71     // Settings
72     'settings_update' => 'updated settings',
73     'settings_update_notification' => 'Settings successfully updated',
74     'maintenance_action_run' => 'ran maintenance action',
75
76     // Webhooks
77     'webhook_create' => 'vytvořil/a webhook',
78     'webhook_create_notification' => 'Webhook byl úspěšně vytvořen',
79     'webhook_update' => 'aktualizoval/a webhook',
80     'webhook_update_notification' => 'Webhook byl úspěšně aktualizován',
81     'webhook_delete' => 'odstranil/a webhook',
82     'webhook_delete_notification' => 'Webhook byl úspěšně odstraněn',
83
84     // Users
85     'user_create' => 'created user',
86     'user_create_notification' => 'User successfully created',
87     'user_update' => 'updated user',
88     'user_update_notification' => 'Uživatel byl úspěšně aktualizován',
89     'user_delete' => 'deleted user',
90     'user_delete_notification' => 'Uživatel byl úspěšně odstraněn',
91
92     // API Tokens
93     'api_token_create' => 'created api token',
94     'api_token_create_notification' => 'API token successfully created',
95     'api_token_update' => 'updated api token',
96     'api_token_update_notification' => 'API token successfully updated',
97     'api_token_delete' => 'deleted api token',
98     'api_token_delete_notification' => 'API token successfully deleted',
99
100     // Roles
101     'role_create' => 'created role',
102     'role_create_notification' => 'Role byla úspěšně vytvořena',
103     'role_update' => 'updated role',
104     'role_update_notification' => 'Role byla úspěšně aktualizována',
105     'role_delete' => 'deleted role',
106     'role_delete_notification' => 'Role byla odstraněna',
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'                => 'okomentoval/a',
115     'permissions_update'          => 'oprávnění upravena',
116 ];