├── .gitignore ├── LICENSE ├── README.md ├── assets ├── arrow.svg ├── css │ └── style.css ├── js │ └── script.js ├── logo.svg └── warning.svg ├── languages ├── wp-db-backup-ar.mo ├── wp-db-backup-ar.po ├── wp-db-backup-ca.mo ├── wp-db-backup-ca.po ├── wp-db-backup-de_DE.mo ├── wp-db-backup-de_DE.po ├── wp-db-backup-el.mo ├── wp-db-backup-el.po ├── wp-db-backup-es_ES.mo ├── wp-db-backup-es_ES.po ├── wp-db-backup-fa_IR.mo ├── wp-db-backup-fa_IR.po ├── wp-db-backup-fr_FR.mo ├── wp-db-backup-fr_FR.po ├── wp-db-backup-it_IT.mo ├── wp-db-backup-it_IT.po ├── wp-db-backup-ja.mo ├── wp-db-backup-ja.po ├── wp-db-backup-ko_KR.mo ├── wp-db-backup-ko_KR.po ├── wp-db-backup-nb_NO.mo ├── wp-db-backup-nb_NO.po ├── wp-db-backup-pt_BR.mo ├── wp-db-backup-pt_BR.po ├── wp-db-backup-ru_RU.mo ├── wp-db-backup-ru_RU.po ├── wp-db-backup-sv_SE.mo ├── wp-db-backup-sv_SE.po ├── wp-db-backup-tr_TR.mo ├── wp-db-backup-tr_TR.po ├── wp-db-backup-zh_CN.mo ├── wp-db-backup-zh_CN.po └── wp-db-backup.pot ├── readme.txt └── wp-db-backup.php /.gitignore: -------------------------------------------------------------------------------- 1 | .idea -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Database Backup for WordPress 2 | ============ 3 | 4 | Contributors: deliciousbrains 5 | Tags: mysql, database, backup, cron 6 | Requires at least: 3.6.0 7 | Tested up to: 5.7 8 | Stable tag: 2.4 9 | Requires PHP: 5.3 10 | 11 | On-demand backup of your WordPress database. 12 | 13 | Description 14 | ----------- 15 | 16 | WP-DB-Backup allows you easily to backup your core WordPress database tables. You may also backup other tables in the same database. 17 | 18 | Released under the terms of the GNU GPL, version 2. 19 | 20 | [Source Code on GitHub](https://github.com/deliciousbrains/wp-db-backup) 21 | 22 | Installation 23 | ------------ 24 | 25 | 1. Extract the wp-db-backup/ folder file to /wp-content/plugins/ 26 | 1. Activate the plugin at your blog's Admin -> Plugins screen 27 | 1. The plugin will attempt to create a directory /wp-content/backup-*/ inside your WordPress directory. 28 | 1. You may need to make /wp-content writable (at least temporarily) for it to create this directory. 29 | For example: 30 | `$ cd /wordpress/` 31 | `$ chgrp www-data wp-content` (where "`www-data`" is the group your FTP client uses) 32 | `$ chmod g+w wp-content` 33 | 34 | Frequently Asked Questions 35 | -------------------------- 36 | 37 | How do I restore my database from a backup? 38 | ------------------------------------------- 39 | 40 | Briefly, use phpMyAdmin, which is included with most hosting control panels. More details and links to further explanations are [here](http://codex.wordpress.org/Restoring_Your_Database_From_Backup). 41 | 42 | My backup stops or hangs without completing. 43 | -------------------------------------------- 44 | 45 | If you edit the text of wp-db-backup.php in a text editor like Notepad, you’ll see around line 50 the following: 46 | 47 | `/** 48 | * Set DBBWP_MOD_EVASIVE_OVERRIDE to true 49 | * and increase DBBWP_MOD_EVASIVE_DELAY 50 | * if the backup stops prematurely. 51 | */ 52 | // define('DBBWP_MOD_EVASIVE_OVERRIDE', false); 53 | define('DBBWP_MOD_EVASIVE_DELAY', '500');` 54 | 55 | Do what it says: un-comment DBBWP_MOD_EVASIVE_OVERRIDE and set it to true like so: 56 | 57 | `define('DBBWP_MOD_EVASIVE_OVERRIDE', true);` 58 | 59 | That will slow down the plugin, and you can slow it even further by increasing the DBBWP_MOD_EVASIVE_DELAY number from 500. 60 | 61 | Better yet, put the lines that define the `DBBWP_MOD_EVASIVE_OVERRIDE` and `DBBWP_MOD_EVASIVE_DELAY` constants in your wp-config.php file, so your settings don't get erased when you upgrade the plugin. 62 | 63 | What is wp-db-backup.pot for? 64 | ----------------------------- 65 | 66 | This files is used by non-English users to translate the display into their native language. Translators are encouraged to submit translated files, which will be made available to others here: 67 | http://plugins.trac.wordpress.org/browser/wp-db-backup/i18n/ 68 | 69 | Why are only the core database files backed up by default? 70 | ---------------------------------------------------------- 71 | 72 | Because it's a fairly safe bet that the core WordPress files will be successfully backed up. Plugins vary wildly in the amount of data that they store. For instance, it's not uncommon for some statistics plugins to have tens of megabytes worth of visitor statistics. These are not exactly essential items to restore after a catastrophic failure. Most poeple can reasonably live without this data in their backups. 73 | 74 | Usage 75 | ----- 76 | 77 | 1. Click the Tools or Manage menu in your WordPress admin area. 78 | 1. Click the Backup sub-menu. 79 | 80 | 1. The plugin will look for other tables in the same database. You may elect to include other tables in the backup. 81 | ** NOTE ** 82 | Including other tables in your backup may substantially increase the size of the backup file! 83 | This may prevent you from emailing the backup file because it's too big. 84 | 85 | 1. Select how you'd like the backup to be delivered: 86 | * Download to your computer : this will send the backup file to your browser to be downloaded 87 | * Email : this will email the backup file to the address you specify 88 | 89 | 1. Click "Backup!" and your database backup will be delivered to you. 90 | 91 | The filename of the backup file will be of the form 92 | DB_prefix_date.sql 93 | DB = the name of your WordPress database, as defined in wp-config.php 94 | prefix = the table prefix for this WordPress blog, as defined in wp-config.php 95 | date = CCYYmmdd_B format: 20050711_039 96 | the "B" is the internet "Swatch" time. 97 | See the PHP date() function for details. 98 | 99 | When having the database backup emailed or sent to your browser for immediate download, the backup file will be _deleted_ from the server when the transfer is finished. 100 | 101 | Changelog 102 | --------- 103 | 104 | 2.5.2 105 | ----- 106 | * Security: "Scheduled Backup" form now has nonce check 107 | 108 | 2.5.1 109 | ----- 110 | * Security: Make sure table exists before attempting backup 111 | 112 | 2.5 113 | ----- 114 | * New: Brand new user interface 115 | * Improvement: Compatibility with WordPress 5.8 116 | 117 | 2.4 118 | ----- 119 | * Compatibility with PHP 8 and WordPress 5.7 120 | * Fix email backup functionality 121 | * Fix for bug where backup file would be gzipped twice 122 | * Fixes for several PHP notices 123 | * Add `DBBWP_` prefix to global constants 124 | 125 | 2.3 126 | ----- 127 | * Remove backup directory use 128 | 129 | 2.2.4 130 | ----- 131 | * Remove deprecated functionality 132 | * Do not attempt to delete non-existent files 133 | 134 | 2.2.3 135 | ----- 136 | * Nonce check fix for localized WP users from Sergey Biryukov 137 | * Fix for gzipped files' incorrect size. 138 | * Some styling improvements. 139 | * Fix for JS multiple checkbox selection. 140 | 141 | 2.3.3 142 | ----- 143 | * Sanitize user-supplied data 144 | 145 | Upgrade Notice 146 | -------------- 147 | 148 | 2.2.3 149 | ----- 150 | * Fixes problems users had when using localized WordPress installations. 151 | * Fixes a bug that caused the size of gzipped backup files to be reported incorrectly. 152 | 153 | Advanced 154 | -------- 155 | If you are using WordPress version 2.1 or newer, you can schedule automated backups to be sent to the email address 156 | of your choice. 157 | 158 | Translators 159 | ----------- 160 | Thanks to following people for providing translation files for WP-DB-Backup: 161 | 162 | * Abel Cheung 163 | * Alejandro Urrutia 164 | * Alexander Kanakaris 165 | * Angelo Andrea Iorio 166 | * Calle 167 | * Daniel Erb 168 | * Daniel Villoldo 169 | * Diego Pierotto 170 | * Eilif Nordseth 171 | * Eric Lassauge 172 | * Friedlich 173 | * Gilles Wittezaele 174 | * Icemanpro 175 | * İzzet Emre Erkan 176 | * Jong-In Kim 177 | * Kaveh 178 | * Kessia Pinheiro 179 | * Kuratkoo 180 | * Majed Alotaibi 181 | * Michał Gołuński 182 | * Michele Spagnuolo 183 | * Paopao 184 | * Philippe Galliard 185 | * Robert Buj 186 | * Roger 187 | * Rune Gulbrandsøy 188 | * Serge Rauber 189 | * Sergey Biryukov 190 | * Tai 191 | * Timm Severin 192 | * Tzafrir Rehan 193 | * 吴曦 194 | 195 | Past Contributors 196 | ----------------- 197 | filosofo, skippy, Firas, LaughingLizard, MtDewVirus, Podz, Ringmaster 198 | -------------------------------------------------------------------------------- /assets/arrow.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /assets/css/style.css: -------------------------------------------------------------------------------- 1 | :root { 2 | /*colors*/ 3 | --primary: #2C9EB7; 4 | --header: #38526A; 5 | --blue: #236DE7; 6 | --white: #ffffff; 7 | 8 | /*text*/ 9 | --gray-dark: #3C3B59; 10 | --gray-light: #666666; 11 | --table-heading: #708AA4; 12 | 13 | /*panels and borders*/ 14 | --divider: #CAD8EC; 15 | --border: #D8D6D5; 16 | --border-radius: 6px; 17 | --code-background: #E7F0F4; 18 | 19 | /*shadows*/ 20 | --panel-shadow: 0 2px 1px 0 rgba(39, 45, 77, .05), 0 2px 8px 0 rgba(39, 45, 77, .05); 21 | --subnav-shadow: 0 1px 3px 0 rgba(63, 65, 80, .15); 22 | 23 | /*row/col-gap*/ 24 | --gap-xs: 8px; 25 | --gap-sm: 16px; 26 | --gap-md: 24px; 27 | --gap-lg: 32px; 28 | 29 | /*warning alert*/ 30 | --warning-text: #6A4E04; 31 | --warning-fill: #FFFBF2; 32 | --warning-border: #E2A70A; 33 | 34 | /*other*/ 35 | --subnav-item-active: #1E6075; 36 | } 37 | 38 | /*overrides, reset and wrapper*/ 39 | #wpcontent { 40 | padding: 0 !important; 41 | } 42 | 43 | .wrap, #wpdb.wrap { 44 | margin: 0; 45 | } 46 | 47 | #contextual-help-link { 48 | position: absolute; 49 | right: 0px; 50 | } 51 | 52 | @media screen and (max-width: 782px) { 53 | #screen-meta-links { 54 | margin-bottom: 0; 55 | } 56 | } 57 | 58 | #wpbody-content { 59 | padding-bottom: 32px; 60 | } 61 | 62 | .content-wrap { 63 | margin: 3rem 2rem; 64 | max-width: 1280px; 65 | } 66 | 67 | /*header styling----------------------------------------------------------*/ 68 | .header { 69 | background: var(--header); 70 | /* width: 100%; */ 71 | display: flex; 72 | padding: 24px 32px; 73 | align-items: center; 74 | margin: 0; 75 | overflow: visible; 76 | } 77 | 78 | .header h2 { 79 | color: var(--white); 80 | font-weight: 500; 81 | font-size: 1.1rem; 82 | } 83 | 84 | .header img { 85 | width: 3rem;rgb(60, 59, 89) 86 | height: 3rem; 87 | margin-right: 1.25rem; 88 | } 89 | 90 | /*subnav styling----------------------------------------------------------*/ 91 | .subnav { 92 | background: var(--white); 93 | padding: 0; 94 | box-shadow: var(--subnav-shadow); 95 | } 96 | 97 | .subnav ul { 98 | display: flex; 99 | margin: 0; 100 | column-gap: var(--gap-lg); 101 | padding: 0 32px; 102 | } 103 | 104 | .subnav li { 105 | margin: 0; 106 | } 107 | 108 | .subnav a { 109 | margin: 0; 110 | padding: 1.4rem 0 1.2rem 0; 111 | font-size: .875rem; 112 | font-weight: 400; 113 | opacity: .5; 114 | display: grid; 115 | text-decoration: none; 116 | color: var(--gray-dark); 117 | } 118 | 119 | .subnav a:focus { 120 | border-bottom: 3px solid rgba(60, 59, 89, .4)!important; 121 | box-shadow: none; 122 | outline: 0; 123 | } 124 | 125 | .subnav a:hover { 126 | opacity: .7 !important; 127 | } 128 | 129 | .subnav a.active { 130 | opacity: 1; 131 | border-bottom: 3px solid var(--subnav-item-active); 132 | } 133 | 134 | .subnav a.active:hover { 135 | opacity: 1 !important; 136 | } 137 | 138 | /*table panels------------------------------------------------*/ 139 | .panel-heading { 140 | padding: 1.2rem 2rem; 141 | border-bottom: 1px solid var(--divider); 142 | border-radius: var(--border-radius) var(--border-radius) 0 0; 143 | } 144 | 145 | .panel-heading h3 { 146 | color: var(--table-heading); 147 | text-transform: uppercase; 148 | font-size: 13px; 149 | font-weight: 600; 150 | letter-spacing: 0.75px; 151 | margin: 0; 152 | line-height: 1; 153 | display: flex; 154 | align-items: center; 155 | align-self: center; 156 | } 157 | 158 | h4 { 159 | font-size: .85rem; 160 | } 161 | 162 | .instructions { 163 | margin: 0; 164 | display: flex; 165 | align-items: center; 166 | } 167 | 168 | .instructions label { 169 | display: flex; 170 | align-items: center; 171 | } 172 | 173 | .instructions-container { 174 | display: flex; 175 | justify-content: space-between; 176 | } 177 | 178 | .instructions-container p { 179 | font-size: 12px; 180 | letter-spacing: 0; 181 | } 182 | 183 | /*panel-content*/ 184 | .panel-content { 185 | padding: 2rem; 186 | display: flex; 187 | column-gap: var(--gap-lg); 188 | row-gap: var(--gap-lg); 189 | flex-direction: column; 190 | } 191 | 192 | .panel-content ul, p, h2, h3, h4, p { 193 | margin: 0; 194 | } 195 | 196 | .panel-content .tables-list { 197 | display: flex; 198 | flex-direction: column; 199 | width: 100%; 200 | row-gap: var(--gap-md); 201 | } 202 | 203 | .tables-list p.instructions { 204 | display: inline-block; 205 | } 206 | 207 | .panel-content.tables { 208 | flex-direction: row; 209 | } 210 | 211 | .panel-content.backup { 212 | flex-direction: column; 213 | } 214 | 215 | .panel-content.backup li { 216 | margin-bottom: 12px !important; 217 | } 218 | 219 | .panel-content.backup li:last-of-type { 220 | margin-bottom: 0 !important; 221 | } 222 | 223 | .panel-content.scheduled-backup form { 224 | display: flex; 225 | flex-direction: column; 226 | row-gap: var(--gap-lg); 227 | width: 100%; 228 | } 229 | 230 | .panel-content.scheduled-backup .tables-list.scheduled li { 231 | margin-bottom: 12px !important; 232 | } 233 | 234 | .panel-content.scheduled-backup .email { 235 | margin-top: 0; 236 | } 237 | 238 | .panel-content.scheduled-backup .row { 239 | display: flex; 240 | padding: 0; 241 | flex-direction: row; 242 | row-gap: var(--gap-lg); 243 | width: 100%; 244 | } 245 | 246 | .panel-content.tables ul, #include-tables-list ul { 247 | border: 1px solid var(--divider); 248 | border-radius: var(--border-radius); 249 | padding: 1rem; 250 | row-gap: var(--gap-xs); 251 | display: flex; 252 | flex-direction: column; 253 | } 254 | 255 | /*media queries*/ 256 | @media only screen and (max-width: 900px) { 257 | .panel-content.tables { 258 | flex-direction: column; 259 | } 260 | 261 | .panel-content.scheduled-backup .row { 262 | flex-direction: column; 263 | } 264 | } 265 | 266 | @media only screen and (max-width: 1200px) { 267 | .instructions-container{ 268 | flex-direction: column; 269 | height: 2.75rem; 270 | row-gap: 8px; 271 | justify-content: flex-start; 272 | } 273 | } 274 | 275 | /*fieldset*/ 276 | fieldset { 277 | position: relative; 278 | margin-top: 50px; 279 | border-radius: var(--border-radius); 280 | } 281 | 282 | fieldset legend { 283 | visibility: hidden; 284 | position: absolute; 285 | float: left; 286 | border-radius: var(--border-radius); 287 | } 288 | 289 | fieldset.options { 290 | background: var(--white); 291 | box-shadow: var(--panel-shadow); 292 | margin-top: 2.5rem; 293 | border-radius: var(--border-radius); 294 | } 295 | 296 | fieldset.options .instructions { 297 | font-size: 0.75rem; 298 | } 299 | 300 | fieldset.options ul { 301 | list-style-type: none; 302 | } 303 | 304 | fieldset.options li { 305 | text-align: left; 306 | display: flex; 307 | margin: 0; 308 | align-items: baseline; 309 | } 310 | 311 | fieldset.options .instructions { 312 | font-size: 0.75rem; 313 | } 314 | 315 | /*input styling (button, label, text, checkbox, radio button)----------------------------------------------------------*/ 316 | /*submit button*/ 317 | input[type="submit"] { 318 | color: var(--white); 319 | background: var(--primary); 320 | padding: 1rem 2rem; 321 | border: 0; 322 | border-radius: 4px; 323 | font-weight: 500; 324 | cursor: pointer; 325 | display: inline-flex; 326 | font-size: 15px; 327 | /* display: inline-flex; */ 328 | } 329 | 330 | input[type="submit"]:hover { 331 | filter: brightness(0.95); 332 | } 333 | 334 | input[type="submit"]:active { 335 | filter: brightness(0.92); 336 | } 337 | 338 | input[type="submit"]:focus { 339 | outline: none; 340 | box-shadow: 0 0 0 5px rgba(44, 158, 183, .3); 341 | } 342 | 343 | p.submit { 344 | border-top: 1px solid var(--divider); 345 | } 346 | 347 | .submit { 348 | margin: 0 !important; 349 | padding: 0; 350 | padding-top: 32px !important; 351 | } 352 | 353 | #change-wrap, #next-backup-time .submit { 354 | padding: 0; 355 | border: 0; 356 | } 357 | 358 | #change-backup-time, #save-backup-time { 359 | padding: 0 !important; 360 | background: none; 361 | color: var(--primary); 362 | margin-left: 8px; 363 | font-size: 13px; 364 | text-decoration: underline; 365 | } 366 | 367 | /*text input*/ 368 | input[type="text"] { 369 | width: 320px; 370 | border: 1px solid var(--border); 371 | padding: 0.3rem 1rem; 372 | font-weight: 400; 373 | font-size: 14px !important; 374 | } 375 | 376 | input[type="text"]:focus { 377 | border-color: var(--blue) !important; 378 | box-shadow: 0 0 0 1px var(--blue) !important; 379 | } 380 | 381 | .email { 382 | margin-top: 32px; 383 | display: flex; 384 | flex-direction: column; 385 | row-gap: var(--gap-xs); 386 | } 387 | 388 | .email label { 389 | color: var(--table-heading); 390 | text-transform: uppercase; 391 | font-size: 12px; 392 | font-weight: 600; 393 | letter-spacing: 0.75px; 394 | margin: 0; 395 | line-height: 1; 396 | display: flex; 397 | flex-direction: column; 398 | row-gap: var(--gap-xs); 399 | } 400 | 401 | /*radio input*/ 402 | input[type="radio"] { 403 | margin-right: .75rem; 404 | border: 1px solid #999 !important; 405 | width: 18px !important; 406 | height: 18px !important; 407 | box-shadow: none; 408 | } 409 | 410 | input[type="radio"]:focus { 411 | outline: 0.15rem solid rgba(35, 109, 231, .4); 412 | outline-offset: 1px; 413 | box-shadow: none; 414 | } 415 | 416 | input[type=radio]:checked::before { 417 | width: 10px !important; 418 | height: 10px !important; 419 | background: var(--blue); 420 | margin: 3px; 421 | } 422 | 423 | input[type=radio]:checked { 424 | border: none; 425 | } 426 | 427 | /*checkbox input*/ 428 | input[type="checkbox"] { 429 | margin: 0 0.5rem; 430 | width: 18px !important; 431 | height: 18px !important; 432 | box-shadow: none !important; 433 | } 434 | 435 | input[type=checkbox]:checked { 436 | border: none; 437 | background: var(--blue); 438 | content: url("data:image/svg+xml,%3Csvg width='6' height='4' viewBox='3 -4 3 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.95048 6.24692C3.55481 6.64497 2.91278 6.64497 2.5173 6.24692L0.296759 4.01311C-0.0989197 3.61525 -0.0989197 2.96939 0.296759 2.57154C0.692247 2.17349 1.33427 2.17349 1.72995 2.57154L3.05295 3.90226C3.15283 4.00254 3.31495 4.00254 3.41502 3.90226L6.99732 0.298534C7.39281 -0.0995112 8.03483 -0.0995112 8.43051 0.298534C8.62052 0.48968 8.72727 0.749023 8.72727 1.01932C8.72727 1.28961 8.62052 1.54896 8.43051 1.7401L3.95048 6.24692Z' fill='white'/%3E%3C/svg%3E%0A"); 439 | border-color: var(--blue); 440 | } 441 | 442 | input[type=checkbox]:checked::before { 443 | border: none; 444 | color: #fff; 445 | background-image: url("data:image/svg+xml,%3Csvg width='9' height='7' viewBox='0 0 9 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.95048 6.24692C3.55481 6.64497 2.91278 6.64497 2.5173 6.24692L0.296759 4.01311C-0.0989197 3.61525 -0.0989197 2.96939 0.296759 2.57154C0.692247 2.17349 1.33427 2.17349 1.72995 2.57154L3.05295 3.90226C3.15283 4.00254 3.31495 4.00254 3.41502 3.90226L6.99732 0.298534C7.39281 -0.0995112 8.03483 -0.0995112 8.43051 0.298534C8.62052 0.48968 8.72727 0.749023 8.72727 1.01932C8.72727 1.28961 8.62052 1.54896 8.43051 1.7401L3.95048 6.24692Z' fill='white'/%3E%3C/svg%3E%0A"); 446 | } 447 | 448 | input[type="checkbox"]:focus { 449 | outline: 0.15rem solid rgba(35, 109, 231, .4); 450 | outline-offset: 1px; 451 | box-shadow: none; 452 | } 453 | 454 | .instructions input[type="checkbox"] { 455 | margin-right: 0.6rem; 456 | } 457 | 458 | /*code selector----------------------------------------------------------*/ 459 | code { 460 | background: var(--code-background); 461 | font-size: .75rem; 462 | padding: 2px 8px; 463 | border-radius: 2px; 464 | font-family: system-ui; 465 | } 466 | 467 | .core-tables code { 468 | margin-right: 24px; 469 | } 470 | 471 | code.shift-key { 472 | border-radius: 2px; 473 | background-color: #F2F2F2; 474 | border: 1px solid #AEC1C5; 475 | padding: 3px 4px; 476 | line-height: 1; 477 | margin: 0 0.1rem; 478 | font-size: 11px; 479 | display: inline-block; 480 | white-space: nowrap; 481 | } 482 | 483 | .core-tables ul li { 484 | display: flex; 485 | align-items: center; 486 | } 487 | 488 | /*progress bar----------------------------------------------------------*/ 489 | .backup-running { 490 | display: flex; 491 | flex-direction: column; 492 | } 493 | 494 | .progress-bar { 495 | display: flex; 496 | flex-direction: column; 497 | row-gap: var(--gap-xs); 498 | } 499 | 500 | #meterbox { 501 | all: unset !important; 502 | background: red; 503 | opacity: 1; 504 | } 505 | 506 | #meter { 507 | background-color: var(--primary) !important; 508 | border-radius: 8px; 509 | } 510 | 511 | #progress-status { 512 | color: var(--primary); 513 | font-size: 28px; 514 | line-height: 70%; 515 | margin-bottom: 12px; 516 | } 517 | 518 | #errors:empty { 519 | display: none; 520 | } 521 | 522 | /*notices----------------------------------------------------------*/ 523 | .info-notice { 524 | background: var(--warning-fill); 525 | border: 1px solid var(--warning-border); 526 | padding: .6rem 1rem; 527 | display: inline-flex; 528 | border-radius: 4px; 529 | } 530 | 531 | .info-notice p { 532 | color: var(--warning-text); 533 | font-size: 13px; 534 | line-height: 1.4; 535 | } 536 | 537 | .info-notice img { 538 | margin-right: .75rem; 539 | } 540 | 541 | .wp-db-backup-updated { 542 | background: var(--white); 543 | border: 1px solid var(--border); 544 | border-left-width: 5px; 545 | box-shadow: 0 1px 1px rgb(0 0 0 / 4%); 546 | margin: 5px 0 15px; 547 | padding: 6px 12px; 548 | border-left-color: #00a32a; 549 | border-radius: 3px; 550 | } 551 | 552 | .wp-db-backup-updated p { 553 | margin: 0.5em 0; 554 | padding: 4px; 555 | } 556 | 557 | .alternate { 558 | background-color: var(--white); 559 | } 560 | -------------------------------------------------------------------------------- /assets/js/script.js: -------------------------------------------------------------------------------- 1 | (function( $ ) { 2 | const container = $( '#wpdb' ); 3 | const nav = container.find( '.subnav' ); 4 | 5 | function toggle_nav( type ) { 6 | $( '#wpdb .subnav a' ).removeClass( 'active' ); 7 | $( '#wpdb .subnav a[data-type="' + type + '"]' ).addClass( 'active' ); 8 | 9 | const visibleClass = type + '-content'; 10 | container.find( 'fieldset' ).hide(); 11 | container.find( '.' + visibleClass ).show(); 12 | 13 | history.replaceState(null, null, ' '); 14 | if ( type !== 'backup') { 15 | window.location.hash = type; 16 | } else { 17 | $( '.wp-db-backup-schedule-updated').remove(); 18 | } 19 | } 20 | 21 | nav.on( 'click', 'a', function( e ) { 22 | e.preventDefault(); 23 | toggle_nav( $( this ).attr( 'href' ).substr( 1 ) ); 24 | } ); 25 | 26 | $( document ).on( 'ready', function() { 27 | var type = window.location.hash.substr( 1 ); 28 | if ( type.length && ['backup', 'schedule'].includes( type ) ) { 29 | toggle_nav( type ); 30 | } 31 | } ); 32 | 33 | })( jQuery ); -------------------------------------------------------------------------------- /assets/logo.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | -------------------------------------------------------------------------------- /assets/warning.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /languages/wp-db-backup-ar.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deliciousbrains/wp-db-backup/f7f1ed99607d5ddeb1ccb14fb00659ce28073c4d/languages/wp-db-backup-ar.mo -------------------------------------------------------------------------------- /languages/wp-db-backup-ar.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: www.rjlalmtr.com\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2008-08-15 11:00-0500\n" 6 | "PO-Revision-Date: 2008-11-07 11:41+0300\n" 7 | "Last-Translator: \n" 8 | "Language-Team: www.rjlalmtr.com \n" 9 | "MIME-Version: 1.0\n" 10 | "Content-Type: text/plain; charset=UTF-8\n" 11 | "Content-Transfer-Encoding: 8bit\n" 12 | "X-Poedit-Language: Arabic\n" 13 | "X-Poedit-Country: SAUDI ARABIA\n" 14 | 15 | #: wp-db-backup.php:181 16 | msgid "Backup Complete!" 17 | msgstr "النسخه الاحتياطيه اكتملت !" 18 | 19 | #: wp-db-backup.php:211 20 | msgid "Progress" 21 | msgstr "معالجه .." 22 | 23 | #: wp-db-backup.php:213 24 | msgid "DO NOT DO THE FOLLOWING AS IT WILL CAUSE YOUR BACKUP TO FAIL:" 25 | msgstr "لاتقم بفعل مايلي لانه سيتلف عملية النسخ الاحتياطي الخاصه بك :" 26 | 27 | #: wp-db-backup.php:216 28 | msgid "Close this browser" 29 | msgstr "إغلاق المتصفح" 30 | 31 | #: wp-db-backup.php:217 32 | msgid "Reload this page" 33 | msgstr "تحديث الصفحه" 34 | 35 | #: wp-db-backup.php:218 36 | msgid "Click the Stop or Back buttons in your browser" 37 | msgstr "الضغط على زر الإيقاف او الرجوع للخلف في متصفحك " 38 | 39 | #: wp-db-backup.php:220 40 | msgid "Progress:" 41 | msgstr "معالجه ..." 42 | 43 | #: wp-db-backup.php:229 44 | msgid "Navigating away from this page will cause your backup to fail." 45 | msgstr "الانتقال من هذه الصفحه سيؤدي الى فشل عملية النسخ الاحتياطي" 46 | 47 | #: wp-db-backup.php:266 48 | #, php-format 49 | msgid "Backup complete, preparing backup for download..." 50 | msgstr "النسخ الاحتياطي اكتمل النسخه الاحتياطيه للتحميل..." 51 | 52 | #: wp-db-backup.php:273 53 | #, php-format 54 | msgid "Backup complete, sending backup via email..." 55 | msgstr "النسخه الاحتياطيه اكتملت ,, إرسال النسخه الاحتياطيه الى الايميل..." 56 | 57 | #: wp-db-backup.php:280 58 | #, php-format 59 | msgid "Backup complete, download here." 60 | msgstr "النسخ الاحتياطي اكتمل , للتحميل من هنا." 61 | 62 | #: wp-db-backup.php:340 63 | msgid "Creating backup file..." 64 | msgstr "انشاء النسخه الاحتياطيه" 65 | 66 | #: wp-db-backup.php:343 67 | #, php-format 68 | msgid "Finished backing up table \\\"%s\\\"." 69 | msgstr "تم الانتهاء من نسخ الجدول \\\"%s\\\"." 70 | 71 | #: wp-db-backup.php:345 72 | #, php-format 73 | msgid "Backing up table \\\"%s\\\"..." 74 | msgstr "نسخ الجدول \\\"%s\\\"..." 75 | 76 | #: wp-db-backup.php:352 77 | #: wp-db-backup.php:835 78 | msgid "Could not open the backup file for writing!" 79 | msgstr "تعذر فتح ملف النسخة الاحتياطية للكتابة!" 80 | 81 | #: wp-db-backup.php:353 82 | msgid "The backup file could not be saved. Please check the permissions for writing to your backup directory and try again." 83 | msgstr "ملف النسخة الاحتياطية لا يمكن حفظه. يرجى التحقق من اذونات التصريح إلى مجلد النسخه الاحتياطية الخاصة بك وحاول مرة أخرى." 84 | 85 | #: wp-db-backup.php:358 86 | #: wp-db-backup.php:844 87 | msgid "WordPress MySQL database backup" 88 | msgstr "النسخ الاحتياطي لقاعدة بيانات ووردبريس" 89 | 90 | #: wp-db-backup.php:360 91 | #: wp-db-backup.php:846 92 | #, php-format 93 | msgid "Generated: %s" 94 | msgstr "تم النسخ في: %s" 95 | 96 | #: wp-db-backup.php:361 97 | #: wp-db-backup.php:847 98 | #, php-format 99 | msgid "Hostname: %s" 100 | msgstr "اسم الموقع: %s" 101 | 102 | #: wp-db-backup.php:362 103 | #: wp-db-backup.php:848 104 | #, php-format 105 | msgid "Database: %s" 106 | msgstr "اسم القاعده: %s" 107 | 108 | #: wp-db-backup.php:370 109 | #: wp-db-backup.php:861 110 | #, php-format 111 | msgid "Table: %s" 112 | msgstr "الجدول: %s" 113 | 114 | #: wp-db-backup.php:377 115 | msgid "The backup directory is not writeable! Please check the permissions for writing to your backup directory and try again." 116 | msgstr "مجلد النسخ الاحتياطي غير قابل للكتابه. يرجى التحقق من اذونات التصريح إلى مجلد النسخه الاحتياطية الخاصة بك وحاول مرة أخرى." 117 | 118 | #: wp-db-backup.php:434 119 | msgid "Click and hold down [SHIFT] to toggle multiple checkboxes" 120 | msgstr "اضغط باستمرار نزول [SHIFT]للانتقال لحانات متعدده" 121 | 122 | #: wp-db-backup.php:474 123 | msgid "Change" 124 | msgstr "تغيير" 125 | 126 | #: wp-db-backup.php:483 127 | msgid "Save" 128 | msgstr "حفظ" 129 | 130 | #: wp-db-backup.php:566 131 | #: wp-db-backup.php:571 132 | #: wp-db-backup.php:1126 133 | msgid "Backup" 134 | msgstr "النسخ الاحتياطي" 135 | 136 | #: wp-db-backup.php:646 137 | #: wp-db-backup.php:649 138 | msgid "There was an error writing a line to the backup script:" 139 | msgstr "هناك خطأ في طتابة السطر البرمجي لسكربت النسخ الاحتياطي" 140 | 141 | #: wp-db-backup.php:681 142 | msgid "Subsequent errors have been omitted from this log." 143 | msgstr "الأخطاء اللاحقة قد حذفت من هذا السجل." 144 | 145 | #: wp-db-backup.php:715 146 | msgid "Error getting table details" 147 | msgstr "حدث خطأ أثناء الحصول على تفاصيل الجدول" 148 | 149 | #: wp-db-backup.php:723 150 | #, php-format 151 | msgid "Delete any existing table %s" 152 | msgstr "حذف اي جدول من القائمه %s" 153 | 154 | #: wp-db-backup.php:732 155 | #, php-format 156 | msgid "Table structure of table %s" 157 | msgstr "جداول هيكلة الجدول %s" 158 | 159 | #: wp-db-backup.php:738 160 | #, php-format 161 | msgid "Error with SHOW CREATE TABLE for %s." 162 | msgstr "خطأ مع عرض وانشاء الجدول لـ %s" 163 | 164 | #: wp-db-backup.php:745 165 | #, php-format 166 | msgid "Error getting table structure of %s" 167 | msgstr "حدث خطا اثناء الحصول على هيكل الجدول %s" 168 | 169 | #: wp-db-backup.php:753 170 | #, php-format 171 | msgid "Data contents of table %s" 172 | msgstr "محتوى بيانات الجدول %s" 173 | 174 | #: wp-db-backup.php:823 175 | #, php-format 176 | msgid "End of data contents of table %s" 177 | msgstr "نهاية محتوى بيانات الجدول %s" 178 | 179 | #: wp-db-backup.php:839 180 | msgid "The backup directory is not writeable!" 181 | msgstr "مجلد النسخ الاحتياطي غير قابل للكتابه" 182 | 183 | #: wp-db-backup.php:974 184 | #, php-format 185 | msgid "File not found:%s" 186 | msgstr "لم يعثر على الملف :%s" 187 | 188 | #: wp-db-backup.php:974 189 | msgid "Return to Backup" 190 | msgstr "عوده الى الخلف" 191 | 192 | #: wp-db-backup.php:983 193 | #, php-format 194 | msgid "File %s does not exist!" 195 | msgstr "الملف %s لا وجود له !" 196 | 197 | #: wp-db-backup.php:990 198 | #, php-format 199 | msgid "" 200 | "Attached to this email is\n" 201 | " %1s\n" 202 | " Size:%2s kilobytes\n" 203 | msgstr "" 204 | "مرفقات الرساله هي\n" 205 | " %1s\n" 206 | " الحجم:%2s كيلوبايت\n" 207 | 208 | #: wp-db-backup.php:991 209 | msgid "Database Backup" 210 | msgstr "نسخ قاعدة البيانات" 211 | 212 | #: wp-db-backup.php:994 213 | #: wp-db-backup.php:1041 214 | msgid "The following errors were reported:" 215 | msgstr "تم الابلاغ عن الاخطاء التاليه :" 216 | 217 | #: wp-db-backup.php:999 218 | msgid "ERROR: The mail application has failed to deliver the backup." 219 | msgstr "خطأ : تطبيق البريد فشل في تقديم النسخه الاحتياطيه ." 220 | 221 | #: wp-db-backup.php:1016 222 | msgid "Backup Successful" 223 | msgstr "اكتمال النسخ الاحتياطي " 224 | 225 | #: wp-db-backup.php:1020 226 | #, php-format 227 | msgid "Your backup file: %2s should begin downloading shortly." 228 | msgstr "النسخه الاحتياطيه الخاصه بك: %2s ينبغي ان تبداء بتحميلها قريبا." 229 | 230 | #: wp-db-backup.php:1028 231 | #, php-format 232 | msgid "Your backup has been emailed to %s" 233 | msgstr "النسخه الاحتياطيه الحاصه بك تم ارسالها بالبريد الالكتروني للايميل %s" 234 | 235 | #: wp-db-backup.php:1031 236 | msgid "Your backup file has been saved on the server. If you would like to download it now, right click and select \"Save As\"" 237 | msgstr "النسخه الاحتياطيه الخاص بك تم حفظها على السيرفر لتحميلها اضغط بالزر الايمن واختر \"حفظ باسم\"" 238 | 239 | #: wp-db-backup.php:1032 240 | #, php-format 241 | msgid "%s bytes" 242 | msgstr "%s بايت" 243 | 244 | #: wp-db-backup.php:1068 245 | msgid "Scheduled Backup Options Saved!" 246 | msgstr "خيارات النسخ الدوري تم حفظها !" 247 | 248 | #: wp-db-backup.php:1095 249 | msgid "WARNING: Your backup directory does NOT exist, and we cannot create it." 250 | msgstr "تحذير : مجلد النسخ الاحتياطيه لم يتم العثور عليه . كما انه لم يتم انشائه . " 251 | 252 | #: wp-db-backup.php:1096 253 | #, php-format 254 | msgid "Using your FTP client, try to create the backup directory yourself: %s" 255 | msgstr "استخدم برنامج الاف تي بي FTP وقم بإنشاء المجلد على هذا المسار : %s" 256 | 257 | #: wp-db-backup.php:1100 258 | #: wp-db-backup.php:1111 259 | msgid "WARNING: Your backup directory is NOT writable! We cannot create the backup files." 260 | msgstr "تحذير : المجلد الخاص بالنسخ الاحتياطي غير قابل للكتابه! لذلك لايمكن انشاء النسخ الاحتياطي ." 261 | 262 | #: wp-db-backup.php:1101 263 | #, php-format 264 | msgid "Using your FTP client, try to set the backup directory’s write permission to %1$s or %2$s: %3$s" 265 | msgstr "استخدم برنامج الاف تي بي الخاص بك . واعط مجلد النسخ الاحتياطي’s التصاريح %1$s or %2$s: %3$s" 266 | 267 | #: wp-db-backup.php:1113 268 | msgid "This problem seems to be caused by your server’s safe_mode file ownership restrictions, which limit what files web applications like WordPress can create." 269 | msgstr "" 270 | 271 | #: wp-db-backup.php:1115 272 | #, php-format 273 | msgid "You can try to correct this problem by using your FTP client to delete and then re-create the backup directory: %s" 274 | msgstr "يمكنك تصحيح هذه المشكله باستخدام برنامج الاف تي بي ومن ثم حذف مجلد النسخ الاحتياطي واعادة انشائه مرخ اخرى %s" 275 | 276 | #: wp-db-backup.php:1129 277 | msgid "Tables" 278 | msgstr "الجدوال" 279 | 280 | #: wp-db-backup.php:1131 281 | msgid "These core WordPress tables will always be backed up:" 282 | msgstr "هذه الجدوال الاساسيه للووردبريس سيتم نسخها دائما :" 283 | 284 | #: wp-db-backup.php:1136 285 | msgid "Exclude spam comments" 286 | msgstr "استبعاد التعليقات المزعجه ( سبام ) " 287 | 288 | #: wp-db-backup.php:1139 289 | msgid "Exclude post revisions" 290 | msgstr "استثناء تنقيحات المواضيع" 291 | 292 | #: wp-db-backup.php:1150 293 | msgid "You may choose to include any of the following tables:" 294 | msgstr "يمكنك اختيار اي من الجداول التاليه ليشملها النسخ :" 295 | 296 | #: wp-db-backup.php:1164 297 | msgid "Backup Options" 298 | msgstr "خيارات النسخ الدوري" 299 | 300 | #: wp-db-backup.php:1165 301 | msgid "What to do with the backup file:" 302 | msgstr "ماذا تريد ان تفعل بملف النسخه الاحتياطيه :" 303 | 304 | #: wp-db-backup.php:1169 305 | msgid "Save to server" 306 | msgstr "حفظ على السيرفر" 307 | 308 | #: wp-db-backup.php:1174 309 | msgid "Download to your computer" 310 | msgstr "حفظ على الكمبيوتر " 311 | 312 | #: wp-db-backup.php:1178 313 | #: wp-db-backup.php:1235 314 | msgid "Email backup to:" 315 | msgstr "ارسالها الى الايميل " 316 | 317 | #: wp-db-backup.php:1185 318 | msgid "Backup now!" 319 | msgstr "النسخ الان !" 320 | 321 | #: wp-db-backup.php:1188 322 | msgid "WARNING: Your backup directory is NOT writable!" 323 | msgstr "تحذير : دليل النسخ الاحتياطيه الخاص بك غير قابلللكتابه !" 324 | 325 | #: wp-db-backup.php:1199 326 | msgid "Scheduled Backup" 327 | msgstr "النسخ الاحتياطي الدوري" 328 | 329 | #: wp-db-backup.php:1206 330 | #, php-format 331 | msgid "Next Backup: %s" 332 | msgstr "النسخ الاحتياطي التالي: %s" 333 | 334 | #: wp-db-backup.php:1211 335 | #, php-format 336 | msgid "Last WP-Cron Daily Execution: %s" 337 | msgstr "Last WP-Cron Daily Execution: %s" 338 | 339 | #: wp-db-backup.php:1212 340 | #, php-format 341 | msgid "Next WP-Cron Daily Execution: %s" 342 | msgstr "" 343 | 344 | #: wp-db-backup.php:1217 345 | msgid "Schedule: " 346 | msgstr "النسخ الدوري :" 347 | 348 | #: wp-db-backup.php:1220 349 | msgid "None" 350 | msgstr "بدون" 351 | 352 | #: wp-db-backup.php:1220 353 | msgid "Daily" 354 | msgstr "يومي" 355 | 356 | #: wp-db-backup.php:1243 357 | msgid "Tables to include in the scheduled backup:" 358 | msgstr "الجداول التي يشملها النسخ الاحتياطي الدوري :" 359 | 360 | #: wp-db-backup.php:1253 361 | msgid "Schedule backup" 362 | msgstr "النسخ الاحتياطي الدوري" 363 | 364 | #: wp-db-backup.php:1278 365 | msgid "Never" 366 | msgstr "ابدا" 367 | 368 | #: wp-db-backup.php:1283 369 | #, php-format 370 | msgid "%s seconds" 371 | msgstr "" 372 | 373 | #: wp-db-backup.php:1316 374 | msgid "Once Weekly" 375 | msgstr "مره كل اسبوع" 376 | 377 | #: wp-db-backup.php:1329 378 | #, php-format 379 | msgid "Your WordPress version, %1s, lacks important security features without which it is unsafe to use the WP-DB-Backup plugin. Hence, this plugin is automatically disabled. Please consider upgrading WordPress to a more recent version." 380 | msgstr "" 381 | 382 | #: wp-db-backup.php:1347 383 | msgid "You are not allowed to perform backups." 384 | msgstr "لم تسمح بالنسخ الاحتياطي ." 385 | 386 | #: wp-db-backup.php:1362 387 | #, php-format 388 | msgid "There appears to be an unauthorized attempt from this site to access your database located at %1s. The attempt has been halted." 389 | msgstr "" 390 | 391 | #: wp-db-backup.php:1373 392 | msgid "Cheatin' uh ?" 393 | msgstr "" 394 | 395 | -------------------------------------------------------------------------------- /languages/wp-db-backup-ca.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deliciousbrains/wp-db-backup/f7f1ed99607d5ddeb1ccb14fb00659ce28073c4d/languages/wp-db-backup-ca.mo -------------------------------------------------------------------------------- /languages/wp-db-backup-de_DE.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deliciousbrains/wp-db-backup/f7f1ed99607d5ddeb1ccb14fb00659ce28073c4d/languages/wp-db-backup-de_DE.mo -------------------------------------------------------------------------------- /languages/wp-db-backup-de_DE.po: -------------------------------------------------------------------------------- 1 | # WP-DB-Backup 2 | # Copyright (C) 2008 Austin Matzko 3 | # This file is distributed under the GPL 2 license. 4 | # 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: wp-db-backup 2.1.7\n" 8 | "Report-Msgid-Bugs-To: \n" 9 | "POT-Creation-Date: 2008-08-15 11:00-0500\n" 10 | "PO-Revision-Date: 2008-08-15 23:47+0100\n" 11 | "Last-Translator: \n" 12 | "MIME-Version: 1.0\n" 13 | "Content-Type: text/plain; charset=utf-8\n" 14 | "Content-Transfer-Encoding: 8bit\n" 15 | "Language-Team: \n" 16 | 17 | #: wp-db-backup.php:181 18 | msgid "Backup Complete!" 19 | msgstr "Backup abgeschlossen!" 20 | 21 | #: wp-db-backup.php:211 22 | msgid "Progress" 23 | msgstr "Fortschritt" 24 | 25 | #: wp-db-backup.php:213 26 | msgid "DO NOT DO THE FOLLOWING AS IT WILL CAUSE YOUR BACKUP TO FAIL:" 27 | msgstr "Achtung, bitte führe die folgenden Aktionen nicht aus, da das Backup sonst fehlschlagen wird:" 28 | 29 | #: wp-db-backup.php:216 30 | msgid "Close this browser" 31 | msgstr "Das Browserfenster schließen" 32 | 33 | #: wp-db-backup.php:217 34 | msgid "Reload this page" 35 | msgstr "Diese Seite neu laden" 36 | 37 | #: wp-db-backup.php:218 38 | msgid "Click the Stop or Back buttons in your browser" 39 | msgstr "Den \"Stopp\"- oder \"Zurück\"-Knopf im Browser drücken" 40 | 41 | #: wp-db-backup.php:220 42 | msgid "Progress:" 43 | msgstr "Fortschritt:" 44 | 45 | #: wp-db-backup.php:229 46 | msgid "Navigating away from this page will cause your backup to fail." 47 | msgstr "Diese Seite zu verlassen wird das Backup fehlschagen lassen." 48 | 49 | #: wp-db-backup.php:266 50 | #, php-format 51 | msgid "Backup complete, preparing backup for download..." 52 | msgstr "Backup vollständig, bereite Backup zum Download vor" 53 | 54 | #: wp-db-backup.php:273 55 | #, php-format 56 | msgid "Backup complete, sending backup via email..." 57 | msgstr "Backup vollständig, sende Backup per E-Mail..." 58 | 59 | #: wp-db-backup.php:280 60 | #, php-format 61 | msgid "Backup complete, download here." 62 | msgstr "Backup vollständig, download hier" 63 | 64 | #: wp-db-backup.php:340 65 | msgid "Creating backup file..." 66 | msgstr "Erstelle Backup-Datei..." 67 | 68 | #: wp-db-backup.php:343 69 | #, php-format 70 | msgid "Finished backing up table \\\"%s\\\"." 71 | msgstr "Backup der Tabelle \\\"%s\\\" abgeschlossen." 72 | 73 | #: wp-db-backup.php:345 74 | #, php-format 75 | msgid "Backing up table \\\"%s\\\"..." 76 | msgstr "Erstelle Backup der Tabelle \\\"%s\\\"..." 77 | 78 | #: wp-db-backup.php:352 79 | #: wp-db-backup.php:835 80 | msgid "Could not open the backup file for writing!" 81 | msgstr "Konnte die Backup-Datei nicht zum Schreiben öffen!" 82 | 83 | #: wp-db-backup.php:353 84 | msgid "The backup file could not be saved. Please check the permissions for writing to your backup directory and try again." 85 | msgstr "Das Backup konnte nicht gespeichert werden. Bitte prüfe die Zugriffsrechte auf das Backup-Verzeichnis und versuche es dann erneut." 86 | 87 | #: wp-db-backup.php:358 88 | #: wp-db-backup.php:844 89 | msgid "WordPress MySQL database backup" 90 | msgstr "Wordpress MySQL Datenbank Backup" 91 | 92 | #: wp-db-backup.php:360 93 | #: wp-db-backup.php:846 94 | #, php-format 95 | msgid "Generated: %s" 96 | msgstr "Erstellt: %s" 97 | 98 | #: wp-db-backup.php:361 99 | #: wp-db-backup.php:847 100 | #, php-format 101 | msgid "Hostname: %s" 102 | msgstr "Hostname: %s" 103 | 104 | #: wp-db-backup.php:362 105 | #: wp-db-backup.php:848 106 | #, php-format 107 | msgid "Database: %s" 108 | msgstr "Datenbank: %s" 109 | 110 | #: wp-db-backup.php:370 111 | #: wp-db-backup.php:861 112 | #, php-format 113 | msgid "Table: %s" 114 | msgstr "Tabelle: %s" 115 | 116 | #: wp-db-backup.php:377 117 | msgid "The backup directory is not writeable! Please check the permissions for writing to your backup directory and try again." 118 | msgstr "Das Backupverzeichnis kann nicht beschrieben werden! Bitte überprüfe die Zugriffsberechtigungen zum Verzeichnis und versuche es erneut." 119 | 120 | #: wp-db-backup.php:434 121 | msgid "Click and hold down [SHIFT] to toggle multiple checkboxes" 122 | msgstr "Klicke und halte [SHIFT] gedrückt um mehrere Checkboxen auszuwählen." 123 | 124 | #: wp-db-backup.php:474 125 | msgid "Change" 126 | msgstr "Ändern" 127 | 128 | #: wp-db-backup.php:483 129 | msgid "Save" 130 | msgstr "Speichern" 131 | 132 | #: wp-db-backup.php:566 133 | #: wp-db-backup.php:571 134 | #: wp-db-backup.php:1126 135 | msgid "Backup" 136 | msgstr "Backup" 137 | 138 | #: wp-db-backup.php:646 139 | #: wp-db-backup.php:649 140 | msgid "There was an error writing a line to the backup script:" 141 | msgstr "Beim Schreiben einer Zeile in das Backup Skript ist ein Fehler aufgetreten:" 142 | 143 | #: wp-db-backup.php:681 144 | msgid "Subsequent errors have been omitted from this log." 145 | msgstr "Die Folgefehler wurden in diesem Log weggelassen." 146 | 147 | #: wp-db-backup.php:715 148 | msgid "Error getting table details" 149 | msgstr "Fehler beim auslesen der Tabelleninformationen" 150 | 151 | #: wp-db-backup.php:723 152 | #, php-format 153 | msgid "Delete any existing table %s" 154 | msgstr "Lösche jegliche existierende Tabelle %s" 155 | 156 | #: wp-db-backup.php:732 157 | #, php-format 158 | msgid "Table structure of table %s" 159 | msgstr "Struktur der Tabelle %s" 160 | 161 | #: wp-db-backup.php:738 162 | #, php-format 163 | msgid "Error with SHOW CREATE TABLE for %s." 164 | msgstr "Fehler beim Ausführen von SHOW CREATE TABLE for %s." 165 | 166 | #: wp-db-backup.php:745 167 | #, php-format 168 | msgid "Error getting table structure of %s" 169 | msgstr "Fehler beim Auslesen der Tabellenstruktur der Tabelle %s" 170 | 171 | #: wp-db-backup.php:753 172 | #, php-format 173 | msgid "Data contents of table %s" 174 | msgstr "Inhalt der Tabelle %s" 175 | 176 | #: wp-db-backup.php:823 177 | #, php-format 178 | msgid "End of data contents of table %s" 179 | msgstr "Ende der Inhalte der Tabelle %s" 180 | 181 | #: wp-db-backup.php:839 182 | msgid "The backup directory is not writeable!" 183 | msgstr "Das Backup-Verzeichnis ist nicht beschreibbar!" 184 | 185 | #: wp-db-backup.php:974 186 | #, php-format 187 | msgid "File not found:%s" 188 | msgstr "Datei %s konnte nicht gefunden werden." 189 | 190 | #: wp-db-backup.php:974 191 | msgid "Return to Backup" 192 | msgstr "Zum Backup zurückkehren" 193 | 194 | #: wp-db-backup.php:983 195 | #, php-format 196 | msgid "File %s does not exist!" 197 | msgstr "Datei %s existiert nicht!" 198 | 199 | #: wp-db-backup.php:990 200 | #, php-format 201 | msgid "" 202 | "Attached to this email is\n" 203 | " %1s\n" 204 | " Size:%2s kilobytes\n" 205 | msgstr "" 206 | "An diese Datei angehängt:\n" 207 | " %1s\n" 208 | " Dateigröße:%2s Kilobyte\n" 209 | 210 | #: wp-db-backup.php:991 211 | msgid "Database Backup" 212 | msgstr "Datenbankbackup" 213 | 214 | #: wp-db-backup.php:994 215 | #: wp-db-backup.php:1041 216 | msgid "The following errors were reported:" 217 | msgstr "Die folgenden Fehler wurden gemeldet:" 218 | 219 | #: wp-db-backup.php:999 220 | msgid "ERROR: The mail application has failed to deliver the backup." 221 | msgstr "Fehler: Der Email-Service konnte das Backup nicht zustellen." 222 | 223 | #: wp-db-backup.php:1016 224 | msgid "Backup Successful" 225 | msgstr "Backup erfolgreich" 226 | 227 | #: wp-db-backup.php:1020 228 | #, php-format 229 | msgid "Your backup file: %2s should begin downloading shortly." 230 | msgstr "Dein Backup: %2s; Download sollte in Kürze beginnen." 231 | 232 | #: wp-db-backup.php:1028 233 | #, php-format 234 | msgid "Your backup has been emailed to %s" 235 | msgstr "Dein Backup wurde an %s gesendet." 236 | 237 | #: wp-db-backup.php:1031 238 | msgid "Your backup file has been saved on the server. If you would like to download it now, right click and select \"Save As\"" 239 | msgstr "Dein Backup wurde auf dem Server gespeichert. Wenn du es nun herunterladen wollen, mach einen Rechtklicks auf den Link und wähle \"Speichern Unter\"" 240 | 241 | #: wp-db-backup.php:1032 242 | #, php-format 243 | msgid "%s bytes" 244 | msgstr "%s Byte" 245 | 246 | #: wp-db-backup.php:1068 247 | msgid "Scheduled Backup Options Saved!" 248 | msgstr "Optionen für geplantes Backup gespeichert!" 249 | 250 | #: wp-db-backup.php:1095 251 | msgid "WARNING: Your backup directory does NOT exist, and we cannot create it." 252 | msgstr "Achtung: Das Backup-Verzeichnis existiert nicht, und wir können es nicht erstellen." 253 | 254 | #: wp-db-backup.php:1096 255 | #, php-format 256 | msgid "Using your FTP client, try to create the backup directory yourself: %s" 257 | msgstr "Benutz deinen FTP-Client, um das Backup Verzeichnis manuell zu erstellen: %s" 258 | 259 | #: wp-db-backup.php:1100 260 | #: wp-db-backup.php:1111 261 | msgid "WARNING: Your backup directory is NOT writable! We cannot create the backup files." 262 | msgstr "Achtung: Dein Backup-Verzeichnis ist nicht beschreibbar! Wir können keine backups erstellen." 263 | 264 | #: wp-db-backup.php:1101 265 | #, php-format 266 | msgid "Using your FTP client, try to set the backup directory’s write permission to %1$s or %2$s: %3$s" 267 | msgstr "Benutz deinen FTP-Clienten um die Zugriffsrechte auf das Backup-Verzeichnis auf %1$s oder %2$s zu setzen: %3$s" 268 | 269 | #: wp-db-backup.php:1113 270 | msgid "This problem seems to be caused by your server’s safe_mode file ownership restrictions, which limit what files web applications like WordPress can create." 271 | msgstr "Das bestehende Problem scheint daran zu liegen, dass dein Sever im safe_mode läuft, und somit für Webanwendungen wie Wordpress einige Einschränkungen bezüglich der Rechte im Dateisystem gelten." 272 | 273 | #: wp-db-backup.php:1115 274 | #, php-format 275 | msgid "You can try to correct this problem by using your FTP client to delete and then re-create the backup directory: %s" 276 | msgstr "Du Kannst aber versuchen dieses Problem zu beheben, indem du mit deinem FTP-Client das Backup-Verzeichnis löschst und neu erstellst: %s" 277 | 278 | #: wp-db-backup.php:1129 279 | msgid "Tables" 280 | msgstr "Tabellen" 281 | 282 | #: wp-db-backup.php:1131 283 | msgid "These core WordPress tables will always be backed up:" 284 | msgstr "Diese Standard Wordpress-Tabellen werden in immer gesichert:" 285 | 286 | #: wp-db-backup.php:1136 287 | msgid "Exclude spam comments" 288 | msgstr "Spam-Kommentare ignorieren" 289 | 290 | #: wp-db-backup.php:1139 291 | msgid "Exclude post revisions" 292 | msgstr "Beitragsänderungen nicht sichern" 293 | 294 | #: wp-db-backup.php:1150 295 | msgid "You may choose to include any of the following tables:" 296 | msgstr "Zusätzlich kannst du noch folgende Tabellen sichern:" 297 | 298 | #: wp-db-backup.php:1164 299 | msgid "Backup Options" 300 | msgstr "Backup Optionen" 301 | 302 | #: wp-db-backup.php:1165 303 | msgid "What to do with the backup file:" 304 | msgstr "Was soll mit dem Backup geschehen?" 305 | 306 | #: wp-db-backup.php:1169 307 | msgid "Save to server" 308 | msgstr "Auf dem Server speichern" 309 | 310 | #: wp-db-backup.php:1174 311 | msgid "Download to your computer" 312 | msgstr "Auf deinen Computer herunterladen" 313 | 314 | #: wp-db-backup.php:1178 315 | #: wp-db-backup.php:1235 316 | msgid "Email backup to:" 317 | msgstr "Per Email verschicken an:" 318 | 319 | #: wp-db-backup.php:1185 320 | msgid "Backup now!" 321 | msgstr "Jetzt sichern!" 322 | 323 | #: wp-db-backup.php:1188 324 | msgid "WARNING: Your backup directory is NOT writable!" 325 | msgstr "Warnung: Ihre Backup-Verzeichnis ist nicht beschreibbar!" 326 | 327 | #: wp-db-backup.php:1199 328 | msgid "Scheduled Backup" 329 | msgstr "Geplante Sicherung" 330 | 331 | #: wp-db-backup.php:1206 332 | #, php-format 333 | msgid "Next Backup: %s" 334 | msgstr "Nächste Sicherung: %s" 335 | 336 | #: wp-db-backup.php:1211 337 | #, php-format 338 | msgid "Last WP-Cron Daily Execution: %s" 339 | msgstr "Letzte tägliche Ausführung des WP-Crons: %s" 340 | 341 | #: wp-db-backup.php:1212 342 | #, php-format 343 | msgid "Next WP-Cron Daily Execution: %s" 344 | msgstr "Nächste tägliche Ausführung des WP-Crons: %s" 345 | 346 | #: wp-db-backup.php:1217 347 | msgid "Schedule: " 348 | msgstr "Zeitplan:" 349 | 350 | #: wp-db-backup.php:1220 351 | msgid "None" 352 | msgstr "Nicht" 353 | 354 | #: wp-db-backup.php:1220 355 | msgid "Daily" 356 | msgstr "Täglich" 357 | 358 | #: wp-db-backup.php:1243 359 | msgid "Tables to include in the scheduled backup:" 360 | msgstr "Zusätzliche Tabellen für das geplante Backup:" 361 | 362 | #: wp-db-backup.php:1253 363 | msgid "Schedule backup" 364 | msgstr "Backup planen" 365 | 366 | #: wp-db-backup.php:1278 367 | msgid "Never" 368 | msgstr "Nie" 369 | 370 | #: wp-db-backup.php:1283 371 | #, php-format 372 | msgid "%s seconds" 373 | msgstr "%s Sekunden" 374 | 375 | #: wp-db-backup.php:1316 376 | msgid "Once Weekly" 377 | msgstr "Einmal wöchentlich" 378 | 379 | #: wp-db-backup.php:1329 380 | #, php-format 381 | msgid "Your WordPress version, %1s, lacks important security features without which it is unsafe to use the WP-DB-Backup plugin. Hence, this plugin is automatically disabled. Please consider upgrading WordPress to a more recent version." 382 | msgstr "Deine Wordpress Version (%1s) fehlt es an einigen bedeutenden Sicherheitsfeatures, ohne die dieses Plugin unsicher ist. Zu deiner eigenen Sicherheit deaktiviert sich dieses Plugin deshalb automatisch. Bitte denk darüber nach Wordpress auf eine neuere Version zu upgraden" 383 | 384 | #: wp-db-backup.php:1347 385 | msgid "You are not allowed to perform backups." 386 | msgstr "Du hast nicht die nötige Berechtigung, um Backups durchzuführen." 387 | 388 | #: wp-db-backup.php:1362 389 | #, php-format 390 | msgid "There appears to be an unauthorized attempt from this site to access your database located at %1s. The attempt has been halted." 391 | msgstr "Es scheint als versuche jemand sich von dieser Seite unberechtigt Zugriff auf Ihre Datenbank (%1s) zu verschaffen. Der Versuch wurde unterbunden." 392 | 393 | #: wp-db-backup.php:1373 394 | msgid "Cheatin' uh ?" 395 | msgstr "Cheating? Tztz..." 396 | 397 | -------------------------------------------------------------------------------- /languages/wp-db-backup-el.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deliciousbrains/wp-db-backup/f7f1ed99607d5ddeb1ccb14fb00659ce28073c4d/languages/wp-db-backup-el.mo -------------------------------------------------------------------------------- /languages/wp-db-backup-el.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: wp-db-backup-el 2.2.2 [a]\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2008-08-15 11:00-0500\n" 6 | "PO-Revision-Date: \n" 7 | "Last-Translator: Πρόδρομος Τσαλικίδης \n" 8 | "Language-Team: \n" 9 | "MIME-Version: 1.0\n" 10 | "Content-Type: text/plain; charset=UTF-8\n" 11 | "Content-Transfer-Encoding: 8bit\n" 12 | "X-Poedit-Language: Greek\n" 13 | "X-Poedit-Country: Greek\n" 14 | "X-Poedit-SourceCharset: utf-8\n" 15 | 16 | #: wp-db-backup.php:181 17 | msgid "Backup Complete!" 18 | msgstr "Η αντιγραφή ολοκληρώθηκε!" 19 | 20 | #: wp-db-backup.php:211 21 | msgid "Progress" 22 | msgstr "Πρόοδος" 23 | 24 | #: wp-db-backup.php:213 25 | msgid "DO NOT DO THE FOLLOWING AS IT WILL CAUSE YOUR BACKUP TO FAIL:" 26 | msgstr "ΜΗΝ ΚΑΝΕΤΕ ΚΑΤΙ ΑΠΟ ΤΑ ΠΑΡΑΚΑΤΩ ΓΙΑΤΙ ΘΑ ΠΡΟΚΑΛΕΣΕΙ ΑΠΟΤΥΧΙΑ ΣΤΗΝ ΑΝΤΙΓΡΑΦΗ:" 27 | 28 | #: wp-db-backup.php:216 29 | msgid "Close this browser" 30 | msgstr "Κλείσιμο του browser" 31 | 32 | #: wp-db-backup.php:217 33 | msgid "Reload this page" 34 | msgstr "Ανανέωση αυτής της σελίδας" 35 | 36 | #: wp-db-backup.php:218 37 | msgid "Click the Stop or Back buttons in your browser" 38 | msgstr "Κλικ στα πλήκτρα Διακοπή ή Πίσω του browser" 39 | 40 | #: wp-db-backup.php:220 41 | msgid "Progress:" 42 | msgstr "Πρόοδος:" 43 | 44 | #: wp-db-backup.php:229 45 | msgid "Navigating away from this page will cause your backup to fail." 46 | msgstr "Αν φύγετε από αυτή τη σελίδα, η αντιγραφή θα αποτύχει." 47 | 48 | #: wp-db-backup.php:266 49 | #, php-format 50 | msgid "Backup complete, preparing backup for download..." 51 | msgstr "Η αντιγραφή ολοκληρώθηκε, το αντίγραφο ετοιμάζεται για μεταφόρτωση..." 52 | 53 | #: wp-db-backup.php:273 54 | #, php-format 55 | msgid "Backup complete, sending backup via email..." 56 | msgstr "Η αντιγραφή ολοκληρώθηκε, το αντίγραφο αποστέλλεται μέσω email..." 57 | 58 | #: wp-db-backup.php:280 59 | #, php-format 60 | msgid "Backup complete, download here." 61 | msgstr "Η αντιγραφή ολοκληρώθηκε, κατεβάστε εδώ." 62 | 63 | #: wp-db-backup.php:340 64 | msgid "Creating backup file..." 65 | msgstr "Δημιουργείται το αντίγραφο..." 66 | 67 | #: wp-db-backup.php:343 68 | #, php-format 69 | msgid "Finished backing up table \\\"%s\\\"." 70 | msgstr "Τελείωσε η αντιγραφή του πίνακα \\\"%s\\\"." 71 | 72 | #: wp-db-backup.php:345 73 | #, php-format 74 | msgid "Backing up table \\\"%s\\\"..." 75 | msgstr "Αντιγράφεται ο πίνακας \\\"%s\\\"..." 76 | 77 | #: wp-db-backup.php:352 78 | #: wp-db-backup.php:835 79 | msgid "Could not open the backup file for writing!" 80 | msgstr "Δεν ήταν δυνατό το άνοιγμα του αρχείου αντιγράφου για εγγραφή!" 81 | 82 | #: wp-db-backup.php:353 83 | msgid "The backup file could not be saved. Please check the permissions for writing to your backup directory and try again." 84 | msgstr "Το αρχείο αντιγράφου δεν ήταν δυνατό να αποθηκευτεί. Παρακαλώ ελέγξτε τα δικαιώματα εγγραφής στο φάκελο αντιγράφων και δοκιμάστε ξανά." 85 | 86 | #: wp-db-backup.php:358 87 | #: wp-db-backup.php:844 88 | msgid "WordPress MySQL database backup" 89 | msgstr "Αντίγραφο ασφαλείας της βάσης δεδομένων WordPress MySQL" 90 | 91 | #: wp-db-backup.php:360 92 | #: wp-db-backup.php:846 93 | #, php-format 94 | msgid "Generated: %s" 95 | msgstr "Δημιουργήθηκε: %s" 96 | 97 | #: wp-db-backup.php:361 98 | #: wp-db-backup.php:847 99 | #, php-format 100 | msgid "Hostname: %s" 101 | msgstr "Hostname: %s" 102 | 103 | #: wp-db-backup.php:362 104 | #: wp-db-backup.php:848 105 | #, php-format 106 | msgid "Database: %s" 107 | msgstr "Βάση δεδομένων: %s" 108 | 109 | #: wp-db-backup.php:370 110 | #: wp-db-backup.php:861 111 | #, php-format 112 | msgid "Table: %s" 113 | msgstr "Πίνακας: %s" 114 | 115 | #: wp-db-backup.php:377 116 | msgid "The backup directory is not writeable! Please check the permissions for writing to your backup directory and try again." 117 | msgstr "Ο φάκελος αντιγράφων ΔΕΝ είναι εγγράψιμος! Παρακαλώ ελέγξτε τα δικαιώματα εγγραφής στο φάκελο αντιγράφων και δοκιμάστε ξανά." 118 | 119 | #: wp-db-backup.php:434 120 | msgid "Click and hold down [SHIFT] to toggle multiple checkboxes" 121 | msgstr "Πατήστε και κρατήστε πατημένο το [SHIFT] για να επιλέξετε πολλαπλά κουτάκια " 122 | 123 | #: wp-db-backup.php:474 124 | msgid "Change" 125 | msgstr "Αλλαγή" 126 | 127 | #: wp-db-backup.php:483 128 | msgid "Save" 129 | msgstr "Αποθήκευση" 130 | 131 | #: wp-db-backup.php:566 132 | #: wp-db-backup.php:571 133 | #: wp-db-backup.php:1126 134 | msgid "Backup" 135 | msgstr "Αντίγραφα ασφαλείας" 136 | 137 | #: wp-db-backup.php:646 138 | #: wp-db-backup.php:649 139 | msgid "There was an error writing a line to the backup script:" 140 | msgstr "Υπήρξε σφάλμα κατά την εγγραφή μιας γραμμής στη δέσμη ενεργειών της αντιγραφής:" 141 | 142 | #: wp-db-backup.php:681 143 | msgid "Subsequent errors have been omitted from this log." 144 | msgstr "Τα διαδοχικά σφάλματα παραλήφθηκαν από αυτήν την καταγραφή." 145 | 146 | #: wp-db-backup.php:715 147 | msgid "Error getting table details" 148 | msgstr "Σφάλμα κατά τη λήψη λεπτομερειών πίνακα" 149 | 150 | #: wp-db-backup.php:723 151 | #, php-format 152 | msgid "Delete any existing table %s" 153 | msgstr "Διαγραφή όλων των υπαρχόντων πινάκων %s" 154 | 155 | #: wp-db-backup.php:732 156 | #, php-format 157 | msgid "Table structure of table %s" 158 | msgstr "Δομή του πίνακα %s" 159 | 160 | #: wp-db-backup.php:738 161 | #, php-format 162 | msgid "Error with SHOW CREATE TABLE for %s." 163 | msgstr "Σφάλμα με το SHOW CREATE TABLE για %s." 164 | 165 | #: wp-db-backup.php:745 166 | #, php-format 167 | msgid "Error getting table structure of %s" 168 | msgstr "Σφάλμα κατά τη λήψη της δομής του πίνακα %s" 169 | 170 | #: wp-db-backup.php:753 171 | #, php-format 172 | msgid "Data contents of table %s" 173 | msgstr "Δεδομένα του πίνακα %s" 174 | 175 | #: wp-db-backup.php:823 176 | #, php-format 177 | msgid "End of data contents of table %s" 178 | msgstr "Τέλος δεδομένων του πίνακα %s" 179 | 180 | #: wp-db-backup.php:839 181 | msgid "The backup directory is not writeable!" 182 | msgstr "Ο φάκελος αποθήκευσης των αντιγράφων ασφαλείας ΔΕΝ είναι εγγράψιμος!" 183 | 184 | #: wp-db-backup.php:974 185 | #, php-format 186 | msgid "File not found:%s" 187 | msgstr "Το αρχείο δεν βρέθηκε: %s" 188 | 189 | #: wp-db-backup.php:974 190 | msgid "Return to Backup" 191 | msgstr "Επιστροφή στην Αντιγραφή" 192 | 193 | #: wp-db-backup.php:983 194 | #, php-format 195 | msgid "File %s does not exist!" 196 | msgstr "Το αρχείο %s δεν υπάρχει!" 197 | 198 | #: wp-db-backup.php:990 199 | #, php-format 200 | msgid "" 201 | "Attached to this email is\n" 202 | " %1s\n" 203 | " Size:%2s kilobytes\n" 204 | msgstr "" 205 | "Στο παρόν e-mail επισυνάπτεται\n" 206 | " %1s\n" 207 | " Μέγεθος: %2s KB\n" 208 | 209 | #: wp-db-backup.php:991 210 | msgid "Database Backup" 211 | msgstr "Αντιγραφή βάσης δεδομένων" 212 | 213 | #: wp-db-backup.php:994 214 | #: wp-db-backup.php:1041 215 | msgid "The following errors were reported:" 216 | msgstr "Αναφέρθηκαν τα παρακάτω σφάλματα:" 217 | 218 | #: wp-db-backup.php:999 219 | msgid "ERROR: The mail application has failed to deliver the backup." 220 | msgstr "ΣΦΑΛΜΑ: Η εφαρμογή mail απέτυχε να διανείμει το αντίγραφο." 221 | 222 | #: wp-db-backup.php:1016 223 | msgid "Backup Successful" 224 | msgstr "Επιτυχής αντιγραφή " 225 | 226 | #: wp-db-backup.php:1020 227 | #, php-format 228 | msgid "Your backup file: %2s should begin downloading shortly." 229 | msgstr "Το αντίγραφο ασφαλείας σας %2s πρέπει να ξεκινήσει να κατεβαίνει σύντομα." 230 | 231 | #: wp-db-backup.php:1028 232 | #, php-format 233 | msgid "Your backup has been emailed to %s" 234 | msgstr "Το αντίγραφο ασφαλείας σας έχει αποσταλεί στο %s" 235 | 236 | #: wp-db-backup.php:1031 237 | msgid "Your backup file has been saved on the server. If you would like to download it now, right click and select \"Save As\"" 238 | msgstr "Το αντίγραφο ασφαλείας σας έχει αποθηκευθεί στον server. Αν επιθυμείτε να το κατεβάσετε αμέσως, κάντε δεξί κλικ και επιλέξτε \"Αποθήκευσης ως\"" 239 | 240 | #: wp-db-backup.php:1032 241 | #, php-format 242 | msgid "%s bytes" 243 | msgstr "%s bytes" 244 | 245 | #: wp-db-backup.php:1068 246 | msgid "Scheduled Backup Options Saved!" 247 | msgstr "Οι επιλογές προγραμματισμένης αντιγραφής αποθηκεύτηκαν!" 248 | 249 | #: wp-db-backup.php:1095 250 | msgid "WARNING: Your backup directory does NOT exist, and we cannot create it." 251 | msgstr "ΠΡΟΕΙΔΟΠΟΙΗΣΗ: Ο φάκελος αποθήκευσης των αντιγράφων ασφαλείας σας ΔΕΝ υπάρχει και δεν μπορούμε να τον δημιουργήσουμε." 252 | 253 | #: wp-db-backup.php:1096 254 | #, php-format 255 | msgid "Using your FTP client, try to create the backup directory yourself: %s" 256 | msgstr "Χρησιμοποιώντας τον πελάτη FTP σας, προσπαθείστε να δημιουργήσετε τον φάκελο αντιγράφων ασφαλείας: %s" 257 | 258 | #: wp-db-backup.php:1100 259 | #: wp-db-backup.php:1111 260 | msgid "WARNING: Your backup directory is NOT writable! We cannot create the backup files." 261 | msgstr "ΠΡΟΕΙΔΟΠΟΙΗΣΗ: Ο φάκελος αποθήκευσης των αντιγράφων ασφαλείας σας ΔΕΝ είναι εγγράψιμος! Δεν μπορούμε να δημιουργήσουμε αντίγραφα ασφαλείας." 262 | 263 | #: wp-db-backup.php:1101 264 | #, php-format 265 | msgid "Using your FTP client, try to set the backup directory’s write permission to %1$s or %2$s: %3$s" 266 | msgstr "Χρησιμοποιώντας τον πελάτη FTP σας, προσπαθείστε να ορίσετε τα δικαιώματα εγγραφής στον φάκελο των αντιγράφων ασφαλείας σε %1$s ή %2$s: %3$s" 267 | 268 | #: wp-db-backup.php:1113 269 | msgid "This problem seems to be caused by your server’s safe_mode file ownership restrictions, which limit what files web applications like WordPress can create." 270 | msgstr "Το πρόβλημα φαίνεται να προκαλείται από τους περιορισμούς του safe_mode στην κυριότητα αρχείων του server σας, που περιορίζουν τα είδη αρχείων που μπορούν να δημιουργήσουν οι εφαρμογές διαδικτύου όπως το WordPress." 271 | 272 | #: wp-db-backup.php:1115 273 | #, php-format 274 | msgid "You can try to correct this problem by using your FTP client to delete and then re-create the backup directory: %s" 275 | msgstr "Μπορείτε να προσπαθείσετε να διορθώσετε το πρόβλημα χρησιμοποιώντας τον πελάτη FTP σας για να διαγράψετε και έπειτα να ξαναδημιουργήσετε τον φάκελο αποθήκευσης των αντιγράφων ασφαλείας: %s" 276 | 277 | #: wp-db-backup.php:1129 278 | msgid "Tables" 279 | msgstr "Πίνακες" 280 | 281 | #: wp-db-backup.php:1131 282 | msgid "These core WordPress tables will always be backed up:" 283 | msgstr "Αυτοί οι βασικοί πίνακες του WordPress θα αντιγράφονται πάντοτε:" 284 | 285 | #: wp-db-backup.php:1136 286 | msgid "Exclude spam comments" 287 | msgstr "Εξαίρεση ανεπιθύμητων σχολίων" 288 | 289 | #: wp-db-backup.php:1139 290 | msgid "Exclude post revisions" 291 | msgstr "Εξαίρεση αναθεωρήσεων άρθρων" 292 | 293 | #: wp-db-backup.php:1150 294 | msgid "You may choose to include any of the following tables:" 295 | msgstr "Μπορείτε να διαλέξετε να συμπεριλάβετε οποιουσδήποτε από τους παρακάτω πίνακες:" 296 | 297 | #: wp-db-backup.php:1164 298 | msgid "Backup Options" 299 | msgstr "Επιλογές αντιγραφής" 300 | 301 | #: wp-db-backup.php:1165 302 | msgid "What to do with the backup file:" 303 | msgstr "Τι να γίνει με το αντίγραφο ασφαλείας:" 304 | 305 | #: wp-db-backup.php:1169 306 | msgid "Save to server" 307 | msgstr "Αποθήκευση στον server" 308 | 309 | #: wp-db-backup.php:1174 310 | msgid "Download to your computer" 311 | msgstr "Μεταφόρτωση στον υπολογιστή σας" 312 | 313 | #: wp-db-backup.php:1178 314 | #: wp-db-backup.php:1235 315 | msgid "Email backup to:" 316 | msgstr "Αποστολή μέσω e-mail στο:" 317 | 318 | #: wp-db-backup.php:1185 319 | msgid "Backup now!" 320 | msgstr "Αντιγραφή τώρα!" 321 | 322 | #: wp-db-backup.php:1188 323 | msgid "WARNING: Your backup directory is NOT writable!" 324 | msgstr "ΠΡΟΕΙΔΟΠΟΙΗΣΗ: Ο φάκελος αποθήκευσης των αντιγράφων ασφαλείας σας ΔΕΝ είναι εγγράψιμος!" 325 | 326 | #: wp-db-backup.php:1199 327 | msgid "Scheduled Backup" 328 | msgstr "Προγραμματιμένη αντιγραφή" 329 | 330 | #: wp-db-backup.php:1206 331 | #, php-format 332 | msgid "Next Backup: %s" 333 | msgstr "Επόμενη αντιγραφή: %s" 334 | 335 | #: wp-db-backup.php:1211 336 | #, php-format 337 | msgid "Last WP-Cron Daily Execution: %s" 338 | msgstr "Τελευταία ημερήσια εκτέλεση του WP-Cron: %s" 339 | 340 | #: wp-db-backup.php:1212 341 | #, php-format 342 | msgid "Next WP-Cron Daily Execution: %s" 343 | msgstr "Επόμενη ημερήσια εκτέλεση του WP-Cron: %s" 344 | 345 | #: wp-db-backup.php:1217 346 | msgid "Schedule: " 347 | msgstr "Προγραμματισμός" 348 | 349 | #: wp-db-backup.php:1220 350 | msgid "None" 351 | msgstr "Κανένας" 352 | 353 | #: wp-db-backup.php:1220 354 | msgid "Daily" 355 | msgstr "Ημερησίως" 356 | 357 | #: wp-db-backup.php:1243 358 | msgid "Tables to include in the scheduled backup:" 359 | msgstr "Πίνακες που θα συμπεριληφθούν στην προγραμματισμένη αντιγραφή:" 360 | 361 | #: wp-db-backup.php:1253 362 | msgid "Schedule backup" 363 | msgstr "Προγραμματισμός της αντιγραφής" 364 | 365 | #: wp-db-backup.php:1278 366 | msgid "Never" 367 | msgstr "Ποτέ" 368 | 369 | #: wp-db-backup.php:1283 370 | #, php-format 371 | msgid "%s seconds" 372 | msgstr "%s δευτερόλεπτα" 373 | 374 | #: wp-db-backup.php:1316 375 | msgid "Once Weekly" 376 | msgstr "Εβδομαδιαίως" 377 | 378 | #: wp-db-backup.php:1329 379 | #, php-format 380 | msgid "Your WordPress version, %1s, lacks important security features without which it is unsafe to use the WP-DB-Backup plugin. Hence, this plugin is automatically disabled. Please consider upgrading WordPress to a more recent version." 381 | msgstr "Από την έκδοση του WordPress σας, %1s, λείπουν κάποια σημαντικά χαρακτηριστικά ασφαλείας, χωρίς τα οποία είναι επισφαλές να χρησιμοποιήσετε το πρόσθετο WP-DB-Backup. Γι' αυτό το λόγο το πρόσθετο απενεργοποιήθηκε αυτόματα. Παρακαλώ εξετάστε την αναβάθμιση του WordPress σε μια πιο πρόσφατη έκδοση." 382 | 383 | #: wp-db-backup.php:1347 384 | msgid "You are not allowed to perform backups." 385 | msgstr "Δεν επιτρέπεται να εκτελέσετε αντιγραφές." 386 | 387 | #: wp-db-backup.php:1362 388 | #, php-format 389 | msgid "There appears to be an unauthorized attempt from this site to access your database located at %1s. The attempt has been halted." 390 | msgstr "Φαίνεται να υπάρχει μια προσπάθεια πρόσβασης χωρίς άδεια από αυτό το site στην βάση δεδομένων που βρίσκεται στο %1s. Η προσπάθεια αναχαιτίστηκε." 391 | 392 | #: wp-db-backup.php:1373 393 | msgid "Cheatin' uh ?" 394 | msgstr "Παίζουμε ε;" 395 | 396 | -------------------------------------------------------------------------------- /languages/wp-db-backup-es_ES.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deliciousbrains/wp-db-backup/f7f1ed99607d5ddeb1ccb14fb00659ce28073c4d/languages/wp-db-backup-es_ES.mo -------------------------------------------------------------------------------- /languages/wp-db-backup-fa_IR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deliciousbrains/wp-db-backup/f7f1ed99607d5ddeb1ccb14fb00659ce28073c4d/languages/wp-db-backup-fa_IR.mo -------------------------------------------------------------------------------- /languages/wp-db-backup-fa_IR.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: wp-db-backup\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2008-08-15 11:00-0500\n" 6 | "PO-Revision-Date: \n" 7 | "Last-Translator: \n" 8 | "Language-Team: KAVEH Ali akbari | www.Barnameha.com \n" 9 | "MIME-Version: 1.0\n" 10 | "Content-Type: text/plain; charset=utf-8\n" 11 | "Content-Transfer-Encoding: 8bit\n" 12 | "X-Poedit-Language: Persian\n" 13 | "X-Poedit-SourceCharset: utf-8\n" 14 | "X-Poedit-KeywordsList: persian, Farsi, فارسی\n" 15 | 16 | #: wp-db-backup.php:181 17 | msgid "Backup Complete!" 18 | msgstr "پشتیبان گیری کامل شد" 19 | 20 | #: wp-db-backup.php:211 21 | msgid "Progress" 22 | msgstr "پیشرفت" 23 | 24 | #: wp-db-backup.php:213 25 | msgid "DO NOT DO THE FOLLOWING AS IT WILL CAUSE YOUR BACKUP TO FAIL:" 26 | msgstr "کارهاي روبرو را انجام ندهيد زيرا موجب بروز لغو عمليات ميشود:" 27 | 28 | #: wp-db-backup.php:216 29 | msgid "Close this browser" 30 | msgstr "از مرورگر خود خارج شوید" 31 | 32 | #: wp-db-backup.php:217 33 | msgid "Reload this page" 34 | msgstr "این صفحه را دوباره بارگزاری کنید" 35 | 36 | #: wp-db-backup.php:218 37 | msgid "Click the Stop or Back buttons in your browser" 38 | msgstr "بر روی ایست یا بازگشت در مرورگر خود کلیک کنید" 39 | 40 | #: wp-db-backup.php:220 41 | msgid "Progress:" 42 | msgstr "پیشرفتها" 43 | 44 | #: wp-db-backup.php:229 45 | msgid "Navigating away from this page will cause your backup to fail." 46 | msgstr "هدایت به بیرون از این صفحه موجب رخ دادن خطا در ایجاد پشتیبان شده است" 47 | 48 | #: wp-db-backup.php:266 49 | #, php-format 50 | msgid "Backup complete, preparing backup for download..." 51 | msgstr "پشتیبان گیری کامل شد ,فایل آماده دریافت است." 52 | 53 | #: wp-db-backup.php:273 54 | #, php-format 55 | msgid "Backup complete, sending backup via email..." 56 | msgstr "پشتیان گیری کامل شد؛ در حال ارسال به پست الکترونیک..." 57 | 58 | #: wp-db-backup.php:280 59 | #, php-format 60 | msgid "Backup complete, download here." 61 | msgstr "دریافت فایل.
پشتیبان گیری با موفقیت انجام شد." 62 | 63 | #: wp-db-backup.php:340 64 | msgid "Creating backup file..." 65 | msgstr "در حال ساختن فایل پشتیبان..." 66 | 67 | #: wp-db-backup.php:343 68 | #, php-format 69 | msgid "Finished backing up table \\\"%s\\\"." 70 | msgstr "تکمیل شد %s" 71 | 72 | #: wp-db-backup.php:345 73 | #, php-format 74 | msgid "Backing up table \\\"%s\\\"..." 75 | msgstr "در حال پشتیبان گیری از %s" 76 | 77 | #: wp-db-backup.php:352 78 | #: wp-db-backup.php:835 79 | msgid "Could not open the backup file for writing!" 80 | msgstr "امکان باز کردن فایل پشتیبان جهت نوشتن وجود ندارد" 81 | 82 | #: wp-db-backup.php:353 83 | msgid "The backup file could not be saved. Please check the permissions for writing to your backup directory and try again." 84 | msgstr "پوشه پشتیان گیری قابل نوشتن نیست.لطفا مجوز لازم را به آن پوشه داده و دویاره امتحان کنید" 85 | 86 | #: wp-db-backup.php:358 87 | #: wp-db-backup.php:844 88 | msgid "WordPress MySQL database backup" 89 | msgstr "WordPress MySQL database backup" 90 | 91 | #: wp-db-backup.php:360 92 | #: wp-db-backup.php:846 93 | #, php-format 94 | msgid "Generated: %s" 95 | msgstr "تولید شده ها: %s" 96 | 97 | #: wp-db-backup.php:361 98 | #: wp-db-backup.php:847 99 | #, php-format 100 | msgid "Hostname: %s" 101 | msgstr "Hostname: %s" 102 | 103 | #: wp-db-backup.php:362 104 | #: wp-db-backup.php:848 105 | #, php-format 106 | msgid "Database: %s" 107 | msgstr "بانک اطلاعاتی: %s" 108 | 109 | #: wp-db-backup.php:370 110 | #: wp-db-backup.php:861 111 | #, php-format 112 | msgid "Table: %s" 113 | msgstr "%s جدول ها:" 114 | 115 | #: wp-db-backup.php:377 116 | msgid "The backup directory is not writeable! Please check the permissions for writing to your backup directory and try again." 117 | msgstr "پوشه پشتیان گیری قابل نوشتن نیست.لطفا مجوز لازم را به آن پوشه داده و دویاره امتحان کنید" 118 | 119 | #: wp-db-backup.php:434 120 | msgid "Click and hold down [SHIFT] to toggle multiple checkboxes" 121 | msgstr " " 122 | 123 | #: wp-db-backup.php:474 124 | msgid "Change" 125 | msgstr "تغییر" 126 | 127 | #: wp-db-backup.php:483 128 | msgid "Save" 129 | msgstr "ذخیره" 130 | 131 | #: wp-db-backup.php:566 132 | #: wp-db-backup.php:571 133 | #: wp-db-backup.php:1126 134 | msgid "Backup" 135 | msgstr "پشتیبان گیری" 136 | 137 | #: wp-db-backup.php:646 138 | #: wp-db-backup.php:649 139 | msgid "There was an error writing a line to the backup script:" 140 | msgstr "خطایی که در نوشتن یک خط در فایل پشتیبان رخ داده است:" 141 | 142 | #: wp-db-backup.php:681 143 | msgid "Subsequent errors have been omitted from this log." 144 | msgstr "خطاهای بعدی درون این این گزارش از قلم خواهند افتاد" 145 | 146 | #: wp-db-backup.php:715 147 | msgid "Error getting table details" 148 | msgstr "بروز خطا در دریافت مشخصات جدول" 149 | 150 | #: wp-db-backup.php:723 151 | #, php-format 152 | msgid "Delete any existing table %s" 153 | msgstr "حذف تمامی جدول های موجود %s" 154 | 155 | #: wp-db-backup.php:732 156 | #, php-format 157 | msgid "Table structure of table %s" 158 | msgstr "ساختار جدول %s" 159 | 160 | #: wp-db-backup.php:738 161 | #, php-format 162 | msgid "Error with SHOW CREATE TABLE for %s." 163 | msgstr "خطا به وسیله نمایش ساختن جدول %s" 164 | 165 | #: wp-db-backup.php:745 166 | #, php-format 167 | msgid "Error getting table structure of %s" 168 | msgstr "خطا در دریافت ساختار جدول %s" 169 | 170 | #: wp-db-backup.php:753 171 | #, php-format 172 | msgid "Data contents of table %s" 173 | msgstr "محتویات جدول %s" 174 | 175 | #: wp-db-backup.php:823 176 | #, php-format 177 | msgid "End of data contents of table %s" 178 | msgstr "پایان محتویات جدول %s" 179 | 180 | #: wp-db-backup.php:839 181 | msgid "The backup directory is not writeable!" 182 | msgstr "پوشه پشتیبان گیری قابل نوشتن نیست" 183 | 184 | #: wp-db-backup.php:974 185 | #, php-format 186 | msgid "File not found:%s" 187 | msgstr "فایل وجود ندارد:" 188 | 189 | #: wp-db-backup.php:974 190 | msgid "Return to Backup" 191 | msgstr "بازگشت به پشتیبان گیری" 192 | 193 | #: wp-db-backup.php:983 194 | #, php-format 195 | msgid "File %s does not exist!" 196 | msgstr "%s این فایل وجود ندارد:" 197 | 198 | #: wp-db-backup.php:990 199 | #, php-format 200 | msgid "" 201 | "Attached to this email is\n" 202 | " %1s\n" 203 | " Size:%2s kilobytes\n" 204 | msgstr "" 205 | "فایل چسبیده به پست الکترونیک\n" 206 | " %1s\n" 207 | " سایز:%2s kilobytes\n" 208 | 209 | #: wp-db-backup.php:991 210 | msgid "Database Backup" 211 | msgstr "پشتیان گیری بانک اطلاعاتی" 212 | 213 | #: wp-db-backup.php:994 214 | #: wp-db-backup.php:1041 215 | msgid "The following errors were reported:" 216 | msgstr "خطاهای رخ داده:" 217 | 218 | #: wp-db-backup.php:999 219 | msgid "ERROR: The mail application has failed to deliver the backup." 220 | msgstr "خطا: برنامه پست الکترونیک قادر به دریافت پشتیبان نیست" 221 | 222 | #: wp-db-backup.php:1016 223 | msgid "Backup Successful" 224 | msgstr "پشتیبان گیری با موفقیت انجام شد" 225 | 226 | #: wp-db-backup.php:1020 227 | #, php-format 228 | msgid "Your backup file: %2s should begin downloading shortly." 229 | msgstr "فایل پشتیبان شما %2s باید زودتر دریافت شود." 230 | 231 | #: wp-db-backup.php:1028 232 | #, php-format 233 | msgid "Your backup has been emailed to %s" 234 | msgstr "این فایل پشتیبان به ایمیل ارسال شد: %s" 235 | 236 | #: wp-db-backup.php:1031 237 | msgid "Your backup file has been saved on the server. If you would like to download it now, right click and select \"Save As\"" 238 | msgstr "فایل پشتیبان بر روی فضای سایت ذخیره شد.برای دریافت آن کلیک راست کرده و Save As را انتخاب کنید" 239 | 240 | #: wp-db-backup.php:1032 241 | #, php-format 242 | msgid "%s bytes" 243 | msgstr "%s bytes" 244 | 245 | #: wp-db-backup.php:1068 246 | msgid "Scheduled Backup Options Saved!" 247 | msgstr "تنظیمات زمان بندی پشتیبان گیری ذخیره شد" 248 | 249 | #: wp-db-backup.php:1095 250 | msgid "WARNING: Your backup directory does NOT exist, and we cannot create it." 251 | msgstr "پوشه پشتیبان گیری وجود ندارد و ما نمیتوانیم که آن را بسازیم" 252 | 253 | #: wp-db-backup.php:1096 254 | #, php-format 255 | msgid "Using your FTP client, try to create the backup directory yourself: %s" 256 | msgstr "از طریق پروتکل FTP سعی کنید پوشه پشتیبان گیری را بسازید" 257 | 258 | #: wp-db-backup.php:1100 259 | #: wp-db-backup.php:1111 260 | msgid "WARNING: Your backup directory is NOT writable! We cannot create the backup files." 261 | msgstr "پوشه پشتیبان گیری قابل نوشتن نیست و ما نمیتوانیم فایل پشتیبان را بسازیم" 262 | 263 | #: wp-db-backup.php:1101 264 | #, php-format 265 | msgid "Using your FTP client, try to set the backup directory’s write permission to %1$s or %2$s: %3$s" 266 | msgstr "از طريق پروتکل FTP به پوشه پشتيبان دسترسي مجاز بدهيد" 267 | 268 | #: wp-db-backup.php:1113 269 | msgid "This problem seems to be caused by your server’s safe_mode file ownership restrictions, which limit what files web applications like WordPress can create." 270 | msgstr "" 271 | 272 | #: wp-db-backup.php:1115 273 | #, php-format 274 | msgid "You can try to correct this problem by using your FTP client to delete and then re-create the backup directory: %s" 275 | msgstr "برای حل این مشکل از پروتکل FTP استفاده کرده و پوشه پشتیبان را حذف کرده و مجددا بسازید: %s" 276 | 277 | #: wp-db-backup.php:1129 278 | msgid "Tables" 279 | msgstr "جدول ها" 280 | 281 | #: wp-db-backup.php:1131 282 | msgid "These core WordPress tables will always be backed up:" 283 | msgstr "جدولهای اصلی و هسته وردپرس که همیشه پشتیبان گیری میشوند:" 284 | 285 | #: wp-db-backup.php:1136 286 | msgid "Exclude spam comments" 287 | msgstr "به غیر از نظرات جفنگ" 288 | 289 | #: wp-db-backup.php:1139 290 | msgid "Exclude post revisions" 291 | msgstr "به جز تجدید نظر پست ها" 292 | 293 | #: wp-db-backup.php:1150 294 | msgid "You may choose to include any of the following tables:" 295 | msgstr "شما میتوانید جدولهای دیگر را انتخاب کنید:" 296 | 297 | #: wp-db-backup.php:1164 298 | msgid "Backup Options" 299 | msgstr "تنظیمات پشتیبان گیری" 300 | 301 | #: wp-db-backup.php:1165 302 | msgid "What to do with the backup file:" 303 | msgstr "نوع پشتیبان گیری را انتخاب کنید:" 304 | 305 | #: wp-db-backup.php:1169 306 | msgid "Save to server" 307 | msgstr "ذخیره روی فضای سایت" 308 | 309 | #: wp-db-backup.php:1174 310 | msgid "Download to your computer" 311 | msgstr "ذخیره درون رایانه" 312 | 313 | #: wp-db-backup.php:1178 314 | #: wp-db-backup.php:1235 315 | msgid "Email backup to:" 316 | msgstr "ارسال به ایمیل" 317 | 318 | #: wp-db-backup.php:1185 319 | msgid "Backup now!" 320 | msgstr "پشتیبان بگیر!" 321 | 322 | #: wp-db-backup.php:1188 323 | msgid "WARNING: Your backup directory is NOT writable!" 324 | msgstr "هشدار: پوشه پشتیبان گیری شما قابل نوشتن نیست" 325 | 326 | #: wp-db-backup.php:1199 327 | msgid "Scheduled Backup" 328 | msgstr "زمان بندی پشتیبان گیری" 329 | 330 | #: wp-db-backup.php:1206 331 | #, php-format 332 | msgid "Next Backup: %s" 333 | msgstr "پشتیان گیری بعدی: %s" 334 | 335 | #: wp-db-backup.php:1211 336 | #, php-format 337 | msgid "Last WP-Cron Daily Execution: %s" 338 | msgstr "" 339 | 340 | #: wp-db-backup.php:1212 341 | #, php-format 342 | msgid "Next WP-Cron Daily Execution: %s" 343 | msgstr "" 344 | 345 | #: wp-db-backup.php:1217 346 | msgid "Schedule: " 347 | msgstr "زمان بندی" 348 | 349 | #: wp-db-backup.php:1220 350 | msgid "None" 351 | msgstr "هیچ" 352 | 353 | #: wp-db-backup.php:1220 354 | msgid "Daily" 355 | msgstr "روزانه" 356 | 357 | #: wp-db-backup.php:1243 358 | msgid "Tables to include in the scheduled backup:" 359 | msgstr "جدول هایی که در زمان بندی پشتیبان گیری میشوند:" 360 | 361 | #: wp-db-backup.php:1253 362 | msgid "Schedule backup" 363 | msgstr "زمان بندی پشتیبان گیری" 364 | 365 | #: wp-db-backup.php:1278 366 | msgid "Never" 367 | msgstr "هرگز" 368 | 369 | #: wp-db-backup.php:1283 370 | #, php-format 371 | msgid "%s seconds" 372 | msgstr "%s ثانیه" 373 | 374 | #: wp-db-backup.php:1316 375 | msgid "Once Weekly" 376 | msgstr "هفته ای یکبار" 377 | 378 | #: wp-db-backup.php:1329 379 | #, php-format 380 | msgid "Your WordPress version, %1s, lacks important security features without which it is unsafe to use the WP-DB-Backup plugin. Hence, this plugin is automatically disabled. Please consider upgrading WordPress to a more recent version." 381 | msgstr "نسخه وردپرس خود را بروز کنید.این افزونه به دلیل مسایل امنیتی با این نسخه از وردپرس سازگاری ندارد" 382 | 383 | #: wp-db-backup.php:1347 384 | msgid "You are not allowed to perform backups." 385 | msgstr "شما اجازه تولید پشتیبان را ندارید" 386 | 387 | #: wp-db-backup.php:1362 388 | #, php-format 389 | msgid "There appears to be an unauthorized attempt from this site to access your database located at %1s. The attempt has been halted." 390 | msgstr "این ظاهر شدن از کوشش غیر مجاز این سایت برای دستیابی به بانک اطلاعاتی واقع شده در %1s هست.این کوشش دچار ایست شد." 391 | 392 | #: wp-db-backup.php:1373 393 | msgid "Cheatin' uh ?" 394 | msgstr "تقلب میکنی؟" 395 | 396 | -------------------------------------------------------------------------------- /languages/wp-db-backup-fr_FR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deliciousbrains/wp-db-backup/f7f1ed99607d5ddeb1ccb14fb00659ce28073c4d/languages/wp-db-backup-fr_FR.mo -------------------------------------------------------------------------------- /languages/wp-db-backup-fr_FR.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: WordPress Database Backup v2.2.1\n" 4 | "PO-Revision-Date: 2008-09-11 13:28+0200\n" 5 | "Last-Translator: gilles \n" 6 | "MIME-Version: 1.0\n" 7 | "Content-Type: text/plain; charset=UTF-8\n" 8 | "Content-Transfer-Encoding: 8bit\n" 9 | "Plural-Forms: nplurals=2; plural=n>1;\n" 10 | "X-Poedit-Language: French\n" 11 | "X-Poedit-Country: FRANCE\n" 12 | "X-Poedit-SourceCharset: utf-8\n" 13 | "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;__ngettext_noop:1,2;_c\n" 14 | "X-Poedit-Basepath: \n" 15 | "X-Poedit-SearchPath-0: ." 16 | 17 | #: wp-db-backup.php:182 18 | msgid "Backup Complete!" 19 | msgstr "Sauvegarde effectuée !" 20 | 21 | #: wp-db-backup.php:211 22 | msgid "Progress" 23 | msgstr "Progression" 24 | 25 | #: wp-db-backup.php:213 26 | msgid "DO NOT DO THE FOLLOWING AS IT WILL CAUSE YOUR BACKUP TO FAIL:" 27 | msgstr "NE FAITES PAS CECI CAR VOTRE SAUVEGARDE ÉCHOUERA :" 28 | 29 | #: wp-db-backup.php:216 30 | msgid "Close this browser" 31 | msgstr "Fermer ce navigateur" 32 | 33 | #: wp-db-backup.php:217 34 | msgid "Reload this page" 35 | msgstr "Recharger cette page" 36 | 37 | #: wp-db-backup.php:218 38 | msgid "Click the Stop or Back buttons in your browser" 39 | msgstr "Cliquez sur les boutons Retour ou Stop de votre navigateur" 40 | 41 | #: wp-db-backup.php:220 42 | msgid "Progress:" 43 | msgstr "Progression :" 44 | 45 | #: wp-db-backup.php:229 46 | msgid "Navigating away from this page will cause your backup to fail." 47 | msgstr "Naviguer hors de cette page fera échouer votre sauvegarde." 48 | 49 | #: wp-db-backup.php:266 50 | #, php-format 51 | msgid "Backup complete, preparing backup for download..." 52 | msgstr "Sauvegarde effectuée, préparation de la sauvegarde pour le téléchargement..." 53 | 54 | #: wp-db-backup.php:273 55 | #, php-format 56 | msgid "Backup complete, sending backup via email..." 57 | msgstr "Sauvegarde effectuée, envoi de la sauvegarde par e-mail..." 58 | 59 | #: wp-db-backup.php:280 60 | #, php-format 61 | msgid "Backup complete, download here." 62 | msgstr "Sauvegarde effectuée, téléchargez-la ici." 63 | 64 | #: wp-db-backup.php:340 65 | msgid "Creating backup file..." 66 | msgstr "Création du fichier de sauvegarde..." 67 | 68 | #: wp-db-backup.php:343 69 | #, php-format 70 | msgid "Finished backing up table \\"%s\\"." 71 | msgstr "Sauvegarde des tables \\"%s\\" terminée." 72 | 73 | #: wp-db-backup.php:345 74 | #, php-format 75 | msgid "Backing up table \\"%s\\"..." 76 | msgstr "Sauvegarde des tables \\"%s\\"..." 77 | 78 | #: wp-db-backup.php:352 79 | #: wp-db-backup.php:839 80 | msgid "Could not open the backup file for writing!" 81 | msgstr "Impossible d'ouvrir le fichier de sauvegarde pour y écrire !" 82 | 83 | #: wp-db-backup.php:353 84 | msgid "The backup file could not be saved. Please check the permissions for writing to your backup directory and try again." 85 | msgstr "Le fichier de sauvegarde n'a pas pu être enregistré. S’il vous plaît, vérifiez les permissions d'écriture de votre répertoire de sauvegarde et essayez à nouveau." 86 | 87 | #: wp-db-backup.php:358 88 | #: wp-db-backup.php:848 89 | msgid "WordPress MySQL database backup" 90 | msgstr "Sauvegarde de la base de données MySLQ de WordPress" 91 | 92 | #: wp-db-backup.php:360 93 | #: wp-db-backup.php:850 94 | #, php-format 95 | msgid "Generated: %s" 96 | msgstr "Généré le : %s" 97 | 98 | #: wp-db-backup.php:361 99 | #: wp-db-backup.php:851 100 | #, php-format 101 | msgid "Hostname: %s" 102 | msgstr "Nom d'hôte : %s" 103 | 104 | #: wp-db-backup.php:362 105 | #: wp-db-backup.php:852 106 | #, php-format 107 | msgid "Database: %s" 108 | msgstr "Base de données : %s" 109 | 110 | #: wp-db-backup.php:370 111 | #: wp-db-backup.php:865 112 | #, php-format 113 | msgid "Table: %s" 114 | msgstr "Tables : %s" 115 | 116 | #: wp-db-backup.php:377 117 | msgid "The backup directory is not writeable! Please check the permissions for writing to your backup directory and try again." 118 | msgstr "Le répertoire de sauvegarde n'est pas accessible en écriture ! S’il vous plaît, vérifiez les permissions d'écriture dans votre répertoire de sauvegarde et essayez à nouveau." 119 | 120 | #: wp-db-backup.php:434 121 | msgid "Click and hold down [SHIFT] to toggle multiple checkboxes" 122 | msgstr "Cliquez et maintenez enfoncé [SHIFT] pour sélectionner plusieurs cases à cocher" 123 | 124 | #: wp-db-backup.php:474 125 | msgid "Change" 126 | msgstr "Changer" 127 | 128 | #: wp-db-backup.php:483 129 | msgid "Save" 130 | msgstr "Enregistrer" 131 | 132 | #: wp-db-backup.php:570 133 | #: wp-db-backup.php:570 134 | #: wp-db-backup.php:575 135 | #: wp-db-backup.php:575 136 | #: wp-db-backup.php:1129 137 | msgid "Backup" 138 | msgstr "Sauvegarder" 139 | 140 | #: wp-db-backup.php:650 141 | #: wp-db-backup.php:653 142 | msgid "There was an error writing a line to the backup script:" 143 | msgstr "Il y a eu une erreur lors de l'écriture d'une ligne dans le script de sauvegarde :" 144 | 145 | #: wp-db-backup.php:685 146 | msgid "Subsequent errors have been omitted from this log." 147 | msgstr "Les erreurs suivantes ont été omises dans le journal." 148 | 149 | #: wp-db-backup.php:719 150 | msgid "Error getting table details" 151 | msgstr "Erreur lors de l'obtention des détails des tables" 152 | 153 | #: wp-db-backup.php:727 154 | #, php-format 155 | msgid "Delete any existing table %s" 156 | msgstr "Supprimer toute table existante %s" 157 | 158 | #: wp-db-backup.php:736 159 | #, php-format 160 | msgid "Table structure of table %s" 161 | msgstr "Tableau de structure de la table %s" 162 | 163 | #: wp-db-backup.php:742 164 | #, php-format 165 | msgid "Error with SHOW CREATE TABLE for %s." 166 | msgstr "Erreur avec SHOW CREATE TABLE pour %s." 167 | 168 | #: wp-db-backup.php:749 169 | #, php-format 170 | msgid "Error getting table structure of %s" 171 | msgstr "Erreur de récupération de la structure de table de %s" 172 | 173 | #: wp-db-backup.php:757 174 | #, php-format 175 | msgid "Data contents of table %s" 176 | msgstr "Contenu de la table %s" 177 | 178 | #: wp-db-backup.php:827 179 | #, php-format 180 | msgid "End of data contents of table %s" 181 | msgstr "Fin du contenu de la table %s" 182 | 183 | #: wp-db-backup.php:843 184 | msgid "The backup directory is not writeable!" 185 | msgstr "Le répertoire de sauvegarde n'est pas accessible en écriture !" 186 | 187 | #: wp-db-backup.php:977 188 | #, php-format 189 | msgid "File not found:%s" 190 | msgstr "Fichier introuvable :%s" 191 | 192 | #: wp-db-backup.php:977 193 | msgid "Return to Backup" 194 | msgstr "Retourner à la sauvegarde" 195 | 196 | #: wp-db-backup.php:986 197 | #, php-format 198 | msgid "File %s does not exist!" 199 | msgstr "Le fichier %s n'existe pas !" 200 | 201 | #: wp-db-backup.php:993 202 | #, php-format 203 | msgid "" 204 | "Attached to this email is\n" 205 | " %1s\n" 206 | " Size:%2s kilobytes\n" 207 | msgstr "" 208 | "Pièce-jointe de l'e-mail \n" 209 | " %1s\n" 210 | " Taille : %2s kilobytes\n" 211 | 212 | #: wp-db-backup.php:994 213 | msgid "Database Backup" 214 | msgstr "Sauvegarde de la base de données" 215 | 216 | #: wp-db-backup.php:997 217 | #: wp-db-backup.php:1044 218 | msgid "The following errors were reported:" 219 | msgstr "Les erreurs suivantes ont été signalées :" 220 | 221 | #: wp-db-backup.php:1002 222 | msgid "ERROR: The mail application has failed to deliver the backup." 223 | msgstr "ERREUR : L'application e-mail n'a pas pu acheminer la sauvegarde." 224 | 225 | #: wp-db-backup.php:1019 226 | msgid "Backup Successful" 227 | msgstr "Sauvegarde réussie" 228 | 229 | #: wp-db-backup.php:1023 230 | #, php-format 231 | msgid "Your backup file: %2s should begin downloading shortly." 232 | msgstr "Le téléchargement de votre fichier de sauvegarde %2s devrait commencer dans peu de temps." 233 | 234 | #: wp-db-backup.php:1031 235 | #, php-format 236 | msgid "Your backup has been emailed to %s" 237 | msgstr "Votre sauvegarde a été envoyée par e-mail à % s" 238 | 239 | #: wp-db-backup.php:1034 240 | msgid "Your backup file has been saved on the server. If you would like to download it now, right click and select \"Save As\"" 241 | msgstr "Votre fichier de sauvegarde a été enregistré sur le serveur. Si vous souhaitez le télécharger maintenant, cliquez avec le bouton droit et sélectionnez \"Enregistrer la cible sous\"" 242 | 243 | #: wp-db-backup.php:1035 244 | #, php-format 245 | msgid "%s bytes" 246 | msgstr "%s bytes" 247 | 248 | #: wp-db-backup.php:1071 249 | msgid "Scheduled Backup Options Saved!" 250 | msgstr "Options de la sauvegarde programmée enregistrées !" 251 | 252 | #: wp-db-backup.php:1098 253 | msgid "WARNING: Your backup directory does NOT exist, and we cannot create it." 254 | msgstr "ATTENTION : Votre répertoire de sauvegarde N'EXISTE PAS et nous ne pouvons pas le créer." 255 | 256 | #: wp-db-backup.php:1099 257 | #, php-format 258 | msgid "Using your FTP client, try to create the backup directory yourself: %s" 259 | msgstr "A l'aide de votre client FTP, essayez de créer le répertoire de sauvegarde vous-même : %s" 260 | 261 | #: wp-db-backup.php:1103 262 | #: wp-db-backup.php:1114 263 | msgid "WARNING: Your backup directory is NOT writable! We cannot create the backup files." 264 | msgstr "ATTENTION : Votre répertoire de sauvegarde N'EST PAS accessible en écriture ! Nous ne pouvons pas créer les fichiers de sauvegarde." 265 | 266 | #: wp-db-backup.php:1104 267 | #, php-format 268 | msgid "Using your FTP client, try to set the backup directory’s write permission to %1$s or %2$s: %3$s" 269 | msgstr "En utilisant votre client FTP, essayez de changer les permissions d'écriture du répertoire de sauvegarde en %1$s ou %2$s : %3$s" 270 | 271 | #: wp-db-backup.php:1116 272 | msgid "This problem seems to be caused by your server’s safe_mode file ownership restrictions, which limit what files web applications like WordPress can create." 273 | msgstr "Ce problème semble être causé par le mode safe_mode de votre serveur, ce qui limite les créations de fichiers à partir d'applications web comme WordPress." 274 | 275 | #: wp-db-backup.php:1118 276 | #, php-format 277 | msgid "You can try to correct this problem by using your FTP client to delete and then re-create the backup directory: %s" 278 | msgstr "Vous pouvez essayer de corriger ce problème en utilisant votre client FTP pour supprimer puis re-créer le répertoire de sauvegarde :%s" 279 | 280 | #: wp-db-backup.php:1132 281 | msgid "Tables" 282 | msgstr "Tables" 283 | 284 | #: wp-db-backup.php:1134 285 | msgid "These core WordPress tables will always be backed up:" 286 | msgstr "Ces tables de base WordPress seront toujours sauvegardées :" 287 | 288 | #: wp-db-backup.php:1139 289 | msgid "Exclude spam comments" 290 | msgstr "Exclure les commentaires de spam" 291 | 292 | #: wp-db-backup.php:1142 293 | msgid "Exclude post revisions" 294 | msgstr "Exclure les anciennes versions des billets" 295 | 296 | #: wp-db-backup.php:1153 297 | msgid "You may choose to include any of the following tables:" 298 | msgstr "Vous pouvez choisir d'inclure certaines tables suivantes :" 299 | 300 | #: wp-db-backup.php:1167 301 | msgid "Backup Options" 302 | msgstr "Options de sauvegarde" 303 | 304 | #: wp-db-backup.php:1168 305 | msgid "What to do with the backup file:" 306 | msgstr "Que faire avec le fichier de sauvegarde :" 307 | 308 | #: wp-db-backup.php:1172 309 | msgid "Save to server" 310 | msgstr "Sauvegarder sur le serveur" 311 | 312 | #: wp-db-backup.php:1177 313 | msgid "Download to your computer" 314 | msgstr "Télécharger sur votre ordinateur" 315 | 316 | #: wp-db-backup.php:1181 317 | #: wp-db-backup.php:1239 318 | msgid "Email backup to:" 319 | msgstr "Envoyer la sauvegarde par e-mail à :" 320 | 321 | #: wp-db-backup.php:1188 322 | msgid "Backup now!" 323 | msgstr "Sauvegarder maintenant !" 324 | 325 | #: wp-db-backup.php:1191 326 | msgid "WARNING: Your backup directory is NOT writable!" 327 | msgstr "ATTENTION : Votre répertoire de sauvegarde N'EST PAS accessible en écriture !" 328 | 329 | #: wp-db-backup.php:1202 330 | msgid "Scheduled Backup" 331 | msgstr "Sauvegarde programmée" 332 | 333 | #: wp-db-backup.php:1209 334 | #, php-format 335 | msgid "Next Backup: %s" 336 | msgstr "Prochaine sauvegarde : %s" 337 | 338 | #: wp-db-backup.php:1214 339 | #, php-format 340 | msgid "Last WP-Cron Daily Execution: %s" 341 | msgstr "Dernière exécution journalière de WP-Cron : %s" 342 | 343 | #: wp-db-backup.php:1215 344 | #, php-format 345 | msgid "Next WP-Cron Daily Execution: %s" 346 | msgstr "Prochaine exécution journalière de WP-Cron : %s" 347 | 348 | #: wp-db-backup.php:1220 349 | msgid "Schedule: " 350 | msgstr "Fréquence :" 351 | 352 | #: wp-db-backup.php:1224 353 | msgid "None" 354 | msgstr "Aucun" 355 | 356 | #: wp-db-backup.php:1224 357 | msgid "Daily" 358 | msgstr "Tous les jours" 359 | 360 | #: wp-db-backup.php:1241 361 | msgid "Schedule backup" 362 | msgstr "Sauvegarde programmée" 363 | 364 | #: wp-db-backup.php:1249 365 | msgid "Tables to include in the scheduled backup:" 366 | msgstr "Tables à inclure dans la sauvegarde programmée :" 367 | 368 | #: wp-db-backup.php:1284 369 | msgid "Never" 370 | msgstr "Jamais" 371 | 372 | #: wp-db-backup.php:1289 373 | #, php-format 374 | msgid "%s seconds" 375 | msgstr "%s secondes" 376 | 377 | #: wp-db-backup.php:1322 378 | msgid "Once Weekly" 379 | msgstr "Une fois par semaine" 380 | 381 | #: wp-db-backup.php:1335 382 | #, php-format 383 | msgid "Your WordPress version, %1s, lacks important security features without which it is unsafe to use the WP-DB-Backup plugin. Hence, this plugin is automatically disabled. Please consider upgrading WordPress to a more recent version." 384 | msgstr "Votre version de WordPress, 1s%, ne comporte pas certains dispositifs de sécurité importants sans lesquels il est dangereux d'utiliser l'extension WP-DB-Backup. Par conséquent, ce plugin est automatiquement désactivée. S'il vous plaît, examiner, mettez à jour WordPress avec une version plus récente." 385 | 386 | #: wp-db-backup.php:1353 387 | msgid "You are not allowed to perform backups." 388 | msgstr "Vous n'êtes pas autorisé à effectuer des sauvegardes." 389 | 390 | #: wp-db-backup.php:1368 391 | #, php-format 392 | msgid "There appears to be an unauthorized attempt from this site to access your database located at %1s. The attempt has been halted." 393 | msgstr "Il semble y avoir une tentative non autorisée de ce site pour accéder à votre base de données située à 1s%. La tentative a été stoppée." 394 | 395 | #: wp-db-backup.php:1379 396 | msgid "Cheatin' uh ?" 397 | msgstr "P\'tit malin !" 398 | 399 | -------------------------------------------------------------------------------- /languages/wp-db-backup-it_IT.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deliciousbrains/wp-db-backup/f7f1ed99607d5ddeb1ccb14fb00659ce28073c4d/languages/wp-db-backup-it_IT.mo -------------------------------------------------------------------------------- /languages/wp-db-backup-it_IT.po: -------------------------------------------------------------------------------- 1 | # WP-DB-Backup 2 | # Copyright (C) 2008 Austin Matzko 3 | # This file is distributed under the GPL 2 license. 4 | # 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: wp-db-backup\n" 8 | "Report-Msgid-Bugs-To: \n" 9 | "POT-Creation-Date: 2010-12-21 15:38-0600\n" 10 | "PO-Revision-Date: 2010-12-30 19:14+0100\n" 11 | "Last-Translator: Diego Pierotto \n" 12 | "Language-Team: \n" 13 | "MIME-Version: 1.0\n" 14 | "Content-Type: text/plain; charset=UTF-8\n" 15 | "Content-Transfer-Encoding: 8bit\n" 16 | "Plural-Forms: nplurals=2; plural=(n != 1)\n" 17 | "X-Poedit-Language: Italian\n" 18 | "X-Poedit-Country: ITALY\n" 19 | "X-Poedit-SourceCharset: utf-8\n" 20 | 21 | #: wp-db-backup.php:177 22 | #: wp-db-backup.php:285 23 | #: wp-db-backup.php:302 24 | msgid "Backup Complete!" 25 | msgstr "Backup Completato!" 26 | 27 | #: wp-db-backup.php:220 28 | msgid "http://codex.wordpress.org/WordPress_Backups" 29 | msgstr "http://codex.wordpress.org/WordPress_Backups" 30 | 31 | #: wp-db-backup.php:221 32 | #, php-format 33 | msgid "Click here to back up your database using the WordPress Database Backup plugin. Note: WordPress Database Backup does not back up your files, just your database." 34 | msgstr "Fai click qui per creare un backup del database usando il plugin di WordPress chiamato Database Backup. Nota: WordPress Database Backup NON fa il backup dei files ma solo del database." 35 | 36 | #: wp-db-backup.php:230 37 | msgid "Progress" 38 | msgstr "Progresso" 39 | 40 | #: wp-db-backup.php:232 41 | msgid "DO NOT DO THE FOLLOWING AS IT WILL CAUSE YOUR BACKUP TO FAIL:" 42 | msgstr "NON FARE LE SEGUENTI COSE PER EVITARE CHE IL BACKUP FALLISCA:" 43 | 44 | #: wp-db-backup.php:235 45 | msgid "Close this browser" 46 | msgstr "Chiudere il browser" 47 | 48 | #: wp-db-backup.php:236 49 | msgid "Reload this page" 50 | msgstr "Aggiornare la pagina" 51 | 52 | #: wp-db-backup.php:237 53 | msgid "Click the Stop or Back buttons in your browser" 54 | msgstr "Premere i pulsanti Termina o Indietro nel browser" 55 | 56 | #: wp-db-backup.php:239 57 | msgid "Progress:" 58 | msgstr "Stato:" 59 | 60 | #: wp-db-backup.php:248 61 | msgid "Navigating away from this page will cause your backup to fail." 62 | msgstr "Abbandonare questa pagina farà fallire la procedura di backup." 63 | 64 | #: wp-db-backup.php:295 65 | #: wp-db-backup.php:1098 66 | #, php-format 67 | msgid "Your backup has been emailed to %s" 68 | msgstr "Il backup è stato inviato per email a %s" 69 | 70 | #: wp-db-backup.php:362 71 | msgid "Creating backup file..." 72 | msgstr "Creazione del file di backup..." 73 | 74 | #: wp-db-backup.php:365 75 | #, php-format 76 | msgid "Finished backing up table \\\"%s\\\"." 77 | msgstr "Backup della tabella \\\"%s\\\" completato." 78 | 79 | #: wp-db-backup.php:367 80 | #, php-format 81 | msgid "Backing up table \\\"%s\\\"..." 82 | msgstr "Backup della tabella \\\"%s\\\"..." 83 | 84 | #: wp-db-backup.php:374 85 | #: wp-db-backup.php:881 86 | msgid "Could not open the backup file for writing!" 87 | msgstr "Impossibile aprire il file di backup in scrittura!" 88 | 89 | #: wp-db-backup.php:375 90 | msgid "The backup file could not be saved. Please check the permissions for writing to your backup directory and try again." 91 | msgstr "Il file di backup non può essere salvato. Per favore controlla i permessi in scrittura nella cartella di backup e riprova." 92 | 93 | #: wp-db-backup.php:380 94 | #: wp-db-backup.php:890 95 | msgid "WordPress MySQL database backup" 96 | msgstr "WordPress MySQL database backup" 97 | 98 | #: wp-db-backup.php:382 99 | #: wp-db-backup.php:892 100 | #, php-format 101 | msgid "Generated: %s" 102 | msgstr "Creato: %s" 103 | 104 | #: wp-db-backup.php:383 105 | #: wp-db-backup.php:893 106 | #, php-format 107 | msgid "Hostname: %s" 108 | msgstr "Hostname: %s" 109 | 110 | #: wp-db-backup.php:384 111 | #: wp-db-backup.php:894 112 | #, php-format 113 | msgid "Database: %s" 114 | msgstr "Database: %s" 115 | 116 | #: wp-db-backup.php:392 117 | #: wp-db-backup.php:907 118 | #, php-format 119 | msgid "Table: %s" 120 | msgstr "Tabella: %s" 121 | 122 | #: wp-db-backup.php:399 123 | msgid "The backup directory is not writeable! Please check the permissions for writing to your backup directory and try again." 124 | msgstr "La cartella di backup non è scrivibile! Per favore controlla i permessi in scrittura nella cartella di backup e riprova." 125 | 126 | #: wp-db-backup.php:458 127 | msgid "Click and hold down [SHIFT] to toggle multiple checkboxes" 128 | msgstr "Premi e tieni premuto [MAIUSC] per selezionare caselle multiple" 129 | 130 | #: wp-db-backup.php:502 131 | msgid "Change" 132 | msgstr "Modifica" 133 | 134 | #: wp-db-backup.php:511 135 | msgid "Save" 136 | msgstr "Salva" 137 | 138 | #: wp-db-backup.php:605 139 | #: wp-db-backup.php:614 140 | #: wp-db-backup.php:1196 141 | msgid "Backup" 142 | msgstr "Backup" 143 | 144 | #: wp-db-backup.php:623 145 | msgid "FAQ" 146 | msgstr "FAQ" 147 | 148 | #: wp-db-backup.php:624 149 | msgid "WP-DB-Backup Support Forum" 150 | msgstr "Forum supporto WP-DB-Backup" 151 | 152 | #: wp-db-backup.php:694 153 | msgid "There was an error writing a line to the backup script:" 154 | msgstr "Errore durante la scrittura dello script di backup:" 155 | 156 | #: wp-db-backup.php:727 157 | msgid "Subsequent errors have been omitted from this log." 158 | msgstr "Errori successivi sono stati omessi da questo rapporto." 159 | 160 | #: wp-db-backup.php:761 161 | msgid "Error getting table details" 162 | msgstr "Errore nell'ottenere i dettagli della tabella" 163 | 164 | #: wp-db-backup.php:769 165 | #, php-format 166 | msgid "Delete any existing table %s" 167 | msgstr "Cancella tutto tabella %s" 168 | 169 | #: wp-db-backup.php:778 170 | #, php-format 171 | msgid "Table structure of table %s" 172 | msgstr "Struttura della tabella %s" 173 | 174 | #: wp-db-backup.php:784 175 | #, php-format 176 | msgid "Error with SHOW CREATE TABLE for %s." 177 | msgstr "Errore con SHOW CREATE TABLE per %s." 178 | 179 | #: wp-db-backup.php:791 180 | #, php-format 181 | msgid "Error getting table structure of %s" 182 | msgstr "Errore nell'ottenere la struttura della tabella %s" 183 | 184 | #: wp-db-backup.php:799 185 | #, php-format 186 | msgid "Data contents of table %s" 187 | msgstr "Contenuto della tabella %s" 188 | 189 | #: wp-db-backup.php:869 190 | #, php-format 191 | msgid "End of data contents of table %s" 192 | msgstr "Fine dei dati contenuti nella tabella %s" 193 | 194 | #: wp-db-backup.php:885 195 | msgid "The backup directory is not writeable!" 196 | msgstr "La cartella di backup non è scrivibile!" 197 | 198 | #: wp-db-backup.php:1044 199 | #, php-format 200 | msgid "File not found:%s" 201 | msgstr "File non trovato: %s" 202 | 203 | #: wp-db-backup.php:1044 204 | msgid "Return to Backup" 205 | msgstr "Ritorna a Backup" 206 | 207 | #: wp-db-backup.php:1053 208 | #, php-format 209 | msgid "File %s does not exist!" 210 | msgstr "Il file %s non esiste!" 211 | 212 | #: wp-db-backup.php:1060 213 | #, php-format 214 | msgid "" 215 | "Attached to this email is\n" 216 | " %1s\n" 217 | " Size:%2s kilobytes\n" 218 | msgstr "" 219 | "Allegati a questa email:\n" 220 | " %1s\n" 221 | " Dimensione:%2s KB\n" 222 | 223 | #: wp-db-backup.php:1061 224 | msgid "Database Backup" 225 | msgstr "Backup del Database" 226 | 227 | #: wp-db-backup.php:1064 228 | #: wp-db-backup.php:1111 229 | msgid "The following errors were reported:" 230 | msgstr "Sono stati riscontrati i seguenti errori:" 231 | 232 | #: wp-db-backup.php:1069 233 | msgid "ERROR: The mail application has failed to deliver the backup." 234 | msgstr "ERRORE: L'invio del backup per email è fallito." 235 | 236 | #: wp-db-backup.php:1086 237 | msgid "Backup Successful" 238 | msgstr "Backup completato con successo" 239 | 240 | #: wp-db-backup.php:1090 241 | #, php-format 242 | msgid "Your backup file: %2s should begin downloading shortly." 243 | msgstr "Il download del file di backup %2s inizierà a breve." 244 | 245 | #: wp-db-backup.php:1101 246 | msgid "Your backup file has been saved on the server. If you would like to download it now, right click and select \"Save As\"" 247 | msgstr "Il file di backup è stato salvato sul server. Se vuoi scaricarlo, clicca col pulsante destro e seleziona \"Salva con nome\"" 248 | 249 | #: wp-db-backup.php:1102 250 | #, php-format 251 | msgid "%s bytes" 252 | msgstr "%s bytes" 253 | 254 | #: wp-db-backup.php:1138 255 | msgid "Scheduled Backup Options Saved!" 256 | msgstr "Le impostazioni del Backup programmato sono state salvate!" 257 | 258 | #: wp-db-backup.php:1165 259 | msgid "WARNING: Your backup directory does NOT exist, and we cannot create it." 260 | msgstr "ATTENZIONE: La cartella di backup NON esiste e non può essere creata." 261 | 262 | #: wp-db-backup.php:1166 263 | #, php-format 264 | msgid "Using your FTP client, try to create the backup directory yourself: %s" 265 | msgstr "Utilizzando un client FTP, prova a creare manualmente la cartella: %s" 266 | 267 | #: wp-db-backup.php:1170 268 | #: wp-db-backup.php:1181 269 | msgid "WARNING: Your backup directory is NOT writable! We cannot create the backup files." 270 | msgstr "ATTENZIONE: La cartella di backup NON è scrivibile! Impossibile creare i file di backup." 271 | 272 | #: wp-db-backup.php:1171 273 | #, php-format 274 | msgid "Using your FTP client, try to set the backup directory’s write permission to %1$s or %2$s: %3$s" 275 | msgstr "Utilizzando un client FTP, imposta i permessi della cartella di backup a %1$s o %2$s: %3$s" 276 | 277 | #: wp-db-backup.php:1183 278 | msgid "This problem seems to be caused by your server’s safe_mode file ownership restrictions, which limit what files web applications like WordPress can create." 279 | msgstr "Il problema sembra essere dovuto alle restrizioni dello safe_mode impostato sul server, che limita la creazione di file da parte di applicazioni come WordPress." 280 | 281 | #: wp-db-backup.php:1185 282 | #, php-format 283 | msgid "You can try to correct this problem by using your FTP client to delete and then re-create the backup directory: %s" 284 | msgstr "Puoi provare a correggere il problema utilizzando un client FTP per cancellare e ricreare la cartella di backup: %s" 285 | 286 | #: wp-db-backup.php:1199 287 | msgid "Tables" 288 | msgstr "Tabelle" 289 | 290 | #: wp-db-backup.php:1201 291 | msgid "These core WordPress tables will always be backed up:" 292 | msgstr "Queste tabelle base di WordPress saranno sempre copiate:" 293 | 294 | #: wp-db-backup.php:1206 295 | msgid "Exclude spam comments" 296 | msgstr "Escludi i commenti di spam" 297 | 298 | #: wp-db-backup.php:1209 299 | msgid "Exclude post revisions" 300 | msgstr "Escludi revisioni" 301 | 302 | #: wp-db-backup.php:1220 303 | msgid "You may choose to include any of the following tables:" 304 | msgstr "Le seguenti tabelle possono essere selezionate:" 305 | 306 | #: wp-db-backup.php:1234 307 | msgid "Backup Options" 308 | msgstr "Opzioni di backup" 309 | 310 | #: wp-db-backup.php:1235 311 | msgid "What to do with the backup file:" 312 | msgstr "Che cosa fare con il file di backup:" 313 | 314 | #: wp-db-backup.php:1239 315 | msgid "Save to server" 316 | msgstr "Salvalo sul server" 317 | 318 | #: wp-db-backup.php:1244 319 | msgid "Download to your computer" 320 | msgstr "Scaricalo sul computer" 321 | 322 | #: wp-db-backup.php:1248 323 | #: wp-db-backup.php:1312 324 | msgid "Email backup to:" 325 | msgstr "Invialo per email a:" 326 | 327 | #: wp-db-backup.php:1261 328 | msgid "Backup now!" 329 | msgstr "Inizia il Backup!" 330 | 331 | #: wp-db-backup.php:1264 332 | msgid "WARNING: Your backup directory is NOT writable!" 333 | msgstr "ATTENZIONE: La cartella di backup NON è scrivibile!" 334 | 335 | #: wp-db-backup.php:1275 336 | msgid "Scheduled Backup" 337 | msgstr "Backup programmato" 338 | 339 | #: wp-db-backup.php:1282 340 | #, php-format 341 | msgid "Next Backup: %s" 342 | msgstr "Prossimo Backup: %s" 343 | 344 | #: wp-db-backup.php:1287 345 | #, php-format 346 | msgid "Last WP-Cron Daily Execution: %s" 347 | msgstr "Ultima esecuzione giornaliera di WP-Cron: %s" 348 | 349 | #: wp-db-backup.php:1288 350 | #, php-format 351 | msgid "Next WP-Cron Daily Execution: %s" 352 | msgstr "Prossima esecuzione giornaliera di WP-Cron: %s" 353 | 354 | #: wp-db-backup.php:1293 355 | msgid "Schedule: " 356 | msgstr "Programmazione:" 357 | 358 | #: wp-db-backup.php:1297 359 | msgid "None" 360 | msgstr "Nessuna" 361 | 362 | #: wp-db-backup.php:1297 363 | msgid "Daily" 364 | msgstr "Giornaliera" 365 | 366 | #: wp-db-backup.php:1314 367 | msgid "Schedule backup" 368 | msgstr "Programma il backup" 369 | 370 | #: wp-db-backup.php:1322 371 | msgid "Tables to include in the scheduled backup:" 372 | msgstr "Tabelle da includere nel backup programmato:" 373 | 374 | #: wp-db-backup.php:1357 375 | msgid "Never" 376 | msgstr "Mai" 377 | 378 | #: wp-db-backup.php:1362 379 | #, php-format 380 | msgid "%s seconds" 381 | msgstr "%s secondi" 382 | 383 | #: wp-db-backup.php:1395 384 | msgid "Once Weekly" 385 | msgstr "Settimanale" 386 | 387 | #: wp-db-backup.php:1408 388 | #, php-format 389 | msgid "Your WordPress version, %1s, lacks important security features without which it is unsafe to use the WP-DB-Backup plugin. Hence, this plugin is automatically disabled. Please consider upgrading WordPress to a more recent version." 390 | msgstr "La versione corrente di WordPress, %1s, non è provvista di importanti funzioni di sicurezza senza le quali non è sicuro eseguire il plugin WP-DB-Backup. Il plugin è stato dunque disabilitato automaticamente. Considera di aggiornare WordPress ad una versione più recente." 391 | 392 | #: wp-db-backup.php:1426 393 | msgid "You are not allowed to perform backups." 394 | msgstr "Non ti è consentito eseguire backup." 395 | 396 | #: wp-db-backup.php:1441 397 | #, php-format 398 | msgid "There appears to be an unauthorized attempt from this site to access your database located at %1s. The attempt has been halted." 399 | msgstr "Sembra che ci sia stato un tentativo non autorizzato da parte di questo sito di accedere al tuo database a %1s. Il tentativo è stato bloccato." 400 | 401 | #: wp-db-backup.php:1452 402 | msgid "Cheatin' uh ?" 403 | msgstr "Stai barando, eh?" 404 | 405 | #~ msgid "" 406 | #~ "Backup complete, preparing backup for download..." 407 | #~ msgstr "" 408 | #~ "Backup completo, preparazione del backup per il " 409 | #~ "download..." 410 | #~ msgid "Backup complete, sending backup via email..." 411 | #~ msgstr "" 412 | #~ "Backup completo, invio del backup per email..." 413 | #~ msgid "Backup complete, download here." 414 | #~ msgstr "Backup completo, scaricalo qui." 415 | 416 | -------------------------------------------------------------------------------- /languages/wp-db-backup-ja.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deliciousbrains/wp-db-backup/f7f1ed99607d5ddeb1ccb14fb00659ce28073c4d/languages/wp-db-backup-ja.mo -------------------------------------------------------------------------------- /languages/wp-db-backup-ja.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: wpdbbp-2.1.7-ja\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2008-08-15 11:00-0500\n" 6 | "PO-Revision-Date: \n" 7 | "Last-Translator: tai \n" 8 | "Language-Team: ja \n" 9 | "MIME-Version: 1.0\n" 10 | "Content-Type: text/plain; charset=UTF-8\n" 11 | "Content-Transfer-Encoding: 8bit\n" 12 | "X-Poedit-Language: Japanese\n" 13 | "X-Poedit-Country: JAPAN\n" 14 | "X-Poedit-SourceCharset: utf-8\n" 15 | 16 | #: wp-db-backup.php:181 17 | msgid "Backup Complete!" 18 | msgstr "バックアップ完了 !" 19 | 20 | #: wp-db-backup.php:211 21 | msgid "Progress" 22 | msgstr "進行" 23 | 24 | #: wp-db-backup.php:213 25 | msgid "DO NOT DO THE FOLLOWING AS IT WILL CAUSE YOUR BACKUP TO FAIL:" 26 | msgstr "バックアップに失敗するので、次の事はしないでください:" 27 | 28 | #: wp-db-backup.php:216 29 | msgid "Close this browser" 30 | msgstr "このブラウザを閉じる" 31 | 32 | #: wp-db-backup.php:217 33 | msgid "Reload this page" 34 | msgstr "このページを再読み込みする" 35 | 36 | #: wp-db-backup.php:218 37 | msgid "Click the Stop or Back buttons in your browser" 38 | msgstr "ブラウザの停止もしくは戻るボタンのクリック" 39 | 40 | #: wp-db-backup.php:220 41 | msgid "Progress:" 42 | msgstr "進行状況:" 43 | 44 | #: wp-db-backup.php:229 45 | msgid "Navigating away from this page will cause your backup to fail." 46 | msgstr "このページを閉じるとバックアップに失敗します。" 47 | 48 | #: wp-db-backup.php:266 49 | #, php-format 50 | msgid "Backup complete, preparing backup for download..." 51 | msgstr "バックアップを完了しました。ダウンロードのためにバックアップを準備中..." 52 | 53 | #: wp-db-backup.php:273 54 | #, php-format 55 | msgid "Backup complete, sending backup via email..." 56 | msgstr "バックアップを完了しました。メールでバックアップを送信中..." 57 | 58 | #: wp-db-backup.php:280 59 | #, php-format 60 | msgid "Backup complete, download here." 61 | msgstr "バックアップを完了しました。こちらからダウンロードしてください。" 62 | 63 | #: wp-db-backup.php:340 64 | msgid "Creating backup file..." 65 | msgstr "バックアップファイルを作成中..." 66 | 67 | #: wp-db-backup.php:343 68 | #, php-format 69 | msgid "Finished backing up table \\\"%s\\\"." 70 | msgstr "テーブル \\\"%s\\\" のバックアップを完了。" 71 | 72 | #: wp-db-backup.php:345 73 | #, php-format 74 | msgid "Backing up table \\\"%s\\\"..." 75 | msgstr "テーブル \\\"%s\\\" をバックアップ中..." 76 | 77 | #: wp-db-backup.php:352 78 | #: wp-db-backup.php:835 79 | msgid "Could not open the backup file for writing!" 80 | msgstr "書き込み用のバックアップファイルを開けませんでした。" 81 | 82 | #: wp-db-backup.php:353 83 | msgid "The backup file could not be saved. Please check the permissions for writing to your backup directory and try again." 84 | msgstr "バックアップファイルを保存できませんでした。バックアップ用ディレクトリのアクセス権が書き込み可能になっているか確認してもう一度試してください。" 85 | 86 | #: wp-db-backup.php:358 87 | #: wp-db-backup.php:844 88 | msgid "WordPress MySQL database backup" 89 | msgstr "WordPress MySQL データベースバックアップ" 90 | 91 | #: wp-db-backup.php:360 92 | #: wp-db-backup.php:846 93 | #, php-format 94 | msgid "Generated: %s" 95 | msgstr "生成日時: %s" 96 | 97 | #: wp-db-backup.php:361 98 | #: wp-db-backup.php:847 99 | #, php-format 100 | msgid "Hostname: %s" 101 | msgstr "ホスト名: %s" 102 | 103 | #: wp-db-backup.php:362 104 | #: wp-db-backup.php:848 105 | #, php-format 106 | msgid "Database: %s" 107 | msgstr "データベース: %s" 108 | 109 | #: wp-db-backup.php:370 110 | #: wp-db-backup.php:861 111 | #, php-format 112 | msgid "Table: %s" 113 | msgstr "テーブル: %s" 114 | 115 | #: wp-db-backup.php:377 116 | msgid "The backup directory is not writeable! Please check the permissions for writing to your backup directory and try again." 117 | msgstr "バックアップ用ディレクトリが書き込み可能になっていません ! バックアップ用ディレクトリのアクセス権が書き込み可能になっているか確認してもう一度試してください。" 118 | 119 | #: wp-db-backup.php:434 120 | msgid "Click and hold down [SHIFT] to toggle multiple checkboxes" 121 | msgstr "複数のチェックボックスの選択状態を切り替えるには [SHIFT] を押しながらクリックしてください" 122 | 123 | #: wp-db-backup.php:474 124 | msgid "Change" 125 | msgstr "変更" 126 | 127 | #: wp-db-backup.php:483 128 | msgid "Save" 129 | msgstr "保存" 130 | 131 | #: wp-db-backup.php:566 132 | #: wp-db-backup.php:571 133 | #: wp-db-backup.php:1126 134 | msgid "Backup" 135 | msgstr "バックアップ" 136 | 137 | #: wp-db-backup.php:646 138 | #: wp-db-backup.php:649 139 | msgid "There was an error writing a line to the backup script:" 140 | msgstr "バックアップスクリプトへの書き込みエラーがありました:" 141 | 142 | #: wp-db-backup.php:681 143 | msgid "Subsequent errors have been omitted from this log." 144 | msgstr "このログから後続のエラーが削除されました。" 145 | 146 | #: wp-db-backup.php:715 147 | msgid "Error getting table details" 148 | msgstr "テーブル詳細の取得エラー" 149 | 150 | #: wp-db-backup.php:723 151 | #, php-format 152 | msgid "Delete any existing table %s" 153 | msgstr "既存テーブル %s の削除" 154 | 155 | #: wp-db-backup.php:732 156 | #, php-format 157 | msgid "Table structure of table %s" 158 | msgstr "テーブル %s のテーブル構造" 159 | 160 | #: wp-db-backup.php:738 161 | #, php-format 162 | msgid "Error with SHOW CREATE TABLE for %s." 163 | msgstr "%s のための SHOW CREATE TABLE に関するエラー。" 164 | 165 | #: wp-db-backup.php:745 166 | #, php-format 167 | msgid "Error getting table structure of %s" 168 | msgstr "%s のテーブル構造取得エラー" 169 | 170 | #: wp-db-backup.php:753 171 | #, php-format 172 | msgid "Data contents of table %s" 173 | msgstr "テーブル %s のデータコンテンツ" 174 | 175 | #: wp-db-backup.php:823 176 | #, php-format 177 | msgid "End of data contents of table %s" 178 | msgstr "テーブル %s のデータコンテンツの終わり" 179 | 180 | #: wp-db-backup.php:839 181 | msgid "The backup directory is not writeable!" 182 | msgstr "バックアップ用ディレクトリが書き込み可能になっていません !" 183 | 184 | #: wp-db-backup.php:974 185 | #, php-format 186 | msgid "File not found:%s" 187 | msgstr "ファイルが見つかりませんでした: %s" 188 | 189 | #: wp-db-backup.php:974 190 | msgid "Return to Backup" 191 | msgstr "バックアップに戻る" 192 | 193 | #: wp-db-backup.php:983 194 | #, php-format 195 | msgid "File %s does not exist!" 196 | msgstr "ファイル %s はありません !" 197 | 198 | #: wp-db-backup.php:990 199 | #, php-format 200 | msgid "" 201 | "Attached to this email is\n" 202 | " %1s\n" 203 | " Size:%2s kilobytes\n" 204 | msgstr "" 205 | "このメールに添付されたのは\n" 206 | " %1s\n" 207 | " サイズ: %2s キロバイト\n" 208 | 209 | #: wp-db-backup.php:991 210 | msgid "Database Backup" 211 | msgstr "データベースのバックアップ" 212 | 213 | #: wp-db-backup.php:994 214 | #: wp-db-backup.php:1041 215 | msgid "The following errors were reported:" 216 | msgstr "次のエラーが報告されました:" 217 | 218 | #: wp-db-backup.php:999 219 | msgid "ERROR: The mail application has failed to deliver the backup." 220 | msgstr "エラー: メールアプリケーションがバックアップファイルの送信に失敗しました。" 221 | 222 | #: wp-db-backup.php:1016 223 | msgid "Backup Successful" 224 | msgstr "バックアップ成功" 225 | 226 | #: wp-db-backup.php:1020 227 | #, php-format 228 | msgid "Your backup file: %2s should begin downloading shortly." 229 | msgstr "バックアップファイル: %2sのダウンロードはまもなく開始されます。" 230 | 231 | #: wp-db-backup.php:1028 232 | #, php-format 233 | msgid "Your backup has been emailed to %s" 234 | msgstr "バックアップは %s にメールで送信されました" 235 | 236 | #: wp-db-backup.php:1031 237 | msgid "Your backup file has been saved on the server. If you would like to download it now, right click and select \"Save As\"" 238 | msgstr "バックアップファイルがサーバーに保存されました。ダウンロードするには右クリックして「リンク先を名前をつけて保存」を選択してください" 239 | 240 | #: wp-db-backup.php:1032 241 | #, php-format 242 | msgid "%s bytes" 243 | msgstr "%s バイト" 244 | 245 | #: wp-db-backup.php:1068 246 | msgid "Scheduled Backup Options Saved!" 247 | msgstr "定期バックアップ設定が保存されました !" 248 | 249 | #: wp-db-backup.php:1095 250 | msgid "WARNING: Your backup directory does NOT exist, and we cannot create it." 251 | msgstr "注意: バックアップディレクトリが見つからず、作成もできませんでした。" 252 | 253 | #: wp-db-backup.php:1096 254 | #, php-format 255 | msgid "Using your FTP client, try to create the backup directory yourself: %s" 256 | msgstr "FTP クライアントを使用し、バックアップディレクトリ: %s を作成してみてください。" 257 | 258 | #: wp-db-backup.php:1100 259 | #: wp-db-backup.php:1111 260 | msgid "WARNING: Your backup directory is NOT writable! We cannot create the backup files." 261 | msgstr "注意: バックアップディレクトリが書き込み不可になっています ! バックアップファイルを作成できませんでした。" 262 | 263 | #: wp-db-backup.php:1101 264 | #, php-format 265 | msgid "Using your FTP client, try to set the backup directory’s write permission to %1$s or %2$s: %3$s" 266 | msgstr "FTP クライアントを使用し、バックアップディレクトリの書込みパーミッションを %1$s または %2$s: %3$s にセットしてみてください。" 267 | 268 | #: wp-db-backup.php:1113 269 | msgid "This problem seems to be caused by your server’s safe_mode file ownership restrictions, which limit what files web applications like WordPress can create." 270 | msgstr "この問題は使用しているサーバーの safe_mode ファイルオーナー制限によって引き起こされているのかもしれません。これは WordPress のようなウェブアプリケーションが作成できるファイルを制限しています。" 271 | 272 | #: wp-db-backup.php:1115 273 | #, php-format 274 | msgid "You can try to correct this problem by using your FTP client to delete and then re-create the backup directory: %s" 275 | msgstr "FTP クライアントを使用してバックアップディレクトリの %s を削除して作り直せば、この問題を解決できるかもしれません。" 276 | 277 | #: wp-db-backup.php:1129 278 | msgid "Tables" 279 | msgstr "テーブル" 280 | 281 | #: wp-db-backup.php:1131 282 | msgid "These core WordPress tables will always be backed up:" 283 | msgstr "次の主要な WordPress テーブルは常にバックアップされます:" 284 | 285 | #: wp-db-backup.php:1136 286 | msgid "Exclude spam comments" 287 | msgstr "スパムコメントを除外" 288 | 289 | #: wp-db-backup.php:1139 290 | msgid "Exclude post revisions" 291 | msgstr "投稿リビジョンを除外" 292 | 293 | #: wp-db-backup.php:1150 294 | msgid "You may choose to include any of the following tables:" 295 | msgstr "次のテーブルも選択して保存することができます:" 296 | 297 | #: wp-db-backup.php:1164 298 | msgid "Backup Options" 299 | msgstr "バックアップ設定" 300 | 301 | #: wp-db-backup.php:1165 302 | msgid "What to do with the backup file:" 303 | msgstr "バックアップファイルの扱い:" 304 | 305 | #: wp-db-backup.php:1169 306 | msgid "Save to server" 307 | msgstr "サーバーに保存" 308 | 309 | #: wp-db-backup.php:1174 310 | msgid "Download to your computer" 311 | msgstr "あなたのコンピュータにダウンロード" 312 | 313 | #: wp-db-backup.php:1178 314 | #: wp-db-backup.php:1235 315 | msgid "Email backup to:" 316 | msgstr "バックアップをメールで送信:" 317 | 318 | #: wp-db-backup.php:1185 319 | msgid "Backup now!" 320 | msgstr "バックアップ !" 321 | 322 | #: wp-db-backup.php:1188 323 | msgid "WARNING: Your backup directory is NOT writable!" 324 | msgstr "注意: バックアップディレクトリが書き込み不可になっています。" 325 | 326 | #: wp-db-backup.php:1199 327 | msgid "Scheduled Backup" 328 | msgstr "定期バックアップ" 329 | 330 | #: wp-db-backup.php:1206 331 | #, php-format 332 | msgid "Next Backup: %s" 333 | msgstr "次回のバックアップ: %s" 334 | 335 | #: wp-db-backup.php:1211 336 | #, php-format 337 | msgid "Last WP-Cron Daily Execution: %s" 338 | msgstr "最後に WP-Cron を実行した日時: %s" 339 | 340 | #: wp-db-backup.php:1212 341 | #, php-format 342 | msgid "Next WP-Cron Daily Execution: %s" 343 | msgstr "次に WP-Cron を実行する日時: %s" 344 | 345 | #: wp-db-backup.php:1217 346 | msgid "Schedule: " 347 | msgstr "スケジュール:" 348 | 349 | #: wp-db-backup.php:1220 350 | msgid "None" 351 | msgstr "なし" 352 | 353 | #: wp-db-backup.php:1220 354 | msgid "Daily" 355 | msgstr "毎日" 356 | 357 | #: wp-db-backup.php:1243 358 | msgid "Tables to include in the scheduled backup:" 359 | msgstr "定期バックアップに含めるテーブル:" 360 | 361 | #: wp-db-backup.php:1253 362 | msgid "Schedule backup" 363 | msgstr "定期バックアップ" 364 | 365 | #: wp-db-backup.php:1278 366 | msgid "Never" 367 | msgstr "なし" 368 | 369 | #: wp-db-backup.php:1283 370 | #, php-format 371 | msgid "%s seconds" 372 | msgstr "%s 秒" 373 | 374 | #: wp-db-backup.php:1316 375 | msgid "Once Weekly" 376 | msgstr "週 1 回" 377 | 378 | #: wp-db-backup.php:1329 379 | #, php-format 380 | msgid "Your WordPress version, %1s, lacks important security features without which it is unsafe to use the WP-DB-Backup plugin. Hence, this plugin is automatically disabled. Please consider upgrading WordPress to a more recent version." 381 | msgstr "お使いになっている WordPress のバージョンは %1s です。このバージョンには WP-DB-Backup プラグインを安全に使用できる重要なセキュリティ機能が備わっていません。そのためこのプラグインは自動的に機能を停止しました。より最新の WordPress へのアップグレードをご検討ください。" 382 | 383 | #: wp-db-backup.php:1347 384 | msgid "You are not allowed to perform backups." 385 | msgstr "バックアップを行う権限がありません。" 386 | 387 | #: wp-db-backup.php:1362 388 | #, php-format 389 | msgid "There appears to be an unauthorized attempt from this site to access your database located at %1s. The attempt has been halted." 390 | msgstr "このサイトから %1s にあるデータベースへの未承認のアクセスがあったようです。この試みは阻止されました。" 391 | 392 | #: wp-db-backup.php:1373 393 | msgid "Cheatin' uh ?" 394 | msgstr "間違えましたか ?" 395 | 396 | #~ msgid "" 397 | #~ "WARNING: Your wp-content directory is NOT writable! We " 398 | #~ "can not create the backup directory." 399 | #~ msgstr "" 400 | #~ "注意: wp-content ディレクトリが書き込み不可になっていま" 401 | #~ "す ! バックアップディレクトリを作成できませんでした。" 402 | #~ msgid "Select all" 403 | #~ msgstr "すべて選択" 404 | #~ msgid "Select none" 405 | #~ msgstr "何も選択しない" 406 | #~ msgid "Submit" 407 | #~ msgstr "保存する" 408 | 409 | -------------------------------------------------------------------------------- /languages/wp-db-backup-ko_KR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deliciousbrains/wp-db-backup/f7f1ed99607d5ddeb1ccb14fb00659ce28073c4d/languages/wp-db-backup-ko_KR.mo -------------------------------------------------------------------------------- /languages/wp-db-backup-ko_KR.po: -------------------------------------------------------------------------------- 1 | # WP-DB-Backup 2 | # Copyright (C) 2008 Austin Matzko 3 | # This file is distributed under the GPL 2 license. 4 | # 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: Korean by Soul\n" 8 | "Report-Msgid-Bugs-To: \n" 9 | "POT-Creation-Date: 2008-08-15 11:00-0500\n" 10 | "PO-Revision-Date: 2009-02-19 03:41-0500\n" 11 | "Last-Translator: Jong-In Kim \n" 12 | "MIME-Version: 1.0\n" 13 | "Content-Type: text/plain; charset=utf-8\n" 14 | "Content-Transfer-Encoding: 8bit\n" 15 | "Language-Team: Jong-In Kim \n" 16 | "X-Poedit-Language: Korean\n" 17 | "X-Poedit-Country: KOREA, REPUBLIC OF\n" 18 | 19 | #: wp-db-backup.php:181 20 | msgid "Backup Complete!" 21 | msgstr "백업 완료!" 22 | 23 | #: wp-db-backup.php:211 24 | msgid "Progress" 25 | msgstr "진행" 26 | 27 | #: wp-db-backup.php:213 28 | msgid "DO NOT DO THE FOLLOWING AS IT WILL CAUSE YOUR BACKUP TO FAIL:" 29 | msgstr "다음과 같은 백업을 실패하게 하는 것을 하지마세요:" 30 | 31 | #: wp-db-backup.php:216 32 | msgid "Close this browser" 33 | msgstr "이 브라우저 닫음" 34 | 35 | #: wp-db-backup.php:217 36 | msgid "Reload this page" 37 | msgstr "이 페이지 새로고침" 38 | 39 | #: wp-db-backup.php:218 40 | msgid "Click the Stop or Back buttons in your browser" 41 | msgstr "브라우저의 멈춤 이나 뒤로 버튼을 클릭하세요" 42 | 43 | #: wp-db-backup.php:220 44 | msgid "Progress:" 45 | msgstr "진행:" 46 | 47 | #: wp-db-backup.php:229 48 | msgid "Navigating away from this page will cause your backup to fail." 49 | msgstr "이 페이지에서 벗어나는 것은 백업 실패와 연결될 수 있습니다." 50 | 51 | #: wp-db-backup.php:266 52 | #, php-format 53 | msgid "Backup complete, preparing backup for download..." 54 | msgstr "백업 완료, 다운로드를 위한 백업 준비중 ..." 55 | 56 | #: wp-db-backup.php:273 57 | #, php-format 58 | msgid "Backup complete, sending backup via email..." 59 | msgstr "백업 완료, 백업 을 이메일로 보내는 중..." 60 | 61 | #: wp-db-backup.php:280 62 | #, php-format 63 | msgid "Backup complete, download here." 64 | msgstr "백업 완료, 다운로드는 여기." 65 | 66 | #: wp-db-backup.php:340 67 | msgid "Creating backup file..." 68 | msgstr "백업 파일 만드는 중..." 69 | 70 | #: wp-db-backup.php:343 71 | #, php-format 72 | msgid "Finished backing up table \\\"%s\\\"." 73 | msgstr "테이블 백업 완료 \\\"%s\\\"." 74 | 75 | #: wp-db-backup.php:345 76 | #, php-format 77 | msgid "Backing up table \\\"%s\\\"..." 78 | msgstr "테이블 백업 중 \\\"%s\\\"..." 79 | 80 | #: wp-db-backup.php:352 81 | #: wp-db-backup.php:835 82 | msgid "Could not open the backup file for writing!" 83 | msgstr "쓰기위해 백업 파일을 열 수 없습니다!" 84 | 85 | #: wp-db-backup.php:353 86 | msgid "The backup file could not be saved. Please check the permissions for writing to your backup directory and try again." 87 | msgstr "백업 파일이 저장되지 않았습니다. 당신의 백업 디렉토리에 쓸 수 있는 권한이 있는지 확인하시고 재시도 해주세요." 88 | 89 | #: wp-db-backup.php:358 90 | #: wp-db-backup.php:844 91 | msgid "WordPress MySQL database backup" 92 | msgstr "워드프레스 MySQL 데이터베이스 백업" 93 | 94 | #: wp-db-backup.php:360 95 | #: wp-db-backup.php:846 96 | #, php-format 97 | msgid "Generated: %s" 98 | msgstr "생성됨: %s" 99 | 100 | #: wp-db-backup.php:361 101 | #: wp-db-backup.php:847 102 | #, php-format 103 | msgid "Hostname: %s" 104 | msgstr "호스트 이름: %s" 105 | 106 | #: wp-db-backup.php:362 107 | #: wp-db-backup.php:848 108 | #, php-format 109 | msgid "Database: %s" 110 | msgstr "데이터베이스: %s" 111 | 112 | #: wp-db-backup.php:370 113 | #: wp-db-backup.php:861 114 | #, php-format 115 | msgid "Table: %s" 116 | msgstr "테이블: %s" 117 | 118 | #: wp-db-backup.php:377 119 | msgid "The backup directory is not writeable! Please check the permissions for writing to your backup directory and try again." 120 | msgstr "백업 디렉토리 쓰기 불가능! 당신의 백업 디렉토리에 쓸 수 있는 권한이 있는지 확인하시고 재시도 해주세요." 121 | 122 | #: wp-db-backup.php:434 123 | msgid "Click and hold down [SHIFT] to toggle multiple checkboxes" 124 | msgstr "여러 체크박스의 토글을 위해서 [SHIFT] 를 클릭하시고 유지하세요" 125 | 126 | #: wp-db-backup.php:474 127 | msgid "Change" 128 | msgstr "변경" 129 | 130 | #: wp-db-backup.php:483 131 | msgid "Save" 132 | msgstr "저장" 133 | 134 | #: wp-db-backup.php:566 135 | #: wp-db-backup.php:571 136 | #: wp-db-backup.php:1126 137 | msgid "Backup" 138 | msgstr "백업" 139 | 140 | #: wp-db-backup.php:646 141 | #: wp-db-backup.php:649 142 | msgid "There was an error writing a line to the backup script:" 143 | msgstr "백업 스크립트에 쓰는 도중 에러가 발생했습니다:" 144 | 145 | #: wp-db-backup.php:681 146 | msgid "Subsequent errors have been omitted from this log." 147 | msgstr "이 로그에서 후속 에러가 제외되었습니다." 148 | 149 | #: wp-db-backup.php:715 150 | msgid "Error getting table details" 151 | msgstr "테이블 내용을 가져오는 중 에러" 152 | 153 | #: wp-db-backup.php:723 154 | #, php-format 155 | msgid "Delete any existing table %s" 156 | msgstr "존재한 테이블 삭제 %s" 157 | 158 | #: wp-db-backup.php:732 159 | #, php-format 160 | msgid "Table structure of table %s" 161 | msgstr "테이블의 구조 테이블 %s" 162 | 163 | #: wp-db-backup.php:738 164 | #, php-format 165 | msgid "Error with SHOW CREATE TABLE for %s." 166 | msgstr "%s 를 위한 생성 테이블 보기 에러." 167 | 168 | #: wp-db-backup.php:745 169 | #, php-format 170 | msgid "Error getting table structure of %s" 171 | msgstr "%s 의 테이블 구조를 가져오는 중 에러" 172 | 173 | #: wp-db-backup.php:753 174 | #, php-format 175 | msgid "Data contents of table %s" 176 | msgstr "테이블의 데이터 컨텐츠 %s" 177 | 178 | #: wp-db-backup.php:823 179 | #, php-format 180 | msgid "End of data contents of table %s" 181 | msgstr "테이블의 데이터 컨텐츠 끝 %s" 182 | 183 | #: wp-db-backup.php:839 184 | msgid "The backup directory is not writeable!" 185 | msgstr "백업 디렉토리는 쓰기 불가능합니다!" 186 | 187 | #: wp-db-backup.php:974 188 | #, php-format 189 | msgid "File not found:%s" 190 | msgstr "파일이 없습니다: %s" 191 | 192 | #: wp-db-backup.php:974 193 | msgid "Return to Backup" 194 | msgstr "백업으로 돌아가기" 195 | 196 | #: wp-db-backup.php:983 197 | #, php-format 198 | msgid "File %s does not exist!" 199 | msgstr "%s 파일이 존재하지 않습니다!" 200 | 201 | #: wp-db-backup.php:990 202 | #, php-format 203 | msgid "" 204 | "Attached to this email is\n" 205 | " %1s\n" 206 | " Size:%2s kilobytes\n" 207 | msgstr "" 208 | "이 이메일에 첨부는\n" 209 | " %1s\n" 210 | " Size:%2s kilobytes\n" 211 | 212 | #: wp-db-backup.php:991 213 | msgid "Database Backup" 214 | msgstr "데이터베이스 백업" 215 | 216 | #: wp-db-backup.php:994 217 | #: wp-db-backup.php:1041 218 | msgid "The following errors were reported:" 219 | msgstr "다음과 같은 에러가 발견되었습니다:" 220 | 221 | #: wp-db-backup.php:999 222 | msgid "ERROR: The mail application has failed to deliver the backup." 223 | msgstr "에러: 메일로 백업 전송 실패." 224 | 225 | #: wp-db-backup.php:1016 226 | msgid "Backup Successful" 227 | msgstr "백업 성공" 228 | 229 | #: wp-db-backup.php:1020 230 | #, php-format 231 | msgid "Your backup file: %2s should begin downloading shortly." 232 | msgstr "당신의 백업 파일: %2s 은 금방 다운로드가 시작됩니다." 233 | 234 | #: wp-db-backup.php:1028 235 | #, php-format 236 | msgid "Your backup has been emailed to %s" 237 | msgstr "당신의 백업은 %s 로 이메일 전송 되었습니다." 238 | 239 | #: wp-db-backup.php:1031 240 | msgid "Your backup file has been saved on the server. If you would like to download it now, right click and select \"Save As\"" 241 | msgstr "당신의 백업 파일은 서버에 저장되었습니다. 만약 지금 다운로드 하고싶다면, 우클릭 후 \"Save As\" 를 선택하세요." 242 | 243 | #: wp-db-backup.php:1032 244 | #, php-format 245 | msgid "%s bytes" 246 | msgstr "%s 바이트" 247 | 248 | #: wp-db-backup.php:1068 249 | msgid "Scheduled Backup Options Saved!" 250 | msgstr "예약된 백업 옵션 저장됨!" 251 | 252 | #: wp-db-backup.php:1095 253 | msgid "WARNING: Your backup directory does NOT exist, and we cannot create it." 254 | msgstr "경고: 당신의 백업 디렉토리가 존재하지 않아 생성할 수 없습니다." 255 | 256 | #: wp-db-backup.php:1096 257 | #, php-format 258 | msgid "Using your FTP client, try to create the backup directory yourself: %s" 259 | msgstr "당신의 FTP 를 사용하여, 백업 디렉토리를 직접 생성하세요: %s" 260 | 261 | #: wp-db-backup.php:1100 262 | #: wp-db-backup.php:1111 263 | msgid "WARNING: Your backup directory is NOT writable! We cannot create the backup files." 264 | msgstr "경고: 당신의 백업 디렉토리는 쓰기 불가능 입니다! 백업 파일을 생성할 수 없습니다." 265 | 266 | #: wp-db-backup.php:1101 267 | #, php-format 268 | msgid "Using your FTP client, try to set the backup directory’s write permission to %1$s or %2$s: %3$s" 269 | msgstr "당신의 FTP 를 사용하여, 백업 디렉토리를 ’s 다음과 같은 권한으로 설정하세요. %1$s or %2$s: %3$s" 270 | 271 | #: wp-db-backup.php:1113 272 | msgid "This problem seems to be caused by your server’s safe_mode file ownership restrictions, which limit what files web applications like WordPress can create." 273 | msgstr "이 문제는 당신의 서버로 인한 것 같습니다.’s 안전 모드 파일 소유권 제한으로 워드프레스같은 웹애플리케이션이 생성하는 파일에 제한이 있는 것 같습니다." 274 | 275 | #: wp-db-backup.php:1115 276 | #, php-format 277 | msgid "You can try to correct this problem by using your FTP client to delete and then re-create the backup directory: %s" 278 | msgstr "당신은 FTP 를 이용하여 백업 디렉토리를 삭제 후 재생성을 해서 이 문제를 고칠 수 있습니다: %s" 279 | 280 | #: wp-db-backup.php:1129 281 | msgid "Tables" 282 | msgstr "테이블" 283 | 284 | #: wp-db-backup.php:1131 285 | msgid "These core WordPress tables will always be backed up:" 286 | msgstr "이러한 핵심 워드프레스 테이블은 항상 백업합니다:" 287 | 288 | #: wp-db-backup.php:1136 289 | msgid "Exclude spam comments" 290 | msgstr "제외 스팸 댓글" 291 | 292 | #: wp-db-backup.php:1139 293 | msgid "Exclude post revisions" 294 | msgstr "제외 글 수정" 295 | 296 | #: wp-db-backup.php:1150 297 | msgid "You may choose to include any of the following tables:" 298 | msgstr "당신은 다음 테이블을 포함하도록 선택할 수 있습니다:" 299 | 300 | #: wp-db-backup.php:1164 301 | msgid "Backup Options" 302 | msgstr "백업 옵션" 303 | 304 | #: wp-db-backup.php:1165 305 | msgid "What to do with the backup file:" 306 | msgstr "백업 파일로 무엇을 할까요:" 307 | 308 | #: wp-db-backup.php:1169 309 | msgid "Save to server" 310 | msgstr "서버에 저장" 311 | 312 | #: wp-db-backup.php:1174 313 | msgid "Download to your computer" 314 | msgstr "당신의 컴퓨터로 다운로드" 315 | 316 | #: wp-db-backup.php:1178 317 | #: wp-db-backup.php:1235 318 | msgid "Email backup to:" 319 | msgstr "이메일 백업:" 320 | 321 | #: wp-db-backup.php:1185 322 | msgid "Backup now!" 323 | msgstr "지금 백업하세요!" 324 | 325 | #: wp-db-backup.php:1188 326 | msgid "WARNING: Your backup directory is NOT writable!" 327 | msgstr "경고: 당신의 백업 디렉토리는 쓰기 불가능 입니다!" 328 | 329 | #: wp-db-backup.php:1199 330 | msgid "Scheduled Backup" 331 | msgstr "예약된 백업" 332 | 333 | #: wp-db-backup.php:1206 334 | #, php-format 335 | msgid "Next Backup: %s" 336 | msgstr "다음 백업: %s" 337 | 338 | #: wp-db-backup.php:1211 339 | #, php-format 340 | msgid "Last WP-Cron Daily Execution: %s" 341 | msgstr "마지막 WP-Cron 매일 실행 : %s" 342 | 343 | #: wp-db-backup.php:1212 344 | #, php-format 345 | msgid "Next WP-Cron Daily Execution: %s" 346 | msgstr "다음 WP-Cron 매일 실행: %s" 347 | 348 | #: wp-db-backup.php:1217 349 | msgid "Schedule: " 350 | msgstr "예약:" 351 | 352 | #: wp-db-backup.php:1220 353 | msgid "None" 354 | msgstr "없음" 355 | 356 | #: wp-db-backup.php:1220 357 | msgid "Daily" 358 | msgstr "매일" 359 | 360 | #: wp-db-backup.php:1243 361 | msgid "Tables to include in the scheduled backup:" 362 | msgstr "예약된 백업 안에 추가할 테이블:" 363 | 364 | #: wp-db-backup.php:1253 365 | msgid "Schedule backup" 366 | msgstr "예약 백업" 367 | 368 | #: wp-db-backup.php:1278 369 | msgid "Never" 370 | msgstr "절대" 371 | 372 | #: wp-db-backup.php:1283 373 | #, php-format 374 | msgid "%s seconds" 375 | msgstr "%s 초" 376 | 377 | #: wp-db-backup.php:1316 378 | msgid "Once Weekly" 379 | msgstr "주마다 한번" 380 | 381 | #: wp-db-backup.php:1329 382 | #, php-format 383 | msgid "Your WordPress version, %1s, lacks important security features without which it is unsafe to use the WP-DB-Backup plugin. Hence, this plugin is automatically disabled. Please consider upgrading WordPress to a more recent version." 384 | msgstr "당신의 워드프레스 버전, %1s, 은 보안 기능이 미흡하여 WP-DB-Backup 플러그인을 쓰기에는 안전하지 않습니다. 따라서 이 플러그인을 자동으로 해제했습니다. 최신 버전으로 워드프레스 업그레이드를 고려하세요." 385 | 386 | #: wp-db-backup.php:1347 387 | msgid "You are not allowed to perform backups." 388 | msgstr "당신은 백업을 이용할 수 없습니다." 389 | 390 | #: wp-db-backup.php:1362 391 | #, php-format 392 | msgid "There appears to be an unauthorized attempt from this site to access your database located at %1s. The attempt has been halted." 393 | msgstr "이 사이트에서 무단으로 귀하의 데이터베이스 %1s에 액세스하려 시도되었습니다. 그 시도가 중단되었습니다." 394 | 395 | #: wp-db-backup.php:1373 396 | msgid "Cheatin' uh ?" 397 | msgstr "누굴 속이시려고?" 398 | 399 | -------------------------------------------------------------------------------- /languages/wp-db-backup-nb_NO.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deliciousbrains/wp-db-backup/f7f1ed99607d5ddeb1ccb14fb00659ce28073c4d/languages/wp-db-backup-nb_NO.mo -------------------------------------------------------------------------------- /languages/wp-db-backup-nb_NO.po: -------------------------------------------------------------------------------- 1 | # WP-DB-Backup 2 | # Copyright (C) 2008 Austin Matzko 3 | # This file is distributed under the GPL 2 license. 4 | # 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: PACKAGE VERSION\n" 8 | "Report-Msgid-Bugs-To: \n" 9 | "POT-Creation-Date: 2008-08-15 11:00-0500\n" 10 | "PO-Revision-Date: 2008-08-30 12:02+0100\n" 11 | "Last-Translator: RuneG \n" 12 | "MIME-Version: 1.0\n" 13 | "Content-Type: text/plain; charset=utf-8\n" 14 | "Content-Transfer-Encoding: 8bit\n" 15 | "Language-Team: \n" 16 | 17 | #: wp-db-backup.php:181 18 | msgid "Backup Complete!" 19 | msgstr "Sikkerhetskopi ferdig!" 20 | 21 | #: wp-db-backup.php:211 22 | msgid "Progress" 23 | msgstr "Framdrift" 24 | 25 | #: wp-db-backup.php:213 26 | msgid "DO NOT DO THE FOLLOWING AS IT WILL CAUSE YOUR BACKUP TO FAIL:" 27 | msgstr "IKKE GJØR FØLGENDE DA DET VIL FØRE TIL AT SIKKERHETSKOPIEN DIN FEILER:" 28 | 29 | #: wp-db-backup.php:216 30 | msgid "Close this browser" 31 | msgstr "Lukke nettleseren" 32 | 33 | #: wp-db-backup.php:217 34 | msgid "Reload this page" 35 | msgstr "Laste siden på nytt" 36 | 37 | #: wp-db-backup.php:218 38 | msgid "Click the Stop or Back buttons in your browser" 39 | msgstr "Klikke på stopp eller tilbake knappen i nettleseren" 40 | 41 | #: wp-db-backup.php:220 42 | msgid "Progress:" 43 | msgstr "Framdrift:" 44 | 45 | #: wp-db-backup.php:229 46 | msgid "Navigating away from this page will cause your backup to fail." 47 | msgstr "Hvis du går vekk fra denne siden feiler sikkerhetskopien." 48 | 49 | #: wp-db-backup.php:266 50 | #, php-format 51 | msgid "Backup complete, preparing backup for download..." 52 | msgstr "Sikkerhetskopi ferdig, forbereder sikkerhetskopi for nedlasting..." 53 | 54 | #: wp-db-backup.php:273 55 | #, php-format 56 | msgid "Backup complete, sending backup via email..." 57 | msgstr "Sikkerhetskopi ferdig, sender backup via epost..." 58 | 59 | #: wp-db-backup.php:280 60 | #, php-format 61 | msgid "Backup complete, download here." 62 | msgstr "Sikkerhetskopi ferdig, last den ned her." 63 | 64 | #: wp-db-backup.php:340 65 | msgid "Creating backup file..." 66 | msgstr "Lager sikkerhetskopi..." 67 | 68 | #: wp-db-backup.php:343 69 | #, php-format 70 | msgid "Finished backing up table \\\"%s\\\"." 71 | msgstr "Ferdig med sikkerhetskopi av tabellen \\\"%s\\\"." 72 | 73 | #: wp-db-backup.php:345 74 | #, php-format 75 | msgid "Backing up table \\\"%s\\\"..." 76 | msgstr "Tar sikkerhetskopi av tabellen \\\"%s\\\"..." 77 | 78 | #: wp-db-backup.php:352 79 | #: wp-db-backup.php:835 80 | msgid "Could not open the backup file for writing!" 81 | msgstr "Kunne ikke åpne filen for sikkerhetskopi i skrivemodus!" 82 | 83 | #: wp-db-backup.php:353 84 | msgid "The backup file could not be saved. Please check the permissions for writing to your backup directory and try again." 85 | msgstr "Sikkerhetskopifilen kunne ikke lagres. Sjekk skrive rettigheter på sikkerhetskopi mappen, og prøv igjen." 86 | 87 | #: wp-db-backup.php:358 88 | #: wp-db-backup.php:844 89 | msgid "WordPress MySQL database backup" 90 | msgstr "WordPress MySQL database sikkerhetskopi" 91 | 92 | #: wp-db-backup.php:360 93 | #: wp-db-backup.php:846 94 | #, php-format 95 | msgid "Generated: %s" 96 | msgstr "Laget: %s" 97 | 98 | #: wp-db-backup.php:361 99 | #: wp-db-backup.php:847 100 | #, php-format 101 | msgid "Hostname: %s" 102 | msgstr "Vertsnavn: %s" 103 | 104 | #: wp-db-backup.php:362 105 | #: wp-db-backup.php:848 106 | #, php-format 107 | msgid "Database: %s" 108 | msgstr "Database: %s" 109 | 110 | #: wp-db-backup.php:370 111 | #: wp-db-backup.php:861 112 | #, php-format 113 | msgid "Table: %s" 114 | msgstr "Tabell: %s" 115 | 116 | #: wp-db-backup.php:377 117 | msgid "The backup directory is not writeable! Please check the permissions for writing to your backup directory and try again." 118 | msgstr "Mappen for sikkerhetskopi er ikke skrivbar! Sjekk skriverettighetene på mappen og prøv igjen." 119 | 120 | #: wp-db-backup.php:434 121 | msgid "Click and hold down [SHIFT] to toggle multiple checkboxes" 122 | msgstr "Klikk og hold nede [SHIFT] for å velge flere sjekkbokser" 123 | 124 | #: wp-db-backup.php:474 125 | msgid "Change" 126 | msgstr "Endre" 127 | 128 | #: wp-db-backup.php:483 129 | msgid "Save" 130 | msgstr "Lagre" 131 | 132 | #: wp-db-backup.php:566 133 | #: wp-db-backup.php:571 134 | #: wp-db-backup.php:1126 135 | msgid "Backup" 136 | msgstr "Ta sikkerhetskopi" 137 | 138 | #: wp-db-backup.php:646 139 | #: wp-db-backup.php:649 140 | msgid "There was an error writing a line to the backup script:" 141 | msgstr "Det var en feil ved skriven av en linje til skriptet for sikkerhetskopiering:" 142 | 143 | #: wp-db-backup.php:681 144 | msgid "Subsequent errors have been omitted from this log." 145 | msgstr "Følgende feilmeldinger er utelatt fra loggen." 146 | 147 | #: wp-db-backup.php:715 148 | msgid "Error getting table details" 149 | msgstr "Klarte ikke å få tabell detaljer" 150 | 151 | #: wp-db-backup.php:723 152 | #, php-format 153 | msgid "Delete any existing table %s" 154 | msgstr "Slett eksisternede tabell %s" 155 | 156 | #: wp-db-backup.php:732 157 | #, php-format 158 | msgid "Table structure of table %s" 159 | msgstr "Tabell strukturen til tabell %s" 160 | 161 | #: wp-db-backup.php:738 162 | #, php-format 163 | msgid "Error with SHOW CREATE TABLE for %s." 164 | msgstr "Feil med SHOW CREATE TABLE for %s" 165 | 166 | #: wp-db-backup.php:745 167 | #, php-format 168 | msgid "Error getting table structure of %s" 169 | msgstr "Feil ved innhenting av strukturen til tabellen %s" 170 | 171 | #: wp-db-backup.php:753 172 | #, php-format 173 | msgid "Data contents of table %s" 174 | msgstr "Data innhold for tabellen %s" 175 | 176 | #: wp-db-backup.php:823 177 | #, php-format 178 | msgid "End of data contents of table %s" 179 | msgstr "Slutt på data innhold i tabellen %s" 180 | 181 | #: wp-db-backup.php:839 182 | msgid "The backup directory is not writeable!" 183 | msgstr "Mappen for sikkerhetskopi er ikke skrivbar!" 184 | 185 | #: wp-db-backup.php:974 186 | #, php-format 187 | msgid "File not found:%s" 188 | msgstr "Filen ikke funnet: %s" 189 | 190 | #: wp-db-backup.php:974 191 | msgid "Return to Backup" 192 | msgstr "Tilbake til sikkerhetskopiering" 193 | 194 | #: wp-db-backup.php:983 195 | #, php-format 196 | msgid "File %s does not exist!" 197 | msgstr "Filen %s finnes ikke!" 198 | 199 | #: wp-db-backup.php:990 200 | #, php-format 201 | msgid "" 202 | "Attached to this email is\n" 203 | " %1s\n" 204 | " Size:%2s kilobytes\n" 205 | msgstr "" 206 | "Vedlagt til denne eposten er\n" 207 | " %1s\n" 208 | " Størrelse:%2s kilobytes\n" 209 | 210 | #: wp-db-backup.php:991 211 | msgid "Database Backup" 212 | msgstr "Database sikkerhetskopi" 213 | 214 | #: wp-db-backup.php:994 215 | #: wp-db-backup.php:1041 216 | msgid "The following errors were reported:" 217 | msgstr "Følgende feil ble rapportert:" 218 | 219 | #: wp-db-backup.php:999 220 | msgid "ERROR: The mail application has failed to deliver the backup." 221 | msgstr "FEIL: Epost apllikasjonen klarte ikke å levere sikkerhetskopien." 222 | 223 | #: wp-db-backup.php:1016 224 | msgid "Backup Successful" 225 | msgstr "Sikkerhetskopien var vellykket" 226 | 227 | #: wp-db-backup.php:1020 228 | #, php-format 229 | msgid "Your backup file: %2s should begin downloading shortly." 230 | msgstr "Sikkerhetskopi filen %2s starter snart å laste ned." 231 | 232 | #: wp-db-backup.php:1028 233 | #, php-format 234 | msgid "Your backup has been emailed to %s" 235 | msgstr "Din sikkerhetskopi er sendt på epost til %s" 236 | 237 | #: wp-db-backup.php:1031 238 | msgid "Your backup file has been saved on the server. If you would like to download it now, right click and select \"Save As\"" 239 | msgstr "Din sikkerhetskopi er lagret på serveren. Du kan laste den ned nå. Høyre klikk og velg \"Lagre som\"" 240 | 241 | #: wp-db-backup.php:1032 242 | #, php-format 243 | msgid "%s bytes" 244 | msgstr "%s bytes" 245 | 246 | #: wp-db-backup.php:1068 247 | msgid "Scheduled Backup Options Saved!" 248 | msgstr "Valg for planlagt sikkerhetskopi er lagret!" 249 | 250 | #: wp-db-backup.php:1095 251 | msgid "WARNING: Your backup directory does NOT exist, and we cannot create it." 252 | msgstr "ADVARSEL: Mappen for sikkerhetskopi finnes IKKE, og vi kan ikke lage den." 253 | 254 | #: wp-db-backup.php:1096 255 | #, php-format 256 | msgid "Using your FTP client, try to create the backup directory yourself: %s" 257 | msgstr "Ved hjelp av en FTP applikasjon, pørv å lage mappen for sikkerhetskopi selv: %s" 258 | 259 | #: wp-db-backup.php:1100 260 | #: wp-db-backup.php:1111 261 | msgid "WARNING: Your backup directory is NOT writable! We cannot create the backup files." 262 | msgstr "ADVARSEL: Mappen for sikkerhetskopi er IKKE skrivbar. Vi kan ikke lage sikkerhetskopifilene." 263 | 264 | #: wp-db-backup.php:1101 265 | #, php-format 266 | msgid "Using your FTP client, try to set the backup directory’s write permission to %1$s or %2$s: %3$s" 267 | msgstr "Ved hejlp av en FTP applikasjon, pørv å sette rettighetene til mappen til %1$s eller %2$s:%3$s" 268 | 269 | #: wp-db-backup.php:1113 270 | msgid "This problem seems to be caused by your server’s safe_mode file ownership restrictions, which limit what files web applications like WordPress can create." 271 | msgstr "Dette problemet ser ut til å være relatert til serverens safe_mode rettighets restriksjoner. Dette legger begrensninger på hvilke filer WEB applikasjoner som WordPress kan lage." 272 | 273 | #: wp-db-backup.php:1115 274 | #, php-format 275 | msgid "You can try to correct this problem by using your FTP client to delete and then re-create the backup directory: %s" 276 | msgstr "Du kan prøve å rette på den feilen ved å bruke en FTP applikasjon for å slette og så lage mappen for sikkerhetskopi på nytt: %s" 277 | 278 | #: wp-db-backup.php:1129 279 | msgid "Tables" 280 | msgstr "Tabeller" 281 | 282 | #: wp-db-backup.php:1131 283 | msgid "These core WordPress tables will always be backed up:" 284 | msgstr "De viktigste WordPress tabellen vil alltid bli sikkerhetskopiert:" 285 | 286 | #: wp-db-backup.php:1136 287 | msgid "Exclude spam comments" 288 | msgstr "Utelat søppel kommentarer" 289 | 290 | #: wp-db-backup.php:1139 291 | msgid "Exclude post revisions" 292 | msgstr "Utelat post revisjoner" 293 | 294 | #: wp-db-backup.php:1150 295 | msgid "You may choose to include any of the following tables:" 296 | msgstr "Du kan velge å inkludere følgende tabeller:" 297 | 298 | #: wp-db-backup.php:1164 299 | msgid "Backup Options" 300 | msgstr "Sikkerhetskopi instillinger" 301 | 302 | #: wp-db-backup.php:1165 303 | msgid "What to do with the backup file:" 304 | msgstr "Hva skal vi gjøre med sikkerhetskopien:" 305 | 306 | #: wp-db-backup.php:1169 307 | msgid "Save to server" 308 | msgstr "Lagre på serveren" 309 | 310 | #: wp-db-backup.php:1174 311 | msgid "Download to your computer" 312 | msgstr "Laste ned til datamaskinen" 313 | 314 | #: wp-db-backup.php:1178 315 | #: wp-db-backup.php:1235 316 | msgid "Email backup to:" 317 | msgstr "Sende på epost til:" 318 | 319 | #: wp-db-backup.php:1185 320 | msgid "Backup now!" 321 | msgstr "Ta sikkerhetskopi nå!" 322 | 323 | #: wp-db-backup.php:1188 324 | msgid "WARNING: Your backup directory is NOT writable!" 325 | msgstr "ADVARSEL: Mappen for sikkerhetskopiering er ikke skrivbar!" 326 | 327 | #: wp-db-backup.php:1199 328 | msgid "Scheduled Backup" 329 | msgstr "Planlagt sikkerhetskopi" 330 | 331 | #: wp-db-backup.php:1206 332 | #, php-format 333 | msgid "Next Backup: %s" 334 | msgstr "Neste sikkerhetskopi: %s" 335 | 336 | #: wp-db-backup.php:1211 337 | #, php-format 338 | msgid "Last WP-Cron Daily Execution: %s" 339 | msgstr "Siste WP-Cron daglig kjøring: %s" 340 | 341 | #: wp-db-backup.php:1212 342 | #, php-format 343 | msgid "Next WP-Cron Daily Execution: %s" 344 | msgstr "Neste WP-Cron daglig kjøring: %s" 345 | 346 | #: wp-db-backup.php:1217 347 | msgid "Schedule: " 348 | msgstr "Planlagt:" 349 | 350 | #: wp-db-backup.php:1220 351 | msgid "None" 352 | msgstr "Ingen" 353 | 354 | #: wp-db-backup.php:1220 355 | msgid "Daily" 356 | msgstr "Daglig" 357 | 358 | #: wp-db-backup.php:1243 359 | msgid "Tables to include in the scheduled backup:" 360 | msgstr "Tabeller som skal med i den planlagte sikkerhetskopien:" 361 | 362 | #: wp-db-backup.php:1253 363 | msgid "Schedule backup" 364 | msgstr "Planlagte sikkerhetskopier" 365 | 366 | #: wp-db-backup.php:1278 367 | msgid "Never" 368 | msgstr "Aldri" 369 | 370 | #: wp-db-backup.php:1283 371 | #, php-format 372 | msgid "%s seconds" 373 | msgstr "%s sekunder" 374 | 375 | #: wp-db-backup.php:1316 376 | msgid "Once Weekly" 377 | msgstr "Ukentlig" 378 | 379 | #: wp-db-backup.php:1329 380 | #, php-format 381 | msgid "Your WordPress version, %1s, lacks important security features without which it is unsafe to use the WP-DB-Backup plugin. Hence, this plugin is automatically disabled. Please consider upgrading WordPress to a more recent version." 382 | msgstr "Din WordPress versjon %1s, har alvorlige sikkerhetsfeil, noe som gjør bruken av WP-DB-Backup innstikket usikkert. På grunn av dette er innstikket automatisk deaktivert. Du bør virkelig vurdere å oppgrader WordPress til en nyere versjon!" 383 | 384 | #: wp-db-backup.php:1347 385 | msgid "You are not allowed to perform backups." 386 | msgstr "Du har ikke lov å ta sikkerhetskopi," 387 | 388 | #: wp-db-backup.php:1362 389 | #, php-format 390 | msgid "There appears to be an unauthorized attempt from this site to access your database located at %1s. The attempt has been halted." 391 | msgstr "Det virker som om det har vært et uatorisert forsøk på å nå databasen din som er lokalisert her %1s. Forsøket ble stoppet." 392 | 393 | #: wp-db-backup.php:1373 394 | msgid "Cheatin' uh ?" 395 | msgstr "Jukser du?" 396 | 397 | -------------------------------------------------------------------------------- /languages/wp-db-backup-pt_BR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deliciousbrains/wp-db-backup/f7f1ed99607d5ddeb1ccb14fb00659ce28073c4d/languages/wp-db-backup-pt_BR.mo -------------------------------------------------------------------------------- /languages/wp-db-backup-pt_BR.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2007 Austin Matzko 2 | # This file is distributed under the GPL 2 license. 3 | # 4 | msgid "" 5 | msgstr "" 6 | "Project-Id-Version: 2.2.2\n" 7 | "Report-Msgid-Bugs-To: \n" 8 | "POT-Creation-Date: 2008-08-15 11:00-0500\n" 9 | "PO-Revision-Date: 2009-12-15 08:44-0300\n" 10 | "Last-Translator: Anderson Silva \n" 11 | "Language-Team: Anderson Silva (candiba) \n" 12 | "MIME-Version: 1.0\n" 13 | "Content-Type: text/plain; charset=UTF-8\n" 14 | "Content-Transfer-Encoding: 8bit\n" 15 | "X-Poedit-Language: Portuguese\n" 16 | "X-Poedit-Country: BRAZIL\n" 17 | 18 | #: wp-db-backup.php:181 19 | msgid "Backup Complete!" 20 | msgstr "Backup Completo!" 21 | 22 | #: wp-db-backup.php:211 23 | msgid "Progress" 24 | msgstr "Andamento" 25 | 26 | #: wp-db-backup.php:213 27 | msgid "DO NOT DO THE FOLLOWING AS IT WILL CAUSE YOUR BACKUP TO FAIL:" 28 | msgstr "NÃO FAÇA NADA DESCRITO ABAIXO SE NÃO O BACKUP NÃO SERÁ COMPLETADO:" 29 | 30 | #: wp-db-backup.php:216 31 | msgid "Close this browser" 32 | msgstr "Fechar este navegador" 33 | 34 | #: wp-db-backup.php:217 35 | msgid "Reload this page" 36 | msgstr "Recarreguar esta página" 37 | 38 | #: wp-db-backup.php:218 39 | msgid "Click the Stop or Back buttons in your browser" 40 | msgstr "Clicar nos botões Parar ou Voltar do seu navegador" 41 | 42 | #: wp-db-backup.php:220 43 | msgid "Progress:" 44 | msgstr "Andamento:" 45 | 46 | #: wp-db-backup.php:229 47 | msgid "Navigating away from this page will cause your backup to fail." 48 | msgstr "Sair desta página pode causar erro no backup." 49 | 50 | #: wp-db-backup.php:266 51 | #, php-format 52 | msgid "Backup complete, preparing backup for download..." 53 | msgstr "Backup completo, preparando backup para download..." 54 | 55 | #: wp-db-backup.php:273 56 | #, php-format 57 | msgid "Backup complete, sending backup via email..." 58 | msgstr "Backup completo, enviando backup via email..." 59 | 60 | #: wp-db-backup.php:280 61 | #, php-format 62 | msgid "Backup complete, download here." 63 | msgstr "Backup completo, baixe aqui." 64 | 65 | #: wp-db-backup.php:340 66 | msgid "Creating backup file..." 67 | msgstr "Criando arquivo de backup..." 68 | 69 | #: wp-db-backup.php:343 70 | #, php-format 71 | msgid "Finished backing up table \\\"%s\\\"." 72 | msgstr "Backup da tabela \\\"%s\\\" finalizada." 73 | 74 | #: wp-db-backup.php:345 75 | #, php-format 76 | msgid "Backing up table \\\"%s\\\"..." 77 | msgstr "Copiando a tabela \\\"%s\\\"..." 78 | 79 | #: wp-db-backup.php:352 80 | #: wp-db-backup.php:835 81 | msgid "Could not open the backup file for writing!" 82 | msgstr "Não foi possível abrir o arquivo de backup para escrita!" 83 | 84 | #: wp-db-backup.php:353 85 | msgid "The backup file could not be saved. Please check the permissions for writing to your backup directory and try again." 86 | msgstr "O arquivo de backup não pôde ser salvo. Por favor, verifique as permissões de escrita no seu diretório de backup e tente novamente." 87 | 88 | #: wp-db-backup.php:358 89 | #: wp-db-backup.php:844 90 | msgid "WordPress MySQL database backup" 91 | msgstr "Backup da base de dados MySQL do WordPress" 92 | 93 | #: wp-db-backup.php:360 94 | #: wp-db-backup.php:846 95 | #, php-format 96 | msgid "Generated: %s" 97 | msgstr "Gerado: %s" 98 | 99 | #: wp-db-backup.php:361 100 | #: wp-db-backup.php:847 101 | #, php-format 102 | msgid "Hostname: %s" 103 | msgstr "Nome da máquina: %s" 104 | 105 | #: wp-db-backup.php:362 106 | #: wp-db-backup.php:848 107 | #, php-format 108 | msgid "Database: %s" 109 | msgstr "Base de dados: %s" 110 | 111 | #: wp-db-backup.php:370 112 | #: wp-db-backup.php:861 113 | #, php-format 114 | msgid "Table: %s" 115 | msgstr "Tabela: %s" 116 | 117 | #: wp-db-backup.php:377 118 | msgid "The backup directory is not writeable! Please check the permissions for writing to your backup directory and try again." 119 | msgstr "O diretório de backup não pode ser escrito! Por favor, verifique as permissões de escrita no seu diretório de backup e tente novamente." 120 | 121 | #: wp-db-backup.php:434 122 | msgid "Click and hold down [SHIFT] to toggle multiple checkboxes" 123 | msgstr "Clique e pressione [SHIFT] para múltiplas seleções" 124 | 125 | #: wp-db-backup.php:474 126 | msgid "Change" 127 | msgstr "Alterar" 128 | 129 | #: wp-db-backup.php:483 130 | msgid "Save" 131 | msgstr "Salvar" 132 | 133 | #: wp-db-backup.php:566 134 | #: wp-db-backup.php:571 135 | #: wp-db-backup.php:1126 136 | msgid "Backup" 137 | msgstr "Backup" 138 | 139 | #: wp-db-backup.php:646 140 | #: wp-db-backup.php:649 141 | msgid "There was an error writing a line to the backup script:" 142 | msgstr "Isto é um erro ao escrever uma linha no script de backup:" 143 | 144 | #: wp-db-backup.php:681 145 | msgid "Subsequent errors have been omitted from this log." 146 | msgstr "Erros subsequentes foram omitidos deste log." 147 | 148 | #: wp-db-backup.php:715 149 | msgid "Error getting table details" 150 | msgstr "Erro obtendo detalhes da tabela" 151 | 152 | #: wp-db-backup.php:723 153 | #, php-format 154 | msgid "Delete any existing table %s" 155 | msgstr "Apagando todas as tabelas existentes %s" 156 | 157 | #: wp-db-backup.php:732 158 | #, php-format 159 | msgid "Table structure of table %s" 160 | msgstr "Estrutura da tabela %s" 161 | 162 | #: wp-db-backup.php:738 163 | #, php-format 164 | msgid "Error with SHOW CREATE TABLE for %s." 165 | msgstr "Erro com SHOW CREATE TABLE para %s." 166 | 167 | #: wp-db-backup.php:745 168 | #, php-format 169 | msgid "Error getting table structure of %s" 170 | msgstr "Erro obtendo estrutura da tabela %s" 171 | 172 | #: wp-db-backup.php:753 173 | #, php-format 174 | msgid "Data contents of table %s" 175 | msgstr "Conteúdo da tabela %s" 176 | 177 | #: wp-db-backup.php:823 178 | #, php-format 179 | msgid "End of data contents of table %s" 180 | msgstr "Fim do conteúdo da tabela %s" 181 | 182 | #: wp-db-backup.php:839 183 | msgid "The backup directory is not writeable!" 184 | msgstr "O diretório de backup não pode ser escrito!" 185 | 186 | #: wp-db-backup.php:974 187 | #, php-format 188 | msgid "File not found:%s" 189 | msgstr "Arquivo não encontrado: %s" 190 | 191 | #: wp-db-backup.php:974 192 | msgid "Return to Backup" 193 | msgstr "Voltando para um backup." 194 | 195 | #: wp-db-backup.php:983 196 | #, php-format 197 | msgid "File %s does not exist!" 198 | msgstr "Arquivo %s não existe!" 199 | 200 | #: wp-db-backup.php:990 201 | #, php-format 202 | msgid "" 203 | "Attached to this email is\n" 204 | " %1s\n" 205 | " Size:%2s kilobytes\n" 206 | msgstr "" 207 | "O anexo nesse email é\n" 208 | " %1s\n" 209 | " Tamanho:%2s kilobytes\n" 210 | 211 | #: wp-db-backup.php:991 212 | msgid "Database Backup" 213 | msgstr "Backup da base de dados" 214 | 215 | #: wp-db-backup.php:994 216 | #: wp-db-backup.php:1041 217 | msgid "The following errors were reported:" 218 | msgstr "Os seguintes erros foram reportados:" 219 | 220 | #: wp-db-backup.php:999 221 | msgid "ERROR: The mail application has failed to deliver the backup." 222 | msgstr "ERRO: O email da aplicação falhou ao enviar a backup." 223 | 224 | #: wp-db-backup.php:1016 225 | msgid "Backup Successful" 226 | msgstr "Backup realizado com sucesso" 227 | 228 | #: wp-db-backup.php:1020 229 | #, php-format 230 | msgid "Your backup file: %2s should begin downloading shortly." 231 | msgstr "Seu arquivo de backup: %2s logo iniciará o download." 232 | 233 | #: wp-db-backup.php:1028 234 | #, php-format 235 | msgid "Your backup has been emailed to %s" 236 | msgstr "Seu arquivo de backup foi enviado para o email %s" 237 | 238 | #: wp-db-backup.php:1031 239 | msgid "Your backup file has been saved on the server. If you would like to download it now, right click and select \"Save As\"" 240 | msgstr "Seu arquivo de backup foi gravado no servidor. Se você quiser baixá-lo agora, clique com o botão direito do mouse e selecione \"Salvar Como\"" 241 | 242 | #: wp-db-backup.php:1032 243 | #, php-format 244 | msgid "%s bytes" 245 | msgstr "%s bytes" 246 | 247 | #: wp-db-backup.php:1068 248 | msgid "Scheduled Backup Options Saved!" 249 | msgstr "Opções de agendamento de backup salvas!" 250 | 251 | #: wp-db-backup.php:1095 252 | msgid "WARNING: Your backup directory does NOT exist, and we cannot create it." 253 | msgstr "AVISO: Seu diretório de backup NÂO existe, e nós não podemos criá-lo." 254 | 255 | #: wp-db-backup.php:1096 256 | #, php-format 257 | msgid "Using your FTP client, try to create the backup directory yourself: %s" 258 | msgstr "Usando seu cliente FTP, tente criar seu diretorio de backup: %s" 259 | 260 | #: wp-db-backup.php:1100 261 | #: wp-db-backup.php:1111 262 | msgid "WARNING: Your backup directory is NOT writable! We cannot create the backup files." 263 | msgstr "AVISO: Seu diretório de backup NÂO pode ser escrito! Nós não podemos o backup." 264 | 265 | #: wp-db-backup.php:1101 266 | #, php-format 267 | msgid "Using your FTP client, try to set the backup directory’s write permission to %1$s or %2$s: %3$s" 268 | msgstr "Usando seu cliente FTP, tente fixar o diretorio de backup’s com permissões de escrita para %1$s ou %2$s: %3$s" 269 | 270 | #: wp-db-backup.php:1113 271 | msgid "This problem seems to be caused by your server’s safe_mode file ownership restrictions, which limit what files web applications like WordPress can create." 272 | msgstr "Este problema pode ser causado pelo seu servidor’s safe_mode restrição na propriedade do arquivo, limitar aplicações web como WordPress." 273 | 274 | #: wp-db-backup.php:1115 275 | #, php-format 276 | msgid "You can try to correct this problem by using your FTP client to delete and then re-create the backup directory: %s" 277 | msgstr "Você pode corrigir este problema usando seu cliente FTP para deletar e re-criar o diretório de backup: %s" 278 | 279 | #: wp-db-backup.php:1129 280 | msgid "Tables" 281 | msgstr "Tabelas" 282 | 283 | #: wp-db-backup.php:1131 284 | msgid "These core WordPress tables will always be backed up:" 285 | msgstr "As principais tabelas do WordPress sempre serão suportadas:" 286 | 287 | #: wp-db-backup.php:1136 288 | msgid "Exclude spam comments" 289 | msgstr "Excluir comentários spam" 290 | 291 | #: wp-db-backup.php:1139 292 | msgid "Exclude post revisions" 293 | msgstr "Excluir revisões de post" 294 | 295 | #: wp-db-backup.php:1150 296 | msgid "You may choose to include any of the following tables:" 297 | msgstr "Você pode escolher incluir qualquer uma das seguintes tabelas:" 298 | 299 | #: wp-db-backup.php:1164 300 | msgid "Backup Options" 301 | msgstr "Opções de backup" 302 | 303 | #: wp-db-backup.php:1165 304 | msgid "What to do with the backup file:" 305 | msgstr "O que fazer com o arquivo de backup:" 306 | 307 | #: wp-db-backup.php:1169 308 | msgid "Save to server" 309 | msgstr "Salvar no servidor" 310 | 311 | #: wp-db-backup.php:1174 312 | msgid "Download to your computer" 313 | msgstr "Baixar para seu computador" 314 | 315 | #: wp-db-backup.php:1178 316 | #: wp-db-backup.php:1235 317 | msgid "Email backup to:" 318 | msgstr "Enviar para o email:" 319 | 320 | #: wp-db-backup.php:1185 321 | msgid "Backup now!" 322 | msgstr "Criar backup agora!" 323 | 324 | #: wp-db-backup.php:1188 325 | msgid "WARNING: Your backup directory is NOT writable!" 326 | msgstr "AVISO: Seu diretório de backup NÃO pode ser escrito!" 327 | 328 | #: wp-db-backup.php:1199 329 | msgid "Scheduled Backup" 330 | msgstr "Backup Agendado" 331 | 332 | #: wp-db-backup.php:1206 333 | #, php-format 334 | msgid "Next Backup: %s" 335 | msgstr "Próximo Backup: %s" 336 | 337 | #: wp-db-backup.php:1211 338 | #, php-format 339 | msgid "Last WP-Cron Daily Execution: %s" 340 | msgstr "Última Execução Diária do WP-Cron: %s" 341 | 342 | #: wp-db-backup.php:1212 343 | #, php-format 344 | msgid "Next WP-Cron Daily Execution: %s" 345 | msgstr "Próxima Execução Diária do WP-Cron: %s" 346 | 347 | #: wp-db-backup.php:1217 348 | msgid "Schedule: " 349 | msgstr "Agenda: " 350 | 351 | #: wp-db-backup.php:1220 352 | msgid "None" 353 | msgstr "Nenhum" 354 | 355 | #: wp-db-backup.php:1220 356 | msgid "Daily" 357 | msgstr "Diariamente" 358 | 359 | #: wp-db-backup.php:1243 360 | msgid "Tables to include in the scheduled backup:" 361 | msgstr "Tabelas para incluir no backup agendado:" 362 | 363 | #: wp-db-backup.php:1253 364 | msgid "Schedule backup" 365 | msgstr "Agendar backup" 366 | 367 | #: wp-db-backup.php:1278 368 | msgid "Never" 369 | msgstr "Nunca" 370 | 371 | #: wp-db-backup.php:1283 372 | #, php-format 373 | msgid "%s seconds" 374 | msgstr "%s segundos" 375 | 376 | #: wp-db-backup.php:1316 377 | msgid "Once Weekly" 378 | msgstr "Uma vez por Semana" 379 | 380 | #: wp-db-backup.php:1329 381 | #, php-format 382 | msgid "Your WordPress version, %1s, lacks important security features without which it is unsafe to use the WP-DB-Backup plugin. Hence, this plugin is automatically disabled. Please consider upgrading WordPress to a more recent version." 383 | msgstr "Em sua versão do WordPress, %1s, faltam importantes atualizações de segurança, sem as quais é inseguro utilizar o plugin WP-DB-Backup. A partir daqui, este plugin é desabilitado automaticamente. Por favor, considere atualizar seu WordPress para uma versão mais recente." 384 | 385 | #: wp-db-backup.php:1347 386 | msgid "You are not allowed to perform backups." 387 | msgstr "Você não tem permissão para realizar backups." 388 | 389 | #: wp-db-backup.php:1362 390 | #, php-format 391 | msgid "There appears to be an unauthorized attempt from this site to access your database located at %1s. The attempt has been halted." 392 | msgstr "Está parecendo uma tentativa não autorizada de conseguir acesso a partir deste site ao seu banco de dados localizado em %1s. A tentativa foi encerrada." 393 | 394 | #: wp-db-backup.php:1373 395 | msgid "Cheatin' uh ?" 396 | msgstr "Trapaçeando?? hm !?" 397 | 398 | -------------------------------------------------------------------------------- /languages/wp-db-backup-ru_RU.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deliciousbrains/wp-db-backup/f7f1ed99607d5ddeb1ccb14fb00659ce28073c4d/languages/wp-db-backup-ru_RU.mo -------------------------------------------------------------------------------- /languages/wp-db-backup-ru_RU.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deliciousbrains/wp-db-backup/f7f1ed99607d5ddeb1ccb14fb00659ce28073c4d/languages/wp-db-backup-ru_RU.po -------------------------------------------------------------------------------- /languages/wp-db-backup-sv_SE.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deliciousbrains/wp-db-backup/f7f1ed99607d5ddeb1ccb14fb00659ce28073c4d/languages/wp-db-backup-sv_SE.mo -------------------------------------------------------------------------------- /languages/wp-db-backup-sv_SE.po: -------------------------------------------------------------------------------- 1 | # WP-DB-Backup 2 | # Copyright (C) 2008 Austin Matzko 3 | # This file is distributed under the GPL 2 license. 4 | # 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: wp-db-backup 2.1.7\n" 8 | "Report-Msgid-Bugs-To: \n" 9 | "POT-Creation-Date: 2008-08-15 11:00-0500\n" 10 | "PO-Revision-Date: 2010-01-10 14:44+0100\n" 11 | "Last-Translator: Kristian Pettersson \n" 12 | "MIME-Version: 1.0\n" 13 | "Content-Type: text/plain; charset=utf-8\n" 14 | "Content-Transfer-Encoding: 8bit\n" 15 | "Language-Team: \n" 16 | 17 | #: wp-db-backup.php:181 18 | msgid "Backup Complete!" 19 | msgstr "Säkerhetskopiering klar!" 20 | 21 | #: wp-db-backup.php:211 22 | msgid "Progress" 23 | msgstr "Framsteg" 24 | 25 | #: wp-db-backup.php:213 26 | msgid "DO NOT DO THE FOLLOWING AS IT WILL CAUSE YOUR BACKUP TO FAIL:" 27 | msgstr "GÖR INGET AV FÖLJANDE EFTERSOM ATT SÄKERHETSKOPIERINGEN DÅ KOMMER ATT MISSLYCKAS:" 28 | 29 | #: wp-db-backup.php:216 30 | msgid "Close this browser" 31 | msgstr "Stänga ner den här webbläsaren" 32 | 33 | #: wp-db-backup.php:217 34 | msgid "Reload this page" 35 | msgstr "Uppdatera denna sidan" 36 | 37 | #: wp-db-backup.php:218 38 | msgid "Click the Stop or Back buttons in your browser" 39 | msgstr "Klicka på \"Stopp\" eller \"Tillbaka\" knapparna i din webbläsare" 40 | 41 | #: wp-db-backup.php:220 42 | msgid "Progress:" 43 | msgstr "Framsteg:" 44 | 45 | #: wp-db-backup.php:229 46 | msgid "Navigating away from this page will cause your backup to fail." 47 | msgstr "Om du lämnar denna sida kommer din backup att misslyckas." 48 | 49 | #: wp-db-backup.php:266 50 | #, php-format 51 | msgid "Backup complete, preparing backup for download..." 52 | msgstr "Säkerhetskopiering färdig, förbereder säkerhetskopia för nerladdning..." 53 | 54 | #: wp-db-backup.php:273 55 | #, php-format 56 | msgid "Backup complete, sending backup via email..." 57 | msgstr "Säkerhetskopiering färdig, skicka säkerhetskopia via e-post..." 58 | 59 | #: wp-db-backup.php:280 60 | #, php-format 61 | msgid "Backup complete, download here." 62 | msgstr "Säkerhetskopia färdig, ladda ner här" 63 | 64 | #: wp-db-backup.php:340 65 | msgid "Creating backup file..." 66 | msgstr "Skapar säkerhetskopia..." 67 | 68 | #: wp-db-backup.php:343 69 | #, php-format 70 | msgid "Finished backing up table \\\"%s\\\"." 71 | msgstr "Färdig med säkerhetskopia av tabell \\\"%s\\\"." 72 | 73 | #: wp-db-backup.php:345 74 | #, php-format 75 | msgid "Backing up table \\\"%s\\\"..." 76 | msgstr "Säkerhetskopierar tabell \\\"%s\\\"..." 77 | 78 | #: wp-db-backup.php:352 79 | #: wp-db-backup.php:835 80 | msgid "Could not open the backup file for writing!" 81 | msgstr "Kunde ej skriva till filen med säkerhetskopian!" 82 | 83 | #: wp-db-backup.php:353 84 | msgid "The backup file could not be saved. Please check the permissions for writing to your backup directory and try again." 85 | msgstr "Säkerhetskopian kunde inte sparas. Vänligen kontrollera rättigheterna för att skriva till katalogen med dina säkerhetskopior och försök igen." 86 | 87 | #: wp-db-backup.php:358 88 | #: wp-db-backup.php:844 89 | msgid "WordPress MySQL database backup" 90 | msgstr "Wordpress MySQL databas säkerhetskopiering." 91 | 92 | #: wp-db-backup.php:360 93 | #: wp-db-backup.php:846 94 | #, php-format 95 | msgid "Generated: %s" 96 | msgstr "Skapad: %s" 97 | 98 | #: wp-db-backup.php:361 99 | #: wp-db-backup.php:847 100 | #, php-format 101 | msgid "Hostname: %s" 102 | msgstr "Värdnamn: %s" 103 | 104 | #: wp-db-backup.php:362 105 | #: wp-db-backup.php:848 106 | #, php-format 107 | msgid "Database: %s" 108 | msgstr "Databas: %s" 109 | 110 | #: wp-db-backup.php:370 111 | #: wp-db-backup.php:861 112 | #, php-format 113 | msgid "Table: %s" 114 | msgstr "Tabell: %s" 115 | 116 | #: wp-db-backup.php:377 117 | msgid "The backup directory is not writeable! Please check the permissions for writing to your backup directory and try again." 118 | msgstr "Det går inte att skriva till katalogen för säkerhetskopior! Vänligen kontrollera rättigheterna och försök igen." 119 | 120 | #: wp-db-backup.php:434 121 | msgid "Click and hold down [SHIFT] to toggle multiple checkboxes" 122 | msgstr "Klicka och håll ner [SHIFT] för att markera/avmarkera flera kryssrutor" 123 | 124 | #: wp-db-backup.php:474 125 | msgid "Change" 126 | msgstr "Ändra" 127 | 128 | #: wp-db-backup.php:483 129 | msgid "Save" 130 | msgstr "Spara" 131 | 132 | #: wp-db-backup.php:566 133 | #: wp-db-backup.php:571 134 | #: wp-db-backup.php:1126 135 | msgid "Backup" 136 | msgstr "Säkerhetskopiera" 137 | 138 | #: wp-db-backup.php:646 139 | #: wp-db-backup.php:649 140 | msgid "There was an error writing a line to the backup script:" 141 | msgstr "Ett fel inträffade när en rad skulle skrivas till scriptet för säkerhetskopiering:" 142 | 143 | #: wp-db-backup.php:681 144 | msgid "Subsequent errors have been omitted from this log." 145 | msgstr "Senare fel har utelämnats från denna logg." 146 | 147 | #: wp-db-backup.php:715 148 | msgid "Error getting table details" 149 | msgstr "Ett fel inträffade när detaljer för tabeller skulle hämtas" 150 | 151 | #: wp-db-backup.php:723 152 | #, php-format 153 | msgid "Delete any existing table %s" 154 | msgstr "Ta bort alla befintliga tebeller %s" 155 | 156 | #: wp-db-backup.php:732 157 | #, php-format 158 | msgid "Table structure of table %s" 159 | msgstr "Tabellstruktur för tabellen %s" 160 | 161 | #: wp-db-backup.php:738 162 | #, php-format 163 | msgid "Error with SHOW CREATE TABLE for %s." 164 | msgstr "Fel uppstod med SHOW CREATE TABLE för %s." 165 | 166 | #: wp-db-backup.php:745 167 | #, php-format 168 | msgid "Error getting table structure of %s" 169 | msgstr "Fel, vid begäran av tabellstruktur för %s" 170 | 171 | #: wp-db-backup.php:753 172 | #, php-format 173 | msgid "Data contents of table %s" 174 | msgstr "Innehåll/data i tabellen %s" 175 | 176 | #: wp-db-backup.php:823 177 | #, php-format 178 | msgid "End of data contents of table %s" 179 | msgstr "Slut på datainnehåll för tabell %s" 180 | 181 | #: wp-db-backup.php:839 182 | msgid "The backup directory is not writeable!" 183 | msgstr "Katalogen för säkerhetskopior är ej skrivbar!" 184 | 185 | #: wp-db-backup.php:974 186 | #, php-format 187 | msgid "File not found:%s" 188 | msgstr "Fil %s kunde inte hittas" 189 | 190 | #: wp-db-backup.php:974 191 | msgid "Return to Backup" 192 | msgstr "Återvänd till Säkerhetskopiering" 193 | 194 | #: wp-db-backup.php:983 195 | #, php-format 196 | msgid "File %s does not exist!" 197 | msgstr "Fil %s existerar inte!" 198 | 199 | #: wp-db-backup.php:990 200 | #, php-format 201 | msgid "" 202 | "Attached to this email is\n" 203 | " %1s\n" 204 | " Size:%2s kilobytes\n" 205 | msgstr "" 206 | "Bifogat till detta e-postmeddelande:\n" 207 | " %1s\n" 208 | " Storlek:%2s Kilobyte\n" 209 | 210 | #: wp-db-backup.php:991 211 | msgid "Database Backup" 212 | msgstr "Databas Säkerhetskopiering" 213 | 214 | #: wp-db-backup.php:994 215 | #: wp-db-backup.php:1041 216 | msgid "The following errors were reported:" 217 | msgstr "Följande fel rapporterades:" 218 | 219 | #: wp-db-backup.php:999 220 | msgid "ERROR: The mail application has failed to deliver the backup." 221 | msgstr "FEL: E-post applikationen misslyckades med att leverera säkerhetskopian." 222 | 223 | #: wp-db-backup.php:1016 224 | msgid "Backup Successful" 225 | msgstr "Säkerhetskopieringen lyckades" 226 | 227 | #: wp-db-backup.php:1020 228 | #, php-format 229 | msgid "Your backup file: %2s should begin downloading shortly." 230 | msgstr "Din säkerhetskopia: %2s; kommer att laddas ner inom kort." 231 | 232 | #: wp-db-backup.php:1028 233 | #, php-format 234 | msgid "Your backup has been emailed to %s" 235 | msgstr "Din säkerhetskopia har e-postats till %s" 236 | 237 | #: wp-db-backup.php:1031 238 | msgid "Your backup file has been saved on the server. If you would like to download it now, right click and select \"Save As\"" 239 | msgstr "Din säkerhetskopia har sparats på servern. Om du vill ladda ner den nu, högerklicka och välj \"Spara som\"" 240 | 241 | #: wp-db-backup.php:1032 242 | #, php-format 243 | msgid "%s bytes" 244 | msgstr "%s byte" 245 | 246 | #: wp-db-backup.php:1068 247 | msgid "Scheduled Backup Options Saved!" 248 | msgstr "Inställningar för schemalagd säkerhetskopiering har sparats!" 249 | 250 | #: wp-db-backup.php:1095 251 | msgid "WARNING: Your backup directory does NOT exist, and we cannot create it." 252 | msgstr "VARNING: Katalogen för säkerhetskopior existerar INTE, och vi kan inte skapa den." 253 | 254 | #: wp-db-backup.php:1096 255 | #, php-format 256 | msgid "Using your FTP client, try to create the backup directory yourself: %s" 257 | msgstr "Försök att skapa katalogen %s med hjälp av din ftp-klient." 258 | 259 | #: wp-db-backup.php:1100 260 | #: wp-db-backup.php:1111 261 | msgid "WARNING: Your backup directory is NOT writable! We cannot create the backup files." 262 | msgstr "VARNING: Katalogen för säkerhetskopior går INTE att skriva till! Vi kan inte skapa säkerhetskopiorna." 263 | 264 | #: wp-db-backup.php:1101 265 | #, php-format 266 | msgid "Using your FTP client, try to set the backup directory’s write permission to %1$s or %2$s: %3$s" 267 | msgstr "Använd din FPT klient och försök att andra rättigheterna på katalogen för säkerhetskopior till %1$s eller %2$s: %3$s" 268 | 269 | #: wp-db-backup.php:1113 270 | msgid "This problem seems to be caused by your server’s safe_mode file ownership restrictions, which limit what files web applications like WordPress can create." 271 | msgstr "Det här problemet ser ut att vara orsakat av din server safe_mode fil-ägare rättigheter, som ger en gräns på vad web applikationer som WordPress kan skapa." 272 | 273 | #: wp-db-backup.php:1115 274 | #, php-format 275 | msgid "You can try to correct this problem by using your FTP client to delete and then re-create the backup directory: %s" 276 | msgstr "Du kan försöka rätta till problemet genom att använda din FTP klient för att ta bort och återskapa katalogen för säkerhetskopior: %s" 277 | 278 | #: wp-db-backup.php:1129 279 | msgid "Tables" 280 | msgstr "Tabeller" 281 | 282 | #: wp-db-backup.php:1131 283 | msgid "These core WordPress tables will always be backed up:" 284 | msgstr "Dessa centrala WordPress-tabeller kommer alltid att säkerhetskopieras:" 285 | 286 | #: wp-db-backup.php:1136 287 | msgid "Exclude spam comments" 288 | msgstr "Uteslut spam kommentarer" 289 | 290 | #: wp-db-backup.php:1139 291 | msgid "Exclude post revisions" 292 | msgstr "Uteslut post revideringar" 293 | 294 | #: wp-db-backup.php:1150 295 | msgid "You may choose to include any of the following tables:" 296 | msgstr "Du kan välja att inkludera följande tabeller:" 297 | 298 | #: wp-db-backup.php:1164 299 | msgid "Backup Options" 300 | msgstr "Inställningar för Säkerhetskopiering" 301 | 302 | #: wp-db-backup.php:1165 303 | msgid "What to do with the backup file:" 304 | msgstr "Vad ska göras med säkerhetskopian?" 305 | 306 | #: wp-db-backup.php:1169 307 | msgid "Save to server" 308 | msgstr "Spara till server" 309 | 310 | #: wp-db-backup.php:1174 311 | msgid "Download to your computer" 312 | msgstr "Ladda ner till din dator" 313 | 314 | #: wp-db-backup.php:1178 315 | #: wp-db-backup.php:1235 316 | msgid "Email backup to:" 317 | msgstr "E-posta säkerhetskopian till:" 318 | 319 | #: wp-db-backup.php:1185 320 | msgid "Backup now!" 321 | msgstr "Säkerhetskopiera nu!" 322 | 323 | #: wp-db-backup.php:1188 324 | msgid "WARNING: Your backup directory is NOT writable!" 325 | msgstr "VARNING: Katalogen för säkerhetskopior går INTE att skriva till!" 326 | 327 | #: wp-db-backup.php:1199 328 | msgid "Scheduled Backup" 329 | msgstr "Schemalagd Säkerhetskopiering" 330 | 331 | #: wp-db-backup.php:1206 332 | #, php-format 333 | msgid "Next Backup: %s" 334 | msgstr "Nästa säkerhetskopiering: %s" 335 | 336 | #: wp-db-backup.php:1211 337 | #, php-format 338 | msgid "Last WP-Cron Daily Execution: %s" 339 | msgstr "Senast utförda dagliga WP-Cron: %s" 340 | 341 | #: wp-db-backup.php:1212 342 | #, php-format 343 | msgid "Next WP-Cron Daily Execution: %s" 344 | msgstr "Nästa dagliga WP-Cron utförande: %s" 345 | 346 | #: wp-db-backup.php:1217 347 | msgid "Schedule: " 348 | msgstr "Schema:" 349 | 350 | #: wp-db-backup.php:1220 351 | msgid "None" 352 | msgstr "Inget" 353 | 354 | #: wp-db-backup.php:1220 355 | msgid "Daily" 356 | msgstr "Daglig" 357 | 358 | #: wp-db-backup.php:1243 359 | msgid "Tables to include in the scheduled backup:" 360 | msgstr "Tabeller att inkludera i den schemalagda säkerhetskopieringen:" 361 | 362 | #: wp-db-backup.php:1253 363 | msgid "Schedule backup" 364 | msgstr "Schemalagd säkerhetskopiering" 365 | 366 | #: wp-db-backup.php:1278 367 | msgid "Never" 368 | msgstr "Aldrig" 369 | 370 | #: wp-db-backup.php:1283 371 | #, php-format 372 | msgid "%s seconds" 373 | msgstr "%s sekunder" 374 | 375 | #: wp-db-backup.php:1316 376 | msgid "Once Weekly" 377 | msgstr "En gång per vecka" 378 | 379 | #: wp-db-backup.php:1329 380 | #, php-format 381 | msgid "Your WordPress version, %1s, lacks important security features without which it is unsafe to use the WP-DB-Backup plugin. Hence, this plugin is automatically disabled. Please consider upgrading WordPress to a more recent version." 382 | msgstr "Din WordPress version (%1s) saknar viktiga säkerhets funktioner vilket gör att det ej är säkert att använda WP-DB-Backup plugin. Därför är denna plugin automatiskt inaktiverad. Vänligen överväg att uppgradera WordPress till en nyare version." 383 | 384 | #: wp-db-backup.php:1347 385 | msgid "You are not allowed to perform backups." 386 | msgstr "Du saknar rättigheter för att utföra säkerhetskopiering." 387 | 388 | #: wp-db-backup.php:1362 389 | #, php-format 390 | msgid "There appears to be an unauthorized attempt from this site to access your database located at %1s. The attempt has been halted." 391 | msgstr "Det verkar som att ett obehörigt försök att nå din databas från denna webbplats har uppkommit härifrån: (%1s) Försöket har stoppats." 392 | 393 | #: wp-db-backup.php:1373 394 | msgid "Cheatin' uh ?" 395 | msgstr "Fuskar du?!" 396 | 397 | -------------------------------------------------------------------------------- /languages/wp-db-backup-tr_TR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deliciousbrains/wp-db-backup/f7f1ed99607d5ddeb1ccb14fb00659ce28073c4d/languages/wp-db-backup-tr_TR.mo -------------------------------------------------------------------------------- /languages/wp-db-backup-tr_TR.po: -------------------------------------------------------------------------------- 1 | # WP-DB-Backup 2 | # Copyright (C) 2008 Austin Matzko 3 | # This file is distributed under the GPL 2 license. 4 | # 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: WP-DB Backup 2.1.7\n" 8 | "Report-Msgid-Bugs-To: \n" 9 | "POT-Creation-Date: 2008-08-15 11:00-0500\n" 10 | "PO-Revision-Date: 2008-08-16 03:28+0200\n" 11 | "Last-Translator: İzzet Emre Erkan \n" 12 | "MIME-Version: 1.0\n" 13 | "Content-Type: text/plain; charset=utf-8\n" 14 | "Content-Transfer-Encoding: 8bit\n" 15 | "Language-Team: İzzet Emre Erkan \n" 16 | "X-Poedit-Language: Turkish\n" 17 | "X-Poedit-Country: TURKEY\n" 18 | "X-Poedit-SourceCharset: utf-8\n" 19 | 20 | #: wp-db-backup.php:181 21 | msgid "Backup Complete!" 22 | msgstr "Yedekleme tamamlandı!" 23 | 24 | #: wp-db-backup.php:211 25 | msgid "Progress" 26 | msgstr "İlerleme" 27 | 28 | #: wp-db-backup.php:213 29 | msgid "DO NOT DO THE FOLLOWING AS IT WILL CAUSE YOUR BACKUP TO FAIL:" 30 | msgstr "YEDEKLEME İŞLEMİNİ BOZACAĞINDAN DOLAYI AŞAĞIDAKİLERİ YAPMAYIN:" 31 | 32 | #: wp-db-backup.php:216 33 | msgid "Close this browser" 34 | msgstr "Tarayıcıyı kapatmak" 35 | 36 | #: wp-db-backup.php:217 37 | msgid "Reload this page" 38 | msgstr "Bu sayfayı yenilemek" 39 | 40 | #: wp-db-backup.php:218 41 | msgid "Click the Stop or Back buttons in your browser" 42 | msgstr "Tarayıcınızdaki Dur ya da Geri tuşlarından birine basmak" 43 | 44 | #: wp-db-backup.php:220 45 | msgid "Progress:" 46 | msgstr "İlerleme:" 47 | 48 | #: wp-db-backup.php:229 49 | msgid "Navigating away from this page will cause your backup to fail." 50 | msgstr "Bu sayfadan başka bir sayfaya geçmeniz yedekleme işleminin başarısız olmasına yol açacaktır." 51 | 52 | #: wp-db-backup.php:266 53 | #, php-format 54 | msgid "Backup complete, preparing backup for download..." 55 | msgstr "Yedekleme tamamlandı, yedek dosyası indirilmek için hazırlanıyor..." 56 | 57 | #: wp-db-backup.php:273 58 | #, php-format 59 | msgid "Backup complete, sending backup via email..." 60 | msgstr "Yedekleme tamamlandı, yedek dosyası e-posta ile gönderiliyor..." 61 | 62 | #: wp-db-backup.php:280 63 | #, php-format 64 | msgid "Backup complete, download here." 65 | msgstr "Yedekleme tamamlandı, buradan indirin." 66 | 67 | #: wp-db-backup.php:340 68 | msgid "Creating backup file..." 69 | msgstr "Yedek dosyası yaratılıyor..." 70 | 71 | #: wp-db-backup.php:343 72 | #, php-format 73 | msgid "Finished backing up table \\\"%s\\\"." 74 | msgstr "\\\"%s\\\" tablosunun yedekleme işlemi bitti." 75 | 76 | #: wp-db-backup.php:345 77 | #, php-format 78 | msgid "Backing up table \\\"%s\\\"..." 79 | msgstr "\\\"%s\\\" tablosunun yedeği alınıyor." 80 | 81 | #: wp-db-backup.php:352 82 | #: wp-db-backup.php:835 83 | msgid "Could not open the backup file for writing!" 84 | msgstr "Yedekleme dosyası yazmak için açılamıyor!" 85 | 86 | #: wp-db-backup.php:353 87 | msgid "The backup file could not be saved. Please check the permissions for writing to your backup directory and try again." 88 | msgstr "Yedek dosyası kaydedilemedi. Yedekleme klasörünün yazma haklarını kontrol edin ve işlemi tekrar deneyin." 89 | 90 | #: wp-db-backup.php:358 91 | #: wp-db-backup.php:844 92 | msgid "WordPress MySQL database backup" 93 | msgstr "WordPress MySQL veritabanı yedeklemesi" 94 | 95 | #: wp-db-backup.php:360 96 | #: wp-db-backup.php:846 97 | #, php-format 98 | msgid "Generated: %s" 99 | msgstr "Oluşturulma: %s" 100 | 101 | #: wp-db-backup.php:361 102 | #: wp-db-backup.php:847 103 | #, php-format 104 | msgid "Hostname: %s" 105 | msgstr "Sunucu: %s" 106 | 107 | #: wp-db-backup.php:362 108 | #: wp-db-backup.php:848 109 | #, php-format 110 | msgid "Database: %s" 111 | msgstr "Veritabanı: %s" 112 | 113 | #: wp-db-backup.php:370 114 | #: wp-db-backup.php:861 115 | #, php-format 116 | msgid "Table: %s" 117 | msgstr "Tablo: %s" 118 | 119 | #: wp-db-backup.php:377 120 | msgid "The backup directory is not writeable! Please check the permissions for writing to your backup directory and try again." 121 | msgstr "Yedekleme dizini yazılabilir değil! Yedekleme klasörünün yazma haklarını kontrol edin ve işlemi tekrar deneyin." 122 | 123 | #: wp-db-backup.php:434 124 | msgid "Click and hold down [SHIFT] to toggle multiple checkboxes" 125 | msgstr "[SHIFT] tuşuba basılı tutarak birden çok kutu işaretleyebilirsiniz" 126 | 127 | #: wp-db-backup.php:474 128 | msgid "Change" 129 | msgstr "Değiştir" 130 | 131 | #: wp-db-backup.php:483 132 | msgid "Save" 133 | msgstr "Kaydet" 134 | 135 | #: wp-db-backup.php:566 136 | #: wp-db-backup.php:571 137 | #: wp-db-backup.php:1126 138 | msgid "Backup" 139 | msgstr "Yedekle" 140 | 141 | #: wp-db-backup.php:646 142 | #: wp-db-backup.php:649 143 | msgid "There was an error writing a line to the backup script:" 144 | msgstr "Yedekleme betiğine bir satır yazarken hata oluştu:" 145 | 146 | #: wp-db-backup.php:681 147 | msgid "Subsequent errors have been omitted from this log." 148 | msgstr "Sonraki hatalar kütük dosyasından çıkarıldı." 149 | 150 | #: wp-db-backup.php:715 151 | msgid "Error getting table details" 152 | msgstr "Tablo detaylarını alırken problem oluştu" 153 | 154 | #: wp-db-backup.php:723 155 | #, php-format 156 | msgid "Delete any existing table %s" 157 | msgstr "%s tablosu var ise sil" 158 | 159 | #: wp-db-backup.php:732 160 | #, php-format 161 | msgid "Table structure of table %s" 162 | msgstr "%s tablosu için tablo yapısı" 163 | 164 | #: wp-db-backup.php:738 165 | #, php-format 166 | msgid "Error with SHOW CREATE TABLE for %s." 167 | msgstr "%s tablosu için SHOW CREATE TABLE komutunda hata oluştu" 168 | 169 | #: wp-db-backup.php:745 170 | #, php-format 171 | msgid "Error getting table structure of %s" 172 | msgstr "%s tablosunun yapısı edinilirken hata oluştu" 173 | 174 | #: wp-db-backup.php:753 175 | #, php-format 176 | msgid "Data contents of table %s" 177 | msgstr "%s tablosu için veri" 178 | 179 | #: wp-db-backup.php:823 180 | #, php-format 181 | msgid "End of data contents of table %s" 182 | msgstr "%s tablosu verilerinin sonu" 183 | 184 | #: wp-db-backup.php:839 185 | msgid "The backup directory is not writeable!" 186 | msgstr "Yedekleme dizini yazılabilir değil!" 187 | 188 | #: wp-db-backup.php:974 189 | #, php-format 190 | msgid "File not found:%s" 191 | msgstr "Dosya bulunamadı. %s" 192 | 193 | #: wp-db-backup.php:974 194 | msgid "Return to Backup" 195 | msgstr "Yedeklemeye dön" 196 | 197 | #: wp-db-backup.php:983 198 | #, php-format 199 | msgid "File %s does not exist!" 200 | msgstr "%s dosyası mevcut değil!" 201 | 202 | #: wp-db-backup.php:990 203 | #, php-format 204 | msgid "" 205 | "Attached to this email is\n" 206 | " %1s\n" 207 | " Size:%2s kilobytes\n" 208 | msgstr "" 209 | "Bu e-postaya eklenen dosya\n" 210 | " %1s\n" 211 | " Boyut:%2s kilobayt\n" 212 | 213 | #: wp-db-backup.php:991 214 | msgid "Database Backup" 215 | msgstr "Veritabanı Yedekleme" 216 | 217 | #: wp-db-backup.php:994 218 | #: wp-db-backup.php:1041 219 | msgid "The following errors were reported:" 220 | msgstr "Aşağıdaki hatalar raporlandı:" 221 | 222 | #: wp-db-backup.php:999 223 | msgid "ERROR: The mail application has failed to deliver the backup." 224 | msgstr "HATA: mail uygulaması yedek dosyasının ulaştırılmasında başarısız oldu." 225 | 226 | #: wp-db-backup.php:1016 227 | msgid "Backup Successful" 228 | msgstr "Yedekleme başarılı" 229 | 230 | #: wp-db-backup.php:1020 231 | #, php-format 232 | msgid "Your backup file: %2s should begin downloading shortly." 233 | msgstr "Yedek dosyanız: %2s kısa zamanda indirilmeye başlayacaktır." 234 | 235 | #: wp-db-backup.php:1028 236 | #, php-format 237 | msgid "Your backup has been emailed to %s" 238 | msgstr "Yedek dosyanız %s adresine e-posta ile gönderildi" 239 | 240 | #: wp-db-backup.php:1031 241 | msgid "Your backup file has been saved on the server. If you would like to download it now, right click and select \"Save As\"" 242 | msgstr "Yedek dosyanız sunucu üzerinde kaydedildi. Şu an dosyayı indirmek isterseniz sağ tuşla tıklayın ve \"Farklı Kaydet\" seçeneğini seçin" 243 | 244 | #: wp-db-backup.php:1032 245 | #, php-format 246 | msgid "%s bytes" 247 | msgstr "%s bayt" 248 | 249 | #: wp-db-backup.php:1068 250 | msgid "Scheduled Backup Options Saved!" 251 | msgstr "Programlanmış yedek seçenekleri kaydedildi!" 252 | 253 | #: wp-db-backup.php:1095 254 | msgid "WARNING: Your backup directory does NOT exist, and we cannot create it." 255 | msgstr "UYARI: Yedekleme dizininiz MEVCUT DEĞİL ve biz de bu dizini yaratamıyoruz." 256 | 257 | #: wp-db-backup.php:1096 258 | #, php-format 259 | msgid "Using your FTP client, try to create the backup directory yourself: %s" 260 | msgstr "Bir FTP istemcisi kullanarak bu dizini kendiniz yaratmayı deneyin: %s" 261 | 262 | #: wp-db-backup.php:1100 263 | #: wp-db-backup.php:1111 264 | msgid "WARNING: Your backup directory is NOT writable! We cannot create the backup files." 265 | msgstr "UYARI: yedekleme dizininiz yazılabilir DEĞİL. Yedek dosyalarını yaratamıyoruz." 266 | 267 | #: wp-db-backup.php:1101 268 | #, php-format 269 | msgid "Using your FTP client, try to set the backup directory’s write permission to %1$s or %2$s: %3$s" 270 | msgstr "FTP istemcinizi kullanarak yedekleme dizininin yazma yetkilerini şu şekilde değiştirin %1$s ya da %2$s: %3$s" 271 | 272 | #: wp-db-backup.php:1113 273 | msgid "This problem seems to be caused by your server’s safe_mode file ownership restrictions, which limit what files web applications like WordPress can create." 274 | msgstr "Bu problem sunucunuzun safe_mode (güvenli kip) dosya sahipliği engellemelerinden -ki bu engelleme WordPress gibi uygulamaların yaratabileceği dosyaları sınırlandırır- dolayı oluşmuş gözüküyor." 275 | 276 | #: wp-db-backup.php:1115 277 | #, php-format 278 | msgid "You can try to correct this problem by using your FTP client to delete and then re-create the backup directory: %s" 279 | msgstr "FTP istemciniz ile bağlanıp yedekleme dizinini silip tekrar oluşturarak bu problemi giderebilirsiniz: %s" 280 | 281 | #: wp-db-backup.php:1129 282 | msgid "Tables" 283 | msgstr "Tablolar" 284 | 285 | #: wp-db-backup.php:1131 286 | msgid "These core WordPress tables will always be backed up:" 287 | msgstr "Bu kök WordPress tabloları her zaman yedeklenecektir:" 288 | 289 | #: wp-db-backup.php:1136 290 | msgid "Exclude spam comments" 291 | msgstr "İstenmeyen yorumları hariç tut" 292 | 293 | #: wp-db-backup.php:1139 294 | msgid "Exclude post revisions" 295 | msgstr "Yazı sürümlerini hariç tut" 296 | 297 | #: wp-db-backup.php:1150 298 | msgid "You may choose to include any of the following tables:" 299 | msgstr "Aşağıdaki tabloları eklemek isteyebilirsiniz:" 300 | 301 | #: wp-db-backup.php:1164 302 | msgid "Backup Options" 303 | msgstr "Yedekleme seçenekleri" 304 | 305 | #: wp-db-backup.php:1165 306 | msgid "What to do with the backup file:" 307 | msgstr "Yedek dosyası ile ne yapılacak:" 308 | 309 | #: wp-db-backup.php:1169 310 | msgid "Save to server" 311 | msgstr "Sunucuya kaydedin" 312 | 313 | #: wp-db-backup.php:1174 314 | msgid "Download to your computer" 315 | msgstr "Bilgisayarınıza indirin" 316 | 317 | #: wp-db-backup.php:1178 318 | #: wp-db-backup.php:1235 319 | msgid "Email backup to:" 320 | msgstr "Şu adrese e-posta ile gönderin:" 321 | 322 | #: wp-db-backup.php:1185 323 | msgid "Backup now!" 324 | msgstr "Şimdi yedekle!" 325 | 326 | #: wp-db-backup.php:1188 327 | msgid "WARNING: Your backup directory is NOT writable!" 328 | msgstr "UYARI: Yedekleme dizininiz yazılabilir DEĞİL!" 329 | 330 | #: wp-db-backup.php:1199 331 | msgid "Scheduled Backup" 332 | msgstr "Programlanmış yedek" 333 | 334 | #: wp-db-backup.php:1206 335 | #, php-format 336 | msgid "Next Backup: %s" 337 | msgstr "Sonraki yedekleme: %s" 338 | 339 | #: wp-db-backup.php:1211 340 | #, php-format 341 | msgid "Last WP-Cron Daily Execution: %s" 342 | msgstr "En son günlük WP-Cron çalışma zamanı: %s" 343 | 344 | #: wp-db-backup.php:1212 345 | #, php-format 346 | msgid "Next WP-Cron Daily Execution: %s" 347 | msgstr "Bir sonraki günlük WP-Cron çalışma zamanı: %s" 348 | 349 | #: wp-db-backup.php:1217 350 | msgid "Schedule: " 351 | msgstr "Programla:" 352 | 353 | #: wp-db-backup.php:1220 354 | msgid "None" 355 | msgstr "Hiçbiri" 356 | 357 | #: wp-db-backup.php:1220 358 | msgid "Daily" 359 | msgstr "Günlük" 360 | 361 | #: wp-db-backup.php:1243 362 | msgid "Tables to include in the scheduled backup:" 363 | msgstr "Programlanmış yedeklemeye dahil edilecek tablolar:" 364 | 365 | #: wp-db-backup.php:1253 366 | msgid "Schedule backup" 367 | msgstr "Yedekleme programla" 368 | 369 | #: wp-db-backup.php:1278 370 | msgid "Never" 371 | msgstr "Hiç" 372 | 373 | #: wp-db-backup.php:1283 374 | #, php-format 375 | msgid "%s seconds" 376 | msgstr "%s saniye" 377 | 378 | #: wp-db-backup.php:1316 379 | msgid "Once Weekly" 380 | msgstr "Haftada bir" 381 | 382 | #: wp-db-backup.php:1329 383 | #, php-format 384 | msgid "Your WordPress version, %1s, lacks important security features without which it is unsafe to use the WP-DB-Backup plugin. Hence, this plugin is automatically disabled. Please consider upgrading WordPress to a more recent version." 385 | msgstr "WordPress sürümünüz, %1s, WP-DB-Backup eklentisinin çalışabilmesi için gerekli olan güvenlik özelliklerini barındırmıyor. Dolayısıyla eklenti otomatik olarak etkisizleştirildi. Lütfen WordPress kurulumunuzu daha güncel bir sürüme yükseltmeyi düşünün." 386 | 387 | #: wp-db-backup.php:1347 388 | msgid "You are not allowed to perform backups." 389 | msgstr "Yedekleme için yetkili değilsiniz." 390 | 391 | #: wp-db-backup.php:1362 392 | #, php-format 393 | msgid "There appears to be an unauthorized attempt from this site to access your database located at %1s. The attempt has been halted." 394 | msgstr "%1s konumunda bulunan veritabanınıza yetkisiz erişim denemesi gerçekleşmiş. İlgili deneme engellendi." 395 | 396 | #: wp-db-backup.php:1373 397 | msgid "Cheatin' uh ?" 398 | msgstr "Hile mi yapıyorsun?" 399 | 400 | -------------------------------------------------------------------------------- /languages/wp-db-backup-zh_CN.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deliciousbrains/wp-db-backup/f7f1ed99607d5ddeb1ccb14fb00659ce28073c4d/languages/wp-db-backup-zh_CN.mo -------------------------------------------------------------------------------- /languages/wp-db-backup-zh_CN.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: wp-db-backup 2.1.7\n" 4 | "POT-Creation-Date: \n" 5 | "PO-Revision-Date: 2008-08-17 00:50+0800\n" 6 | "Last-Translator: paopao \n" 7 | "Language-Team: WordPress 中文团队 - paopao (site: www.paopao.name, mail:wuxipaopao@gmail.com) \n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Type: text/plain; charset=utf-8\n" 10 | "Content-Transfer-Encoding: 8bit\n" 11 | "X-Poedit-KeywordsList: _e;__\n" 12 | "X-Poedit-Basepath: .\n" 13 | "X-Poedit-Language: Chinese\n" 14 | "X-Poedit-Country: CHINA\n" 15 | "X-Poedit-SearchPath-0: .\n" 16 | 17 | #: wp-db-backup.php:181 18 | msgid "Backup Complete!" 19 | msgstr "备份成功!" 20 | 21 | #: wp-db-backup.php:211 22 | msgid "Progress" 23 | msgstr "备份中" 24 | 25 | #: wp-db-backup.php:213 26 | msgid "DO NOT DO THE FOLLOWING AS IT WILL CAUSE YOUR BACKUP TO FAIL:" 27 | msgstr "请不要进行以下操作,否则会导致备份失败:" 28 | 29 | #: wp-db-backup.php:216 30 | msgid "Close this browser" 31 | msgstr "关闭这个页面" 32 | 33 | #: wp-db-backup.php:217 34 | msgid "Reload this page" 35 | msgstr "刷新这个页面" 36 | 37 | #: wp-db-backup.php:218 38 | msgid "Click the Stop or Back buttons in your browser" 39 | msgstr "点击浏览器的停止或者后退按钮" 40 | 41 | #: wp-db-backup.php:220 42 | msgid "Progress:" 43 | msgstr "备份进度:" 44 | 45 | #: wp-db-backup.php:229 46 | msgid "Navigating away from this page will cause your backup to fail." 47 | msgstr "关闭本页面会导致数据库备份失败。" 48 | 49 | #: wp-db-backup.php:266 50 | #, php-format 51 | msgid "Backup complete, preparing backup for download..." 52 | msgstr "备份成功,正在准备备份文件以供下载……" 53 | 54 | #: wp-db-backup.php:273 55 | #, php-format 56 | msgid "Backup complete, sending backup via email..." 57 | msgstr "备份成功,正在通过电子邮件发送备份文件……" 58 | 59 | #: wp-db-backup.php:280 60 | #, php-format 61 | msgid "Backup complete, download here." 62 | msgstr "备份成功,在此处下载。" 63 | 64 | #: wp-db-backup.php:340 65 | msgid "Creating backup file..." 66 | msgstr "创建备份文件……" 67 | 68 | #: wp-db-backup.php:343 69 | #, php-format 70 | msgid "Finished backing up table \\\"%s\\\"." 71 | msgstr "数据表\\\"%s\\\"备份完成。" 72 | 73 | #: wp-db-backup.php:345 74 | #, php-format 75 | msgid "Backing up table \\\"%s\\\"..." 76 | msgstr "正在备份数据表\\\"%s\\\"……" 77 | 78 | #: wp-db-backup.php:352 79 | #: wp-db-backup.php:835 80 | msgid "Could not open the backup file for writing!" 81 | msgstr "无法以写方式打开备份文件!" 82 | 83 | #: wp-db-backup.php:353 84 | msgid "The backup file could not be saved. Please check the permissions for writing to your backup directory and try again." 85 | msgstr "无法保存备份文件。请检查你的备份文件夹的写权限设置并重试。" 86 | 87 | #: wp-db-backup.php:358 88 | #: wp-db-backup.php:844 89 | msgid "WordPress MySQL database backup" 90 | msgstr "WordPress MySQL 数据库备份" 91 | 92 | #: wp-db-backup.php:360 93 | #: wp-db-backup.php:846 94 | #, php-format 95 | msgid "Generated: %s" 96 | msgstr "创建于:%s" 97 | 98 | #: wp-db-backup.php:361 99 | #: wp-db-backup.php:847 100 | #, php-format 101 | msgid "Hostname: %s" 102 | msgstr "主机名:%s" 103 | 104 | #: wp-db-backup.php:362 105 | #: wp-db-backup.php:848 106 | #, php-format 107 | msgid "Database: %s" 108 | msgstr "数据库:%s" 109 | 110 | #: wp-db-backup.php:370 111 | #: wp-db-backup.php:861 112 | #, php-format 113 | msgid "Table: %s" 114 | msgstr "数据表:%s" 115 | 116 | #: wp-db-backup.php:377 117 | msgid "The backup directory is not writeable! Please check the permissions for writing to your backup directory and try again." 118 | msgstr "备份文件夹无法写入!请检查你的备份文件夹的写权限设置并重试。" 119 | 120 | #: wp-db-backup.php:434 121 | msgid "Click and hold down [SHIFT] to toggle multiple checkboxes" 122 | msgstr "按住 [SHIFT] 的同时点击可以选中多个复选框" 123 | 124 | #: wp-db-backup.php:474 125 | msgid "Change" 126 | msgstr "更改" 127 | 128 | #: wp-db-backup.php:483 129 | msgid "Save" 130 | msgstr "保存" 131 | 132 | #: wp-db-backup.php:566 133 | #: wp-db-backup.php:571 134 | #: wp-db-backup.php:1126 135 | msgid "Backup" 136 | msgstr "备份" 137 | 138 | #: wp-db-backup.php:646 139 | #: wp-db-backup.php:649 140 | msgid "There was an error writing a line to the backup script:" 141 | msgstr "在向备份脚本写入一行时发生错误:" 142 | 143 | #: wp-db-backup.php:681 144 | msgid "Subsequent errors have been omitted from this log." 145 | msgstr "之后的错误已经被省略。" 146 | 147 | #: wp-db-backup.php:715 148 | msgid "Error getting table details" 149 | msgstr "无法获取数据表的详细信息" 150 | 151 | #: wp-db-backup.php:723 152 | #, php-format 153 | msgid "Delete any existing table %s" 154 | msgstr "删除任何存在的 %s 数据表" 155 | 156 | #: wp-db-backup.php:732 157 | #, php-format 158 | msgid "Table structure of table %s" 159 | msgstr " %s 数据表的结构" 160 | 161 | #: wp-db-backup.php:738 162 | #, php-format 163 | msgid "Error with SHOW CREATE TABLE for %s." 164 | msgstr "无法显示创建的 %s 数据表" 165 | 166 | #: wp-db-backup.php:745 167 | #, php-format 168 | msgid "Error getting table structure of %s" 169 | msgstr "无法获取 %s 的数据表结构" 170 | 171 | #: wp-db-backup.php:753 172 | #, php-format 173 | msgid "Data contents of table %s" 174 | msgstr " %s 数据表的内容" 175 | 176 | #: wp-db-backup.php:823 177 | #, php-format 178 | msgid "End of data contents of table %s" 179 | msgstr " %s 数据表的内容结束" 180 | 181 | #: wp-db-backup.php:839 182 | msgid "The backup directory is not writeable!" 183 | msgstr "无法写入备份文件夹!" 184 | 185 | #: wp-db-backup.php:974 186 | #, php-format 187 | msgid "File not found:%s" 188 | msgstr "无法找到文件:%s" 189 | 190 | #: wp-db-backup.php:974 191 | msgid "Return to Backup" 192 | msgstr "返回备份页面" 193 | 194 | #: wp-db-backup.php:983 195 | #, php-format 196 | msgid "File %s does not exist!" 197 | msgstr "文件 %s 不存在!" 198 | 199 | #: wp-db-backup.php:990 200 | #, php-format 201 | msgid "" 202 | "Attached to this email is\n" 203 | " %1s\n" 204 | " Size:%2s kilobytes\n" 205 | msgstr "" 206 | "该电子邮件的附件\n" 207 | " %1s\n" 208 | " 大小:%2s KB\n" 209 | 210 | #: wp-db-backup.php:991 211 | msgid "Database Backup" 212 | msgstr "数据库备份" 213 | 214 | #: wp-db-backup.php:994 215 | #: wp-db-backup.php:1041 216 | msgid "The following errors were reported:" 217 | msgstr "发现以下错误:" 218 | 219 | #: wp-db-backup.php:999 220 | msgid "ERROR: The mail application has failed to deliver the backup." 221 | msgstr "错误:通过电子邮件发送备份文件失败。" 222 | 223 | #: wp-db-backup.php:1016 224 | msgid "Backup Successful" 225 | msgstr "备份成功" 226 | 227 | #: wp-db-backup.php:1020 228 | #, php-format 229 | msgid "Your backup file: %2s should begin downloading shortly." 230 | msgstr "即将开始下载备份文件: %2s 。" 231 | 232 | #: wp-db-backup.php:1028 233 | #, php-format 234 | msgid "Your backup has been emailed to %s" 235 | msgstr "你的备份文件已经通过电子邮件发送至 %s" 236 | 237 | #: wp-db-backup.php:1031 238 | msgid "Your backup file has been saved on the server. If you would like to download it now, right click and select \"Save As\"" 239 | msgstr "你的备份文件已经被保存至服务器。如果希望现在下载,请右击并选择 \"另存为\"" 240 | 241 | #: wp-db-backup.php:1032 242 | #, php-format 243 | msgid "%s bytes" 244 | msgstr "%s 字节" 245 | 246 | #: wp-db-backup.php:1068 247 | msgid "Scheduled Backup Options Saved!" 248 | msgstr "定时备份设置已保存!" 249 | 250 | #: wp-db-backup.php:1095 251 | msgid "WARNING: Your backup directory does NOT exist, and we cannot create it." 252 | msgstr "警告: 备份文件夹不存在,而且无法自动创建。" 253 | 254 | #: wp-db-backup.php:1096 255 | #, php-format 256 | msgid "Using your FTP client, try to create the backup directory yourself: %s" 257 | msgstr "请使用你的FTP客户端来自行创建如下的备份目录:%s" 258 | 259 | #: wp-db-backup.php:1100 260 | #: wp-db-backup.php:1111 261 | msgid "WARNING: Your backup directory is NOT writable! We cannot create the backup files." 262 | msgstr "警告: 备份文件夹无法写入!无法创建备份文件。" 263 | 264 | #: wp-db-backup.php:1101 265 | #, php-format 266 | msgid "Using your FTP client, try to set the backup directory’s write permission to %1$s or %2$s: %3$s" 267 | msgstr "请使用你的FTP客户端来设置备份目录的权限为 %1$s 或者 %2$s: %3$s" 268 | 269 | #: wp-db-backup.php:1113 270 | msgid "This problem seems to be caused by your server’s safe_mode file ownership restrictions, which limit what files web applications like WordPress can create." 271 | msgstr "这个问题可能是由于当前服务器的 safe_mode 文件的所有权限制引起的,这个文件限制了WordPress之类的网络应用程序创建文件的权限。" 272 | 273 | #: wp-db-backup.php:1115 274 | #, php-format 275 | msgid "You can try to correct this problem by using your FTP client to delete and then re-create the backup directory: %s" 276 | msgstr "请使用你的FTP客户端来删除并重新创建如下的备份目录:%s ,这样可能有助于解决当前的问题" 277 | 278 | #: wp-db-backup.php:1129 279 | msgid "Tables" 280 | msgstr "数据表" 281 | 282 | #: wp-db-backup.php:1131 283 | msgid "These core WordPress tables will always be backed up:" 284 | msgstr "以下 WordPress 核心数据表会默认备份:" 285 | 286 | #: wp-db-backup.php:1136 287 | msgid "Exclude spam comments" 288 | msgstr "不包括垃圾评论" 289 | 290 | #: wp-db-backup.php:1139 291 | msgid "Exclude post revisions" 292 | msgstr "不包括日志修订" 293 | 294 | #: wp-db-backup.php:1150 295 | msgid "You may choose to include any of the following tables:" 296 | msgstr "你可以选择备份以下的任何数据表:" 297 | 298 | #: wp-db-backup.php:1164 299 | msgid "Backup Options" 300 | msgstr "备份选项" 301 | 302 | #: wp-db-backup.php:1165 303 | msgid "What to do with the backup file:" 304 | msgstr "怎样处理备份文件:" 305 | 306 | #: wp-db-backup.php:1169 307 | msgid "Save to server" 308 | msgstr "保存至服务器" 309 | 310 | #: wp-db-backup.php:1174 311 | msgid "Download to your computer" 312 | msgstr "下载至本地电脑" 313 | 314 | #: wp-db-backup.php:1178 315 | #: wp-db-backup.php:1235 316 | msgid "Email backup to:" 317 | msgstr "通过电子邮件发送备份至:" 318 | 319 | #: wp-db-backup.php:1185 320 | msgid "Backup now!" 321 | msgstr "立即备份!" 322 | 323 | #: wp-db-backup.php:1188 324 | msgid "WARNING: Your backup directory is NOT writable!" 325 | msgstr "警告:备份文件夹无法写入!" 326 | 327 | #: wp-db-backup.php:1199 328 | msgid "Scheduled Backup" 329 | msgstr "定时备份" 330 | 331 | #: wp-db-backup.php:1206 332 | #, php-format 333 | msgid "Next Backup: %s" 334 | msgstr "下一次备份时间:%s" 335 | 336 | #: wp-db-backup.php:1211 337 | #, php-format 338 | msgid "Last WP-Cron Daily Execution: %s" 339 | msgstr "上一次 WP-Cron 每日执行时间:%s" 340 | 341 | #: wp-db-backup.php:1212 342 | #, php-format 343 | msgid "Next WP-Cron Daily Execution: %s" 344 | msgstr "下一次 WP-Cron 每日备份时间:%s" 345 | 346 | #: wp-db-backup.php:1217 347 | msgid "Schedule: " 348 | msgstr "定时任务:" 349 | 350 | #: wp-db-backup.php:1220 351 | msgid "None" 352 | msgstr "无" 353 | 354 | #: wp-db-backup.php:1220 355 | msgid "Daily" 356 | msgstr "每日" 357 | 358 | #: wp-db-backup.php:1243 359 | msgid "Tables to include in the scheduled backup:" 360 | msgstr "定时备份包含的数据表:" 361 | 362 | #: wp-db-backup.php:1253 363 | #, fuzzy 364 | msgid "Schedule backup" 365 | msgstr "定时备份" 366 | 367 | #: wp-db-backup.php:1278 368 | msgid "Never" 369 | msgstr "从不" 370 | 371 | #: wp-db-backup.php:1283 372 | #, php-format 373 | msgid "%s seconds" 374 | msgstr "%s 秒" 375 | 376 | #: wp-db-backup.php:1316 377 | msgid "Once Weekly" 378 | msgstr "每周" 379 | 380 | #: wp-db-backup.php:1329 381 | #, php-format 382 | msgid "Your WordPress version, %1s, lacks important security features without which it is unsafe to use the WP-DB-Backup plugin. Hence, this plugin is automatically disabled. Please consider upgrading WordPress to a more recent version." 383 | msgstr "你的 %1s 版 WordPress 缺少一些重要的安全特性,由于在该版本上运行 WP-DB-Backup 插件极不安全,我们已经自动禁用了该插件。请升级 WordPress 至较新的版本。" 384 | 385 | #: wp-db-backup.php:1347 386 | msgid "You are not allowed to perform backups." 387 | msgstr "你没有进行备份的权限。" 388 | 389 | #: wp-db-backup.php:1362 390 | #, php-format 391 | msgid "There appears to be an unauthorized attempt from this site to access your database located at %1s. The attempt has been halted." 392 | msgstr "该站点尝试未授权地访问位于 %1s 的你的数据库。访问已经被终止。" 393 | 394 | #: wp-db-backup.php:1373 395 | msgid "Cheatin' uh ?" 396 | msgstr "想骗我吗?" 397 | 398 | -------------------------------------------------------------------------------- /languages/wp-db-backup.pot: -------------------------------------------------------------------------------- 1 | # WP-DB-Backup 2 | # Copyright (C) 2010 Austin Matzko 3 | # This file is distributed under the GPL 2 license. 4 | # 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: PACKAGE VERSION\n" 8 | "Report-Msgid-Bugs-To: \n" 9 | "POT-Creation-Date: 2010-12-21 15:38-0600\n" 10 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 11 | "Last-Translator: Austin Matzko austin at pressedcode dot com\n" 12 | "Language-Team: LANGUAGE \n" 13 | "MIME-Version: 1.0\n" 14 | "Content-Type: text/plain; charset=CHARSET\n" 15 | "Content-Transfer-Encoding: 8bit\n" 16 | 17 | #: wp-db-backup.php:177 wp-db-backup.php:285 wp-db-backup.php:302 18 | msgid "Backup Complete!" 19 | msgstr "" 20 | 21 | #: wp-db-backup.php:220 22 | msgid "http://codex.wordpress.org/WordPress_Backups" 23 | msgstr "" 24 | 25 | #: wp-db-backup.php:221 26 | #, php-format 27 | msgid "" 28 | "Click here to back up your database " 29 | "using the WordPress Database Backup plugin. Note: WordPress " 30 | "Database Backup does not back up your files, just your database." 31 | msgstr "" 32 | 33 | #: wp-db-backup.php:230 34 | msgid "Progress" 35 | msgstr "" 36 | 37 | #: wp-db-backup.php:232 38 | msgid "DO NOT DO THE FOLLOWING AS IT WILL CAUSE YOUR BACKUP TO FAIL:" 39 | msgstr "" 40 | 41 | #: wp-db-backup.php:235 42 | msgid "Close this browser" 43 | msgstr "" 44 | 45 | #: wp-db-backup.php:236 46 | msgid "Reload this page" 47 | msgstr "" 48 | 49 | #: wp-db-backup.php:237 50 | msgid "Click the Stop or Back buttons in your browser" 51 | msgstr "" 52 | 53 | #: wp-db-backup.php:239 54 | msgid "Progress:" 55 | msgstr "" 56 | 57 | #: wp-db-backup.php:248 58 | msgid "Navigating away from this page will cause your backup to fail." 59 | msgstr "" 60 | 61 | #: wp-db-backup.php:295 wp-db-backup.php:1098 62 | #, php-format 63 | msgid "Your backup has been emailed to %s" 64 | msgstr "" 65 | 66 | #: wp-db-backup.php:362 67 | msgid "Creating backup file..." 68 | msgstr "" 69 | 70 | #: wp-db-backup.php:365 71 | #, php-format 72 | msgid "Finished backing up table \\\"%s\\\"." 73 | msgstr "" 74 | 75 | #: wp-db-backup.php:367 76 | #, php-format 77 | msgid "Backing up table \\\"%s\\\"..." 78 | msgstr "" 79 | 80 | #: wp-db-backup.php:374 wp-db-backup.php:881 81 | msgid "Could not open the backup file for writing!" 82 | msgstr "" 83 | 84 | #: wp-db-backup.php:375 85 | msgid "" 86 | "The backup file could not be saved. Please check the permissions for " 87 | "writing to your backup directory and try again." 88 | msgstr "" 89 | 90 | #: wp-db-backup.php:380 wp-db-backup.php:890 91 | msgid "WordPress MySQL database backup" 92 | msgstr "" 93 | 94 | #: wp-db-backup.php:382 wp-db-backup.php:892 95 | #, php-format 96 | msgid "Generated: %s" 97 | msgstr "" 98 | 99 | #: wp-db-backup.php:383 wp-db-backup.php:893 100 | #, php-format 101 | msgid "Hostname: %s" 102 | msgstr "" 103 | 104 | #: wp-db-backup.php:384 wp-db-backup.php:894 105 | #, php-format 106 | msgid "Database: %s" 107 | msgstr "" 108 | 109 | #: wp-db-backup.php:392 wp-db-backup.php:907 110 | #, php-format 111 | msgid "Table: %s" 112 | msgstr "" 113 | 114 | #: wp-db-backup.php:399 115 | msgid "" 116 | "The backup directory is not writeable! Please check the permissions for " 117 | "writing to your backup directory and try again." 118 | msgstr "" 119 | 120 | #: wp-db-backup.php:458 121 | msgid "Click and hold down [SHIFT] to toggle multiple checkboxes" 122 | msgstr "" 123 | 124 | #: wp-db-backup.php:502 125 | msgid "Change" 126 | msgstr "" 127 | 128 | #: wp-db-backup.php:511 129 | msgid "Save" 130 | msgstr "" 131 | 132 | #: wp-db-backup.php:605 wp-db-backup.php:614 wp-db-backup.php:1196 133 | msgid "Backup" 134 | msgstr "" 135 | 136 | #: wp-db-backup.php:623 137 | msgid "FAQ" 138 | msgstr "" 139 | 140 | #: wp-db-backup.php:624 141 | msgid "WP-DB-Backup Support Forum" 142 | msgstr "" 143 | 144 | #: wp-db-backup.php:694 145 | msgid "There was an error writing a line to the backup script:" 146 | msgstr "" 147 | 148 | #: wp-db-backup.php:727 149 | msgid "Subsequent errors have been omitted from this log." 150 | msgstr "" 151 | 152 | #: wp-db-backup.php:761 153 | msgid "Error getting table details" 154 | msgstr "" 155 | 156 | #: wp-db-backup.php:769 157 | #, php-format 158 | msgid "Delete any existing table %s" 159 | msgstr "" 160 | 161 | #: wp-db-backup.php:778 162 | #, php-format 163 | msgid "Table structure of table %s" 164 | msgstr "" 165 | 166 | #: wp-db-backup.php:784 167 | #, php-format 168 | msgid "Error with SHOW CREATE TABLE for %s." 169 | msgstr "" 170 | 171 | #: wp-db-backup.php:791 172 | #, php-format 173 | msgid "Error getting table structure of %s" 174 | msgstr "" 175 | 176 | #: wp-db-backup.php:799 177 | #, php-format 178 | msgid "Data contents of table %s" 179 | msgstr "" 180 | 181 | #: wp-db-backup.php:869 182 | #, php-format 183 | msgid "End of data contents of table %s" 184 | msgstr "" 185 | 186 | #: wp-db-backup.php:885 187 | msgid "The backup directory is not writeable!" 188 | msgstr "" 189 | 190 | #: wp-db-backup.php:1044 191 | #, php-format 192 | msgid "File not found:%s" 193 | msgstr "" 194 | 195 | #: wp-db-backup.php:1044 196 | msgid "Return to Backup" 197 | msgstr "" 198 | 199 | #: wp-db-backup.php:1053 200 | #, php-format 201 | msgid "File %s does not exist!" 202 | msgstr "" 203 | 204 | #: wp-db-backup.php:1060 205 | #, php-format 206 | msgid "" 207 | "Attached to this email is\n" 208 | " %1s\n" 209 | " Size:%2s kilobytes\n" 210 | msgstr "" 211 | 212 | #: wp-db-backup.php:1061 213 | msgid "Database Backup" 214 | msgstr "" 215 | 216 | #: wp-db-backup.php:1064 wp-db-backup.php:1111 217 | msgid "The following errors were reported:" 218 | msgstr "" 219 | 220 | #: wp-db-backup.php:1069 221 | msgid "ERROR: The mail application has failed to deliver the backup." 222 | msgstr "" 223 | 224 | #: wp-db-backup.php:1086 225 | msgid "Backup Successful" 226 | msgstr "" 227 | 228 | #: wp-db-backup.php:1090 229 | #, php-format 230 | msgid "" 231 | "Your backup file: %2s should begin downloading shortly." 232 | msgstr "" 233 | 234 | #: wp-db-backup.php:1101 235 | msgid "" 236 | "Your backup file has been saved on the server. If you would like to download " 237 | "it now, right click and select \"Save As\"" 238 | msgstr "" 239 | 240 | #: wp-db-backup.php:1102 241 | #, php-format 242 | msgid "%s bytes" 243 | msgstr "" 244 | 245 | #: wp-db-backup.php:1138 246 | msgid "Scheduled Backup Options Saved!" 247 | msgstr "" 248 | 249 | #: wp-db-backup.php:1165 250 | msgid "" 251 | "WARNING: Your backup directory does NOT exist, and we " 252 | "cannot create it." 253 | msgstr "" 254 | 255 | #: wp-db-backup.php:1166 256 | #, php-format 257 | msgid "Using your FTP client, try to create the backup directory yourself: %s" 258 | msgstr "" 259 | 260 | #: wp-db-backup.php:1170 wp-db-backup.php:1181 261 | msgid "" 262 | "WARNING: Your backup directory is NOT writable! We cannot " 263 | "create the backup files." 264 | msgstr "" 265 | 266 | #: wp-db-backup.php:1171 267 | #, php-format 268 | msgid "" 269 | "Using your FTP client, try to set the backup directory’s write " 270 | "permission to %1$s or %2$s: %3$s" 271 | msgstr "" 272 | 273 | #: wp-db-backup.php:1183 274 | msgid "" 275 | "This problem seems to be caused by your server’s safe_mode file ownership restrictions, which limit what files web applications " 277 | "like WordPress can create." 278 | msgstr "" 279 | 280 | #: wp-db-backup.php:1185 281 | #, php-format 282 | msgid "" 283 | "You can try to correct this problem by using your FTP client to delete and " 284 | "then re-create the backup directory: %s" 285 | msgstr "" 286 | 287 | #: wp-db-backup.php:1199 288 | msgid "Tables" 289 | msgstr "" 290 | 291 | #: wp-db-backup.php:1201 292 | msgid "These core WordPress tables will always be backed up:" 293 | msgstr "" 294 | 295 | #: wp-db-backup.php:1206 296 | msgid "Exclude spam comments" 297 | msgstr "" 298 | 299 | #: wp-db-backup.php:1209 300 | msgid "Exclude post revisions" 301 | msgstr "" 302 | 303 | #: wp-db-backup.php:1220 304 | msgid "You may choose to include any of the following tables:" 305 | msgstr "" 306 | 307 | #: wp-db-backup.php:1234 308 | msgid "Backup Options" 309 | msgstr "" 310 | 311 | #: wp-db-backup.php:1235 312 | msgid "What to do with the backup file:" 313 | msgstr "" 314 | 315 | #: wp-db-backup.php:1239 316 | msgid "Save to server" 317 | msgstr "" 318 | 319 | #: wp-db-backup.php:1244 320 | msgid "Download to your computer" 321 | msgstr "" 322 | 323 | #: wp-db-backup.php:1248 wp-db-backup.php:1312 324 | msgid "Email backup to:" 325 | msgstr "" 326 | 327 | #: wp-db-backup.php:1261 328 | msgid "Backup now!" 329 | msgstr "" 330 | 331 | #: wp-db-backup.php:1264 332 | msgid "WARNING: Your backup directory is NOT writable!" 333 | msgstr "" 334 | 335 | #: wp-db-backup.php:1275 336 | msgid "Scheduled Backup" 337 | msgstr "" 338 | 339 | #: wp-db-backup.php:1282 340 | #, php-format 341 | msgid "Next Backup: %s" 342 | msgstr "" 343 | 344 | #: wp-db-backup.php:1287 345 | #, php-format 346 | msgid "Last WP-Cron Daily Execution: %s" 347 | msgstr "" 348 | 349 | #: wp-db-backup.php:1288 350 | #, php-format 351 | msgid "Next WP-Cron Daily Execution: %s" 352 | msgstr "" 353 | 354 | #: wp-db-backup.php:1293 355 | msgid "Schedule: " 356 | msgstr "" 357 | 358 | #: wp-db-backup.php:1297 359 | msgid "None" 360 | msgstr "" 361 | 362 | #: wp-db-backup.php:1297 363 | msgid "Daily" 364 | msgstr "" 365 | 366 | #: wp-db-backup.php:1314 367 | msgid "Schedule backup" 368 | msgstr "" 369 | 370 | #: wp-db-backup.php:1322 371 | msgid "Tables to include in the scheduled backup:" 372 | msgstr "" 373 | 374 | #: wp-db-backup.php:1357 375 | msgid "Never" 376 | msgstr "" 377 | 378 | #: wp-db-backup.php:1362 379 | #, php-format 380 | msgid "%s seconds" 381 | msgstr "" 382 | 383 | #: wp-db-backup.php:1395 384 | msgid "Once Weekly" 385 | msgstr "" 386 | 387 | #: wp-db-backup.php:1408 388 | #, php-format 389 | msgid "" 390 | "Your WordPress version, %1s, lacks important security features without which " 391 | "it is unsafe to use the WP-DB-Backup plugin. Hence, this plugin is " 392 | "automatically disabled. Please consider upgrading " 393 | "WordPress to a more recent version." 394 | msgstr "" 395 | 396 | #: wp-db-backup.php:1426 397 | msgid "You are not allowed to perform backups." 398 | msgstr "" 399 | 400 | #: wp-db-backup.php:1441 401 | #, php-format 402 | msgid "" 403 | "There appears to be an unauthorized attempt from this site to access your " 404 | "database located at %1s. The attempt has been halted." 405 | msgstr "" 406 | 407 | #: wp-db-backup.php:1452 408 | msgid "Cheatin' uh ?" 409 | msgstr "" 410 | -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- 1 | === Database Backup for WordPress === 2 | Contributors: deliciousbrains 3 | Tags: mysql, database, backup, database backup 4 | Requires at least: 3.6.0 5 | Tested up to: 5.9.3 6 | Stable tag: 2.5.2 7 | Requires PHP: 5.3 8 | 9 | Database Backup for WordPress is your one-stop database backup solution for WordPress. 10 | 11 | == Description == 12 | 13 | Backup your database instantly, send the backup via email, or schedule backups to run automatically. 14 | 15 | Database Backup for WordPress allows you to quickly back up your core WordPress database tables, and either download the backup as a gzipped file, or send it via email to an address you choose. 16 | 17 | By default, the plugin will always back up all the core WordPress database tables. However, you may also selectively back up any custom tables that might be created by other plugins 18 | 19 | Additional options include the ability to exclude spam comments from the comments table, or post revisions from the posts table, saving you space and bandwidth. 20 | 21 | You can also enable scheduled backups to run automatically at set intervals, and configure the email address to send the scheduled backups to. 22 | 23 | = Backup Before You Mess Up = 24 | 25 | Backups are the one thing you don’t think of until you need them. You might have the best web host, the most secure server, and a tried and tested process for running plugin, theme, or core updates. But all it takes is one little thing to go wrong, and you lose your entire website. 26 | 27 | You need a reliable and automated solution which backs up your WordPress data and sends it to an off-site location. Database Backup for WordPress is that solution. 28 | 29 | = Why You Should Back Up Your Website = 30 | 31 | As much planning as you do, any CMS like WordPress that stores its data in a database is vulnerable. Hardware, software, and security hiccups are rare, but they do happen. Even the best enterprise systems in the world have multiple levels of backup in place. 32 | 33 | Think about the data you store in your WordPress site. Your blog posts since the day you launched the site. Your customers, products, and order history if you run an ecommerce site. Backups are like implementing an insurance policy for your data. With backups, you have a reliable way of restoring that data if anything goes wrong. 34 | 35 | Simple, automated backups save you time and give you peace of mind that you are prepared for the worst case scenario, even if you never need it. Better to have it and not need it, than to not have it and suddenly need it. 36 | 37 | = Scheduled Backups = 38 | 39 | Depending on your needs, you might want to back up your database every few minutes, hourly, daily, weekly, or monthly. You’ll want to automate this process, or it becomes another possible point of failure. 40 | 41 | Scheduled backups give you peace of mind that your data is being backed up as much or as little as you need, without your intervention. By emailing the backups to an email address you choose, you can verify that the backup has run, and store it in a safe location. 42 | 43 | == Installation == 44 | 45 | From your WordPress dashboard 46 | 47 | 1. **Visit** Plugins > Add New 48 | 1. **Search** for "Database Backup for WordPress" 49 | 1. **Install and Activate** Database Backup for WordPress from your Plugins page 50 | 1. **Click** on **Backup** in the "Tools" menu item, to select your backup settings, or schedule a backup to run automatically 51 | 52 | == Frequently Asked Questions == 53 | 54 | = How do I restore my database from a backup? = 55 | 56 | The backup file is a gzipped MySQL database export, which can be used to restore with MySQL applications like phpMyAdmin, included with most hosting control panels. If you are comfortable with the command line, you can also restore the database using the `mysql` command. More info on how to restore databases is available [here](https://wordpress.org/support/article/restoring-your-database-from-backup/). 57 | 58 | = Why does my backup stop or hang without completing? = 59 | 60 | If the backup stops prematurely, you can enable a plugin setting that will implement a small delay after each table is backed up. To do this, add the following line to your `wp-config.php` file, just above the `/* That's all, stop editing! Happy publishing. */` line: 61 | 62 | ` 63 | define( 'DBBWP_MOD_EVASIVE_OVERRIDE', true ); 64 | ` 65 | 66 | If you are still experiencing problems, you can also increase the delay, by defining the `DBBWP_MOD_EVASIVE_DELAY` constant in your `wp-config.php` file and giving it a value higher than 500 (which is the default). 67 | 68 | ` 69 | define( 'DBBWP_MOD_EVASIVE_DELAY', '600' ); 70 | ` 71 | 72 | We recommend incrementing the value by 100 each time, until the process completes successfully. 73 | 74 | = What is `wp-db-backup.pot` for? = 75 | 76 | This file is used by non-English users to translate the user interface text into their native language. Translators are encouraged to submit translated files, which will be made available to others [here](http://plugins.trac.wordpress.org/browser/wp-db-backup/i18n/). 77 | 78 | = Why are only the core database files backed up by default? = 79 | 80 | Generally the most important site data is stored in the core WordPress tables. It's not uncommon for some plugins to have a bunch of visitor statistics stored in their custom tables that aren’t usually considered essential data that needs to be restored after a catastrophic failure. However, it’s possible that some important data is stored in these additional tables, and you may want to back them up. We recommend reviewing the current tables in your database, and deciding which ones you would need in the case of a catastrophic failure. 81 | 82 | = Why aren’t my backups being generated correctly? = 83 | 84 | The plugin will attempt to create a directory `/wp-content/backup-*/` inside your WordPress directory. You may need to make `/wp-content writable` (at least temporarily) for it to create this directory. For example: 85 | 86 | 1. `$ cd /wordpress/` 87 | 1. `$ chgrp www-data wp-content` (where "`www-data`" is the group your FTP client uses) 88 | 1. `$ chmod g+w wp-content` 89 | 90 | 91 | == Screenshots == 92 | 93 | 1. Backup tables 94 | 1. Backup options 95 | 1. Scheduled backup 96 | 97 | == Changelog == 98 | 99 | = 2.5.2 - 2022-05-09 = 100 | * Security: "Scheduled Backup" form now has nonce check 101 | 102 | = 2.5.1 - 2022-01-17 = 103 | * Security: Make sure table exists before attempting backup 104 | 105 | = 2.5 - 2021-12-17 = 106 | * New: Brand new user interface 107 | * Improvement: Compatibility with WordPress 5.8 108 | 109 | = 2.4 = 110 | * Compatibility with PHP 8 and WordPress 5.7 111 | * Fix email backup functionality 112 | * Fix for bug where backup file would be gzipped twice 113 | * Fixes for several PHP notices 114 | * Add `DBBWP_` prefix to global constants 115 | 116 | = 2.3 = 117 | * Remove backup directory use 118 | 119 | = 2.2.4 = 120 | * Remove deprecated functionality 121 | * Do not attempt to delete non-existent files 122 | 123 | = 2.2.3 = 124 | * Nonce check fix for localized WP users from Sergey Biryukov 125 | * Fix for gzipped files' incorrect size 126 | * Some styling improvements 127 | * Fix for JS multiple checkbox selection 128 | 129 | == Upgrade Notice == 130 | 131 | = 2.2.3 = 132 | * Fixes problems users had when using localized WordPress installations 133 | * Fixes a bug that caused the size of gzipped backup files to be reported incorrectly 134 | 135 | = 2.3.3 = 136 | * Sanitize user-supplied data 137 | 138 | == Translators == 139 | Thanks to the following people for providing translation files for Database Backup for WordPress: 140 | 141 | * Abel Cheung 142 | * Alejandro Urrutia 143 | * Alexander Kanakaris 144 | * Angelo Andrea Iorio 145 | * Calle 146 | * Daniel Erb 147 | * Daniel Villoldo 148 | * Diego Pierotto 149 | * Eilif Nordseth 150 | * Eric Lassauge 151 | * Friedlich 152 | * Gilles Wittezaele 153 | * Icemanpro 154 | * İzzet Emre Erkan 155 | * Jong-In Kim 156 | * Kaveh 157 | * Kessia Pinheiro 158 | * Kuratkoo 159 | * Majed Alotaibi 160 | * Michał Gołuński 161 | * Michele Spagnuolo 162 | * Paopao 163 | * Philippe Galliard 164 | * Robert Buj 165 | * Roger 166 | * Rune Gulbrandsøy 167 | * Serge Rauber 168 | * Sergey Biryukov 169 | * Tai 170 | * Timm Severin 171 | * Tzafrir Rehan 172 | * 吴曦 173 | 174 | == Past Contributors == 175 | filosofo, skippy, Firas, LaughingLizard, MtDewVirus, Podz, Ringmaster --------------------------------------------------------------------------------