Changeset 2472697
- Timestamp:
- 02/10/2021 10:13:07 PM (5 years ago)
- Location:
- upstream/trunk
- Files:
-
- 17 edited
-
includes.php (modified) (1 diff)
-
includes/admin/class-up-admin-pointers.php (modified) (1 diff)
-
includes/class-up-milestone.php (modified) (3 diffs)
-
includes/frontend/up-enqueues.php (modified) (1 diff)
-
includes/frontend/up-table-functions.php (modified) (2 diffs)
-
includes/frontend/up-template-functions.php (modified) (1 diff)
-
includes/up-general-functions.php (modified) (3 diffs)
-
includes/up-project-functions.php (modified) (3 diffs)
-
languages/upstream-es_ES.mo (modified) (previous)
-
languages/upstream-es_ES.po (modified) (130 diffs)
-
languages/upstream.pot (modified) (65 diffs)
-
readme.txt (modified) (2 diffs)
-
templates/archive-project.php (modified) (3 diffs)
-
templates/assets/js/upstream.js (modified) (1 diff)
-
templates/assets/libraries/chosen/chosen.jquery.js (modified) (1 diff)
-
templates/single-project/details.php (modified) (2 diffs)
-
upstream.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
upstream/trunk/includes.php
r2459836 r2472697 1 1 <?php 2 define('UPSTREAM_VERSION', '1.39. 1');2 define('UPSTREAM_VERSION', '1.39.2'); 3 3 4 4 global $upstream_addon_requirements; -
upstream/trunk/includes/admin/class-up-admin-pointers.php
r2417454 r2472697 131 131 } 132 132 133 if ($pd ) {133 if ($pd && !empty($pd['Name'])) { 134 134 135 135 $current_version = $pd['Version']; -
upstream/trunk/includes/class-up-milestone.php
r2369054 r2472697 478 478 'start_date' => $this->getStartDate('unix'), 479 479 'end_date' => $this->getEndDate('unix'), 480 'start_date.YMD' => $this->getStartDate__YMD(), 481 'end_date.YMD' => $this->getEndDate__YMD(), 480 482 'task_count' => $this->getTaskCount(), 481 483 'task_open' => $this->getTaskOpen(), … … 803 805 public function getEndDate__YMD() 804 806 { 805 if (!empty($this->endDate__YMD)) { 806 $this->endDate__YMD = $this->getMetadata('upst_end_date.YMD'); 807 if (empty($this->endDate__YMD) && is_array($this->getMetadata('upst_end_date.YMD'))) { 808 $r = $this->getMetadata('upst_end_date.YMD'); 809 if (!empty($r) && is_array($r) && count($r) > 0) $this->endDate__YMD = $r[0]; 807 810 } 808 811 return $this->endDate__YMD; … … 811 814 public function getStartDate__YMD() 812 815 { 813 if (!empty($this->startDate__YMD)) { 814 $this->startDate__YMD = $this->getMetadata('upst_start_date.YMD'); 816 if (empty($this->startDate__YMD) && is_array($this->getMetadata('upst_start_date.YMD'))) { 817 $r = $this->getMetadata('upst_start_date.YMD'); 818 if (!empty($r) && is_array($r) && count($r) > 0) $this->startDate__YMD = $r[0]; 815 819 } 816 820 return $this->startDate__YMD; -
upstream/trunk/includes/frontend/up-enqueues.php
r2417454 r2472697 284 284 'LB_TODAY' => __('Today', 'upstream'), 285 285 'LB_CLEAR' => __('Clear', 'upstream'), 286 'LB_NO_RESULTS' => __('No results', 'upstream') 286 287 ], 287 288 ])); -
upstream/trunk/includes/frontend/up-table-functions.php
r2417454 r2472697 640 640 if (isset($row[$columnName . '.YMD']) && $row[$columnName . '.YMD']) { 641 641 $ts = date_create_from_format('Y-m-d', $row[$columnName . '.YMD'])->getTimestamp(); 642 $html = esc_html( upstream_format_date($columnValue));642 $html = esc_html(date_i18n(get_option('date_format'), $ts)); 643 643 644 644 } else { … … 984 984 <?php 985 985 if (count($data) > 0) { 986 echo esc_html(sprintf(_ x(' %s found', 'upstream'), $optArr[$itemType]));986 echo esc_html(sprintf(__(' %s found', 'upstream'), $optArr[$itemType])); 987 987 } 988 988 ?> -
upstream/trunk/includes/frontend/up-template-functions.php
r2435596 r2472697 100 100 } 101 101 102 function upstream_get_project_owner($id = null) 103 { 104 $users = [upstream_project_owner_id($id)]; 105 $text = ""; 106 107 if (count($users) > 0) { 108 $text .= '<ul class="list-inline"><li>'; 109 $isAfterFirstItem = false; 110 111 foreach ($users as $user_id) { 112 if (upstream_show_users_name()) { 113 if ($isAfterFirstItem) { 114 $text .= ', '; 115 } 116 117 $isAfterFirstItem = true; 118 } 119 120 $text .= upstream_user_avatar($user_id); 121 } 122 $text.='</li></ul>'; 123 } else { 124 $text.= '<span class="text-muted"><i>'.esc_html('(' . __('none', 'upstream') . ')').'</i></span>'; 125 } 126 return array($users, $text); 127 } 102 128 103 129 function upstream_output_project_members($id = null) -
upstream/trunk/includes/up-general-functions.php
r2435596 r2472697 266 266 // get data for any user including current 267 267 // can send id 268 function upstream_user_data ($data = 0, $ignore_current = false)268 function upstream_user_data_uncached($data = 0, $ignore_current = false) 269 269 { 270 270 … … 276 276 $user_data = null; 277 277 $type = is_email($data) ? 'email' : 'id'; 278 $wp_user = get_user_by($type, $data); 278 279 $wp_user = Upstream_Cache::get_instance()->get('upstream_user_data_by'.$type.'.'.$data); 280 281 if ($wp_user === false) { 282 $wp_user = get_user_by($type, $data); 283 } 284 Upstream_Cache::get_instance()->set('upstream_user_data_by'.$type.'.'.$data, $wp_user); 279 285 280 286 if (empty($wp_user)) { … … 426 432 427 433 return $user_data; 434 } 435 436 function upstream_user_data($data = 0, $ignore_current = false) { 437 438 $res = Upstream_Cache::get_instance()->get('upstream_user_data'.$data.".".$ignore_current); 439 440 if ($res === false) { 441 442 $res = upstream_user_data_uncached($data, $ignore_current); 443 Upstream_Cache::get_instance()->set('upstream_user_data'.$data.".".$ignore_current, $res); 444 } 445 return $res; 428 446 } 429 447 -
upstream/trunk/includes/up-project-functions.php
r2416645 r2472697 127 127 function upstream_project_client_name($id = 0) 128 128 { 129 $project = new UpStream_Project($id); 130 $result = $project->get_client_name(); 131 132 return apply_filters('upstream_project_client_name', $result, $id); 129 130 $res = Upstream_Cache::get_instance()->get('upstream_project_client_name'.$id); 131 132 if ($res === false) { 133 $project = new UpStream_Project($id); 134 $result = $project->get_client_name(); 135 136 $res = apply_filters('upstream_project_client_name', $result, $id); 137 Upstream_Cache::get_instance()->set('upstream_project_client_name'.$id,$res); 138 139 } 140 141 return $res; 133 142 } 134 143 … … 429 438 $project->dateStart = 0; 430 439 $project->dateEnd = 0; 440 $project->dateStartYMD = ''; 441 $project->dateEndYMD = ''; 431 442 $project->members = []; 432 443 $project->clientUsers = []; … … 458 469 } elseif ($meta->meta_key === '_upstream_project_end') { 459 470 $project->dateEnd = (int)$meta->meta_value; 471 } elseif ($meta->meta_key === '_upstream_project_start.YMD') { 472 $project->dateStartYMD = $meta->meta_value; 473 } elseif ($meta->meta_key === '_upstream_project_end.YMD') { 474 $project->dateEndYMD = $meta->meta_value; 460 475 } elseif ($meta->meta_key === '_upstream_project_members') { 461 476 $project->members = (array)maybe_unserialize($meta->meta_value); -
upstream/trunk/languages/upstream-es_ES.po
r2354305 r2472697 2 2 msgstr "" 3 3 "Project-Id-Version: UpStream\n" 4 "POT-Creation-Date: 202 0-07-30 14:45-0400\n"5 "PO-Revision-Date: 202 0-07-30 14:47-0400\n"4 "POT-Creation-Date: 2021-02-08 15:22-0500\n" 5 "PO-Revision-Date: 2021-02-08 15:23-0500\n" 6 6 "Last-Translator: \n" 7 7 "Language-Team: \n" … … 27 27 #: includes/admin/class-up-admin-project-columns.php:128 28 28 #: includes/admin/class-up-admin-tasks-page.php:45 29 #: includes/class-up-milestones.php: 43629 #: includes/class-up-milestones.php:557 30 30 #: includes/model/UpStream_Model_Object.php:66 31 31 #: templates/single-project/details.php:63 … … 39 39 #: includes/admin/metaboxes/class-up-metaboxes-projects.php:1226 40 40 #: includes/admin/metaboxes/class-up-metaboxes-projects.php:1629 41 #: includes/admin/up-enqueues.php:13 1includes/class-up-milestones.php:33542 #: includes/class-up-milestones.php: 43841 #: includes/admin/up-enqueues.php:132 includes/class-up-milestones.php:335 42 #: includes/class-up-milestones.php:559 43 43 #: includes/frontend/up-table-functions.php:33 44 44 #: includes/frontend/up-table-functions.php:144 … … 69 69 #: includes/frontend/up-table-functions.php:439 70 70 #: includes/model/UpStream_Model_Bug.php:303 71 #: includes/model/UpStream_Model_Project.php:4 5672 #: includes/model/UpStream_Model_Task.php:297 templates/archive-project.php: 7971 #: includes/model/UpStream_Model_Project.php:465 72 #: includes/model/UpStream_Model_Task.php:297 templates/archive-project.php:82 73 73 #: templates/global/sidebar.php:31 templates/single-project/bugs.php:246 74 74 #: templates/single-project/bugs.php:250 templates/single-project/tasks.php:252 … … 106 106 #: includes/admin/class-up-admin-bugs-page.php:284 107 107 #: includes/admin/class-up-admin-bugs-page.php:310 108 #: includes/admin/class-up-admin-project-columns.php:4 47109 #: includes/admin/class-up-admin-project-columns.php:4 66110 #: includes/admin/class-up-admin-project-columns.php:48 3108 #: includes/admin/class-up-admin-project-columns.php:453 109 #: includes/admin/class-up-admin-project-columns.php:472 110 #: includes/admin/class-up-admin-project-columns.php:489 111 111 #: includes/admin/class-up-admin-tasks-page.php:260 112 112 #: includes/admin/class-up-admin-tasks-page.php:280 … … 133 133 #: includes/admin/class-up-admin-tasks-page.php:498 134 134 #: includes/admin/metaboxes/metabox-functions.php:636 135 #: includes/class-up-milestones.php: 471136 #: includes/class-up-project-activity.php:6 07135 #: includes/class-up-milestones.php:592 136 #: includes/class-up-project-activity.php:629 137 137 #: includes/frontend/up-table-functions.php:107 138 138 #: includes/frontend/up-table-functions.php:171 … … 145 145 #: includes/frontend/up-table-functions.php:768 146 146 #: includes/frontend/up-template-functions.php:67 147 #: includes/frontend/up-template-functions.php:98 148 #: templates/archive-project.php:84 templates/global/sidebar.php:36 147 #: includes/frontend/up-template-functions.php:97 148 #: includes/frontend/up-template-functions.php:129 149 #: templates/archive-project.php:87 templates/global/sidebar.php:36 149 150 #: templates/single-project/bugs.php:66 templates/single-project/details.php:83 150 151 #: templates/single-project/details.php:104 … … 215 216 #. Author of the plugin/theme 216 217 #: includes/admin/class-up-admin-options.php:68 217 #: includes/admin/class-up-admin.php:54 0218 #: includes/admin/class-up-admin.php:544 218 219 msgid "UpStream" 219 220 msgstr "UpStream" … … 223 224 msgstr "Planificador" 224 225 225 #: includes/admin/class-up-admin-pointers.php:3 3226 #: includes/admin/class-up-admin-pointers.php:39 226 227 #, fuzzy 227 228 msgid "" … … 232 233 "UpStream y consigue la extensión UpStream Customizer gratis!" 233 234 234 #: includes/admin/class-up-admin-pointers.php: 35235 #: includes/admin/class-up-admin-pointers.php:41 235 236 msgid "Email Address:" 236 237 msgstr "Dirección de correo electrónico:" 237 238 238 #: includes/admin/class-up-admin-pointers.php: 46239 #: includes/admin/class-up-admin-pointers.php:52 239 240 #, fuzzy 240 241 msgid "Get a FREE UpStream extension!" 241 242 msgstr "Obtenga una extensión UpStream GRATIS!" 242 243 243 #: includes/admin/class-up-admin-pointers.php:78 244 #: includes/admin/class-up-admin-pointers.php:84 245 #: includes/admin/class-up-admin-pointers.php:151 244 246 msgid "Important!" 245 247 msgstr "¡Importante!" 246 248 247 #: includes/admin/class-up-admin-pointers.php:8 0249 #: includes/admin/class-up-admin-pointers.php:86 248 250 msgid "As this is your first project, we have included a walkthrough guide." 249 251 msgstr "Como este es su primer plan, hemos incluido una guía de recorrido." 250 252 251 #: includes/admin/class-up-admin-pointers.php: 84253 #: includes/admin/class-up-admin-pointers.php:90 252 254 msgid "" 253 255 "We <strong>strongly recommend</strong> that you take the time to follow it. " … … 255 257 "Nosotros <strong>recomendamos</strong> que se tome el tiempo para seguirlo. " 256 258 257 #: includes/admin/class-up-admin-pointers.php: 88259 #: includes/admin/class-up-admin-pointers.php:94 258 260 msgid "There is important info in the guide and it does not take too long." 259 261 msgstr "Hay información importante en la guía y no toma demasiado tiempo." 260 262 261 #: includes/admin/class-up-admin-pointers.php:9 1263 #: includes/admin/class-up-admin-pointers.php:97 262 264 msgid "(you won't see this message or the guide again)" 263 265 msgstr "(no verás este mensaje o la guía de nuevo)" 264 266 265 #: includes/admin/class-up-admin-pointers.php:116 267 #: includes/admin/class-up-admin-pointers.php:139 268 msgid "- The installed version of " 269 msgstr "- La versión instalada de " 270 271 #: includes/admin/class-up-admin-pointers.php:140 272 msgid " is " 273 msgstr " es " 274 275 #: includes/admin/class-up-admin-pointers.php:141 276 msgid ". This version of UpStream requires version " 277 msgstr ". Esta versión de UpStream requiere la versión " 278 279 #: includes/admin/class-up-admin-pointers.php:142 280 msgid " or later." 281 msgstr " o más tarde." 282 283 #: includes/admin/class-up-admin-pointers.php:153 284 msgid "" 285 "This version of UpStream is not compatible with the following addon versions:" 286 msgstr "" 287 "Esta versión de UpStream no es compatible con las siguientes versiones de " 288 "complementos:" 289 290 #: includes/admin/class-up-admin-pointers.php:158 291 #, fuzzy 292 #| msgid "(you won't see this message or the guide again)" 293 msgid "Do not show this message again for this version" 294 msgstr "(no verás este mensaje o la guía de nuevo)" 295 296 #: includes/admin/class-up-admin-pointers.php:183 266 297 #, php-format 267 298 msgid "%s Name" 268 299 msgstr "%s Nombre" 269 300 270 #: includes/admin/class-up-admin-pointers.php:1 18301 #: includes/admin/class-up-admin-pointers.php:185 271 302 #, php-format 272 303 msgid "This is a required field and will be what your %s see on the frontend." 273 304 msgstr "Este es un campo obligatorio y será lo que sus %s ven en la portada." 274 305 275 #: includes/admin/class-up-admin-pointers.php: 136306 #: includes/admin/class-up-admin-pointers.php:203 276 307 #, php-format 277 308 msgid "%s Status" 278 309 msgstr "%s estado" 279 310 280 #: includes/admin/class-up-admin-pointers.php: 140311 #: includes/admin/class-up-admin-pointers.php:207 281 312 #, php-format 282 313 msgid "Choose a status for this %s." 283 314 msgstr "Elije un estado para este %s." 284 315 285 #: includes/admin/class-up-admin-pointers.php: 144316 #: includes/admin/class-up-admin-pointers.php:211 286 317 msgid "Statuses are set within the UpStream Settings." 287 318 msgstr "Los estados se establecen en la configuración del planificador." 288 319 289 #: includes/admin/class-up-admin-pointers.php:161 320 #: includes/admin/class-up-admin-pointers.php:228 321 #: templates/archive-project.php:488 290 322 #, php-format 291 323 msgid "%s Owner" 292 324 msgstr "%s Propietario" 293 325 294 #: includes/admin/class-up-admin-pointers.php: 163326 #: includes/admin/class-up-admin-pointers.php:230 295 327 #, php-format 296 328 msgid "Choose the owner of this %s." 297 329 msgstr "Elije al propietario de este %s." 298 330 299 #: includes/admin/class-up-admin-pointers.php: 167331 #: includes/admin/class-up-admin-pointers.php:234 300 332 msgid "" 301 333 "Every user who has the Role of UpStream Manager, UpStream User or " … … 305 337 "Administrador aparece en este desplegable." 306 338 307 #: includes/admin/class-up-admin-pointers.php: 171339 #: includes/admin/class-up-admin-pointers.php:238 308 340 #, php-format 309 341 msgid "" … … 314 346 "%s, independientemente de su rol." 315 347 316 #: includes/admin/class-up-admin-pointers.php: 194348 #: includes/admin/class-up-admin-pointers.php:261 317 349 #, fuzzy, php-format 318 350 msgid "Choose the %s of this %s." 319 351 msgstr "Elija los %s de este %s." 320 352 321 #: includes/admin/class-up-admin-pointers.php: 199353 #: includes/admin/class-up-admin-pointers.php:266 322 354 #, fuzzy, php-format 323 355 msgid "" … … 328 360 "<strong>Nuevo Cliente</strong> en la barra lateral." 329 361 330 #: includes/admin/class-up-admin-pointers.php:2 16362 #: includes/admin/class-up-admin-pointers.php:283 331 363 #: includes/admin/metaboxes/class-up-metaboxes-projects.php:1453 332 #: templates/archive-project.php:4 79templates/single-project/details.php:115364 #: templates/archive-project.php:484 templates/single-project/details.php:115 333 365 #, php-format 334 366 msgid "%s Users" 335 367 msgstr "%s Usuarios" 336 368 337 #: includes/admin/class-up-admin-pointers.php:2 18369 #: includes/admin/class-up-admin-pointers.php:285 338 370 #, fuzzy, php-format 339 371 msgid "Tick the %s Users who will have access to this %s." 340 372 msgstr "Marque los %s Usuarios que tendrán acceso a este %s." 341 373 342 #: includes/admin/class-up-admin-pointers.php:2 22374 #: includes/admin/class-up-admin-pointers.php:289 343 375 #, fuzzy, php-format 344 376 msgid "" … … 349 381 "correo electrónico y la contraseña que se ha establecido dentro de los %s." 350 382 351 #: includes/admin/class-up-admin-pointers.php:2 26383 #: includes/admin/class-up-admin-pointers.php:293 352 384 #, fuzzy, php-format 353 385 msgid "" … … 356 388 "Si no hay %s Usuarios aquí, necesita agregar uno primero editando sus %s" 357 389 358 #: includes/admin/class-up-admin-pointers.php: 243390 #: includes/admin/class-up-admin-pointers.php:310 359 391 #, fuzzy, php-format 360 392 msgid "%s Dates" 361 393 msgstr "%s Fechas" 362 394 363 #: includes/admin/class-up-admin-pointers.php: 245395 #: includes/admin/class-up-admin-pointers.php:312 364 396 #, php-format 365 397 msgid "Add the projected start and finish dates for this %s." 366 398 msgstr "Añade fechas de inicio y fin previstas para este %s." 367 399 368 #: includes/admin/class-up-admin-pointers.php: 259400 #: includes/admin/class-up-admin-pointers.php:326 369 401 #, php-format 370 402 msgid "You can now start to add your %s." 371 403 msgstr "Puedes empezar a sumar tus %s." 372 404 373 #: includes/admin/class-up-admin-pointers.php: 264405 #: includes/admin/class-up-admin-pointers.php:331 374 406 #, fuzzy, php-format 375 407 msgid "" … … 380 412 "Esto asegura que todos los %s estarán disponibles dentro de los %s." 381 413 382 #: includes/admin/class-up-admin-pointers.php: 273414 #: includes/admin/class-up-admin-pointers.php:340 383 415 #, fuzzy, php-format 384 416 msgid "" … … 416 448 #: includes/frontend/up-table-functions.php:55 417 449 #: includes/frontend/up-table-functions.php:180 418 #: templates/archive-project.php:8 2templates/global/sidebar.php:34450 #: templates/archive-project.php:85 templates/global/sidebar.php:34 419 451 #: templates/single-project/details.php:90 452 #: templates/single-project/progress.php:33 420 453 msgid "Progress" 421 454 msgstr "Progreso" … … 436 469 msgstr "Comentarios" 437 470 438 #: includes/admin/class-up-admin-project-columns.php:4 47471 #: includes/admin/class-up-admin-project-columns.php:453 439 472 msgid "statuses" 440 473 msgstr "estados" 441 474 442 #: includes/admin/class-up-admin-project-columns.php:4 66475 #: includes/admin/class-up-admin-project-columns.php:472 443 476 msgid "owners" 444 477 msgstr "propietarios" … … 465 498 #: includes/admin/metaboxes/class-up-metaboxes-projects.php:949 466 499 #: includes/admin/metaboxes/class-up-metaboxes-projects.php:1477 467 #: includes/class-up-milestones.php:338 includes/class-up-milestones.php: 440500 #: includes/class-up-milestones.php:338 includes/class-up-milestones.php:561 468 501 #: includes/frontend/up-table-functions.php:66 469 502 #: includes/frontend/up-table-functions.php:220 470 503 #: includes/model/UpStream_Model_Milestone.php:272 471 #: includes/model/UpStream_Model_Project.php:4 59472 #: includes/model/UpStream_Model_Task.php:296 templates/archive-project.php:4 65504 #: includes/model/UpStream_Model_Project.php:470 505 #: includes/model/UpStream_Model_Task.php:296 templates/archive-project.php:470 473 506 #: templates/single-project/details.php:21 474 507 msgid "End Date" … … 480 513 msgstr "Completo" 481 514 482 #: includes/admin/class-up-admin.php:5 46515 #: includes/admin/class-up-admin.php:550 483 516 #, fuzzy 484 517 msgid "Comment reply notifications" 485 518 msgstr "Notificaciones de respuesta a comentarios" 486 519 487 #: includes/admin/class-up-admin.php:55 3520 #: includes/admin/class-up-admin.php:557 488 521 #: includes/admin/options/class-up-options-general.php:152 489 522 #: includes/admin/options/class-up-options-general.php:166 … … 497 530 #: includes/admin/options/class-up-options-general.php:446 498 531 #: includes/admin/options/class-up-options-general.php:460 499 #: includes/admin/options/class-up-options-general.php:4 85532 #: includes/admin/options/class-up-options-general.php:474 500 533 #: includes/admin/options/class-up-options-general.php:499 501 534 #: includes/admin/options/class-up-options-general.php:513 502 535 #: includes/admin/options/class-up-options-general.php:527 503 536 #: includes/admin/options/class-up-options-general.php:541 504 #: includes/admin/options/class-up-options-general.php:597 537 #: includes/admin/options/class-up-options-general.php:555 538 #: includes/admin/options/class-up-options-general.php:569 539 #: includes/admin/options/class-up-options-general.php:625 505 540 msgid "Yes" 506 541 msgstr "Sí" 507 542 508 #: includes/admin/class-up-admin.php:5 58543 #: includes/admin/class-up-admin.php:562 509 544 #: includes/admin/options/class-up-options-general.php:151 510 545 #: includes/admin/options/class-up-options-general.php:165 … … 518 553 #: includes/admin/options/class-up-options-general.php:445 519 554 #: includes/admin/options/class-up-options-general.php:459 520 #: includes/admin/options/class-up-options-general.php:4 84555 #: includes/admin/options/class-up-options-general.php:473 521 556 #: includes/admin/options/class-up-options-general.php:498 522 557 #: includes/admin/options/class-up-options-general.php:512 558 #: includes/admin/options/class-up-options-general.php:526 523 559 #: includes/admin/options/class-up-options-general.php:540 524 #: includes/admin/options/class-up-options-general.php:596 560 #: includes/admin/options/class-up-options-general.php:568 561 #: includes/admin/options/class-up-options-general.php:624 525 562 msgid "No" 526 563 msgstr "No" 527 564 528 #: includes/admin/class-up-admin.php:56 4565 #: includes/admin/class-up-admin.php:568 529 566 #, fuzzy, php-format 530 567 msgid "Whether to be notified when someone reply to your comments within %s." … … 550 587 #: includes/admin/metaboxes/class-up-metaboxes-clients.php:230 551 588 #: includes/admin/metaboxes/class-up-metaboxes-clients.php:404 552 #: templates/report-parameters/section.php: 53589 #: templates/report-parameters/section.php:61 553 590 msgid "Name" 554 591 msgstr "Nombre" … … 619 656 620 657 #: includes/admin/metaboxes/class-up-metaboxes-clients.php:395 621 #: includes/admin/options/class-up-options-general.php:805 622 #: includes/class-up-roles.php:90 658 #: includes/admin/options/class-up-options-general.php:845 659 #: includes/class-up-roles.php:90 includes/up-install.php:984 660 #: includes/up-install.php:985 623 661 #, fuzzy 624 662 msgid "UpStream Client User" … … 626 664 627 665 #: includes/admin/metaboxes/class-up-metaboxes-clients.php:410 628 #: includes/admin/up-enqueues.php:16 3666 #: includes/admin/up-enqueues.php:164 629 667 msgid "No users found." 630 668 msgstr "No se encontraron usuarios." … … 686 724 #: includes/admin/metaboxes/class-up-metaboxes-clients.php:609 687 725 #: includes/admin/metaboxes/class-up-metaboxes-clients.php:676 688 #: includes/admin/metaboxes/class-up-metaboxes-clients.php:7 69689 #: includes/admin/metaboxes/class-up-metaboxes-clients.php:8 19690 #: includes/class-up-comments.php:2 89 includes/class-up-comments.php:402691 #: includes/class-up-comments.php:51 0 includes/class-up-comments.php:629726 #: includes/admin/metaboxes/class-up-metaboxes-clients.php:777 727 #: includes/admin/metaboxes/class-up-metaboxes-clients.php:827 728 #: includes/class-up-comments.php:290 includes/class-up-comments.php:404 729 #: includes/class-up-comments.php:512 includes/class-up-comments.php:631 692 730 #, fuzzy 693 731 msgid "You're not allowed to do this." … … 697 735 #: includes/admin/metaboxes/class-up-metaboxes-clients.php:613 698 736 #: includes/admin/metaboxes/class-up-metaboxes-clients.php:680 699 #: includes/admin/metaboxes/class-up-metaboxes-clients.php:7 73700 #: includes/admin/metaboxes/class-up-metaboxes-clients.php:8 23737 #: includes/admin/metaboxes/class-up-metaboxes-clients.php:781 738 #: includes/admin/metaboxes/class-up-metaboxes-clients.php:831 701 739 #: includes/admin/metaboxes/class-up-metaboxes-projects.php:1905 702 #: includes/class-up-comments.php:250 includes/class-up-comments.php:37 7703 #: includes/class-up-comments.php:39 4 includes/class-up-comments.php:476704 #: includes/class-up-comments.php:62 4 includes/class-up-comments.php:748705 #: includes/class-up-comments.php:76 5740 #: includes/class-up-comments.php:250 includes/class-up-comments.php:378 741 #: includes/class-up-comments.php:396 includes/class-up-comments.php:478 742 #: includes/class-up-comments.php:626 includes/class-up-comments.php:751 743 #: includes/class-up-comments.php:768 706 744 msgid "Invalid request." 707 745 msgstr "Petición incorrecta." … … 710 748 #: includes/admin/metaboxes/class-up-metaboxes-clients.php:618 711 749 #: includes/admin/metaboxes/class-up-metaboxes-clients.php:685 712 #: includes/admin/metaboxes/class-up-metaboxes-clients.php:7 78713 #: includes/admin/metaboxes/class-up-metaboxes-clients.php:8 28750 #: includes/admin/metaboxes/class-up-metaboxes-clients.php:786 751 #: includes/admin/metaboxes/class-up-metaboxes-clients.php:836 714 752 msgid "Invalid Client ID." 715 753 msgstr "Invalido ID de cliente." 716 754 717 755 #: includes/admin/metaboxes/class-up-metaboxes-clients.php:562 718 #: includes/admin/metaboxes/class-up-metaboxes-clients.php:7 83719 #: includes/admin/metaboxes/class-up-metaboxes-clients.php:8 33756 #: includes/admin/metaboxes/class-up-metaboxes-clients.php:791 757 #: includes/admin/metaboxes/class-up-metaboxes-clients.php:841 720 758 msgid "Invalid User ID." 721 759 msgstr "ID de usuario invalido." … … 726 764 msgstr "Los IDs de usuario no pueden estar vacíos." 727 765 728 #: includes/admin/metaboxes/class-up-metaboxes-clients.php:7 87729 #: includes/admin/metaboxes/class-up-metaboxes-clients.php:8 37766 #: includes/admin/metaboxes/class-up-metaboxes-clients.php:795 767 #: includes/admin/metaboxes/class-up-metaboxes-clients.php:845 730 768 #, fuzzy 731 769 msgid "This Client User is not associated with this Client." 732 770 msgstr "Este Usuario de Cliente no está asociado con este Cliente." 733 771 734 #: includes/admin/metaboxes/class-up-metaboxes-clients.php:8 42772 #: includes/admin/metaboxes/class-up-metaboxes-clients.php:850 735 773 #, fuzzy 736 774 msgid "This user doesn't seem to be a valid Client User." … … 770 808 #: includes/admin/metaboxes/class-up-metaboxes-projects.php:940 771 809 #: includes/admin/metaboxes/class-up-metaboxes-projects.php:1465 772 #: includes/class-up-milestones.php:337 includes/class-up-milestones.php: 439810 #: includes/class-up-milestones.php:337 includes/class-up-milestones.php:560 773 811 #: includes/frontend/up-table-functions.php:61 774 812 #: includes/frontend/up-table-functions.php:215 775 813 #: includes/model/UpStream_Model_Milestone.php:271 776 #: includes/model/UpStream_Model_Project.php:4 58777 #: includes/model/UpStream_Model_Task.php:295 templates/archive-project.php:4 59814 #: includes/model/UpStream_Model_Project.php:469 815 #: includes/model/UpStream_Model_Task.php:295 templates/archive-project.php:464 778 816 #: templates/single-project/details.php:16 779 817 msgid "Start Date" … … 836 874 #: includes/frontend/up-table-functions.php:375 837 875 #: includes/frontend/up-table-functions.php:435 838 #: includes/model/UpStream_Model_Object.php:67 templates/archive-project.php:7 2876 #: includes/model/UpStream_Model_Object.php:67 templates/archive-project.php:75 839 877 #: templates/global/sidebar.php:24 templates/single-project/bugs.php:65 840 878 #: templates/single-project/files.php:45 templates/single-project/tasks.php:79 … … 846 884 #: includes/admin/metaboxes/class-up-metaboxes-projects.php:701 847 885 #: includes/admin/metaboxes/class-up-metaboxes-projects.php:718 848 #: includes/admin/metaboxes/class-up-metaboxes-projects.php:2 197849 #: includes/class-up-milestones.php:336 includes/class-up-milestones.php: 364886 #: includes/admin/metaboxes/class-up-metaboxes-projects.php:2208 887 #: includes/class-up-milestones.php:336 includes/class-up-milestones.php:480 850 888 #: includes/frontend/up-table-functions.php:1051 851 #: includes/libraries/cmb2/includes/CMB2_Field.php:14 18852 #: includes/libraries/cmb2/includes/CMB2_Field.php:14 23853 #: templates/archive-project.php:8 3templates/global/sidebar.php:35889 #: includes/libraries/cmb2/includes/CMB2_Field.php:1471 890 #: includes/libraries/cmb2/includes/CMB2_Field.php:1475 891 #: templates/archive-project.php:86 templates/global/sidebar.php:35 854 892 #: templates/single-project/bugs.php:230 templates/single-project/bugs.php:248 893 #: templates/single-project/progress.php:125 894 #: templates/single-project/progress.php:170 855 895 #: templates/single-project/tasks.php:253 856 896 #: templates/single-project/tasks.php:280 … … 863 903 #: includes/admin/options/class-up-options-projects.php:99 864 904 #: includes/admin/options/class-up-options-tasks.php:99 865 #: templates/archive-project.php:8 0templates/global/sidebar.php:32905 #: templates/archive-project.php:83 templates/global/sidebar.php:32 866 906 msgid "Statuses" 867 907 msgstr "Estados" … … 898 938 #: includes/frontend/up-table-functions.php:522 899 939 #: includes/libraries/cmb2-grid/Test/Test.php:62 900 #: includes/libraries/cmb2/example-functions.php:5 30940 #: includes/libraries/cmb2/example-functions.php:544 901 941 #: includes/model/UpStream_Model_Object.php:68 902 942 #: templates/single-project/bugs.php:67 … … 932 972 #: includes/admin/metaboxes/class-up-metaboxes-projects.php:1805 933 973 #: includes/admin/metaboxes/class-up-metaboxes-projects.php:1819 934 #: includes/admin/up-enqueues.php:11 7974 #: includes/admin/up-enqueues.php:118 935 975 msgid "Add new Comment" 936 976 msgstr "Añadir nuevo comentario" 937 977 938 978 #: includes/admin/metaboxes/class-up-metaboxes-projects.php:1811 939 #: includes/admin/up-enqueues.php:11 6979 #: includes/admin/up-enqueues.php:117 940 980 msgid "Add Comment" 941 981 msgstr "Añadir comentario" … … 947 987 948 988 #: includes/admin/metaboxes/class-up-metaboxes-projects.php:1911 949 #: includes/class-up-comments.php:2 79 includes/class-up-comments.php:385950 #: includes/class-up-comments.php:48 2 includes/class-up-comments.php:754989 #: includes/class-up-comments.php:280 includes/class-up-comments.php:387 990 #: includes/class-up-comments.php:484 includes/class-up-comments.php:757 951 991 msgid "Invalid Project." 952 992 msgstr "Plan inválido." … … 954 994 #: includes/admin/metaboxes/class-up-metaboxes-projects.php:2009 955 995 #: includes/admin/metaboxes/metabox-functions.php:598 956 #: includes/class-up-comment.php:5 79 includes/class-up-comments.php:921996 #: includes/class-up-comment.php:580 includes/class-up-comments.php:925 957 997 #, php-format 958 998 msgctxt "%s = human-readable time difference" … … 973 1013 #: includes/admin/options/class-up-options-projects.php:160 974 1014 #: includes/admin/options/class-up-options-tasks.php:160 975 #: templates/single-project/overview.php:171 976 #: templates/single-project/overview.php:203 977 #: templates/single-project/overview.php:235 1015 #: templates/single-project/overview.php:180 1016 #: templates/single-project/overview.php:212 1017 #: templates/single-project/overview.php:244 1018 #: templates/single-project/progress.php:53 978 1019 msgid "Open" 979 1020 msgstr "Abierto" … … 1000 1041 1001 1042 #: includes/admin/metaboxes/metabox-functions.php:715 1002 #: includes/admin/up-enqueues.php:12 31043 #: includes/admin/up-enqueues.php:124 1003 1044 msgid "Unapprove" 1004 1045 msgstr "Desaprobar" 1005 1046 1006 1047 #: includes/admin/metaboxes/metabox-functions.php:721 1007 #: includes/admin/up-enqueues.php:12 51048 #: includes/admin/up-enqueues.php:126 1008 1049 msgid "Approve" 1009 1050 msgstr "Aprobar" 1010 1051 1011 1052 #: includes/admin/metaboxes/metabox-functions.php:730 1012 #: includes/admin/up-enqueues.php:11 51053 #: includes/admin/up-enqueues.php:116 1013 1054 msgid "Reply" 1014 1055 msgstr "Responder" 1015 1056 1016 1057 #: includes/admin/metaboxes/metabox-functions.php:738 1017 #: includes/admin/up-enqueues.php:12 11058 #: includes/admin/up-enqueues.php:122 1018 1059 msgid "Delete" 1019 1060 msgstr "Borrar" … … 1028 1069 1029 1070 #: includes/admin/metaboxes/metabox-functions.php:1232 1030 #: includes/admin/up-enqueues.php:13 41071 #: includes/admin/up-enqueues.php:135 1031 1072 msgid "No client selected" 1032 1073 msgstr "No se ha seleccionado ningún cliente" … … 1063 1104 #: includes/admin/options/class-up-options-tasks.php:120 1064 1105 #: includes/libraries/cmb2-grid/Test/Test.php:52 1065 #: includes/libraries/cmb2/example-functions.php:5 101106 #: includes/libraries/cmb2/example-functions.php:523 1066 1107 msgid "Remove Entry" 1067 1108 msgstr "Eliminar Entrada" … … 1113 1154 #: includes/admin/options/class-up-options-projects.php:161 1114 1155 #: includes/admin/options/class-up-options-tasks.php:161 1115 #: templates/single-project/overview.php:2 121116 #: templates/single-project/overview.php:2 441156 #: templates/single-project/overview.php:221 1157 #: templates/single-project/overview.php:253 1117 1158 msgid "Closed" 1118 1159 msgstr "Cerrado" … … 1501 1542 1502 1543 #: includes/admin/options/class-up-options-general.php:320 1503 #: includes/up-general-functions.php:8 181544 #: includes/up-general-functions.php:839 1504 1545 msgid "Contact Admin" 1505 1546 msgstr "Contactar al Administrador" … … 1579 1620 1580 1621 #: includes/admin/options/class-up-options-general.php:394 1622 #, fuzzy 1623 #| msgid "Collapse Project Bugs box" 1624 msgid "Collapse Project Progress box" 1625 msgstr "Minimiza cuadro de riesgos del plan" 1626 1627 #: includes/admin/options/class-up-options-general.php:398 1628 #, fuzzy 1629 msgid "" 1630 "Choose whether to collapse the Project progress box automatically when a " 1631 "user opens a project page." 1632 msgstr "" 1633 "Elija si desea contraer el cuadro Detalles del proyecto automáticamente " 1634 "cuando un usuario abre una página de proyecto." 1635 1636 #: includes/admin/options/class-up-options-general.php:408 1581 1637 msgid "Collapse Project Milestones box" 1582 1638 msgstr "Minimiza cuadro de etapas del plan" 1583 1639 1584 #: includes/admin/options/class-up-options-general.php: 3981640 #: includes/admin/options/class-up-options-general.php:412 1585 1641 #, fuzzy 1586 1642 msgid "" … … 1591 1647 "abre una página de proyecto." 1592 1648 1593 #: includes/admin/options/class-up-options-general.php:4 081649 #: includes/admin/options/class-up-options-general.php:422 1594 1650 msgid "Collapse Project Tasks box" 1595 1651 msgstr "Minimiza cuadro de tareas del plan" 1596 1652 1597 #: includes/admin/options/class-up-options-general.php:4 121653 #: includes/admin/options/class-up-options-general.php:426 1598 1654 #, fuzzy 1599 1655 msgid "" … … 1604 1660 "abre una página de proyecto." 1605 1661 1606 #: includes/admin/options/class-up-options-general.php:4 221662 #: includes/admin/options/class-up-options-general.php:436 1607 1663 msgid "Collapse Project Bugs box" 1608 1664 msgstr "Minimiza cuadro de riesgos del plan" 1609 1665 1610 #: includes/admin/options/class-up-options-general.php:4 261666 #: includes/admin/options/class-up-options-general.php:440 1611 1667 #, fuzzy 1612 1668 msgid "" … … 1617 1673 "abre una página de proyecto." 1618 1674 1619 #: includes/admin/options/class-up-options-general.php:4 361675 #: includes/admin/options/class-up-options-general.php:450 1620 1676 msgid "Collapse Project Files box" 1621 1677 msgstr "Minimiza cuadro de archivos del plan" 1622 1678 1623 #: includes/admin/options/class-up-options-general.php:4 401679 #: includes/admin/options/class-up-options-general.php:454 1624 1680 #, fuzzy 1625 1681 msgid "" … … 1630 1686 "abre una página de proyecto." 1631 1687 1632 #: includes/admin/options/class-up-options-general.php:4 501688 #: includes/admin/options/class-up-options-general.php:464 1633 1689 msgid "Collapse Project Discussion box" 1634 1690 msgstr "Minimiza cuadro de comentarios del plan" 1635 1691 1636 #: includes/admin/options/class-up-options-general.php:4 541692 #: includes/admin/options/class-up-options-general.php:468 1637 1693 #, fuzzy 1638 1694 msgid "" … … 1643 1699 "usuario abre una página de proyecto." 1644 1700 1645 #: includes/admin/options/class-up-options-general.php:4 681701 #: includes/admin/options/class-up-options-general.php:482 1646 1702 #, fuzzy 1647 1703 msgid "Toggle Features" 1648 1704 msgstr "Características de la palanca" 1649 1705 1650 #: includes/admin/options/class-up-options-general.php:4 711706 #: includes/admin/options/class-up-options-general.php:485 1651 1707 #, fuzzy 1652 1708 msgid "Options to toggle different sections and features." 1653 1709 msgstr "Opciones para alternar entre diferentes secciones y características." 1654 1710 1655 #: includes/admin/options/class-up-options-general.php:475 1711 #: includes/admin/options/class-up-options-general.php:489 1712 #, fuzzy 1713 msgid "Disable Project Progress box" 1714 msgstr "Iconos de progreso del proyecto" 1715 1716 #: includes/admin/options/class-up-options-general.php:493 1717 #, fuzzy 1718 msgid "Choose whether to disable the Project progress box on the front end." 1719 msgstr "" 1720 "Seleccione si desea visualizar la sección Iconos de progreso del proyecto en " 1721 "el módulo de acceso." 1722 1723 #: includes/admin/options/class-up-options-general.php:503 1656 1724 #, fuzzy 1657 1725 msgid "Disable Clients and Client Users" 1658 1726 msgstr "Desactivar Clientes y usuarios de Cliente" 1659 1727 1660 #: includes/admin/options/class-up-options-general.php: 4791728 #: includes/admin/options/class-up-options-general.php:507 1661 1729 #, fuzzy 1662 1730 msgid "" … … 1666 1734 "agregar y utilizar en los Proyectos." 1667 1735 1668 #: includes/admin/options/class-up-options-general.php: 4891736 #: includes/admin/options/class-up-options-general.php:517 1669 1737 #, fuzzy 1670 1738 msgid "Select all client's users by default" 1671 1739 msgstr "Seleccionar todos los usuarios del cliente por defecto" 1672 1740 1673 #: includes/admin/options/class-up-options-general.php: 4931741 #: includes/admin/options/class-up-options-general.php:521 1674 1742 #, fuzzy 1675 1743 msgid "" … … 1680 1748 "defecto después de la modificación o seleccione el cliente." 1681 1749 1682 #: includes/admin/options/class-up-options-general.php:5 031750 #: includes/admin/options/class-up-options-general.php:531 1683 1751 #, fuzzy 1684 1752 msgid "Disable Projects Categorization" 1685 1753 msgstr "Desactivar la categorización de proyectos" 1686 1754 1687 #: includes/admin/options/class-up-options-general.php:5 071755 #: includes/admin/options/class-up-options-general.php:535 1688 1756 #, fuzzy 1689 1757 msgid "" … … 1693 1761 "administradores y los usuarios." 1694 1762 1695 #: includes/admin/options/class-up-options-general.php:5 171763 #: includes/admin/options/class-up-options-general.php:545 1696 1764 #, fuzzy 1697 1765 msgid "Project Progress Icons" 1698 1766 msgstr "Iconos de progreso del proyecto" 1699 1767 1700 #: includes/admin/options/class-up-options-general.php:5 211768 #: includes/admin/options/class-up-options-general.php:549 1701 1769 #, fuzzy 1702 1770 msgid "" … … 1706 1774 "el módulo de acceso." 1707 1775 1708 #: includes/admin/options/class-up-options-general.php:5 261776 #: includes/admin/options/class-up-options-general.php:554 1709 1777 msgid "Do not show" 1710 1778 msgstr "No mostrar" 1711 1779 1712 #: includes/admin/options/class-up-options-general.php:5 311780 #: includes/admin/options/class-up-options-general.php:559 1713 1781 #, fuzzy 1714 1782 msgid "Disable Project Details" 1715 1783 msgstr "Desactivar los detalles del proyecto" 1716 1784 1717 #: includes/admin/options/class-up-options-general.php:5 351785 #: includes/admin/options/class-up-options-general.php:563 1718 1786 #, fuzzy 1719 1787 msgid "Choose whether to display the Project Details section on frontend." … … 1722 1790 "de acceso." 1723 1791 1724 #: includes/admin/options/class-up-options-general.php:5 451792 #: includes/admin/options/class-up-options-general.php:573 1725 1793 #, fuzzy 1726 1794 msgid "Disable Bugs" 1727 1795 msgstr "Desactivar errores" 1728 1796 1729 #: includes/admin/options/class-up-options-general.php:5 491797 #: includes/admin/options/class-up-options-general.php:577 1730 1798 #, fuzzy 1731 1799 msgid "" … … 1736 1804 "como en el área de administración." 1737 1805 1738 #: includes/admin/options/class-up-options-general.php:5 541806 #: includes/admin/options/class-up-options-general.php:582 1739 1807 msgid "Disable the Bugs section?" 1740 1808 msgstr "¿Desactivar la sección Riesgos?" 1741 1809 1742 #: includes/admin/options/class-up-options-general.php:5 591810 #: includes/admin/options/class-up-options-general.php:587 1743 1811 #, fuzzy 1744 1812 msgid "Disable Tasks" 1745 1813 msgstr "Desactivar tareas" 1746 1814 1747 #: includes/admin/options/class-up-options-general.php:5 631815 #: includes/admin/options/class-up-options-general.php:591 1748 1816 #, fuzzy 1749 1817 msgid "" … … 1754 1822 "end como en el área de administración." 1755 1823 1756 #: includes/admin/options/class-up-options-general.php:5 681824 #: includes/admin/options/class-up-options-general.php:596 1757 1825 msgid "Disable the Tasks section?" 1758 1826 msgstr "¿Desactivar la sección Tareas?" 1759 1827 1760 #: includes/admin/options/class-up-options-general.php: 5731828 #: includes/admin/options/class-up-options-general.php:601 1761 1829 #, fuzzy 1762 1830 msgid "Disable Milestones" 1763 1831 msgstr "Desactivar hitos" 1764 1832 1765 #: includes/admin/options/class-up-options-general.php: 5771833 #: includes/admin/options/class-up-options-general.php:605 1766 1834 msgid "" 1767 1835 "Ticking this box will disable the Milestones section on both the frontend " … … 1773 1841 "utilidades requieren las fases para funcionar adecuadamente.</strong>" 1774 1842 1775 #: includes/admin/options/class-up-options-general.php: 5821843 #: includes/admin/options/class-up-options-general.php:610 1776 1844 msgid "Disable the Milestones section?" 1777 1845 msgstr "¿Desactivar la sección Etapas?" 1778 1846 1779 #: includes/admin/options/class-up-options-general.php: 5871847 #: includes/admin/options/class-up-options-general.php:615 1780 1848 #, fuzzy 1781 1849 msgid "Disable Milestone Categories" 1782 1850 msgstr "Desactivar categorías de hitos" 1783 1851 1784 #: includes/admin/options/class-up-options-general.php: 5911852 #: includes/admin/options/class-up-options-general.php:619 1785 1853 #, fuzzy 1786 1854 msgid "" … … 1791 1859 "tanto en el área de administración como en la de frontend." 1792 1860 1793 #: includes/admin/options/class-up-options-general.php:6 021861 #: includes/admin/options/class-up-options-general.php:630 1794 1862 #, fuzzy 1795 1863 msgid "Disable Files" 1796 1864 msgstr "Desactivar archivos" 1797 1865 1798 #: includes/admin/options/class-up-options-general.php:6 061866 #: includes/admin/options/class-up-options-general.php:634 1799 1867 #, fuzzy 1800 1868 msgid "" … … 1805 1873 "frontend como en el área de administración." 1806 1874 1807 #: includes/admin/options/class-up-options-general.php:6 111875 #: includes/admin/options/class-up-options-general.php:639 1808 1876 msgid "Disable the Files section?" 1809 1877 msgstr "¿Desactivar la sección Archivos?" 1810 1878 1811 #: includes/admin/options/class-up-options-general.php:6 161812 #, fuzzy 1813 msgid "File Upload Manager BETA (DO NOT change after you have added files)"1879 #: includes/admin/options/class-up-options-general.php:644 1880 #, fuzzy 1881 msgid "File Upload Manager (NOTE: DO NOT change after you have added files)" 1814 1882 msgstr "" 1815 1883 "File Upload Manager BETA (NO cambie después de haber añadido los archivos)" 1816 1884 1817 #: includes/admin/options/class-up-options-general.php:6 201885 #: includes/admin/options/class-up-options-general.php:648 1818 1886 #, fuzzy 1819 1887 msgid "" … … 1825 1893 "todos los archivos." 1826 1894 1827 #: includes/admin/options/class-up-options-general.php:6 251895 #: includes/admin/options/class-up-options-general.php:653 1828 1896 #, fuzzy 1829 1897 msgid "Use WordPress built-in file uploads" 1830 1898 msgstr "Usar las subidas de archivos incorporadas en WordPress" 1831 1899 1832 #: includes/admin/options/class-up-options-general.php:6 261900 #: includes/admin/options/class-up-options-general.php:654 1833 1901 #, fuzzy 1834 1902 msgid "Use UpStream secure file uploads" 1835 1903 msgstr "Usar UpStream para subir archivos de forma segura" 1836 1904 1837 #: includes/admin/options/class-up-options-general.php:6 301905 #: includes/admin/options/class-up-options-general.php:658 1838 1906 #, fuzzy 1839 1907 msgid "UpStream secure file upload location" 1840 1908 msgstr "Ubicación segura de la carga de archivos de UpStream" 1841 1909 1842 #: includes/admin/options/class-up-options-general.php:6 341910 #: includes/admin/options/class-up-options-general.php:662 1843 1911 #, fuzzy 1844 1912 msgid "" 1845 1913 "If UpStream secure file uploads is enabled, this must be set to a path on " 1846 "your web server that is writeable." 1914 "your web server that is writeable. Contact your system administrator for " 1915 "help." 1847 1916 msgstr "" 1848 1917 "Si UpStream secure file uploads está habilitado, esto debe ser configurado " 1849 1918 "en una ruta en su servidor web que sea escribible." 1850 1919 1851 #: includes/admin/options/class-up-options-general.php:6 401920 #: includes/admin/options/class-up-options-general.php:668 1852 1921 #, fuzzy 1853 1922 msgid "Disable Reports" 1854 1923 msgstr "Desactivar archivos" 1855 1924 1856 #: includes/admin/options/class-up-options-general.php:6 441925 #: includes/admin/options/class-up-options-general.php:672 1857 1926 #, fuzzy 1858 1927 #| msgid "Disable the Files section?" … … 1860 1929 msgstr "¿Desactivar la sección Archivos?" 1861 1930 1862 #: includes/admin/options/class-up-options-general.php:6 491931 #: includes/admin/options/class-up-options-general.php:677 1863 1932 #, fuzzy 1864 1933 msgid "Show reports section" 1865 1934 msgstr "Mostrar la sección de informes" 1866 1935 1867 #: includes/admin/options/class-up-options-general.php:6501868 #: includes/admin/options/class-up-options-general.php:6641869 1936 #: includes/admin/options/class-up-options-general.php:678 1937 #: includes/admin/options/class-up-options-general.php:692 1938 #: includes/admin/options/class-up-options-general.php:706 1939 #: includes/admin/options/class-up-options-general.php:719 1940 #: includes/admin/options/class-up-options-general.php:733 1941 #: includes/admin/options/class-up-options-general.php:747 1942 #: includes/admin/options/class-up-options-general.php:761 1943 msgid "Disable section" 1944 msgstr "Desactivar Sección" 1945 1946 #: includes/admin/options/class-up-options-general.php:682 1947 #: includes/admin/options/class-up-options-general.php:696 1948 #, fuzzy 1949 msgid "Disable Discussion on Projects" 1950 msgstr "Deshabilitar la discusión sobre proyectos" 1951 1952 #: includes/admin/options/class-up-options-general.php:686 1953 #: includes/admin/options/class-up-options-general.php:700 1954 #, fuzzy 1955 msgid "" 1956 "Either allow comments on projects on both the frontend and the admin area or " 1957 "hide the section." 1958 msgstr "" 1959 "Puede permitir comentarios sobre proyectos tanto en el frontend como en el " 1960 "área de administración u ocultar la sección." 1961 1870 1962 #: includes/admin/options/class-up-options-general.php:691 1871 1963 #: includes/admin/options/class-up-options-general.php:705 1872 #: includes/admin/options/class-up-options-general.php:7191873 #: includes/admin/options/class-up-options-general.php:7331874 msgid "Disable section"1875 msgstr "Desactivar Sección"1876 1877 #: includes/admin/options/class-up-options-general.php:6541878 #: includes/admin/options/class-up-options-general.php:6681879 #, fuzzy1880 msgid "Disable Discussion on Projects"1881 msgstr "Deshabilitar la discusión sobre proyectos"1882 1883 #: includes/admin/options/class-up-options-general.php:6581884 #: includes/admin/options/class-up-options-general.php:6721885 #, fuzzy1886 msgid ""1887 "Either allow comments on projects on both the frontend and the admin area or "1888 "hide the section."1889 msgstr ""1890 "Puede permitir comentarios sobre proyectos tanto en el frontend como en el "1891 "área de administración u ocultar la sección."1892 1893 #: includes/admin/options/class-up-options-general.php:6631894 #: includes/admin/options/class-up-options-general.php:6771895 1964 #, fuzzy 1896 1965 msgid "Allow comments on projects" 1897 1966 msgstr "Permitir comentarios sobre proyectos" 1898 1967 1899 #: includes/admin/options/class-up-options-general.php: 6811968 #: includes/admin/options/class-up-options-general.php:709 1900 1969 #, fuzzy 1901 1970 msgid "Disable Discussion on Milestones" 1902 1971 msgstr "Deshabilitar el debate sobre los hitos" 1903 1972 1904 #: includes/admin/options/class-up-options-general.php:6851905 #: includes/admin/options/class-up-options-general.php:6991906 1973 #: includes/admin/options/class-up-options-general.php:713 1907 1974 #: includes/admin/options/class-up-options-general.php:727 1975 #: includes/admin/options/class-up-options-general.php:741 1976 #: includes/admin/options/class-up-options-general.php:755 1908 1977 #, fuzzy, php-format 1909 1978 msgid "Either allow comments on %s or hide the section." 1910 1979 msgstr "Permita comentarios sobre %s u oculte la sección." 1911 1980 1912 #: includes/admin/options/class-up-options-general.php: 6861981 #: includes/admin/options/class-up-options-general.php:714 1913 1982 #: includes/up-labels.php:46 1914 1983 msgid "Milestones" 1915 1984 msgstr "Hitos" 1916 1985 1917 #: includes/admin/options/class-up-options-general.php: 6901986 #: includes/admin/options/class-up-options-general.php:718 1918 1987 #, fuzzy 1919 1988 msgid "Allow comments on Milestones" 1920 1989 msgstr "Permitir comentarios sobre Hitos" 1921 1990 1922 #: includes/admin/options/class-up-options-general.php: 6951991 #: includes/admin/options/class-up-options-general.php:723 1923 1992 #, fuzzy 1924 1993 msgid "Disable Discussion on Tasks" 1925 1994 msgstr "Desactivar el debate sobre las tareas" 1926 1995 1927 #: includes/admin/options/class-up-options-general.php:7 001996 #: includes/admin/options/class-up-options-general.php:728 1928 1997 #: includes/up-labels.php:62 1929 1998 msgid "Tasks" 1930 1999 msgstr "Tareas" 1931 2000 1932 #: includes/admin/options/class-up-options-general.php:7 042001 #: includes/admin/options/class-up-options-general.php:732 1933 2002 #, fuzzy 1934 2003 msgid "Allow comments on Tasks" 1935 2004 msgstr "Permitir comentarios sobre Tareas" 1936 2005 1937 #: includes/admin/options/class-up-options-general.php:7 092006 #: includes/admin/options/class-up-options-general.php:737 1938 2007 #, fuzzy 1939 2008 msgid "Disable Discussion on Bugs" 1940 2009 msgstr "Desactivar la discusión sobre errores" 1941 2010 1942 #: includes/admin/options/class-up-options-general.php:7 142011 #: includes/admin/options/class-up-options-general.php:742 1943 2012 #: includes/up-labels.php:66 1944 2013 msgid "Bugs" 1945 2014 msgstr "Errores" 1946 2015 1947 #: includes/admin/options/class-up-options-general.php:7 182016 #: includes/admin/options/class-up-options-general.php:746 1948 2017 #, fuzzy 1949 2018 msgid "Allow comments on Bugs" 1950 2019 msgstr "Permitir comentarios sobre errores" 1951 2020 1952 #: includes/admin/options/class-up-options-general.php:7 232021 #: includes/admin/options/class-up-options-general.php:751 1953 2022 #, fuzzy 1954 2023 msgid "Disable Discussion on Files" 1955 2024 msgstr "Desactivar Discusión en Archivos" 1956 2025 1957 #: includes/admin/options/class-up-options-general.php:7 282026 #: includes/admin/options/class-up-options-general.php:756 1958 2027 #: includes/up-labels.php:70 1959 2028 msgid "Files" 1960 2029 msgstr "Archivos" 1961 2030 1962 #: includes/admin/options/class-up-options-general.php:7 322031 #: includes/admin/options/class-up-options-general.php:760 1963 2032 #, fuzzy 1964 2033 msgid "Allow comments on Files" 1965 2034 msgstr "Permitir comentarios sobre Archivos" 1966 2035 1967 #: includes/admin/options/class-up-options-general.php:7 372036 #: includes/admin/options/class-up-options-general.php:765 1968 2037 #, fuzzy 1969 2038 msgid "Show all projects in the frontend sidebar" 1970 2039 msgstr "Mostrar todos los proyectos en la barra lateral del módulo frontal" 1971 2040 1972 #: includes/admin/options/class-up-options-general.php:7 402041 #: includes/admin/options/class-up-options-general.php:768 1973 2042 #, fuzzy 1974 2043 msgid "If enabled, all projects will be displayed in the sidebar on frontend." … … 1977 2046 "módulo de acceso." 1978 2047 1979 #: includes/admin/options/class-up-options-general.php:7 442048 #: includes/admin/options/class-up-options-general.php:772 1980 2049 #, fuzzy 1981 2050 msgid "Show only the current project" 1982 2051 msgstr "Mostrar sólo el proyecto actual" 1983 2052 1984 #: includes/admin/options/class-up-options-general.php:7 452053 #: includes/admin/options/class-up-options-general.php:773 1985 2054 msgid "Show all projects" 1986 2055 msgstr "Mostrar todos los proyectos" 1987 2056 1988 #: includes/admin/options/class-up-options-general.php:749 2057 #: includes/admin/options/class-up-options-general.php:777 2058 msgid "Override project locking on front end" 2059 msgstr "Reemplazar el bloqueo del proyecto en la parte delantera" 2060 2061 #: includes/admin/options/class-up-options-general.php:780 2062 msgid "" 2063 "If enabled, users will be allowed to edit projects regardless of whether " 2064 "another person is making edits (only applies on the front end). Note that if " 2065 "you allow multiple users to edit a project simultaneously, there is a chance " 2066 "that changes may be overwritten." 2067 msgstr "" 2068 "Si está habilitada, los usuarios podrán editar proyectos independientemente " 2069 "de si otra persona está realizando modificaciones (solo se aplica en el " 2070 "front-end). Tenga en cuenta que si permite que varios usuarios editen un " 2071 "proyecto simultáneamente, existe la posibilidad de que los cambios se " 2072 "sobrescriban." 2073 2074 #: includes/admin/options/class-up-options-general.php:784 2075 msgid "Users cannot edit simultaneously (safe)" 2076 msgstr "Los usuarios no pueden editar simultáneamente (seguro)" 2077 2078 #: includes/admin/options/class-up-options-general.php:785 2079 msgid "Multiple users can edit a project simultaneously" 2080 msgstr "Varios usuarios pueden editar un proyecto simultáneamente" 2081 2082 #: includes/admin/options/class-up-options-general.php:789 1989 2083 #, fuzzy 1990 2084 msgid "Send Notifications for New Comments" 1991 2085 msgstr "Enviar notificaciones para nuevos comentarios" 1992 2086 1993 #: includes/admin/options/class-up-options-general.php:7 531994 #: includes/admin/options/class-up-options-general.php: 8661995 #: includes/admin/options/class-up-options-general.php: 8802087 #: includes/admin/options/class-up-options-general.php:793 2088 #: includes/admin/options/class-up-options-general.php:906 2089 #: includes/admin/options/class-up-options-general.php:920 1996 2090 #: includes/admin/options/class-up-options-milestones.php:108 1997 2091 msgid "Enabled" 1998 2092 msgstr "Habilitado" 1999 2093 2000 #: includes/admin/options/class-up-options-general.php:7 542094 #: includes/admin/options/class-up-options-general.php:794 2001 2095 #: includes/admin/options/class-up-options-milestones.php:109 2002 2096 msgid "Disabled" 2003 2097 msgstr "Desactivado" 2004 2098 2005 #: includes/admin/options/class-up-options-general.php:7 572099 #: includes/admin/options/class-up-options-general.php:797 2006 2100 #, fuzzy 2007 2101 msgid "" … … 2012 2106 "hito, tarea o fallo cuando alguien lo comente." 2013 2107 2014 #: includes/admin/options/class-up-options-general.php: 7632108 #: includes/admin/options/class-up-options-general.php:803 2015 2109 msgid "Localization" 2016 2110 msgstr "Localización" 2017 2111 2018 #: includes/admin/options/class-up-options-general.php: 7672112 #: includes/admin/options/class-up-options-general.php:807 2019 2113 #, fuzzy 2020 2114 msgid "General options for localization, such as times." 2021 2115 msgstr "Opciones generales de localización, como las horas." 2022 2116 2023 #: includes/admin/options/class-up-options-general.php: 7712117 #: includes/admin/options/class-up-options-general.php:811 2024 2118 #, fuzzy 2025 2119 msgid "Work Hours Per Day" 2026 2120 msgstr "Horas de trabajo por día" 2027 2121 2028 #: includes/admin/options/class-up-options-general.php: 7742122 #: includes/admin/options/class-up-options-general.php:814 2029 2123 #, fuzzy 2030 2124 msgid "The number of work hours per day (used in determining days of work)." … … 2033 2127 "trabajo)." 2034 2128 2035 #: includes/admin/options/class-up-options-general.php: 7782129 #: includes/admin/options/class-up-options-general.php:818 2036 2130 msgid "Currency Symbol" 2037 2131 msgstr "Símbolo de moneda" 2038 2132 2039 #: includes/admin/options/class-up-options-general.php: 7812133 #: includes/admin/options/class-up-options-general.php:821 2040 2134 #, fuzzy 2041 2135 msgid "The local currency symbol." 2042 2136 msgstr "El símbolo de la moneda local." 2043 2137 2044 #: includes/admin/options/class-up-options-general.php: 7892138 #: includes/admin/options/class-up-options-general.php:829 2045 2139 msgid "Maintenance" 2046 2140 msgstr "Mantenimiento" 2047 2141 2048 #: includes/admin/options/class-up-options-general.php: 7932142 #: includes/admin/options/class-up-options-general.php:833 2049 2143 #, fuzzy 2050 2144 msgid "" … … 2055 2149 "cualquiera de estas opciones." 2056 2150 2057 #: includes/admin/options/class-up-options-general.php: 7972151 #: includes/admin/options/class-up-options-general.php:837 2058 2152 #, fuzzy 2059 2153 msgid "Add default UpStream capabilities" 2060 2154 msgstr "Añadir capacidades predeterminadas de UpStream" 2061 2155 2062 #: includes/admin/options/class-up-options-general.php:8 022156 #: includes/admin/options/class-up-options-general.php:842 2063 2157 msgid "Administrator" 2064 2158 msgstr "Administrador" 2065 2159 2066 #: includes/admin/options/class-up-options-general.php:8 032160 #: includes/admin/options/class-up-options-general.php:843 2067 2161 #: includes/class-up-roles.php:45 2068 2162 #, fuzzy … … 2070 2164 msgstr "Administrador de UpStream" 2071 2165 2072 #: includes/admin/options/class-up-options-general.php:8 042073 #: includes/class-up-roles.php:80 upstream.php: 6162166 #: includes/admin/options/class-up-options-general.php:844 2167 #: includes/class-up-roles.php:80 upstream.php:549 2074 2168 msgid "UpStream User" 2075 2169 msgstr "Usuario UpStream" 2076 2170 2077 #: includes/admin/options/class-up-options-general.php:8 142171 #: includes/admin/options/class-up-options-general.php:854 2078 2172 #, fuzzy 2079 2173 msgid "" … … 2087 2181 "puede deshacer." 2088 2182 2089 #: includes/admin/options/class-up-options-general.php:8 212183 #: includes/admin/options/class-up-options-general.php:861 2090 2184 msgid "Update Project Data" 2091 2185 msgstr "Actualizar los datos del plan" 2092 2186 2093 #: includes/admin/options/class-up-options-general.php:8 242187 #: includes/admin/options/class-up-options-general.php:864 2094 2188 msgid "Update" 2095 2189 msgstr "Actualizar" 2096 2190 2097 #: includes/admin/options/class-up-options-general.php:8 262191 #: includes/admin/options/class-up-options-general.php:866 2098 2192 #, fuzzy 2099 2193 msgid "" … … 2108 2202 "algún tiempo si tiene muchos proyectos." 2109 2203 2110 #: includes/admin/options/class-up-options-general.php:8 332204 #: includes/admin/options/class-up-options-general.php:873 2111 2205 #, fuzzy 2112 2206 msgid "Migrate Legacy Milestones" 2113 2207 msgstr "Migración de hitos heredados" 2114 2208 2115 #: includes/admin/options/class-up-options-general.php:8 362209 #: includes/admin/options/class-up-options-general.php:876 2116 2210 #, fuzzy 2117 2211 msgid "Start migration" 2118 2212 msgstr "Iniciar la migración" 2119 2213 2120 #: includes/admin/options/class-up-options-general.php:8 382214 #: includes/admin/options/class-up-options-general.php:878 2121 2215 msgid "" 2122 2216 "Clicking this button will force to migrate again all the legacy milestones " … … 2131 2225 "tiene muchos proyectos." 2132 2226 2133 #: includes/admin/options/class-up-options-general.php:8 452227 #: includes/admin/options/class-up-options-general.php:885 2134 2228 #, fuzzy 2135 2229 msgid "Cleanup Plugin's Update Cache" 2136 2230 msgstr "Caché de actualización del plugin de limpieza" 2137 2231 2138 #: includes/admin/options/class-up-options-general.php:8 482232 #: includes/admin/options/class-up-options-general.php:888 2139 2233 msgid "Cleanup" 2140 2234 msgstr "Limpieza" 2141 2235 2142 #: includes/admin/options/class-up-options-general.php:8 502236 #: includes/admin/options/class-up-options-general.php:890 2143 2237 #, fuzzy 2144 2238 msgid "" … … 2149 2243 "haga clic en este botón y verá las nuevas versiones de los plugins." 2150 2244 2151 #: includes/admin/options/class-up-options-general.php:8 572245 #: includes/admin/options/class-up-options-general.php:897 2152 2246 msgid "Debug" 2153 2247 msgstr "Depurar" 2154 2248 2155 #: includes/admin/options/class-up-options-general.php: 8612249 #: includes/admin/options/class-up-options-general.php:901 2156 2250 #, fuzzy 2157 2251 msgid "" … … 2162 2256 "nuevo menú para inspeccionar la información de depuración." 2163 2257 2164 #: includes/admin/options/class-up-options-general.php: 8712258 #: includes/admin/options/class-up-options-general.php:911 2165 2259 msgid "Beta Features" 2166 2260 msgstr "Características de beta" 2167 2261 2168 #: includes/admin/options/class-up-options-general.php: 8752262 #: includes/admin/options/class-up-options-general.php:915 2169 2263 #, fuzzy 2170 2264 msgid "Ticking this box will enable beta features." 2171 2265 msgstr "Al marcar esta casilla se habilitarán las características beta." 2172 2266 2173 #: includes/admin/options/class-up-options-general.php: 8852267 #: includes/admin/options/class-up-options-general.php:925 2174 2268 msgid "Remove Data" 2175 2269 msgstr "Eliminar datos" 2176 2270 2177 #: includes/admin/options/class-up-options-general.php: 8892271 #: includes/admin/options/class-up-options-general.php:929 2178 2272 #, fuzzy 2179 2273 msgid "" … … 2183 2277 "desinstale el plugin." 2184 2278 2185 #: includes/admin/options/class-up-options-general.php: 8942279 #: includes/admin/options/class-up-options-general.php:934 2186 2280 msgid "Remove all data on uninstall?" 2187 2281 msgstr "¿eliminar todos los datos al desinstalar?" 2188 2282 2189 #: includes/admin/options/class-up-options-general.php:9 482190 #: includes/admin/options/class-up-options-general.php:9 522191 #: includes/admin/options/class-up-options-general.php: 9662192 #: includes/admin/options/class-up-options-general.php: 9702193 #: includes/admin/options/class-up-options-general.php:11 252194 #: includes/admin/options/class-up-options-general.php:11 292195 #: includes/admin/options/class-up-options-general.php:1 1602196 #: includes/admin/options/class-up-options-general.php:1 1642283 #: includes/admin/options/class-up-options-general.php:989 2284 #: includes/admin/options/class-up-options-general.php:993 2285 #: includes/admin/options/class-up-options-general.php:1007 2286 #: includes/admin/options/class-up-options-general.php:1011 2287 #: includes/admin/options/class-up-options-general.php:1171 2288 #: includes/admin/options/class-up-options-general.php:1175 2289 #: includes/admin/options/class-up-options-general.php:1206 2290 #: includes/admin/options/class-up-options-general.php:1210 2197 2291 msgid "Invalid Nonce" 2198 2292 msgstr "Noción inválida" 2199 2293 2200 #: includes/admin/options/class-up-options-general.php:979 2201 #: includes/admin/options/class-up-options-general.php:1022 2294 #: includes/admin/options/class-up-options-general.php:1018 2295 msgid "Invalid File" 2296 msgstr "Archivo Inválido" 2297 2298 #: includes/admin/options/class-up-options-general.php:1023 2299 #: includes/admin/options/class-up-options-general.php:1066 2202 2300 #, fuzzy 2203 2301 msgid "You must be an administrator to import data." 2204 2302 msgstr "Debe ser un administrador para importar datos." 2205 2303 2206 #: includes/admin/options/class-up-options-general.php: 9822304 #: includes/admin/options/class-up-options-general.php:1026 2207 2305 msgid "No file found." 2208 2306 msgstr "Archivo no encontrado." 2209 2307 2210 #: includes/admin/options/class-up-options-general.php:10 392308 #: includes/admin/options/class-up-options-general.php:1085 2211 2309 msgid "The file could not be found." 2212 2310 msgstr "No se pudo encontrar el archivo." 2213 2311 2214 #: includes/admin/options/class-up-options-general.php:10 442312 #: includes/admin/options/class-up-options-general.php:1090 2215 2313 #, fuzzy 2216 2314 msgid "A general error occurred." 2217 2315 msgstr "Se produjo un error general." 2218 2316 2219 #: includes/admin/options/class-up-options-general.php:1 1702317 #: includes/admin/options/class-up-options-general.php:1216 2220 2318 #, fuzzy 2221 2319 msgid "Invalid project id" … … 2385 2483 msgstr "Plural" 2386 2484 2387 #: includes/admin/up-enqueues.php:5 62485 #: includes/admin/up-enqueues.php:57 2388 2486 msgid "Resetting..." 2389 2487 msgstr "Restableciendo ..." 2390 2488 2391 #: includes/admin/up-enqueues.php:5 72489 #: includes/admin/up-enqueues.php:58 2392 2490 msgid "Refreshing..." 2393 2491 msgstr "Refrescando…" 2394 2492 2395 #: includes/admin/up-enqueues.php:5 82493 #: includes/admin/up-enqueues.php:59 2396 2494 msgid "Are you sure you want to reset the capabilities?" 2397 2495 msgstr "¿Seguro de restablecer las capacidades?" 2398 2496 2399 #: includes/admin/up-enqueues.php: 592497 #: includes/admin/up-enqueues.php:60 2400 2498 msgid "Are you sure you want to refresh the projects meta data?" 2401 2499 msgstr "¿Seguro de actualizar los metadatos del plan?" 2402 2500 2403 #: includes/admin/up-enqueues.php:6 12501 #: includes/admin/up-enqueues.php:62 2404 2502 msgid "Are you sure you want to cleanup the cached data about updates?" 2405 2503 msgstr "¿Seguro de limpiar los datos en caché de las actualizaciones?" 2406 2504 2407 #: includes/admin/up-enqueues.php:6 32505 #: includes/admin/up-enqueues.php:64 2408 2506 #, fuzzy 2409 2507 msgid "" … … 2414 2512 "HECHO UNA COPIA DE SEGURIDAD DE TUS DATOS PRIMERO!" 2415 2513 2416 #: includes/admin/up-enqueues.php:6 4 includes/admin/up-enqueues.php:662514 #: includes/admin/up-enqueues.php:65 includes/admin/up-enqueues.php:67 2417 2515 msgid "Success!" 2418 2516 msgstr "Correcto!" 2419 2517 2420 #: includes/admin/up-enqueues.php:6 5 includes/admin/up-enqueues.php:672518 #: includes/admin/up-enqueues.php:66 includes/admin/up-enqueues.php:68 2421 2519 msgid "Error!" 2422 2520 msgstr "Error!" 2423 2521 2424 #: includes/admin/up-enqueues.php:6 82522 #: includes/admin/up-enqueues.php:69 2425 2523 #, fuzzy 2426 2524 msgid "Error cleaning up the cached data!" 2427 2525 msgstr "Error al limpiar los datos de la caché!" 2428 2526 2429 #: includes/admin/up-enqueues.php: 692527 #: includes/admin/up-enqueues.php:70 2430 2528 #, fuzzy 2431 2529 msgid "Error importing data!" 2432 2530 msgstr "Error al importar los datos!" 2433 2531 2434 #: includes/admin/up-enqueues.php:11 32532 #: includes/admin/up-enqueues.php:114 2435 2533 msgid "Cancel" 2436 2534 msgstr "Cancelar" 2437 2535 2438 #: includes/admin/up-enqueues.php:11 42536 #: includes/admin/up-enqueues.php:115 2439 2537 msgid "Add Reply" 2440 2538 msgstr "Añadir respuesta" 2441 2539 2442 #: includes/admin/up-enqueues.php:11 82540 #: includes/admin/up-enqueues.php:119 2443 2541 #, fuzzy 2444 2542 msgid "Add Comment Reply" 2445 2543 msgstr "Agregar comentario Responder" 2446 2544 2447 #: includes/admin/up-enqueues.php:1 19 includes/admin/up-enqueues.php:1642545 #: includes/admin/up-enqueues.php:120 includes/admin/up-enqueues.php:165 2448 2546 msgid "Adding..." 2449 2547 msgstr "Añadiendo..." 2450 2548 2451 #: includes/admin/up-enqueues.php:12 02549 #: includes/admin/up-enqueues.php:121 2452 2550 #, fuzzy 2453 2551 msgid "Replying..." 2454 2552 msgstr "Respondiendo...." 2455 2553 2456 #: includes/admin/up-enqueues.php:12 22554 #: includes/admin/up-enqueues.php:123 2457 2555 msgid "Deleting..." 2458 2556 msgstr "Eliminando …" 2459 2557 2460 #: includes/admin/up-enqueues.php:12 42558 #: includes/admin/up-enqueues.php:125 2461 2559 msgid "Unapproving..." 2462 2560 msgstr "Desaprobar...." 2463 2561 2464 #: includes/admin/up-enqueues.php:12 62562 #: includes/admin/up-enqueues.php:127 2465 2563 msgid "Approving..." 2466 2564 msgstr "Aprobando..." 2467 2565 2468 #: includes/admin/up-enqueues.php:12 7 includes/admin/up-enqueues.php:1652566 #: includes/admin/up-enqueues.php:128 includes/admin/up-enqueues.php:166 2469 2567 msgid "Are you sure? This action cannot be undone." 2470 2568 msgstr "¿Está seguro? Esta acción no se puede deshacer." 2471 2569 2472 #: includes/admin/up-enqueues.php:1 292570 #: includes/admin/up-enqueues.php:130 2473 2571 #, fuzzy 2474 2572 msgid "This comment is not visible by regular users." 2475 2573 msgstr "Este comentario no es visible para los usuarios habituales." 2476 2574 2477 #: includes/admin/up-enqueues.php:13 22575 #: includes/admin/up-enqueues.php:133 2478 2576 #, fuzzy 2479 2577 msgid "Title can't be empty" 2480 2578 msgstr "El título no puede estar vacío" 2481 2579 2482 #: includes/admin/up-enqueues.php:13 32580 #: includes/admin/up-enqueues.php:134 2483 2581 #, fuzzy 2484 2582 msgid "Invalid interval between dates." 2485 2583 msgstr "Intervalo no válido entre fechas." 2486 2584 2487 #: includes/admin/up-enqueues.php:13 52585 #: includes/admin/up-enqueues.php:136 includes/frontend/up-enqueues.php:286 2488 2586 msgid "No results" 2489 2587 msgstr "No hay resultados" 2490 2588 2491 #: includes/admin/up-enqueues.php:15 82589 #: includes/admin/up-enqueues.php:159 2492 2590 #, fuzzy 2493 2591 msgid "UpStream requires jQuery." 2494 2592 msgstr "UpStream requiere jQuery." 2495 2593 2496 #: includes/admin/up-enqueues.php:1 592594 #: includes/admin/up-enqueues.php:160 2497 2595 #, fuzzy 2498 2596 msgid "There's no users assigned yet." 2499 2597 msgstr "Aún no hay usuarios asignados." 2500 2598 2501 #: includes/admin/up-enqueues.php:16 02599 #: includes/admin/up-enqueues.php:161 2502 2600 msgid "Please, select at least one user" 2503 2601 msgstr "Por favor seleccione al menos un usuario" 2504 2602 2505 #: includes/admin/up-enqueues.php:16 12603 #: includes/admin/up-enqueues.php:162 2506 2604 #, fuzzy 2507 2605 msgid "Add 1 User" 2508 2606 msgstr "Añadir 1 usuario" 2509 2607 2510 #: includes/admin/up-enqueues.php:16 22608 #: includes/admin/up-enqueues.php:163 2511 2609 #, fuzzy, php-format 2512 2610 msgid "Add %d Users" 2513 2611 msgstr "Añadir %d Usuarios" 2514 2612 2515 #: includes/admin/up-enqueues.php:16 62613 #: includes/admin/up-enqueues.php:167 2516 2614 msgid "Fetching data..." 2517 2615 msgstr "Obteniendo datos..." 2518 2616 2519 #: includes/admin/up-enqueues.php:16 72617 #: includes/admin/up-enqueues.php:168 2520 2618 msgid "No data found." 2521 2619 msgstr "Ningún dato encontrado." 2522 2620 2523 #: includes/admin/up-enqueues.php:16 82621 #: includes/admin/up-enqueues.php:169 2524 2622 #, fuzzy, php-format 2525 2623 msgid "Managing %s\\'s Permissions" … … 2532 2630 2533 2631 #: includes/class-up-comment.php:295 includes/class-up-comment.php:305 2534 #: includes/class-up-comments.php:65 02632 #: includes/class-up-comments.php:653 2535 2633 #, fuzzy 2536 2634 msgid "Unable to save the data into database." … … 2541 2639 msgstr "Artículo no válido." 2542 2640 2543 #: includes/class-up-comments.php:27 3 includes/class-up-comments.php:7772641 #: includes/class-up-comments.php:274 includes/class-up-comments.php:781 2544 2642 msgid "Invalid nonce." 2545 2643 msgstr "Mientras tanto no es válido." 2546 2644 2547 #: includes/class-up-comments.php:28 4 includes/class-up-comments.php:4072548 #: includes/class-up-comments.php:78 22645 #: includes/class-up-comments.php:285 includes/class-up-comments.php:409 2646 #: includes/class-up-comments.php:786 2549 2647 #, fuzzy 2550 2648 msgid "Commenting is disabled on this project." 2551 2649 msgstr "Comentar está desactivado en este proyecto." 2552 2650 2553 #: includes/class-up-comments.php:48 7 includes/class-up-comments.php:6402651 #: includes/class-up-comments.php:489 includes/class-up-comments.php:642 2554 2652 #, fuzzy 2555 2653 msgid "Comments are disabled for this project." 2556 2654 msgstr "Los comentarios están desactivados para este proyecto." 2557 2655 2558 #: includes/class-up-comments.php:50 12656 #: includes/class-up-comments.php:503 2559 2657 msgctxt "Removing a comment in projects" 2560 2658 msgid "Comment not found." 2561 2659 msgstr "Comentario no encontrado." 2562 2660 2563 #: includes/class-up-comments.php:51 52661 #: includes/class-up-comments.php:517 2564 2662 #, fuzzy 2565 2663 msgid "It wasn't possible to delete this comment." 2566 2664 msgstr "No fue posible borrar este comentario." 2567 2665 2568 #: includes/class-up-comments.php:63 52666 #: includes/class-up-comments.php:637 2569 2667 #, fuzzy, php-format 2570 2668 msgid "Invalid \"%s\" parameter." 2571 2669 msgstr "Parámetro \"%s\" no válido." 2572 2670 2573 #: includes/class-up-comments.php:64 52671 #: includes/class-up-comments.php:648 2574 2672 msgid "Comment not found." 2575 2673 msgstr "Comentario no encontrado." 2576 2674 2577 #: includes/class-up-comments.php:122 52675 #: includes/class-up-comments.php:1229 2578 2676 #, php-format 2579 2677 msgctxt "Comment notification subject" … … 2581 2679 msgstr "Nuevo comentario en %s" 2582 2680 2583 #: includes/class-up-comments.php:127 12681 #: includes/class-up-comments.php:1275 2584 2682 msgid "Item Title: " 2585 2683 msgstr "Título del elemento: " 2586 2684 2587 #: includes/class-up-comments.php:12 792685 #: includes/class-up-comments.php:1283 2588 2686 msgid "Item Type: " 2589 2687 msgstr "Tipo del elemento: " … … 2656 2754 "deshacer. " 2657 2755 2658 #: includes/class-up-debug.php:2 392756 #: includes/class-up-debug.php:263 2659 2757 #, fuzzy 2660 2758 msgid "Action nonce not found." 2661 2759 msgstr "Acción nonce no encontrada." 2662 2760 2663 #: includes/class-up-debug.php:2 462761 #: includes/class-up-debug.php:270 2664 2762 #, fuzzy 2665 2763 msgid "Invalid action nonce." 2666 2764 msgstr "Acción inválida nonce." 2667 2765 2668 #: includes/class-up-import.php:7 4 includes/class-up-import.php:1022766 #: includes/class-up-import.php:76 includes/class-up-import.php:103 2669 2767 #, fuzzy 2670 2768 msgid "Error loading file: line " 2671 2769 msgstr "Error al cargar el archivo: línea" 2672 2770 2673 #: includes/class-up-import.php:15 32771 #: includes/class-up-import.php:154 2674 2772 #, fuzzy, php-format 2675 2773 msgid "Project with ID %s does not exist." 2676 2774 msgstr "El proyecto con ID %s no existe." 2677 2775 2678 #: includes/class-up-import.php:17 52776 #: includes/class-up-import.php:176 2679 2777 #, fuzzy, php-format 2680 2778 msgid "Milestone with ID %s does not exist." 2681 2779 msgstr "Este hito ya no existe." 2682 2780 2683 #: includes/class-up-import.php:23 32781 #: includes/class-up-import.php:234 2684 2782 #, fuzzy, php-format 2685 2783 msgid "Item %s with ID %s does not exist." 2686 2784 msgstr "No existe el %s con el %s de identificación." 2687 2785 2688 #: includes/class-up-import.php:34 52786 #: includes/class-up-import.php:346 2689 2787 #, fuzzy, php-format 2690 2788 msgid "(column %s, field %s)" 2691 2789 msgstr "(columna %s, campo %s)" 2692 2790 2693 #: includes/class-up-import.php:37 62791 #: includes/class-up-import.php:377 2694 2792 #, fuzzy, php-format 2695 2793 msgid "" … … 2699 2797 "(ejemplo: project.title)." 2700 2798 2701 #: includes/class-up-import.php:38 42702 #: includes/model/UpStream_Model_Manager.php: 182703 #: includes/model/UpStream_Model_Manager.php:1 592704 #: includes/model/UpStream_Model_Manager.php: 1932799 #: includes/class-up-import.php:385 2800 #: includes/model/UpStream_Model_Manager.php:23 2801 #: includes/model/UpStream_Model_Manager.php:174 2802 #: includes/model/UpStream_Model_Manager.php:208 2705 2803 #, fuzzy, php-format 2706 2804 msgid "Item type %s is not valid." … … 2718 2816 msgstr "Añadir nuevo %s" 2719 2817 2720 #: includes/class-up-milestones.php:230 includes/up-post-types.php:22 02818 #: includes/class-up-milestones.php:230 includes/up-post-types.php:222 2721 2819 #, php-format 2722 2820 msgid "Edit %s" … … 2733 2831 msgstr "Ver %s" 2734 2832 2735 #: includes/class-up-milestones.php:234 includes/up-post-types.php:21 42833 #: includes/class-up-milestones.php:234 includes/up-post-types.php:216 2736 2834 #, php-format 2737 2835 msgid "Search %s" … … 2753 2851 msgstr "Superior %s:" 2754 2852 2755 #: includes/class-up-milestones.php:238 includes/up-post-types.php:2 282853 #: includes/class-up-milestones.php:238 includes/up-post-types.php:230 2756 2854 #, php-format 2757 2855 msgid "%s" … … 2794 2892 msgstr "Usar como imagen destacada" 2795 2893 2796 #: includes/class-up-milestones.php:340 includes/class-up-milestones.php: 4372894 #: includes/class-up-milestones.php:340 includes/class-up-milestones.php:558 2797 2895 #: includes/up-labels.php:22 2798 2896 msgid "Project" … … 2805 2903 msgstr "Color" 2806 2904 2807 #: includes/class-up-project-activity.php:3 722905 #: includes/class-up-project-activity.php:394 2808 2906 #, fuzzy, php-format 2809 2907 msgid "New: %s" 2810 2908 msgstr "Nuevo %s" 2811 2909 2812 #: includes/class-up-project-activity.php: 3782910 #: includes/class-up-project-activity.php:400 2813 2911 #, fuzzy, php-format 2814 2912 msgid "Edit: %s to %s" 2815 2913 msgstr "Edición: de %s a %s" 2816 2914 2817 #: includes/class-up-project-activity.php:4 152915 #: includes/class-up-project-activity.php:437 2818 2916 #, php-format 2819 2917 msgid "Deleted: %s" 2820 2918 msgstr "Eliminado %s" 2821 2919 2822 #: includes/class-up-project-activity.php:4 492920 #: includes/class-up-project-activity.php:471 2823 2921 #, fuzzy, php-format 2824 2922 msgid "New Item: %s" 2825 2923 msgstr "Nuevo Artículo: %s" 2826 2924 2827 #: includes/class-up-project-activity.php:4 712925 #: includes/class-up-project-activity.php:493 2828 2926 #, fuzzy, php-format 2829 2927 msgid "New: %s - %s on %s" 2830 2928 msgstr "Nuevo: %s - %s on %s" 2831 2929 2832 #: includes/class-up-project-activity.php: 4872930 #: includes/class-up-project-activity.php:509 2833 2931 #, fuzzy, php-format 2834 2932 msgid "Edit: %s from %s to %s on %s" 2835 2933 msgstr "Edición: %s de %s a %s sobre %s" 2836 2934 2837 #: includes/class-up-project.php:50 12935 #: includes/class-up-project.php:505 2838 2936 msgid "This project is being edited by " 2839 2937 msgstr "Este plan lo está editando " 2840 2938 2841 #: includes/class-up-report.php:49 92939 #: includes/class-up-report.php:490 2842 2940 #, fuzzy 2843 2941 #| msgid "Project Label" … … 2847 2945 #: includes/frontend/class-up-login.php:92 2848 2946 #, fuzzy 2849 msgid "Email address field cannot be empty."2947 msgid "Email address/username field cannot be empty." 2850 2948 msgstr "El campo de dirección de correo electrónico no puede estar vacío." 2851 2949 2852 2950 #: includes/frontend/class-up-login.php:94 2951 #, fuzzy 2952 #| msgid "Invalid email address." 2953 msgid "Invalid email address/username." 2954 msgstr "Correo electrónico no valido." 2955 2956 #: includes/frontend/class-up-login.php:97 2957 msgid "Password field cannot be empty." 2958 msgstr "El campo de contraseña no puede estar vacío." 2959 2853 2960 #: includes/frontend/class-up-login.php:99 2854 #: includes/frontend/class-up-login.php:122 2855 #: includes/frontend/class-up-login.php:128 2856 #: includes/frontend/class-up-login.php:149 2857 #: includes/frontend/class-up-login.php:176 2961 #: includes/frontend/class-up-login.php:142 2962 #: includes/frontend/class-up-login.php:171 2963 #: includes/frontend/class-up-login.php:198 2858 2964 msgid "Invalid email address and/or password." 2859 2965 msgstr "Dirección de correo electrónico o contraseña no válida." 2860 2966 2861 #: includes/frontend/class-up-login.php:97 2862 #, fuzzy 2863 msgid "Password field cannot be empty." 2864 msgstr "El campo de contraseña no puede estar vacío." 2865 2866 #: includes/frontend/class-up-login.php:139 2967 #: includes/frontend/class-up-login.php:150 2968 #, fuzzy 2969 #| msgid "Invalid email address and/or password." 2970 msgid "Invalid user/email address and/or password." 2971 msgstr "Dirección de correo electrónico o contraseña no válida." 2972 2973 #: includes/frontend/class-up-login.php:161 2867 2974 #, fuzzy 2868 2975 msgid "You don't have enough permissions to log in here." 2869 2976 msgstr "No tienes suficientes permisos para entrar aquí." 2870 2977 2871 #: includes/frontend/class-up-login.php:1 662978 #: includes/frontend/class-up-login.php:188 2872 2979 #, fuzzy 2873 2980 msgid "Sorry, you are not allowed to access this project." 2874 2981 msgstr "Lo sentimos, no se le permite acceder a este proyecto." 2875 2982 2876 #: includes/frontend/class-up-login.php:2 672983 #: includes/frontend/class-up-login.php:289 2877 2984 #, fuzzy 2878 2985 msgid "You were just logged out." 2879 2986 msgstr "Acabas de cerrar la sesión." 2880 2987 2881 #: includes/frontend/up-enqueues.php: 149 includes/frontend/up-enqueues.php:1652988 #: includes/frontend/up-enqueues.php:215 includes/frontend/up-enqueues.php:231 2882 2989 #, php-format 2883 2990 msgctxt "%s: item name, ie Milestones, Tasks, Bugs, Files, Discussion" … … 2885 2992 msgstr "No has creado ningún %s todavía" 2886 2993 2887 #: includes/frontend/up-enqueues.php: 1612994 #: includes/frontend/up-enqueues.php:227 2888 2995 msgid "Copy" 2889 2996 msgstr "Copiar" 2890 2997 2891 #: includes/frontend/up-enqueues.php: 162 templates/archive-project.php:762998 #: includes/frontend/up-enqueues.php:228 templates/archive-project.php:79 2892 2999 #: templates/global/sidebar.php:28 templates/single-project/bugs.php:144 2893 3000 #: templates/single-project/bugs.php:177 templates/single-project/files.php:118 … … 2900 3007 msgstr "CSV" 2901 3008 2902 #: includes/frontend/up-enqueues.php: 1633009 #: includes/frontend/up-enqueues.php:229 2903 3010 msgid "Search:" 2904 3011 msgstr "Buscar:" 2905 3012 2906 #: includes/frontend/up-enqueues.php: 1743013 #: includes/frontend/up-enqueues.php:240 2907 3014 msgid "Sunday" 2908 3015 msgstr "Domingo" 2909 3016 2910 #: includes/frontend/up-enqueues.php: 1753017 #: includes/frontend/up-enqueues.php:241 2911 3018 msgid "Monday" 2912 3019 msgstr "Lunes" 2913 3020 2914 #: includes/frontend/up-enqueues.php: 1763021 #: includes/frontend/up-enqueues.php:242 2915 3022 msgid "Tuesday" 2916 3023 msgstr "Martes" 2917 3024 2918 #: includes/frontend/up-enqueues.php: 1773025 #: includes/frontend/up-enqueues.php:243 2919 3026 msgid "Wednesday" 2920 3027 msgstr "Miércoles" 2921 3028 2922 #: includes/frontend/up-enqueues.php: 1783029 #: includes/frontend/up-enqueues.php:244 2923 3030 msgid "Thursday" 2924 3031 msgstr "Jueves" 2925 3032 2926 #: includes/frontend/up-enqueues.php: 1793033 #: includes/frontend/up-enqueues.php:245 2927 3034 msgid "Friday" 2928 3035 msgstr "Viernes" 2929 3036 2930 #: includes/frontend/up-enqueues.php: 1803037 #: includes/frontend/up-enqueues.php:246 2931 3038 msgid "Saturday" 2932 3039 msgstr "Sábado" 2933 3040 2934 #: includes/frontend/up-enqueues.php: 1813041 #: includes/frontend/up-enqueues.php:247 2935 3042 msgid "Sun" 2936 3043 msgstr "Dom" 2937 3044 2938 #: includes/frontend/up-enqueues.php: 1823045 #: includes/frontend/up-enqueues.php:248 2939 3046 msgid "Mon" 2940 3047 msgstr "Lun" 2941 3048 2942 #: includes/frontend/up-enqueues.php: 1833049 #: includes/frontend/up-enqueues.php:249 2943 3050 msgid "Tue" 2944 3051 msgstr "Mar" 2945 3052 2946 #: includes/frontend/up-enqueues.php: 1843053 #: includes/frontend/up-enqueues.php:250 2947 3054 msgid "Wed" 2948 3055 msgstr "Mie" 2949 3056 2950 #: includes/frontend/up-enqueues.php: 1853057 #: includes/frontend/up-enqueues.php:251 2951 3058 msgid "Thu" 2952 3059 msgstr "Jue" 2953 3060 2954 #: includes/frontend/up-enqueues.php: 1863061 #: includes/frontend/up-enqueues.php:252 2955 3062 msgid "Fri" 2956 3063 msgstr "Vie" 2957 3064 2958 #: includes/frontend/up-enqueues.php: 1873065 #: includes/frontend/up-enqueues.php:253 2959 3066 msgid "Sat" 2960 3067 msgstr "Sab" 2961 3068 2962 #: includes/frontend/up-enqueues.php: 1883069 #: includes/frontend/up-enqueues.php:254 2963 3070 msgid "Su" 2964 3071 msgstr "Do" 2965 3072 2966 #: includes/frontend/up-enqueues.php: 1893073 #: includes/frontend/up-enqueues.php:255 2967 3074 msgid "Mo" 2968 3075 msgstr "Lu" 2969 3076 2970 #: includes/frontend/up-enqueues.php: 1903077 #: includes/frontend/up-enqueues.php:256 2971 3078 msgid "Tu" 2972 3079 msgstr "Ma" 2973 3080 2974 #: includes/frontend/up-enqueues.php: 1913081 #: includes/frontend/up-enqueues.php:257 2975 3082 msgid "We" 2976 3083 msgstr "Mi" 2977 3084 2978 #: includes/frontend/up-enqueues.php: 1923085 #: includes/frontend/up-enqueues.php:258 2979 3086 msgid "Th" 2980 3087 msgstr "Ju" 2981 3088 2982 #: includes/frontend/up-enqueues.php: 1933089 #: includes/frontend/up-enqueues.php:259 2983 3090 msgid "Fr" 2984 3091 msgstr "Vi" 2985 3092 2986 #: includes/frontend/up-enqueues.php: 1943093 #: includes/frontend/up-enqueues.php:260 2987 3094 msgid "Sa" 2988 3095 msgstr "Sa" 2989 3096 2990 #: includes/frontend/up-enqueues.php: 1953097 #: includes/frontend/up-enqueues.php:261 2991 3098 msgid "January" 2992 3099 msgstr "Enero" 2993 3100 2994 #: includes/frontend/up-enqueues.php: 1963101 #: includes/frontend/up-enqueues.php:262 2995 3102 msgid "February" 2996 3103 msgstr "Febrero" 2997 3104 2998 #: includes/frontend/up-enqueues.php: 1973105 #: includes/frontend/up-enqueues.php:263 2999 3106 msgid "March" 3000 3107 msgstr "Marzo" 3001 3108 3002 #: includes/frontend/up-enqueues.php: 1983109 #: includes/frontend/up-enqueues.php:264 3003 3110 msgid "April" 3004 3111 msgstr "Abril" 3005 3112 3006 #: includes/frontend/up-enqueues.php: 1993113 #: includes/frontend/up-enqueues.php:265 3007 3114 msgid "May" 3008 3115 msgstr "Mayo" 3009 3116 3010 #: includes/frontend/up-enqueues.php:2 003117 #: includes/frontend/up-enqueues.php:266 3011 3118 msgid "June" 3012 3119 msgstr "Junio" 3013 3120 3014 #: includes/frontend/up-enqueues.php:2 013121 #: includes/frontend/up-enqueues.php:267 3015 3122 msgid "July" 3016 3123 msgstr "Julio" 3017 3124 3018 #: includes/frontend/up-enqueues.php:2 023125 #: includes/frontend/up-enqueues.php:268 3019 3126 msgid "August" 3020 3127 msgstr "Agosto" 3021 3128 3022 #: includes/frontend/up-enqueues.php:2 033129 #: includes/frontend/up-enqueues.php:269 3023 3130 msgid "September" 3024 3131 msgstr "Septiembre" 3025 3132 3026 #: includes/frontend/up-enqueues.php:2 043133 #: includes/frontend/up-enqueues.php:270 3027 3134 msgid "October" 3028 3135 msgstr "Octubre" 3029 3136 3030 #: includes/frontend/up-enqueues.php:2 053137 #: includes/frontend/up-enqueues.php:271 3031 3138 msgid "November" 3032 3139 msgstr "Noviembre" 3033 3140 3034 #: includes/frontend/up-enqueues.php:2 063141 #: includes/frontend/up-enqueues.php:272 3035 3142 msgid "December" 3036 3143 msgstr "Diciembre" 3037 3144 3038 #: includes/frontend/up-enqueues.php:2 073145 #: includes/frontend/up-enqueues.php:273 3039 3146 msgid "Jan" 3040 3147 msgstr "Ene" 3041 3148 3042 #: includes/frontend/up-enqueues.php:2 083149 #: includes/frontend/up-enqueues.php:274 3043 3150 msgid "Feb" 3044 3151 msgstr "Feb" 3045 3152 3046 #: includes/frontend/up-enqueues.php:2 093153 #: includes/frontend/up-enqueues.php:275 3047 3154 msgid "Mar" 3048 3155 msgstr "Mar" 3049 3156 3050 #: includes/frontend/up-enqueues.php:2 103157 #: includes/frontend/up-enqueues.php:276 3051 3158 msgid "Apr" 3052 3159 msgstr "Abr" 3053 3160 3054 #: includes/frontend/up-enqueues.php:2 113161 #: includes/frontend/up-enqueues.php:277 3055 3162 msgid "Jun" 3056 3163 msgstr "Jun" 3057 3164 3058 #: includes/frontend/up-enqueues.php:2 123165 #: includes/frontend/up-enqueues.php:278 3059 3166 msgid "Jul" 3060 3167 msgstr "Jul" 3061 3168 3062 #: includes/frontend/up-enqueues.php:2 133169 #: includes/frontend/up-enqueues.php:279 3063 3170 msgid "Aug" 3064 3171 msgstr "Ago" 3065 3172 3066 #: includes/frontend/up-enqueues.php:2 143173 #: includes/frontend/up-enqueues.php:280 3067 3174 msgid "Sep" 3068 3175 msgstr "Sep" 3069 3176 3070 #: includes/frontend/up-enqueues.php:2 153177 #: includes/frontend/up-enqueues.php:281 3071 3178 msgid "Oct" 3072 3179 msgstr "Oct" 3073 3180 3074 #: includes/frontend/up-enqueues.php:2 163181 #: includes/frontend/up-enqueues.php:282 3075 3182 msgid "Nov" 3076 3183 msgstr "Nov" 3077 3184 3078 #: includes/frontend/up-enqueues.php:2 173185 #: includes/frontend/up-enqueues.php:283 3079 3186 msgid "Dec" 3080 3187 msgstr "Dic" 3081 3188 3082 #: includes/frontend/up-enqueues.php:2 183083 #: includes/libraries/cmb2/includes/CMB2_JS.php:2 243189 #: includes/frontend/up-enqueues.php:284 3190 #: includes/libraries/cmb2/includes/CMB2_JS.php:215 3084 3191 msgid "Today" 3085 3192 msgstr "Hoy" 3086 3193 3087 #: includes/frontend/up-enqueues.php:2 193088 #: includes/libraries/cmb2/includes/CMB2_JS.php:17 83089 #: includes/libraries/cmb2/includes/CMB2_JS.php:2 263194 #: includes/frontend/up-enqueues.php:285 3195 #: includes/libraries/cmb2/includes/CMB2_JS.php:172 3196 #: includes/libraries/cmb2/includes/CMB2_JS.php:217 3090 3197 msgid "Clear" 3091 3198 msgstr "Limpiar" … … 3121 3228 #: includes/frontend/up-table-functions.php:343 3122 3229 #: includes/frontend/up-table-functions.php:397 3123 #: includes/model/UpStream_Model_File.php:1 59includes/up-labels.php:693230 #: includes/model/UpStream_Model_File.php:175 includes/up-labels.php:69 3124 3231 #: templates/single-project/files.php:49 3125 3232 msgid "File" … … 3127 3234 3128 3235 #: includes/frontend/up-table-functions.php:386 3236 #: includes/model/UpStream_Model_File.php:176 3129 3237 #: templates/single-project/files.php:50 3130 3238 msgid "Upload Date" … … 3141 3249 #: includes/frontend/up-table-functions.php:986 3142 3250 #, php-format 3143 msgctxt "upstream"3144 3251 msgid " %s found" 3145 3252 msgstr " %s encontrado" 3146 3253 3147 #: includes/frontend/up-template-functions.php:2 163254 #: includes/frontend/up-template-functions.php:247 3148 3255 msgid "Currently no files" 3149 3256 msgstr "Actualmente no hay archivos" 3150 3257 3151 #: includes/frontend/up-template-functions.php:2 373258 #: includes/frontend/up-template-functions.php:268 3152 3259 msgid "In reply to" 3153 3260 msgstr "En respuesta a" … … 3160 3267 #: includes/libraries/cmb2-grid/Test/Test.php:33 3161 3268 #: includes/libraries/cmb2-grid/Test/Test.php:108 3162 #: includes/libraries/cmb2/example-functions.php:1 383163 #: includes/libraries/cmb2/example-functions.php:4 783269 #: includes/libraries/cmb2/example-functions.php:148 3270 #: includes/libraries/cmb2/example-functions.php:492 3164 3271 msgid "Test Text" 3165 3272 msgstr "Probar Texto" … … 3172 3279 #: includes/libraries/cmb2-grid/Test/Test.php:127 3173 3280 #: includes/libraries/cmb2-grid/Test/Test.php:133 3174 #: includes/libraries/cmb2/example-functions.php:1 393175 #: includes/libraries/cmb2/example-functions.php:1 523176 #: includes/libraries/cmb2/example-functions.php:1 653177 #: includes/libraries/cmb2/example-functions.php:1 723178 #: includes/libraries/cmb2/example-functions.php:1 853179 #: includes/libraries/cmb2/example-functions.php: 1933180 #: includes/libraries/cmb2/example-functions.php:2 023181 #: includes/libraries/cmb2/example-functions.php:2 103182 #: includes/libraries/cmb2/example-functions.php:2 253183 #: includes/libraries/cmb2/example-functions.php:2 333184 #: includes/libraries/cmb2/example-functions.php:2 413185 #: includes/libraries/cmb2/example-functions.php:2 583186 #: includes/libraries/cmb2/example-functions.php:2 673187 #: includes/libraries/cmb2/example-functions.php:2 833188 #: includes/libraries/cmb2/example-functions.php: 2903189 #: includes/libraries/cmb2/example-functions.php: 2973190 #: includes/libraries/cmb2/example-functions.php:3 223191 #: includes/libraries/cmb2/example-functions.php:3 353192 #: includes/libraries/cmb2/example-functions.php:3 483193 #: includes/libraries/cmb2/example-functions.php:3 603194 #: includes/libraries/cmb2/example-functions.php:3 693195 #: includes/libraries/cmb2/example-functions.php:3 773196 #: includes/libraries/cmb2/example-functions.php: 3863197 #: includes/libraries/cmb2/example-functions.php: 3933198 #: includes/libraries/cmb2/example-functions.php:4 073199 #: includes/libraries/cmb2/example-functions.php:4 793200 #: includes/libraries/cmb2/example-functions.php:5 733201 #: includes/libraries/cmb2/example-functions.php:5 813202 #: includes/libraries/cmb2/example-functions.php:5 883203 #: includes/libraries/cmb2/example-functions.php: 5953204 #: includes/libraries/cmb2/example-functions.php:6 023205 #: includes/libraries/cmb2/example-functions.php:6 093206 #: includes/libraries/cmb2/example-functions.php:6 163207 #: includes/libraries/cmb2/example-functions.php:6 433208 #: includes/libraries/cmb2/example-functions.php:6 513209 #: includes/libraries/cmb2/example-functions.php:6 583210 #: includes/libraries/cmb2/example-functions.php:7 093281 #: includes/libraries/cmb2/example-functions.php:149 3282 #: includes/libraries/cmb2/example-functions.php:162 3283 #: includes/libraries/cmb2/example-functions.php:175 3284 #: includes/libraries/cmb2/example-functions.php:182 3285 #: includes/libraries/cmb2/example-functions.php:195 3286 #: includes/libraries/cmb2/example-functions.php:203 3287 #: includes/libraries/cmb2/example-functions.php:212 3288 #: includes/libraries/cmb2/example-functions.php:220 3289 #: includes/libraries/cmb2/example-functions.php:235 3290 #: includes/libraries/cmb2/example-functions.php:243 3291 #: includes/libraries/cmb2/example-functions.php:251 3292 #: includes/libraries/cmb2/example-functions.php:268 3293 #: includes/libraries/cmb2/example-functions.php:277 3294 #: includes/libraries/cmb2/example-functions.php:293 3295 #: includes/libraries/cmb2/example-functions.php:300 3296 #: includes/libraries/cmb2/example-functions.php:307 3297 #: includes/libraries/cmb2/example-functions.php:332 3298 #: includes/libraries/cmb2/example-functions.php:345 3299 #: includes/libraries/cmb2/example-functions.php:358 3300 #: includes/libraries/cmb2/example-functions.php:370 3301 #: includes/libraries/cmb2/example-functions.php:384 3302 #: includes/libraries/cmb2/example-functions.php:392 3303 #: includes/libraries/cmb2/example-functions.php:401 3304 #: includes/libraries/cmb2/example-functions.php:408 3305 #: includes/libraries/cmb2/example-functions.php:422 3306 #: includes/libraries/cmb2/example-functions.php:493 3307 #: includes/libraries/cmb2/example-functions.php:583 3308 #: includes/libraries/cmb2/example-functions.php:591 3309 #: includes/libraries/cmb2/example-functions.php:598 3310 #: includes/libraries/cmb2/example-functions.php:605 3311 #: includes/libraries/cmb2/example-functions.php:612 3312 #: includes/libraries/cmb2/example-functions.php:619 3313 #: includes/libraries/cmb2/example-functions.php:626 3314 #: includes/libraries/cmb2/example-functions.php:652 3315 #: includes/libraries/cmb2/example-functions.php:660 3316 #: includes/libraries/cmb2/example-functions.php:667 3317 #: includes/libraries/cmb2/example-functions.php:716 3211 3318 msgid "field description (optional)" 3212 3319 msgstr "descripción del campo (opcional)" … … 3214 3321 #: includes/libraries/cmb2-grid/Test/Test.php:39 3215 3322 #: includes/libraries/cmb2-grid/Test/Test.php:114 3216 #: includes/libraries/cmb2/example-functions.php:1 513323 #: includes/libraries/cmb2/example-functions.php:161 3217 3324 msgid "Test Text Small" 3218 3325 msgstr "Texto pequeño de prueba" 3219 3326 3220 3327 #: includes/libraries/cmb2-grid/Test/Test.php:50 3221 #: includes/libraries/cmb2/example-functions.php:5 083328 #: includes/libraries/cmb2/example-functions.php:521 3222 3329 msgid "Entry {#}" 3223 3330 msgstr "Entrada {#}" 3224 3331 3225 3332 #: includes/libraries/cmb2-grid/Test/Test.php:51 3226 #: includes/libraries/cmb2/example-functions.php:5 093333 #: includes/libraries/cmb2/example-functions.php:522 3227 3334 msgid "Add Another Entry" 3228 3335 msgstr "Agregar otra entrada" 3229 3336 3230 3337 #: includes/libraries/cmb2-grid/Test/Test.php:57 3231 #: includes/libraries/cmb2/example-functions.php:5 233338 #: includes/libraries/cmb2/example-functions.php:537 3232 3339 msgid "Entry Title" 3233 3340 msgstr "Título de la entrada" 3234 3341 3235 3342 #: includes/libraries/cmb2-grid/Test/Test.php:63 3236 #: includes/libraries/cmb2/example-functions.php:5 313343 #: includes/libraries/cmb2/example-functions.php:545 3237 3344 msgid "Write a short description for this entry" 3238 3345 msgstr "Escriba una descripción corta" … … 3244 3351 3245 3352 #: includes/libraries/cmb2-grid/Test/Test.php:120 3246 #: includes/libraries/cmb2/example-functions.php:1 643353 #: includes/libraries/cmb2/example-functions.php:174 3247 3354 msgid "Test Text Medium" 3248 3355 msgstr "Probar Texto Medio" 3249 3356 3250 3357 #: includes/libraries/cmb2-grid/Test/Test.php:126 3251 #: includes/libraries/cmb2/example-functions.php: 1923358 #: includes/libraries/cmb2/example-functions.php:202 3252 3359 msgid "Website URL" 3253 3360 msgstr "URL del Sitio Web" 3254 3361 3255 3362 #: includes/libraries/cmb2-grid/Test/Test.php:132 3256 #: includes/libraries/cmb2/example-functions.php:2 013363 #: includes/libraries/cmb2/example-functions.php:211 3257 3364 msgid "Test Text Email" 3258 3365 msgstr "Probar Texto de Email" 3259 3366 3260 #: includes/libraries/cmb2/example-functions.php:1 253367 #: includes/libraries/cmb2/example-functions.php:115 3261 3368 msgid "Test Metabox" 3262 3369 msgstr "Prueba Metabox" 3263 3370 3264 #: includes/libraries/cmb2/example-functions.php:1 713371 #: includes/libraries/cmb2/example-functions.php:181 3265 3372 msgid "Read-only Disabled Field" 3266 3373 msgstr "Campo deshabilitado de solo lectura" 3267 3374 3268 #: includes/libraries/cmb2/example-functions.php:1 753375 #: includes/libraries/cmb2/example-functions.php:185 3269 3376 msgid "Hey there, I'm a read-only field" 3270 3377 msgstr "Hola, soy un campo de solo lectura" 3271 3378 3272 #: includes/libraries/cmb2/example-functions.php:1 843379 #: includes/libraries/cmb2/example-functions.php:194 3273 3380 msgid "Custom Rendered Field" 3274 3381 msgstr "Campo Renderizado Personalizado" 3275 3382 3276 #: includes/libraries/cmb2/example-functions.php:2 093383 #: includes/libraries/cmb2/example-functions.php:219 3277 3384 msgid "Test Time" 3278 3385 msgstr "Probar Tiempo" 3279 3386 3280 #: includes/libraries/cmb2/example-functions.php:2 173281 #: includes/libraries/cmb2/example-functions.php:2 183387 #: includes/libraries/cmb2/example-functions.php:227 3388 #: includes/libraries/cmb2/example-functions.php:228 3282 3389 msgid "Time zone" 3283 3390 msgstr "Zona Horaria" 3284 3391 3285 #: includes/libraries/cmb2/example-functions.php:2 243392 #: includes/libraries/cmb2/example-functions.php:234 3286 3393 msgid "Test Date Picker" 3287 3394 msgstr "Probar Herramienta de Tiempo" 3288 3395 3289 #: includes/libraries/cmb2/example-functions.php:2 323396 #: includes/libraries/cmb2/example-functions.php:242 3290 3397 msgid "Test Date Picker (UNIX timestamp)" 3291 3398 msgstr "Probar Herramienta de Tiempo (estilo UNIX)" 3292 3399 3293 #: includes/libraries/cmb2/example-functions.php:2 403400 #: includes/libraries/cmb2/example-functions.php:250 3294 3401 msgid "Test Date/Time Picker Combo (UNIX timestamp)" 3295 3402 msgstr "Probar Herramienta de Tiempo/Hora (estilo UNIX)" 3296 3403 3297 #: includes/libraries/cmb2/example-functions.php:2 573404 #: includes/libraries/cmb2/example-functions.php:267 3298 3405 msgid "Test Money" 3299 3406 msgstr "Dinero de prueba" 3300 3407 3301 #: includes/libraries/cmb2/example-functions.php:2 663408 #: includes/libraries/cmb2/example-functions.php:276 3302 3409 msgid "Test Color Picker" 3303 3410 msgstr "Probar Selector de Color" 3304 3411 3305 #: includes/libraries/cmb2/example-functions.php:2 823412 #: includes/libraries/cmb2/example-functions.php:292 3306 3413 msgid "Test Text Area" 3307 3414 msgstr "Probar Área de Texto" 3308 3415 3309 #: includes/libraries/cmb2/example-functions.php:2 893416 #: includes/libraries/cmb2/example-functions.php:299 3310 3417 msgid "Test Text Area Small" 3311 3418 msgstr "Probar Área Pequeña de Texto" 3312 3419 3313 #: includes/libraries/cmb2/example-functions.php: 2963420 #: includes/libraries/cmb2/example-functions.php:306 3314 3421 msgid "Test Text Area for Code" 3315 3422 msgstr "Probar Área de Texto para Código" 3316 3423 3317 #: includes/libraries/cmb2/example-functions.php:3 143424 #: includes/libraries/cmb2/example-functions.php:324 3318 3425 msgid "Test Title Weeeee" 3319 3426 msgstr "Probar Título Weeeee" 3320 3427 3321 #: includes/libraries/cmb2/example-functions.php:3 153428 #: includes/libraries/cmb2/example-functions.php:325 3322 3429 msgid "This is a title description" 3323 3430 msgstr "Esto es la descripción del título" 3324 3431 3325 #: includes/libraries/cmb2/example-functions.php:3 213432 #: includes/libraries/cmb2/example-functions.php:331 3326 3433 msgid "Test Select" 3327 3434 msgstr "Test Select" 3328 3435 3329 #: includes/libraries/cmb2/example-functions.php:3 273330 #: includes/libraries/cmb2/example-functions.php:3 403331 #: includes/libraries/cmb2/example-functions.php:3 523436 #: includes/libraries/cmb2/example-functions.php:337 3437 #: includes/libraries/cmb2/example-functions.php:350 3438 #: includes/libraries/cmb2/example-functions.php:362 3332 3439 msgid "Option One" 3333 3440 msgstr "Opción Uno" 3334 3441 3335 #: includes/libraries/cmb2/example-functions.php:3 283336 #: includes/libraries/cmb2/example-functions.php:3 413337 #: includes/libraries/cmb2/example-functions.php:3 533442 #: includes/libraries/cmb2/example-functions.php:338 3443 #: includes/libraries/cmb2/example-functions.php:351 3444 #: includes/libraries/cmb2/example-functions.php:363 3338 3445 msgid "Option Two" 3339 3446 msgstr "Opción Dos" 3340 3447 3341 #: includes/libraries/cmb2/example-functions.php:3 293342 #: includes/libraries/cmb2/example-functions.php:3 423343 #: includes/libraries/cmb2/example-functions.php:3 543448 #: includes/libraries/cmb2/example-functions.php:339 3449 #: includes/libraries/cmb2/example-functions.php:352 3450 #: includes/libraries/cmb2/example-functions.php:364 3344 3451 msgid "Option Three" 3345 3452 msgstr "Opción Tres" 3346 3453 3347 #: includes/libraries/cmb2/example-functions.php:3 343454 #: includes/libraries/cmb2/example-functions.php:344 3348 3455 msgid "Test Radio inline" 3349 3456 msgstr "Probar Radio inline" 3350 3457 3351 #: includes/libraries/cmb2/example-functions.php:3 473458 #: includes/libraries/cmb2/example-functions.php:357 3352 3459 msgid "Test Radio" 3353 3460 msgstr "Prueba de Radio" 3354 3461 3355 #: includes/libraries/cmb2/example-functions.php:3 593462 #: includes/libraries/cmb2/example-functions.php:369 3356 3463 msgid "Test Taxonomy Radio" 3357 3464 msgstr "Probar Taxonomía de Radio" 3358 3465 3359 #: includes/libraries/cmb2/example-functions.php:3 683466 #: includes/libraries/cmb2/example-functions.php:383 3360 3467 msgid "Test Taxonomy Select" 3361 3468 msgstr "Probar Selección de Taxonomía" 3362 3469 3363 #: includes/libraries/cmb2/example-functions.php:3 763470 #: includes/libraries/cmb2/example-functions.php:391 3364 3471 msgid "Test Taxonomy Multi Checkbox" 3365 3472 msgstr "Probar Multi Checkbox de Taxonomía" 3366 3473 3367 #: includes/libraries/cmb2/example-functions.php: 3853474 #: includes/libraries/cmb2/example-functions.php:400 3368 3475 msgid "Test Checkbox" 3369 3476 msgstr "Probar Checkbox" 3370 3477 3371 #: includes/libraries/cmb2/example-functions.php: 3923478 #: includes/libraries/cmb2/example-functions.php:407 3372 3479 msgid "Test Multi Checkbox" 3373 3480 msgstr "Test Multi Checkbox" 3374 3481 3375 #: includes/libraries/cmb2/example-functions.php: 3983482 #: includes/libraries/cmb2/example-functions.php:413 3376 3483 msgid "Check One" 3377 3484 msgstr "Marque uno" 3378 3485 3379 #: includes/libraries/cmb2/example-functions.php: 3993486 #: includes/libraries/cmb2/example-functions.php:414 3380 3487 msgid "Check Two" 3381 3488 msgstr "Seleccione dos" 3382 3489 3383 #: includes/libraries/cmb2/example-functions.php:4 003490 #: includes/libraries/cmb2/example-functions.php:415 3384 3491 msgid "Check Three" 3385 3492 msgstr "Seleccione tres" 3386 3493 3387 #: includes/libraries/cmb2/example-functions.php:4 063494 #: includes/libraries/cmb2/example-functions.php:421 3388 3495 msgid "Test wysiwyg" 3389 3496 msgstr "Probar wysiwyg" 3390 3497 3391 #: includes/libraries/cmb2/example-functions.php:4 163498 #: includes/libraries/cmb2/example-functions.php:431 3392 3499 msgid "Test Image" 3393 3500 msgstr "Prueba Imagen" 3394 3501 3395 #: includes/libraries/cmb2/example-functions.php:4 173502 #: includes/libraries/cmb2/example-functions.php:432 3396 3503 msgid "Upload an image or enter a URL." 3397 3504 msgstr "Sube una imagen o introduce una URL." 3398 3505 3399 #: includes/libraries/cmb2/example-functions.php:4 233506 #: includes/libraries/cmb2/example-functions.php:438 3400 3507 msgid "Multiple Files" 3401 3508 msgstr "Archivos múltiples" 3402 3509 3403 #: includes/libraries/cmb2/example-functions.php:4 243510 #: includes/libraries/cmb2/example-functions.php:439 3404 3511 msgid "Upload or add multiple images/attachments." 3405 3512 msgstr "Subir o añadir varias imágenes/adjuntos." 3406 3513 3407 #: includes/libraries/cmb2/example-functions.php:4 313514 #: includes/libraries/cmb2/example-functions.php:446 3408 3515 msgid "oEmbed" 3409 3516 msgstr "oEmbed" 3410 3517 3411 3518 #. translators: %s: link to codex.wordpress.org/Embeds 3412 #: includes/libraries/cmb2/example-functions.php:4 343519 #: includes/libraries/cmb2/example-functions.php:449 3413 3520 #, php-format 3414 3521 msgid "" … … 3418 3525 "enumerados en %s." 3419 3526 3420 #: includes/libraries/cmb2/example-functions.php:4 673527 #: includes/libraries/cmb2/example-functions.php:481 3421 3528 msgid "About Page Metabox" 3422 3529 msgstr "Acerca de la Página Metabox" 3423 3530 3424 #: includes/libraries/cmb2/example-functions.php: 4983531 #: includes/libraries/cmb2/example-functions.php:511 3425 3532 msgid "Repeating Field Group" 3426 3533 msgstr "Campo de Grupo que se repite" 3427 3534 3428 #: includes/libraries/cmb2/example-functions.php:5 063535 #: includes/libraries/cmb2/example-functions.php:519 3429 3536 msgid "Generates reusable form entries" 3430 3537 msgstr "Generar entradas de formulario reutilizables" 3431 3538 3432 #: includes/libraries/cmb2/example-functions.php:5 373539 #: includes/libraries/cmb2/example-functions.php:551 3433 3540 msgid "Entry Image" 3434 3541 msgstr "Imagen de la entrada" 3435 3542 3436 #: includes/libraries/cmb2/example-functions.php:5 433543 #: includes/libraries/cmb2/example-functions.php:557 3437 3544 msgid "Image Caption" 3438 3545 msgstr "Leyenda de la imagen" 3439 3546 3440 #: includes/libraries/cmb2/example-functions.php:5 623547 #: includes/libraries/cmb2/example-functions.php:575 3441 3548 msgid "User Profile Metabox" 3442 3549 msgstr "Perfil de usuario Metabox" 3443 3550 3444 #: includes/libraries/cmb2/example-functions.php:5 723445 #: includes/libraries/cmb2/example-functions.php:6 423551 #: includes/libraries/cmb2/example-functions.php:582 3552 #: includes/libraries/cmb2/example-functions.php:651 3446 3553 msgid "Extra Info" 3447 3554 msgstr "Información Extra" 3448 3555 3449 #: includes/libraries/cmb2/example-functions.php:5 803556 #: includes/libraries/cmb2/example-functions.php:590 3450 3557 msgid "Avatar" 3451 3558 msgstr "Avatar" 3452 3559 3453 #: includes/libraries/cmb2/example-functions.php:5 873560 #: includes/libraries/cmb2/example-functions.php:597 3454 3561 msgid "Facebook URL" 3455 3562 msgstr "URL de Facebook" 3456 3563 3457 #: includes/libraries/cmb2/example-functions.php: 5943564 #: includes/libraries/cmb2/example-functions.php:604 3458 3565 msgid "Twitter URL" 3459 3566 msgstr "URL de Twitter" 3460 3567 3461 #: includes/libraries/cmb2/example-functions.php:6 013568 #: includes/libraries/cmb2/example-functions.php:611 3462 3569 msgid "Google+ URL" 3463 3570 msgstr "URL de Google+" 3464 3571 3465 #: includes/libraries/cmb2/example-functions.php:6 083572 #: includes/libraries/cmb2/example-functions.php:618 3466 3573 msgid "Linkedin URL" 3467 3574 msgstr "URL de LinkedIn" 3468 3575 3469 #: includes/libraries/cmb2/example-functions.php:6 153576 #: includes/libraries/cmb2/example-functions.php:625 3470 3577 msgid "User Field" 3471 3578 msgstr "Campo de usuario" 3472 3579 3473 #: includes/libraries/cmb2/example-functions.php:6 353580 #: includes/libraries/cmb2/example-functions.php:644 3474 3581 msgid "Category Metabox" 3475 3582 msgstr "Metabox de categoría" 3476 3583 3477 #: includes/libraries/cmb2/example-functions.php:65 03584 #: includes/libraries/cmb2/example-functions.php:659 3478 3585 msgid "Term Image" 3479 3586 msgstr "Imagen del término" 3480 3587 3481 #: includes/libraries/cmb2/example-functions.php:6 573588 #: includes/libraries/cmb2/example-functions.php:666 3482 3589 msgid "Arbitrary Term Field" 3483 3590 msgstr "Campo arbitrario por término" 3484 3591 3485 #: includes/libraries/cmb2/example-functions.php:6 763592 #: includes/libraries/cmb2/example-functions.php:685 3486 3593 msgid "Theme Options" 3487 3594 msgstr "Opciones del Tema" 3488 3595 3489 #: includes/libraries/cmb2/example-functions.php:7 083596 #: includes/libraries/cmb2/example-functions.php:715 3490 3597 msgid "Site Background Color" 3491 3598 msgstr "Color de fondo del sitio" 3492 3599 3493 #: includes/libraries/cmb2/example-functions.php:7 443600 #: includes/libraries/cmb2/example-functions.php:752 3494 3601 #, php-format 3495 3602 msgid "%s — Updated!" 3496 3603 msgstr "%s — ¡Actualizado!" 3497 3604 3498 #: includes/libraries/cmb2/example-functions.php:78 03605 #: includes/libraries/cmb2/example-functions.php:784 3499 3606 msgid "REST Test Box" 3500 3607 msgstr "Caja de prueba para REST API" 3501 3608 3502 #: includes/libraries/cmb2/example-functions.php:79 13609 #: includes/libraries/cmb2/example-functions.php:793 3503 3610 msgid "REST Test Text" 3504 3611 msgstr "Campo de texto de prueba para REST API" 3505 3612 3506 #: includes/libraries/cmb2/example-functions.php:79 23613 #: includes/libraries/cmb2/example-functions.php:794 3507 3614 msgid "Will show in the REST API for this box and for pages." 3508 3615 msgstr "Se mostrará en la API REST para esta casilla y para las páginas." 3509 3616 3510 #: includes/libraries/cmb2/example-functions.php: 7983617 #: includes/libraries/cmb2/example-functions.php:800 3511 3618 msgid "REST Editable Test Text" 3512 3619 msgstr "Probar el campo de texto, editable de la REST API" 3513 3620 3514 #: includes/libraries/cmb2/example-functions.php: 7993621 #: includes/libraries/cmb2/example-functions.php:801 3515 3622 msgid "Will show in REST API \"editable\" contexts only (`POST` requests)." 3516 3623 msgstr "" 3517 3624 "Se mostrará en el REST API \"editables\" contextos sólo (`POST` peticiones)." 3518 3625 3519 #: includes/libraries/cmb2/includes/CMB2.php: 2023626 #: includes/libraries/cmb2/includes/CMB2.php:199 3520 3627 msgid "Metabox configuration is required to have an ID parameter." 3521 3628 msgstr "" … … 3523 3630 "identificación ID." 3524 3631 3525 #: includes/libraries/cmb2/includes/CMB2.php:6 173632 #: includes/libraries/cmb2/includes/CMB2.php:609 3526 3633 msgid "Click to toggle" 3527 3634 msgstr "Haga clic para activar" 3528 3635 3529 #: includes/libraries/cmb2/includes/CMB2_Ajax.php: 803636 #: includes/libraries/cmb2/includes/CMB2_Ajax.php:75 3530 3637 msgid "Please Try Again" 3531 3638 msgstr "Por favor inténtalo de nuevo" 3532 3639 3533 #: includes/libraries/cmb2/includes/CMB2_Ajax.php:1 903640 #: includes/libraries/cmb2/includes/CMB2_Ajax.php:181 3534 3641 msgid "Remove Embed" 3535 3642 msgstr "Eliminar el incrustado" 3536 3643 3537 3644 #. translators: 1: results for. 2: link to codex.wordpress.org/Embeds 3538 #: includes/libraries/cmb2/includes/CMB2_Ajax.php:1 993539 #: includes/libraries/cmb2/includes/helper-functions.php:1 163645 #: includes/libraries/cmb2/includes/CMB2_Ajax.php:189 3646 #: includes/libraries/cmb2/includes/helper-functions.php:107 3540 3647 #, php-format 3541 3648 msgid "No oEmbed Results Found for %1$s. View more info at %2$s." … … 3544 3651 "%2$s." 3545 3652 3546 #: includes/libraries/cmb2/includes/CMB2_Base.php:4 643653 #: includes/libraries/cmb2/includes/CMB2_Base.php:422 3547 3654 #, php-format 3548 3655 msgid "" … … 3553 3660 "\"%2$s\"." 3554 3661 3555 #: includes/libraries/cmb2/includes/CMB2_Base.php:4 693662 #: includes/libraries/cmb2/includes/CMB2_Base.php:426 3556 3663 #, php-format 3557 3664 msgid "" … … 3562 3669 "en desuso en favor del parámetro \"%2$s\"." 3563 3670 3564 #: includes/libraries/cmb2/includes/CMB2_Base.php: 5003671 #: includes/libraries/cmb2/includes/CMB2_Base.php:456 3565 3672 #, php-format 3566 3673 msgid "" … … 3571 3678 "la versión %2$s! %3$s" 3572 3679 3573 #: includes/libraries/cmb2/includes/CMB2_Base.php: 5033680 #: includes/libraries/cmb2/includes/CMB2_Base.php:458 3574 3681 #, php-format 3575 3682 msgid "" … … 3580 3687 "la versión %2$s sin alternativa disponible." 3581 3688 3582 #: includes/libraries/cmb2/includes/CMB2_Base.php:542 3583 #: includes/libraries/cmb2/includes/CMB2_Hookup_Base.php:110 3584 #: includes/libraries/cmb2/includes/CMB2_Options_Hookup.php:358 3585 #: includes/libraries/cmb2/includes/types/CMB2_Type_Base.php:191 3689 #: includes/libraries/cmb2/includes/CMB2_Base.php:491 3690 #: includes/libraries/cmb2/includes/CMB2_Hookup_Base.php:102 3691 #: includes/libraries/cmb2/includes/CMB2_Options.php:247 3692 #: includes/libraries/cmb2/includes/CMB2_Options_Hookup.php:357 3693 #: includes/libraries/cmb2/includes/types/CMB2_Type_Base.php:173 3586 3694 #, php-format 3587 3695 msgid "Invalid %1$s property: %2$s" 3588 3696 msgstr "Propiedad %1$s no válida: %2$s" 3589 3697 3590 #: includes/libraries/cmb2/includes/CMB2_Base.php:5 593591 #: includes/libraries/cmb2/includes/types/CMB2_Type_Base.php:1 733698 #: includes/libraries/cmb2/includes/CMB2_Base.php:509 3699 #: includes/libraries/cmb2/includes/types/CMB2_Type_Base.php:157 3592 3700 #, php-format 3593 3701 msgid "Invalid %1$s method: %2$s" 3594 3702 msgstr "Método %1$s inválido: %2$s" 3595 3703 3596 #: includes/libraries/cmb2/includes/CMB2_Field.php:1 3823704 #: includes/libraries/cmb2/includes/CMB2_Field.php:1438 3597 3705 msgid "Add Group" 3598 3706 msgstr "Añadir grupo" 3599 3707 3600 #: includes/libraries/cmb2/includes/CMB2_Field.php:1 3833708 #: includes/libraries/cmb2/includes/CMB2_Field.php:1439 3601 3709 msgid "Remove Group" 3602 3710 msgstr "Eliminar Grupo" 3603 3711 3604 #: includes/libraries/cmb2/includes/CMB2_Field.php:15 443712 #: includes/libraries/cmb2/includes/CMB2_Field.php:1589 3605 3713 msgid "Sorry, this field does not have a cmb_id specified." 3606 3714 msgstr "Lo sentimos, este campo no tiene un cmb_id especificado." 3607 3715 3608 #: includes/libraries/cmb2/includes/CMB2_Field_Display.php:4 673609 #: includes/libraries/cmb2/includes/CMB2_JS.php:2 473610 #: includes/libraries/cmb2/includes/types/CMB2_Type_File_Base.php: 923716 #: includes/libraries/cmb2/includes/CMB2_Field_Display.php:453 3717 #: includes/libraries/cmb2/includes/CMB2_JS.php:237 3718 #: includes/libraries/cmb2/includes/types/CMB2_Type_File_Base.php:79 3611 3719 msgid "File:" 3612 3720 msgstr "Archivo:" 3613 3721 3614 #: includes/libraries/cmb2/includes/CMB2_Hookup_Base.php:45 3722 #: includes/libraries/cmb2/includes/CMB2_Hookup.php:188 3723 msgid "" 3724 "Term Metadata is a WordPress 4.4+ feature. Please upgrade your WordPress " 3725 "install." 3726 msgstr "" 3727 "La Metadata de términos es una característica de WordPress 4.4+. Por favor " 3728 "actualice su instalación de WordPress." 3729 3730 #: includes/libraries/cmb2/includes/CMB2_Hookup.php:192 3731 msgid "Term metaboxes configuration requires a \"taxonomies\" parameter." 3732 msgstr "" 3733 "La configuración de metadatos de términos requiere un parámetro “taxonomies”." 3734 3735 #: includes/libraries/cmb2/includes/CMB2_Hookup.php:550 3736 #, php-format 3737 msgid "Toggle panel: %s" 3738 msgstr "Alternar panel: %s" 3739 3740 #: includes/libraries/cmb2/includes/CMB2_Hookup_Base.php:44 3615 3741 #, php-format 3616 3742 msgid "%1$s should be implemented by the extended class." 3617 3743 msgstr "%1$s deben ser implementadas extendiendo la clase." 3618 3744 3619 #: includes/libraries/cmb2/includes/CMB2_JS.php:17 93745 #: includes/libraries/cmb2/includes/CMB2_JS.php:173 3620 3746 msgid "Default" 3621 3747 msgstr "Por defecto" 3622 3748 3623 #: includes/libraries/cmb2/includes/CMB2_JS.php:1 803749 #: includes/libraries/cmb2/includes/CMB2_JS.php:174 3624 3750 msgid "Select Color" 3625 3751 msgstr "Seleccionar Color" 3626 3752 3627 #: includes/libraries/cmb2/includes/CMB2_JS.php:1 813753 #: includes/libraries/cmb2/includes/CMB2_JS.php:175 3628 3754 msgid "Current Color" 3629 3755 msgstr "Color actual" 3630 3756 3631 #: includes/libraries/cmb2/includes/CMB2_JS.php:2 123757 #: includes/libraries/cmb2/includes/CMB2_JS.php:207 3632 3758 msgctxt "Valid formatDate string for jquery-ui datepicker" 3633 3759 msgid "mm/dd/yy" 3634 3760 msgstr "mm/dd/yy" 3635 3761 3636 #: includes/libraries/cmb2/includes/CMB2_JS.php:2 143762 #: includes/libraries/cmb2/includes/CMB2_JS.php:208 3637 3763 msgid "Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday" 3638 3764 msgstr "Domingo, Lunes, Martes, Miércoles, Jueves, Viernes, Sábado" 3639 3765 3640 #: includes/libraries/cmb2/includes/CMB2_JS.php:2 153766 #: includes/libraries/cmb2/includes/CMB2_JS.php:209 3641 3767 msgid "Su, Mo, Tu, We, Th, Fr, Sa" 3642 3768 msgstr "Do, Lu, Ma, Mi, Ju, Vi, Sa" 3643 3769 3644 #: includes/libraries/cmb2/includes/CMB2_JS.php:21 63770 #: includes/libraries/cmb2/includes/CMB2_JS.php:210 3645 3771 msgid "Sun, Mon, Tue, Wed, Thu, Fri, Sat" 3646 3772 msgstr "Dom, Lun, Mar, Mie, Jue, Vie, Sab" 3647 3773 3648 #: includes/libraries/cmb2/includes/CMB2_JS.php:21 83774 #: includes/libraries/cmb2/includes/CMB2_JS.php:211 3649 3775 msgid "" 3650 3776 "January, February, March, April, May, June, July, August, September, " … … 3654 3780 "Octubre, Noviembre, Diciembre" 3655 3781 3656 #: includes/libraries/cmb2/includes/CMB2_JS.php:2 213782 #: includes/libraries/cmb2/includes/CMB2_JS.php:212 3657 3783 msgid "Jan, Feb, Mar, Apr, May, Jun, Jul, Aug, Sep, Oct, Nov, Dec" 3658 3784 msgstr "Ene, Feb, Mar, Apr, May, Jun, Jul, ago, Sep, Oct, Nov, Dic" 3659 3785 3660 #: includes/libraries/cmb2/includes/CMB2_JS.php:2 223786 #: includes/libraries/cmb2/includes/CMB2_JS.php:213 3661 3787 msgid "Next" 3662 3788 msgstr "Siguiente" 3663 3789 3664 #: includes/libraries/cmb2/includes/CMB2_JS.php:2 233790 #: includes/libraries/cmb2/includes/CMB2_JS.php:214 3665 3791 msgid "Prev" 3666 3792 msgstr "Anterior" 3667 3793 3668 #: includes/libraries/cmb2/includes/CMB2_JS.php:2 253669 #: includes/libraries/cmb2/includes/CMB2_JS.php:2 353794 #: includes/libraries/cmb2/includes/CMB2_JS.php:216 3795 #: includes/libraries/cmb2/includes/CMB2_JS.php:226 3670 3796 msgid "Done" 3671 3797 msgstr "Hecho" 3672 3798 3673 #: includes/libraries/cmb2/includes/CMB2_JS.php:22 93799 #: includes/libraries/cmb2/includes/CMB2_JS.php:220 3674 3800 msgid "Choose Time" 3675 3801 msgstr "Elegir Hora" 3676 3802 3677 #: includes/libraries/cmb2/includes/CMB2_JS.php:2 303803 #: includes/libraries/cmb2/includes/CMB2_JS.php:221 3678 3804 msgid "Time" 3679 3805 msgstr "Hora" 3680 3806 3681 #: includes/libraries/cmb2/includes/CMB2_JS.php:2 313807 #: includes/libraries/cmb2/includes/CMB2_JS.php:222 3682 3808 msgid "Hour" 3683 3809 msgstr "Hora" 3684 3810 3685 #: includes/libraries/cmb2/includes/CMB2_JS.php:2 323811 #: includes/libraries/cmb2/includes/CMB2_JS.php:223 3686 3812 msgid "Minute" 3687 3813 msgstr "Minuto" 3688 3814 3689 #: includes/libraries/cmb2/includes/CMB2_JS.php:2 333815 #: includes/libraries/cmb2/includes/CMB2_JS.php:224 3690 3816 msgid "Second" 3691 3817 msgstr "Segundo" 3692 3818 3693 #: includes/libraries/cmb2/includes/CMB2_JS.php:2 343819 #: includes/libraries/cmb2/includes/CMB2_JS.php:225 3694 3820 msgid "Now" 3695 3821 msgstr "Ahora" 3696 3822 3697 #: includes/libraries/cmb2/includes/CMB2_JS.php:2 363823 #: includes/libraries/cmb2/includes/CMB2_JS.php:227 3698 3824 msgctxt "" 3699 3825 "Valid formatting string, as per http://trentrichardson.com/examples/" … … 3702 3828 msgstr "hh: mm TT" 3703 3829 3704 #: includes/libraries/cmb2/includes/CMB2_JS.php:2 433830 #: includes/libraries/cmb2/includes/CMB2_JS.php:233 3705 3831 msgid "Use this file" 3706 3832 msgstr "Usar este archivo" 3707 3833 3708 #: includes/libraries/cmb2/includes/CMB2_JS.php:2 443834 #: includes/libraries/cmb2/includes/CMB2_JS.php:234 3709 3835 msgid "Use these files" 3710 3836 msgstr "Utilizar estos archivos" 3711 3837 3712 #: includes/libraries/cmb2/includes/CMB2_JS.php:2 453713 #: includes/libraries/cmb2/includes/types/CMB2_Type_File_Base.php: 733838 #: includes/libraries/cmb2/includes/CMB2_JS.php:235 3839 #: includes/libraries/cmb2/includes/types/CMB2_Type_File_Base.php:64 3714 3840 msgid "Remove Image" 3715 3841 msgstr "Eliminar imagen" 3716 3842 3717 #: includes/libraries/cmb2/includes/CMB2_JS.php:2 463718 #: includes/libraries/cmb2/includes/CMB2_Types.php:4 463719 #: includes/libraries/cmb2/includes/types/CMB2_Type_File_Base.php: 973843 #: includes/libraries/cmb2/includes/CMB2_JS.php:236 3844 #: includes/libraries/cmb2/includes/CMB2_Types.php:408 3845 #: includes/libraries/cmb2/includes/types/CMB2_Type_File_Base.php:84 3720 3846 msgid "Remove" 3721 3847 msgstr "Eliminar" 3722 3848 3723 #: includes/libraries/cmb2/includes/CMB2_JS.php:2 483724 #: includes/libraries/cmb2/includes/types/CMB2_Type_File_Base.php: 953849 #: includes/libraries/cmb2/includes/CMB2_JS.php:238 3850 #: includes/libraries/cmb2/includes/types/CMB2_Type_File_Base.php:82 3725 3851 msgid "Download" 3726 3852 msgstr "Descargar" 3727 3853 3728 #: includes/libraries/cmb2/includes/CMB2_JS.php:2 493854 #: includes/libraries/cmb2/includes/CMB2_JS.php:239 3729 3855 msgid "Select / Deselect All" 3730 3856 msgstr "Seleccionar / Deseleccionar Todo" 3731 3857 3732 #: includes/libraries/cmb2/includes/CMB2_Options_Hookup.php:13 83858 #: includes/libraries/cmb2/includes/CMB2_Options_Hookup.php:139 3733 3859 msgid "Nothing to update." 3734 3860 msgstr "No hay nada que actualizar." 3735 3861 3736 #: includes/libraries/cmb2/includes/CMB2_Options_Hookup.php:14 23862 #: includes/libraries/cmb2/includes/CMB2_Options_Hookup.php:143 3737 3863 msgid "Settings updated." 3738 3864 msgstr "Ajustes actualizados." 3739 3865 3740 #: includes/libraries/cmb2/includes/CMB2_Types.php:2 393866 #: includes/libraries/cmb2/includes/CMB2_Types.php:226 3741 3867 msgid "Custom CMB2 field type classes must extend CMB2_Type_Base." 3742 3868 msgstr "" 3743 3869 "Clases personalizadas de tipo de campo CMB2 deben extender CMB2_Type_Base." 3744 3870 3745 #: includes/libraries/cmb2/includes/CMB2_Types.php:3 773871 #: includes/libraries/cmb2/includes/CMB2_Types.php:344 3746 3872 msgid "Add Row" 3747 3873 msgstr "Añadir fila" 3748 3874 3749 #: includes/libraries/cmb2/includes/CMB2_Types.php:4 453875 #: includes/libraries/cmb2/includes/CMB2_Types.php:408 3750 3876 msgid "Remove Row" 3751 3877 msgstr "Eliminar Fila" 3752 3878 3753 #: includes/libraries/cmb2/includes/CMB2_hookup.php:188 3754 msgid "" 3755 "Term Metadata is a WordPress 4.4+ feature. Please upgrade your WordPress " 3756 "install." 3757 msgstr "" 3758 "La Metadata de términos es una característica de WordPress 4.4+. Por favor " 3759 "actualice su instalación de WordPress." 3760 3761 #: includes/libraries/cmb2/includes/CMB2_hookup.php:193 3762 msgid "Term metaboxes configuration requires a \"taxonomies\" parameter." 3763 msgstr "" 3764 "La configuración de metadatos de términos requiere un parámetro “taxonomies”." 3765 3766 #: includes/libraries/cmb2/includes/CMB2_hookup.php:473 3767 #, php-format 3768 msgid "Toggle panel: %s" 3769 msgstr "Alternar panel: %s" 3770 3771 #: includes/libraries/cmb2/includes/helper-functions.php:340 3879 #: includes/libraries/cmb2/includes/helper-functions.php:308 3772 3880 msgid "Save" 3773 3881 msgstr "Guardar" 3774 3882 3775 #: includes/libraries/cmb2/includes/rest-api/CMB2_REST_Controller.php:2 703883 #: includes/libraries/cmb2/includes/rest-api/CMB2_REST_Controller.php:257 3776 3884 msgid "This box does not have read permissions." 3777 3885 msgstr "Este cuadro no tiene permisos de lectura." 3778 3886 3779 #: includes/libraries/cmb2/includes/rest-api/CMB2_REST_Controller.php:2 923887 #: includes/libraries/cmb2/includes/rest-api/CMB2_REST_Controller.php:277 3780 3888 msgid "This box does not have write permissions." 3781 3889 msgstr "Este cuadro no tiene permisos de escritura." 3782 3890 3783 #: includes/libraries/cmb2/includes/rest-api/CMB2_REST_Controller.php:3 163891 #: includes/libraries/cmb2/includes/rest-api/CMB2_REST_Controller.php:300 3784 3892 msgid "" 3785 3893 "No box found by that id. A box needs to be registered with the \"show_in_rest" … … 3789 3897 "registrarse con el parámetro “show_in_rest” configurado." 3790 3898 3791 #: includes/libraries/cmb2/includes/rest-api/CMB2_REST_Controller.php:3 973899 #: includes/libraries/cmb2/includes/rest-api/CMB2_REST_Controller.php:378 3792 3900 msgid "A human-readable description of the object." 3793 3901 msgstr "Una descripción humanamente legible del objeto." 3794 3902 3795 #: includes/libraries/cmb2/includes/rest-api/CMB2_REST_Controller.php: 4043903 #: includes/libraries/cmb2/includes/rest-api/CMB2_REST_Controller.php:385 3796 3904 msgid "The id for the object." 3797 3905 msgstr "El ID para el objeto." 3798 3906 3799 #: includes/libraries/cmb2/includes/rest-api/CMB2_REST_Controller.php: 4113907 #: includes/libraries/cmb2/includes/rest-api/CMB2_REST_Controller.php:392 3800 3908 msgid "The title for the object." 3801 3909 msgstr "El título para el objeto." 3802 3910 3803 #: includes/libraries/cmb2/includes/rest-api/CMB2_REST_Controller_Boxes.php:5 53911 #: includes/libraries/cmb2/includes/rest-api/CMB2_REST_Controller_Boxes.php:51 3804 3912 msgid "Includes the registered fields for the box in the response." 3805 3913 msgstr "Incluye los campos registrados para el cuadro en la respuesta." 3806 3914 3807 #: includes/libraries/cmb2/includes/rest-api/CMB2_REST_Controller_Boxes.php:7 63915 #: includes/libraries/cmb2/includes/rest-api/CMB2_REST_Controller_Boxes.php:72 3808 3916 msgid "" 3809 3917 "Includes the fully rendered attributes, 'form_open', 'form_close', as well " … … 3815 3923 "de hoja de estilo 'css_dependencies'." 3816 3924 3817 #: includes/libraries/cmb2/includes/rest-api/CMB2_REST_Controller_Boxes.php:1 313925 #: includes/libraries/cmb2/includes/rest-api/CMB2_REST_Controller_Boxes.php:122 3818 3926 msgid "No boxes found." 3819 3927 msgstr "No se han encontrado cajas." 3820 3928 3821 #: includes/libraries/cmb2/includes/rest-api/CMB2_REST_Controller_Fields.php: 303929 #: includes/libraries/cmb2/includes/rest-api/CMB2_REST_Controller_Fields.php:27 3822 3930 msgid "" 3823 3931 "Includes the box object which the fields are registered to in the response." … … 3826 3934 "respuesta." 3827 3935 3828 #: includes/libraries/cmb2/includes/rest-api/CMB2_REST_Controller_Fields.php:3 43936 #: includes/libraries/cmb2/includes/rest-api/CMB2_REST_Controller_Fields.php:30 3829 3937 msgid "" 3830 3938 "When the '_rendered' argument is passed, the renderable field attributes " … … 3837 3945 "renderizable." 3838 3946 3839 #: includes/libraries/cmb2/includes/rest-api/CMB2_REST_Controller_Fields.php:3 83840 #: includes/libraries/cmb2/includes/rest-api/CMB2_REST_Controller_Fields.php: 423947 #: includes/libraries/cmb2/includes/rest-api/CMB2_REST_Controller_Fields.php:33 3948 #: includes/libraries/cmb2/includes/rest-api/CMB2_REST_Controller_Fields.php:36 3841 3949 msgid "" 3842 3950 "To view or modify the field's value, the 'object_id' and 'object_type' " … … 3846 3954 "'tipo_objeto' son requeridos." 3847 3955 3848 #: includes/libraries/cmb2/includes/rest-api/CMB2_REST_Controller_Fields.php:2 603956 #: includes/libraries/cmb2/includes/rest-api/CMB2_REST_Controller_Fields.php:236 3849 3957 msgid "" 3850 3958 "CMB2 Field value cannot be updated without the value parameter specified." … … 3853 3961 "especificado." 3854 3962 3855 #: includes/libraries/cmb2/includes/rest-api/CMB2_REST_Controller_Fields.php: 3283963 #: includes/libraries/cmb2/includes/rest-api/CMB2_REST_Controller_Fields.php:297 3856 3964 msgid "" 3857 3965 "CMB2 Field value cannot be modified without the object_id and object_type " … … 3861 3969 "object_id y object_type." 3862 3970 3863 #: includes/libraries/cmb2/includes/rest-api/CMB2_REST_Controller_Fields.php:3 443864 #: includes/libraries/cmb2/includes/rest-api/CMB2_REST_Controller_Fields.php:3 753971 #: includes/libraries/cmb2/includes/rest-api/CMB2_REST_Controller_Fields.php:312 3972 #: includes/libraries/cmb2/includes/rest-api/CMB2_REST_Controller_Fields.php:341 3865 3973 msgid "No field found by that id." 3866 3974 msgstr "Ningún campo se encontró con ese id." 3867 3975 3868 #: includes/libraries/cmb2/includes/rest-api/CMB2_REST_Controller_Fields.php:4 513976 #: includes/libraries/cmb2/includes/rest-api/CMB2_REST_Controller_Fields.php:415 3869 3977 #, php-format 3870 3978 msgid "Value Error for %s" 3871 3979 msgstr "Error de valor para%s" 3872 3980 3873 #: includes/libraries/cmb2/includes/shim/WP_REST_Controller.php:28 3981 #. translators: %s: register_routes() 3982 #: includes/libraries/cmb2/includes/shim/WP_REST_Controller.php:25 3874 3983 #, php-format 3875 3984 msgid "Method '%s' must be overridden." 3876 3985 msgstr "Se debe sobreescribir el método '%s'." 3877 3986 3878 #: includes/libraries/cmb2/includes/shim/WP_REST_Controller.php:41 3879 #: includes/libraries/cmb2/includes/shim/WP_REST_Controller.php:56 3987 #: includes/libraries/cmb2/includes/shim/WP_REST_Controller.php:35 3988 #: includes/libraries/cmb2/includes/shim/WP_REST_Controller.php:47 3989 #: includes/libraries/cmb2/includes/shim/WP_REST_Controller.php:59 3880 3990 #: includes/libraries/cmb2/includes/shim/WP_REST_Controller.php:71 3881 #: includes/libraries/cmb2/includes/shim/WP_REST_Controller.php:86 3882 #: includes/libraries/cmb2/includes/shim/WP_REST_Controller.php:101 3883 #: includes/libraries/cmb2/includes/shim/WP_REST_Controller.php:116 3991 #: includes/libraries/cmb2/includes/shim/WP_REST_Controller.php:83 3992 #: includes/libraries/cmb2/includes/shim/WP_REST_Controller.php:95 3993 #: includes/libraries/cmb2/includes/shim/WP_REST_Controller.php:107 3994 #: includes/libraries/cmb2/includes/shim/WP_REST_Controller.php:119 3884 3995 #: includes/libraries/cmb2/includes/shim/WP_REST_Controller.php:131 3885 #: includes/libraries/cmb2/includes/shim/WP_REST_Controller.php:146 3886 #: includes/libraries/cmb2/includes/shim/WP_REST_Controller.php:161 3887 #: includes/libraries/cmb2/includes/shim/WP_REST_Controller.php:176 3888 #: includes/libraries/cmb2/includes/shim/WP_REST_Controller.php:191 3889 #: includes/libraries/cmb2/includes/shim/WP_REST_Controller.php:207 3996 #: includes/libraries/cmb2/includes/shim/WP_REST_Controller.php:143 3997 #: includes/libraries/cmb2/includes/shim/WP_REST_Controller.php:155 3998 #: includes/libraries/cmb2/includes/shim/WP_REST_Controller.php:168 3890 3999 #, php-format 3891 4000 msgid "Method '%s' not implemented. Must be overridden in subclass." 3892 4001 msgstr "El método '%s' no está implementado. Debe sustituirse en la subclase." 3893 4002 3894 #: includes/libraries/cmb2/includes/shim/WP_REST_Controller.php: 3174003 #: includes/libraries/cmb2/includes/shim/WP_REST_Controller.php:273 3895 4004 msgid "Current page of the collection." 3896 4005 msgstr "Página actual de la colección." 3897 4006 3898 #: includes/libraries/cmb2/includes/shim/WP_REST_Controller.php: 3254007 #: includes/libraries/cmb2/includes/shim/WP_REST_Controller.php:281 3899 4008 msgid "Maximum number of items to be returned in result set." 3900 4009 msgstr "Número máximo de artículos a mostrar en los resultados." 3901 4010 3902 #: includes/libraries/cmb2/includes/shim/WP_REST_Controller.php: 3344011 #: includes/libraries/cmb2/includes/shim/WP_REST_Controller.php:290 3903 4012 msgid "Limit results to those matching a string." 3904 4013 msgstr "Limita los resultados a lo indicado en la cadena." 3905 4014 3906 #: includes/libraries/cmb2/includes/shim/WP_REST_Controller.php:3 544015 #: includes/libraries/cmb2/includes/shim/WP_REST_Controller.php:308 3907 4016 msgid "" 3908 4017 "Scope under which the request is made; determines fields present in response." 3909 4018 msgstr "Alcance de la petición; determina los campos visibles en la respuesta." 3910 4019 3911 #: includes/libraries/cmb2/includes/types/CMB2_Type_File.php:80 4020 #: includes/libraries/cmb2/includes/types/CMB2_Type_Counter_Base.php:50 4021 msgid "Words left" 4022 msgstr "Quedan palabras" 4023 4024 #: includes/libraries/cmb2/includes/types/CMB2_Type_Counter_Base.php:51 4025 msgid "Words" 4026 msgstr "Palabras" 4027 4028 #: includes/libraries/cmb2/includes/types/CMB2_Type_Counter_Base.php:56 4029 msgid "Characters left" 4030 msgstr "Caracteres restantes" 4031 4032 #: includes/libraries/cmb2/includes/types/CMB2_Type_Counter_Base.php:57 4033 msgid "Characters" 4034 msgstr "Caracteres" 4035 4036 #: includes/libraries/cmb2/includes/types/CMB2_Type_Counter_Base.php:62 4037 msgid "Your text may be truncated." 4038 msgstr "Es posible que el texto se trune." 4039 4040 #: includes/libraries/cmb2/includes/types/CMB2_Type_File.php:76 3912 4041 msgid "Add or Upload File" 3913 4042 msgstr "Agregar o Subir Archivo" 3914 4043 3915 #: includes/libraries/cmb2/includes/types/CMB2_Type_File_List.php:4 34044 #: includes/libraries/cmb2/includes/types/CMB2_Type_File_List.php:41 3916 4045 msgid "Add or Upload Files" 3917 4046 msgstr "Añadir o subir archivos" 3918 4047 3919 #: includes/libraries/cmb2/includes/types/CMB2_Type_Taxonomy_Base.php:1 224048 #: includes/libraries/cmb2/includes/types/CMB2_Type_Taxonomy_Base.php:115 3920 4049 msgid "No terms" 3921 4050 msgstr "No hay términos" 3922 4051 3923 4052 #: includes/model/UpStream_Model_Bug.php:199 3924 #: includes/model/UpStream_Model_File.php:1 424053 #: includes/model/UpStream_Model_File.php:158 3925 4054 #, fuzzy, php-format 3926 4055 msgid "File ID %s is invalid." … … 3938 4067 3939 4068 #: includes/model/UpStream_Model_Bug.php:250 3940 #: includes/model/UpStream_Model_Project.php:3 794069 #: includes/model/UpStream_Model_Project.php:388 3941 4070 #: includes/model/UpStream_Model_Task.php:223 3942 4071 #, fuzzy, php-format … … 3945 4074 3946 4075 #: includes/model/UpStream_Model_Bug.php:268 3947 #: includes/model/UpStream_Model_Project.php: 3974076 #: includes/model/UpStream_Model_Project.php:406 3948 4077 #: includes/model/UpStream_Model_Task.php:241 3949 4078 #, fuzzy, php-format … … 3953 4082 #: includes/model/UpStream_Model_Bug.php:275 3954 4083 #: includes/model/UpStream_Model_Milestone.php:211 3955 #: includes/model/UpStream_Model_Project.php:44 04084 #: includes/model/UpStream_Model_Project.php:449 3956 4085 #: includes/model/UpStream_Model_Task.php:266 3957 4086 #, fuzzy … … 3986 4115 #: includes/model/UpStream_Model_Client.php:205 3987 4116 #: includes/model/UpStream_Model_Milestone.php:284 3988 #: includes/model/UpStream_Model_Project.php:5 244117 #: includes/model/UpStream_Model_Project.php:535 3989 4118 #: includes/model/UpStream_Model_Task.php:325 3990 4119 #, fuzzy … … 3992 4121 msgstr "Los IDs de usuario no pueden estar vacíos." 3993 4122 3994 #: includes/model/UpStream_Model_File.php:1 384123 #: includes/model/UpStream_Model_File.php:154 3995 4124 #, fuzzy 3996 4125 msgid "Set not implemented for Upfs." 3997 4126 msgstr "Set no implementado para Upfs." 3998 4127 3999 #: includes/model/UpStream_Model_Manager.php: 284128 #: includes/model/UpStream_Model_Manager.php:33 4000 4129 #, fuzzy, php-format 4001 4130 msgid "" … … 4017 4146 4018 4147 #: includes/model/UpStream_Model_Milestone.php:200 4019 #: includes/model/UpStream_Model_Project.php:3 594148 #: includes/model/UpStream_Model_Project.php:368 4020 4149 #, fuzzy, php-format 4021 4150 msgid "Term ID %s is invalid." … … 4028 4157 4029 4158 #: includes/model/UpStream_Model_Milestone.php:273 4030 #: includes/model/UpStream_Model_Project.php:4 57 includes/up-post-types.php:1464031 #: templates/archive-project.php:8 1templates/global/sidebar.php:334159 #: includes/model/UpStream_Model_Project.php:466 includes/up-post-types.php:144 4160 #: templates/archive-project.php:84 templates/global/sidebar.php:33 4032 4161 msgid "Categories" 4033 4162 msgstr "Categorías" 4034 4163 4035 4164 #: includes/model/UpStream_Model_Milestone.php:274 4036 #: includes/model/UpStream_Model_Project.php:4 604165 #: includes/model/UpStream_Model_Project.php:471 4037 4166 #: includes/model/UpStream_Model_Task.php:298 4038 4167 msgid "Progress (%)" … … 4098 4227 msgstr "La identificación debe ser un número válido." 4099 4228 4100 #: includes/model/UpStream_Model_Project.php:2 274229 #: includes/model/UpStream_Model_Project.php:235 4101 4230 #, fuzzy 4102 4231 msgid "Argument must be of type UpStream_Model_Meta_Object" 4103 4232 msgstr "El argumento debe ser del tipo UpStream_Model_Meta_Object" 4104 4233 4105 #: includes/model/UpStream_Model_Project.php:2 534234 #: includes/model/UpStream_Model_Project.php:261 4106 4235 #, fuzzy 4107 4236 msgid "Can only add objects of type UpStream_Model_Meta_Object" 4108 4237 msgstr "Sólo puede añadir objetos del tipo UpStream_Model_Meta_Object" 4109 4238 4110 #: includes/model/UpStream_Model_Project.php:34 04239 #: includes/model/UpStream_Model_Project.php:349 4111 4240 #, fuzzy 4112 4241 msgid "Not implemented. Use &tasks(), &files(), or &bugs()." 4113 4242 msgstr "No se ha implementado. Usa &tasks(), &files(), o &bugs()." 4114 4243 4115 #: includes/model/UpStream_Model_Project.php:4 074244 #: includes/model/UpStream_Model_Project.php:416 4116 4245 #, fuzzy 4117 4246 msgid "For projects, assignedTo must be an array of length 1." 4118 4247 msgstr "Para los proyectos, la asignaciónTo debe ser un arreglo de longitud 1." 4119 4248 4120 #: includes/model/UpStream_Model_Project.php:42 04249 #: includes/model/UpStream_Model_Project.php:429 4121 4250 #, fuzzy 4122 4251 msgid "Cannot assign client users if the project has no client." … … 4125 4254 "cliente." 4126 4255 4127 #: includes/model/UpStream_Model_Project.php:4 234256 #: includes/model/UpStream_Model_Project.php:432 4128 4257 #, fuzzy 4129 4258 msgid "Client user IDs must be an array." 4130 4259 msgstr "Las identificaciones de usuario de los clientes deben ser una matriz." 4131 4260 4132 #: includes/model/UpStream_Model_Project.php:4 264261 #: includes/model/UpStream_Model_Project.php:435 4133 4262 #, fuzzy 4134 4263 msgid "Input cannot contain duplicates." 4135 4264 msgstr "La entrada no puede contener duplicados." 4136 4265 4137 #: includes/model/UpStream_Model_Project.php:4 314266 #: includes/model/UpStream_Model_Project.php:440 4138 4267 #, fuzzy, php-format 4139 4268 msgid "User ID %s does not exist in this client." 4140 4269 msgstr "El ID de usuario %s no existe en este cliente." 4141 4270 4271 #: includes/model/UpStream_Model_Project.php:467 4272 #, fuzzy 4273 msgid "Selected Client Users" 4274 msgstr "Usuario Cliente UpStream" 4275 4276 #: includes/model/UpStream_Model_Project.php:468 4277 #: templates/single-project/details.php:125 4278 msgid "Members" 4279 msgstr "Miembros" 4280 4142 4281 #: includes/model/UpStream_Model_Task.php:205 4143 4282 #, fuzzy … … 4161 4300 msgstr "Esto (%s) no es un número." 4162 4301 4163 #: includes/up-general-functions.php:298 4302 #: includes/up-filesystem.php:105 4303 msgid "Unable to move file to target folder" 4304 msgstr "No se puede mover el archivo a la carpeta de destino" 4305 4306 #: includes/up-filesystem.php:109 4307 msgid "Unable to move file. The target folder does not exist." 4308 msgstr "No se puede mover el archivo. La carpeta de destino no existe." 4309 4310 #: includes/up-filesystem.php:112 includes/up-filesystem.php:119 4311 msgid "File exceeds the maximum file size" 4312 msgstr "El archivo supera el tamaño máximo de archivo" 4313 4314 #: includes/up-filesystem.php:116 4315 msgid "File is not an allowed type." 4316 msgstr "El archivo no es un tipo permitido." 4317 4318 #: includes/up-general-functions.php:307 4164 4319 #, php-format 4165 4320 msgid "%s User" 4166 4321 msgstr "%s Usuario" 4167 4322 4168 #: includes/up-general-functions.php:3 014323 #: includes/up-general-functions.php:310 4169 4324 #, php-format 4170 4325 msgid "%s Manager" 4171 4326 msgstr "%s Gerente" 4172 4327 4173 #: includes/up-general-functions.php:3 044328 #: includes/up-general-functions.php:313 4174 4329 #, php-format 4175 4330 msgid "%s Client User" 4176 4331 msgstr "%s Usuario Cliente" 4177 4332 4178 #: includes/up-general-functions.php: 3974333 #: includes/up-general-functions.php:406 4179 4334 msgid "Client User" 4180 4335 msgstr "Usuario Cliente" … … 4504 4659 msgstr "%2$s List" 4505 4660 4506 #: includes/up-post-types.php:13 64661 #: includes/up-post-types.php:134 4507 4662 msgctxt "taxonomy general name" 4508 4663 msgid "Category" 4509 4664 msgstr "Categoría" 4510 4665 4511 #: includes/up-post-types.php:13 74666 #: includes/up-post-types.php:135 4512 4667 msgctxt "taxonomy singular name" 4513 4668 msgid "Category" 4514 4669 msgstr "Categoría" 4515 4670 4516 #: includes/up-post-types.php:13 84671 #: includes/up-post-types.php:136 4517 4672 #, php-format 4518 4673 msgid "Search %s Categories" 4519 4674 msgstr "Buscar categorías de %s" 4520 4675 4521 #: includes/up-post-types.php:13 94676 #: includes/up-post-types.php:137 4522 4677 #, php-format 4523 4678 msgid "All %s Categories" 4524 4679 msgstr "Todas las categorías del %s" 4525 4680 4526 #: includes/up-post-types.php:1 404681 #: includes/up-post-types.php:138 4527 4682 #, php-format 4528 4683 msgid "Parent %s Category" 4529 4684 msgstr "Categoría %s Superior" 4530 4685 4531 #: includes/up-post-types.php:1 414686 #: includes/up-post-types.php:139 4532 4687 #, php-format 4533 4688 msgid "Parent %s Category:" 4534 4689 msgstr "Categoría %s Superior:" 4535 4690 4536 #: includes/up-post-types.php:14 24691 #: includes/up-post-types.php:140 4537 4692 #, php-format 4538 4693 msgid "Edit %s Category" 4539 4694 msgstr "Editar %s Categoría" 4540 4695 4541 #: includes/up-post-types.php:14 34696 #: includes/up-post-types.php:141 4542 4697 #, php-format 4543 4698 msgid "Update %s Category" 4544 4699 msgstr "Actualizar categoría de %s" 4545 4700 4546 #: includes/up-post-types.php:14 44701 #: includes/up-post-types.php:142 4547 4702 #, php-format 4548 4703 msgid "Add New %s Category" 4549 4704 msgstr "Añadir nueva categoría de %s" 4550 4705 4551 #: includes/up-post-types.php:14 54706 #: includes/up-post-types.php:143 4552 4707 #, php-format 4553 4708 msgid "New %s Category Name" 4554 4709 msgstr "Nombre de la nueva categoría de %s" 4555 4710 4556 #: includes/up-post-types.php:17 14711 #: includes/up-post-types.php:170 4557 4712 msgctxt "taxonomy (tag) general name" 4558 4713 msgid "Tags" 4559 4714 msgstr "Etiquetas" 4560 4715 4561 #: includes/up-post-types.php:17 24716 #: includes/up-post-types.php:171 4562 4717 msgctxt "taxonomy (tag) singular name" 4563 4718 msgid "Tag" 4564 4719 msgstr "Etiqueta" 4565 4720 4566 #: includes/up-post-types.php:17 34721 #: includes/up-post-types.php:172 4567 4722 msgid "Search Tags" 4568 4723 msgstr "Buscar Etiquetas" 4569 4724 4570 #: includes/up-post-types.php:17 44725 #: includes/up-post-types.php:173 4571 4726 msgid "Popular Tags" 4572 4727 msgstr "Etiquetas populares" 4573 4728 4574 #: includes/up-post-types.php:17 54729 #: includes/up-post-types.php:174 4575 4730 msgid "All Tags" 4576 4731 msgstr "Todas las etiquetas" 4577 4732 4578 #: includes/up-post-types.php:17 84733 #: includes/up-post-types.php:177 4579 4734 msgid "Edit Tag" 4580 4735 msgstr "Editar etiqueta" 4581 4736 4582 #: includes/up-post-types.php:17 94737 #: includes/up-post-types.php:178 4583 4738 msgid "Update Tag" 4584 4739 msgstr "Actualizar etiqueta" 4585 4740 4586 #: includes/up-post-types.php:1 804741 #: includes/up-post-types.php:179 4587 4742 msgid "Add New Tag" 4588 4743 msgstr "Añadir nueva etiqueta" 4589 4744 4590 #: includes/up-post-types.php:18 14745 #: includes/up-post-types.php:180 4591 4746 msgid "New Tag Name" 4592 4747 msgstr "Nuevo nombre de etiqueta" 4593 4748 4594 #: includes/up-post-types.php:18 24749 #: includes/up-post-types.php:181 4595 4750 msgid "Add or remove tags" 4596 4751 msgstr "Añadir o eliminar etiquetas" 4597 4752 4598 #: includes/up-post-types.php:18 34753 #: includes/up-post-types.php:182 4599 4754 msgid "Separate tags with commas" 4600 4755 msgstr "Separa las etiquetas con comas" 4601 4756 4602 #: includes/up-post-types.php:18 44757 #: includes/up-post-types.php:183 4603 4758 msgid "Choose from the most used tags" 4604 4759 msgstr "Elige de las etiquetas más utilizadas" 4605 4760 4606 #: includes/up-post-types.php:18 54761 #: includes/up-post-types.php:184 4607 4762 msgid "Tags" 4608 4763 msgstr "Etiquetas" 4609 4764 4610 #: includes/up-post-types.php:21 64765 #: includes/up-post-types.php:218 4611 4766 #, php-format 4612 4767 msgid "Popular %s" 4613 4768 msgstr "Popular %s" 4614 4769 4615 #: includes/up-post-types.php:21 7templates/global/sidebar.php:954770 #: includes/up-post-types.php:219 templates/global/sidebar.php:95 4616 4771 #, php-format 4617 4772 msgid "All %s" 4618 4773 msgstr "Todos %s" 4619 4774 4620 #: includes/up-post-types.php:22 14775 #: includes/up-post-types.php:223 4621 4776 #, php-format 4622 4777 msgid "Update %s" 4623 4778 msgstr "Actualizar %s" 4624 4779 4625 #: includes/up-post-types.php:22 24780 #: includes/up-post-types.php:224 4626 4781 #, php-format 4627 4782 msgid "Add New %s" 4628 4783 msgstr "Añadir nuevo %s" 4629 4784 4630 #: includes/up-post-types.php:22 34785 #: includes/up-post-types.php:225 4631 4786 #, php-format 4632 4787 msgid "New %s Name" 4633 4788 msgstr "Nuevo %s Nombre" 4634 4789 4635 #: includes/up-post-types.php:22 44790 #: includes/up-post-types.php:226 4636 4791 #, php-format 4637 4792 msgid "Add or remove %s" 4638 4793 msgstr "Añadir o eliminar %s" 4639 4794 4640 #: includes/up-post-types.php:22 54795 #: includes/up-post-types.php:227 4641 4796 #, php-format 4642 4797 msgid "Separate %s with commas" 4643 4798 msgstr "Separar %s con comas" 4644 4799 4645 #: includes/up-post-types.php:22 64800 #: includes/up-post-types.php:228 4646 4801 #, php-format 4647 4802 msgid "Choose from the most used %s" 4648 4803 msgstr "Elija entre los % s más utilizados" 4649 4804 4650 #: includes/up-post-types.php:27 04805 #: includes/up-post-types.php:273 4651 4806 msgid "Default color" 4652 4807 msgstr "Color por defecto" 4653 4808 4654 #: includes/up-project-functions.php:6 40 templates/archive-project.php:704809 #: includes/up-project-functions.php:656 templates/archive-project.php:73 4655 4810 #: templates/global/sidebar.php:22 4656 4811 msgid "Ends at" 4657 4812 msgstr "Finaliza a las" 4658 4813 4659 #: templates/archive-project.php: 69templates/global/sidebar.php:214814 #: templates/archive-project.php:72 templates/global/sidebar.php:21 4660 4815 #: templates/global/top-nav.php:60 4661 4816 msgid "Log Out" 4662 4817 msgstr "Cerrar sesión" 4663 4818 4664 #: templates/archive-project.php:7 3templates/global/sidebar.php:254819 #: templates/archive-project.php:76 templates/global/sidebar.php:25 4665 4820 #: templates/single-project/bugs.php:125 templates/single-project/bugs.php:157 4666 4821 #: templates/single-project/files.php:99 templates/single-project/files.php:131 … … 4672 4827 msgstr "Alternar Filtros" 4673 4828 4674 #: templates/archive-project.php:7 4templates/global/sidebar.php:264829 #: templates/archive-project.php:77 templates/global/sidebar.php:26 4675 4830 #: templates/single-project/bugs.php:129 templates/single-project/bugs.php:162 4676 4831 #: templates/single-project/files.php:103 … … 4683 4838 msgstr "Exportar" 4684 4839 4685 #: templates/archive-project.php:7 5templates/global/sidebar.php:274840 #: templates/archive-project.php:78 templates/global/sidebar.php:27 4686 4841 #: templates/single-project/bugs.php:136 templates/single-project/bugs.php:169 4687 4842 #: templates/single-project/files.php:110 … … 4694 4849 msgstr "Texto sin formato" 4695 4850 4696 #: templates/archive-project.php:8 5templates/global/sidebar.php:374851 #: templates/archive-project.php:88 templates/global/sidebar.php:37 4697 4852 #, php-format 4698 4853 msgid "%s Complete" 4699 4854 msgstr "%s completado" 4700 4855 4701 #: templates/archive-project.php:4 834856 #: templates/archive-project.php:491 4702 4857 #, php-format 4703 4858 msgid "%s Members" 4704 4859 msgstr "%s Miembros" 4705 4860 4706 #: templates/archive-project.php:7 494861 #: templates/archive-project.php:760 4707 4862 #, fuzzy 4708 4863 msgid "It seems that you're not participating in any project right now." … … 4710 4865 4711 4866 #: templates/global/sidebar.php:137 templates/global/sidebar.php:161 4712 #: templates/global/sidebar.php:186 templates/single-project/overview.php:174 4713 #: templates/single-project/overview.php:206 4714 #: templates/single-project/overview.php:238 4867 #: templates/global/sidebar.php:186 templates/single-project/overview.php:183 4868 #: templates/single-project/overview.php:215 4869 #: templates/single-project/overview.php:247 4870 #: templates/single-project/progress.php:54 4715 4871 msgid "Assigned to me" 4716 4872 msgstr "Asignado a mí" … … 4741 4897 msgstr "Incluir campos" 4742 4898 4743 #: templates/report-parameters/section.php: 434899 #: templates/report-parameters/section.php:51 4744 4900 msgid " Filters" 4745 4901 msgstr "Filtros" … … 4763 4919 msgid "complete" 4764 4920 msgstr "completado" 4765 4766 #: templates/single-project/details.php:1254767 msgid "Members"4768 msgstr "Miembros"4769 4921 4770 4922 #: templates/single-project/files.php:177 … … 4793 4945 msgstr "usuario no válido" 4794 4946 4795 #: templates/single-project/overview.php:177 4796 #: templates/single-project/overview.php:209 4797 #: templates/single-project/overview.php:241 4947 #: templates/single-project/overview.php:186 4948 #: templates/single-project/overview.php:218 4949 #: templates/single-project/overview.php:250 4950 #: templates/single-project/progress.php:55 4798 4951 msgid "Overdue" 4799 4952 msgstr "Atrasado" 4800 4953 4801 #: templates/single-project/overview.php:180 4954 #: templates/single-project/overview.php:189 4955 #: templates/single-project/progress.php:56 4802 4956 msgid "Completed" 4803 4957 msgstr "Completado" 4804 4958 4805 #: templates/single-project/overview.php:183 4806 #: templates/single-project/overview.php:215 4807 #: templates/single-project/overview.php:247 4959 #: templates/single-project/overview.php:192 4960 #: templates/single-project/overview.php:224 4961 #: templates/single-project/overview.php:256 4962 #: templates/single-project/progress.php:57 4808 4963 msgid "Total" 4809 4964 msgstr "Total" 4810 4965 4811 #: templates/single-project/overview.php: 1914812 #: templates/single-project/overview.php:2 234813 #: templates/single-project/overview.php:2 554966 #: templates/single-project/overview.php:200 4967 #: templates/single-project/overview.php:232 4968 #: templates/single-project/overview.php:264 4814 4969 msgid "Overview" 4815 4970 msgstr "Resumen" … … 4819 4974 msgstr "hito no válido" 4820 4975 4821 #: upstream.php: 5254976 #: upstream.php:458 4822 4977 msgid "View Documentation" 4823 4978 msgstr "Ver Documentación" 4824 4979 4825 #: upstream.php: 5274980 #: upstream.php:460 4826 4981 msgid "Docs" 4827 4982 msgstr "Documentos" 4828 4983 4829 #: upstream.php: 5294984 #: upstream.php:462 4830 4985 #, fuzzy 4831 4986 msgid "View Quick Start Guide" 4832 4987 msgstr "Ver la Guía de inicio rápido" 4833 4988 4834 #: upstream.php: 5314989 #: upstream.php:464 4835 4990 msgid "Quick Start Guide" 4836 4991 msgstr "Guía de inicio rápido" 4837 4992 4838 #: upstream.php: 5554993 #: upstream.php:488 4839 4994 msgid "Open Settings Page" 4840 4995 msgstr "Abrir página de configuración" 4841 4996 4842 #: upstream.php: 5564997 #: upstream.php:489 4843 4998 msgid "Settings" 4844 4999 msgstr "Ajustes" 4845 5000 4846 #: upstream.php: 6035001 #: upstream.php:536 4847 5002 msgid "Update notice:" 4848 5003 msgstr "Actualizar aviso:" 4849 5004 4850 #: upstream.php: 6105005 #: upstream.php:543 4851 5006 #, php-format 4852 5007 msgctxt "" -
upstream/trunk/languages/upstream.pot
r2354305 r2472697 26 26 #: includes/admin/class-up-admin-project-columns.php:128 27 27 #: includes/admin/class-up-admin-tasks-page.php:45 28 #: includes/class-up-milestones.php: 43628 #: includes/class-up-milestones.php:557 29 29 #: includes/model/UpStream_Model_Object.php:66 30 30 #: templates/single-project/details.php:63 … … 38 38 #: includes/admin/metaboxes/class-up-metaboxes-projects.php:1226 39 39 #: includes/admin/metaboxes/class-up-metaboxes-projects.php:1629 40 #: includes/admin/up-enqueues.php:13 1includes/class-up-milestones.php:33541 #: includes/class-up-milestones.php: 43840 #: includes/admin/up-enqueues.php:132 includes/class-up-milestones.php:335 41 #: includes/class-up-milestones.php:559 42 42 #: includes/frontend/up-table-functions.php:33 43 43 #: includes/frontend/up-table-functions.php:144 … … 68 68 #: includes/frontend/up-table-functions.php:439 69 69 #: includes/model/UpStream_Model_Bug.php:303 70 #: includes/model/UpStream_Model_Project.php:4 5671 #: includes/model/UpStream_Model_Task.php:297 templates/archive-project.php: 7970 #: includes/model/UpStream_Model_Project.php:465 71 #: includes/model/UpStream_Model_Task.php:297 templates/archive-project.php:82 72 72 #: templates/global/sidebar.php:31 templates/single-project/bugs.php:246 73 73 #: templates/single-project/bugs.php:250 templates/single-project/tasks.php:252 … … 105 105 #: includes/admin/class-up-admin-bugs-page.php:284 106 106 #: includes/admin/class-up-admin-bugs-page.php:310 107 #: includes/admin/class-up-admin-project-columns.php:4 47108 #: includes/admin/class-up-admin-project-columns.php:4 66109 #: includes/admin/class-up-admin-project-columns.php:48 3107 #: includes/admin/class-up-admin-project-columns.php:453 108 #: includes/admin/class-up-admin-project-columns.php:472 109 #: includes/admin/class-up-admin-project-columns.php:489 110 110 #: includes/admin/class-up-admin-tasks-page.php:260 111 111 #: includes/admin/class-up-admin-tasks-page.php:280 … … 132 132 #: includes/admin/class-up-admin-tasks-page.php:498 133 133 #: includes/admin/metaboxes/metabox-functions.php:636 134 #: includes/class-up-milestones.php: 471135 #: includes/class-up-project-activity.php:6 07134 #: includes/class-up-milestones.php:592 135 #: includes/class-up-project-activity.php:629 136 136 #: includes/frontend/up-table-functions.php:107 137 137 #: includes/frontend/up-table-functions.php:171 … … 144 144 #: includes/frontend/up-table-functions.php:768 145 145 #: includes/frontend/up-template-functions.php:67 146 #: includes/frontend/up-template-functions.php:98 147 #: templates/archive-project.php:84 templates/global/sidebar.php:36 146 #: includes/frontend/up-template-functions.php:97 147 #: includes/frontend/up-template-functions.php:129 148 #: templates/archive-project.php:87 templates/global/sidebar.php:36 148 149 #: templates/single-project/bugs.php:66 templates/single-project/details.php:83 149 150 #: templates/single-project/details.php:104 … … 212 213 213 214 #: includes/admin/class-up-admin-options.php:68 214 #: includes/admin/class-up-admin.php:54 0215 #: includes/admin/class-up-admin.php:544 215 216 msgid "UpStream" 216 217 msgstr "" … … 220 221 msgstr "" 221 222 222 #: includes/admin/class-up-admin-pointers.php:3 3223 #: includes/admin/class-up-admin-pointers.php:39 223 224 msgid "Sign up for our UpStream Project Management tips and tricks newsletter and get the UpStream Customizer extension for free!" 224 225 msgstr "" 225 226 226 #: includes/admin/class-up-admin-pointers.php: 35227 #: includes/admin/class-up-admin-pointers.php:41 227 228 msgid "Email Address:" 228 229 msgstr "" 229 230 230 #: includes/admin/class-up-admin-pointers.php: 46231 #: includes/admin/class-up-admin-pointers.php:52 231 232 msgid "Get a FREE UpStream extension!" 232 233 msgstr "" 233 234 234 #: includes/admin/class-up-admin-pointers.php:78 235 #: includes/admin/class-up-admin-pointers.php:84 236 #: includes/admin/class-up-admin-pointers.php:151 235 237 msgid "Important!" 236 238 msgstr "" 237 239 238 #: includes/admin/class-up-admin-pointers.php:8 0240 #: includes/admin/class-up-admin-pointers.php:86 239 241 msgid "As this is your first project, we have included a walkthrough guide." 240 242 msgstr "" 241 243 242 #: includes/admin/class-up-admin-pointers.php: 84244 #: includes/admin/class-up-admin-pointers.php:90 243 245 msgid "We <strong>strongly recommend</strong> that you take the time to follow it. " 244 246 msgstr "" 245 247 246 #: includes/admin/class-up-admin-pointers.php: 88248 #: includes/admin/class-up-admin-pointers.php:94 247 249 msgid "There is important info in the guide and it does not take too long." 248 250 msgstr "" 249 251 250 #: includes/admin/class-up-admin-pointers.php:9 1252 #: includes/admin/class-up-admin-pointers.php:97 251 253 msgid "(you won't see this message or the guide again)" 252 254 msgstr "" 253 255 254 #: includes/admin/class-up-admin-pointers.php:116 256 #: includes/admin/class-up-admin-pointers.php:139 257 msgid "- The installed version of " 258 msgstr "" 259 260 #: includes/admin/class-up-admin-pointers.php:140 261 msgid " is " 262 msgstr "" 263 264 #: includes/admin/class-up-admin-pointers.php:141 265 msgid ". This version of UpStream requires version " 266 msgstr "" 267 268 #: includes/admin/class-up-admin-pointers.php:142 269 msgid " or later." 270 msgstr "" 271 272 #: includes/admin/class-up-admin-pointers.php:153 273 msgid "This version of UpStream is not compatible with the following addon versions:" 274 msgstr "" 275 276 #: includes/admin/class-up-admin-pointers.php:158 277 msgid "Do not show this message again for this version" 278 msgstr "" 279 280 #: includes/admin/class-up-admin-pointers.php:183 255 281 #, php-format 256 282 msgid "%s Name" 257 283 msgstr "" 258 284 259 #: includes/admin/class-up-admin-pointers.php:1 18285 #: includes/admin/class-up-admin-pointers.php:185 260 286 #, php-format 261 287 msgid "This is a required field and will be what your %s see on the frontend." 262 288 msgstr "" 263 289 264 #: includes/admin/class-up-admin-pointers.php: 136290 #: includes/admin/class-up-admin-pointers.php:203 265 291 #, php-format 266 292 msgid "%s Status" 267 293 msgstr "" 268 294 269 #: includes/admin/class-up-admin-pointers.php: 140295 #: includes/admin/class-up-admin-pointers.php:207 270 296 #, php-format 271 297 msgid "Choose a status for this %s." 272 298 msgstr "" 273 299 274 #: includes/admin/class-up-admin-pointers.php: 144300 #: includes/admin/class-up-admin-pointers.php:211 275 301 msgid "Statuses are set within the UpStream Settings." 276 302 msgstr "" 277 303 278 #: includes/admin/class-up-admin-pointers.php:161 304 #: includes/admin/class-up-admin-pointers.php:228 305 #: templates/archive-project.php:488 279 306 #, php-format 280 307 msgid "%s Owner" 281 308 msgstr "" 282 309 283 #: includes/admin/class-up-admin-pointers.php: 163310 #: includes/admin/class-up-admin-pointers.php:230 284 311 #, php-format 285 312 msgid "Choose the owner of this %s." 286 313 msgstr "" 287 314 288 #: includes/admin/class-up-admin-pointers.php: 167315 #: includes/admin/class-up-admin-pointers.php:234 289 316 msgid "Every user who has the Role of UpStream Manager, UpStream User or Administrator appears in this dropdown." 290 317 msgstr "" 291 318 292 #: includes/admin/class-up-admin-pointers.php: 171319 #: includes/admin/class-up-admin-pointers.php:238 293 320 #, php-format 294 321 msgid "The selected owner will have full access and control of everything within this %s, regardless of their role." 295 322 msgstr "" 296 323 297 #: includes/admin/class-up-admin-pointers.php: 194324 #: includes/admin/class-up-admin-pointers.php:261 298 325 #, php-format 299 326 msgid "Choose the %s of this %s." 300 327 msgstr "" 301 328 302 #: includes/admin/class-up-admin-pointers.php: 199329 #: includes/admin/class-up-admin-pointers.php:266 303 330 #, php-format 304 331 msgid "If there are no %s here, you need to add one first by clicking on <strong>New Client</strong> in the sidebar." 305 332 msgstr "" 306 333 307 #: includes/admin/class-up-admin-pointers.php:2 16334 #: includes/admin/class-up-admin-pointers.php:283 308 335 #: includes/admin/metaboxes/class-up-metaboxes-projects.php:1453 309 #: templates/archive-project.php:4 79templates/single-project/details.php:115336 #: templates/archive-project.php:484 templates/single-project/details.php:115 310 337 #, php-format 311 338 msgid "%s Users" 312 339 msgstr "" 313 340 314 #: includes/admin/class-up-admin-pointers.php:2 18341 #: includes/admin/class-up-admin-pointers.php:285 315 342 #, php-format 316 343 msgid "Tick the %s Users who will have access to this %s." 317 344 msgstr "" 318 345 319 #: includes/admin/class-up-admin-pointers.php:2 22346 #: includes/admin/class-up-admin-pointers.php:289 320 347 #, php-format 321 348 msgid "The selected Users can then login using their email address and the password that is set within the %s." 322 349 msgstr "" 323 350 324 #: includes/admin/class-up-admin-pointers.php:2 26351 #: includes/admin/class-up-admin-pointers.php:293 325 352 #, php-format 326 353 msgid "If there are no %s Users here, you need to add one first by editing your %s" 327 354 msgstr "" 328 355 329 #: includes/admin/class-up-admin-pointers.php: 243356 #: includes/admin/class-up-admin-pointers.php:310 330 357 #, php-format 331 358 msgid "%s Dates" 332 359 msgstr "" 333 360 334 #: includes/admin/class-up-admin-pointers.php: 245361 #: includes/admin/class-up-admin-pointers.php:312 335 362 #, php-format 336 363 msgid "Add the projected start and finish dates for this %s." 337 364 msgstr "" 338 365 339 #: includes/admin/class-up-admin-pointers.php: 259366 #: includes/admin/class-up-admin-pointers.php:326 340 367 #, php-format 341 368 msgid "You can now start to add your %s." 342 369 msgstr "" 343 370 344 #: includes/admin/class-up-admin-pointers.php: 264371 #: includes/admin/class-up-admin-pointers.php:331 345 372 #, php-format 346 373 msgid "Once you've added your %s, you should now Publish/Update the %s. This ensures that all %s will be available within the %s." 347 374 msgstr "" 348 375 349 #: includes/admin/class-up-admin-pointers.php: 273376 #: includes/admin/class-up-admin-pointers.php:340 350 377 #, php-format 351 378 msgid "If there are no %s in the dropdown, add them by editing the <strong>UpStream Settings</strong>." … … 379 406 #: includes/frontend/up-table-functions.php:55 380 407 #: includes/frontend/up-table-functions.php:180 381 #: templates/archive-project.php:8 2templates/global/sidebar.php:34408 #: templates/archive-project.php:85 templates/global/sidebar.php:34 382 409 #: templates/single-project/details.php:90 410 #: templates/single-project/progress.php:33 383 411 msgid "Progress" 384 412 msgstr "" … … 399 427 msgstr "" 400 428 401 #: includes/admin/class-up-admin-project-columns.php:4 47429 #: includes/admin/class-up-admin-project-columns.php:453 402 430 msgid "statuses" 403 431 msgstr "" 404 432 405 #: includes/admin/class-up-admin-project-columns.php:4 66433 #: includes/admin/class-up-admin-project-columns.php:472 406 434 msgid "owners" 407 435 msgstr "" … … 422 450 #: includes/admin/metaboxes/class-up-metaboxes-projects.php:949 423 451 #: includes/admin/metaboxes/class-up-metaboxes-projects.php:1477 424 #: includes/class-up-milestones.php:338 includes/class-up-milestones.php: 440452 #: includes/class-up-milestones.php:338 includes/class-up-milestones.php:561 425 453 #: includes/frontend/up-table-functions.php:66 426 454 #: includes/frontend/up-table-functions.php:220 427 455 #: includes/model/UpStream_Model_Milestone.php:272 428 #: includes/model/UpStream_Model_Project.php:4 59429 #: includes/model/UpStream_Model_Task.php:296 templates/archive-project.php:4 65456 #: includes/model/UpStream_Model_Project.php:470 457 #: includes/model/UpStream_Model_Task.php:296 templates/archive-project.php:470 430 458 #: templates/single-project/details.php:21 431 459 msgid "End Date" … … 437 465 msgstr "" 438 466 439 #: includes/admin/class-up-admin.php:5 46467 #: includes/admin/class-up-admin.php:550 440 468 msgid "Comment reply notifications" 441 469 msgstr "" 442 470 443 #: includes/admin/class-up-admin.php:55 3471 #: includes/admin/class-up-admin.php:557 444 472 #: includes/admin/options/class-up-options-general.php:152 445 473 #: includes/admin/options/class-up-options-general.php:166 … … 453 481 #: includes/admin/options/class-up-options-general.php:446 454 482 #: includes/admin/options/class-up-options-general.php:460 455 #: includes/admin/options/class-up-options-general.php:4 85483 #: includes/admin/options/class-up-options-general.php:474 456 484 #: includes/admin/options/class-up-options-general.php:499 457 485 #: includes/admin/options/class-up-options-general.php:513 458 486 #: includes/admin/options/class-up-options-general.php:527 459 487 #: includes/admin/options/class-up-options-general.php:541 460 #: includes/admin/options/class-up-options-general.php:597 488 #: includes/admin/options/class-up-options-general.php:555 489 #: includes/admin/options/class-up-options-general.php:569 490 #: includes/admin/options/class-up-options-general.php:625 461 491 msgid "Yes" 462 492 msgstr "" 463 493 464 #: includes/admin/class-up-admin.php:5 58494 #: includes/admin/class-up-admin.php:562 465 495 #: includes/admin/options/class-up-options-general.php:151 466 496 #: includes/admin/options/class-up-options-general.php:165 … … 474 504 #: includes/admin/options/class-up-options-general.php:445 475 505 #: includes/admin/options/class-up-options-general.php:459 476 #: includes/admin/options/class-up-options-general.php:4 84506 #: includes/admin/options/class-up-options-general.php:473 477 507 #: includes/admin/options/class-up-options-general.php:498 478 508 #: includes/admin/options/class-up-options-general.php:512 509 #: includes/admin/options/class-up-options-general.php:526 479 510 #: includes/admin/options/class-up-options-general.php:540 480 #: includes/admin/options/class-up-options-general.php:596 511 #: includes/admin/options/class-up-options-general.php:568 512 #: includes/admin/options/class-up-options-general.php:624 481 513 msgid "No" 482 514 msgstr "" 483 515 484 #: includes/admin/class-up-admin.php:56 4516 #: includes/admin/class-up-admin.php:568 485 517 #, php-format 486 518 msgid "Whether to be notified when someone reply to your comments within %s." … … 506 538 #: includes/admin/metaboxes/class-up-metaboxes-clients.php:230 507 539 #: includes/admin/metaboxes/class-up-metaboxes-clients.php:404 508 #: templates/report-parameters/section.php: 53540 #: templates/report-parameters/section.php:61 509 541 msgid "Name" 510 542 msgstr "" … … 564 596 565 597 #: includes/admin/metaboxes/class-up-metaboxes-clients.php:395 566 #: includes/admin/options/class-up-options-general.php:805 567 #: includes/class-up-roles.php:90 598 #: includes/admin/options/class-up-options-general.php:845 599 #: includes/class-up-roles.php:90 includes/up-install.php:984 600 #: includes/up-install.php:985 568 601 msgid "UpStream Client User" 569 602 msgstr "" 570 603 571 604 #: includes/admin/metaboxes/class-up-metaboxes-clients.php:410 572 #: includes/admin/up-enqueues.php:16 3605 #: includes/admin/up-enqueues.php:164 573 606 msgid "No users found." 574 607 msgstr "" … … 617 650 #: includes/admin/metaboxes/class-up-metaboxes-clients.php:609 618 651 #: includes/admin/metaboxes/class-up-metaboxes-clients.php:676 619 #: includes/admin/metaboxes/class-up-metaboxes-clients.php:7 69620 #: includes/admin/metaboxes/class-up-metaboxes-clients.php:8 19621 #: includes/class-up-comments.php:2 89 includes/class-up-comments.php:402622 #: includes/class-up-comments.php:51 0 includes/class-up-comments.php:629652 #: includes/admin/metaboxes/class-up-metaboxes-clients.php:777 653 #: includes/admin/metaboxes/class-up-metaboxes-clients.php:827 654 #: includes/class-up-comments.php:290 includes/class-up-comments.php:404 655 #: includes/class-up-comments.php:512 includes/class-up-comments.php:631 623 656 #: vendor/alledia/wordpress-plugin-framework/src/library/Module/Addons.php:338 624 657 #: vendor/alledia/wordpress-plugin-framework/src/library/Module/Addons.php:346 … … 629 662 #: includes/admin/metaboxes/class-up-metaboxes-clients.php:613 630 663 #: includes/admin/metaboxes/class-up-metaboxes-clients.php:680 631 #: includes/admin/metaboxes/class-up-metaboxes-clients.php:7 73632 #: includes/admin/metaboxes/class-up-metaboxes-clients.php:8 23664 #: includes/admin/metaboxes/class-up-metaboxes-clients.php:781 665 #: includes/admin/metaboxes/class-up-metaboxes-clients.php:831 633 666 #: includes/admin/metaboxes/class-up-metaboxes-projects.php:1905 634 #: includes/class-up-comments.php:250 includes/class-up-comments.php:37 7635 #: includes/class-up-comments.php:39 4 includes/class-up-comments.php:476636 #: includes/class-up-comments.php:62 4 includes/class-up-comments.php:748637 #: includes/class-up-comments.php:76 5667 #: includes/class-up-comments.php:250 includes/class-up-comments.php:378 668 #: includes/class-up-comments.php:396 includes/class-up-comments.php:478 669 #: includes/class-up-comments.php:626 includes/class-up-comments.php:751 670 #: includes/class-up-comments.php:768 638 671 #: vendor/alledia/wordpress-plugin-framework/src/library/Module/Addons.php:342 639 672 msgid "Invalid request." … … 643 676 #: includes/admin/metaboxes/class-up-metaboxes-clients.php:618 644 677 #: includes/admin/metaboxes/class-up-metaboxes-clients.php:685 645 #: includes/admin/metaboxes/class-up-metaboxes-clients.php:7 78646 #: includes/admin/metaboxes/class-up-metaboxes-clients.php:8 28678 #: includes/admin/metaboxes/class-up-metaboxes-clients.php:786 679 #: includes/admin/metaboxes/class-up-metaboxes-clients.php:836 647 680 msgid "Invalid Client ID." 648 681 msgstr "" 649 682 650 683 #: includes/admin/metaboxes/class-up-metaboxes-clients.php:562 651 #: includes/admin/metaboxes/class-up-metaboxes-clients.php:7 83652 #: includes/admin/metaboxes/class-up-metaboxes-clients.php:8 33684 #: includes/admin/metaboxes/class-up-metaboxes-clients.php:791 685 #: includes/admin/metaboxes/class-up-metaboxes-clients.php:841 653 686 msgid "Invalid User ID." 654 687 msgstr "" … … 658 691 msgstr "" 659 692 660 #: includes/admin/metaboxes/class-up-metaboxes-clients.php:7 87661 #: includes/admin/metaboxes/class-up-metaboxes-clients.php:8 37693 #: includes/admin/metaboxes/class-up-metaboxes-clients.php:795 694 #: includes/admin/metaboxes/class-up-metaboxes-clients.php:845 662 695 msgid "This Client User is not associated with this Client." 663 696 msgstr "" 664 697 665 #: includes/admin/metaboxes/class-up-metaboxes-clients.php:8 42698 #: includes/admin/metaboxes/class-up-metaboxes-clients.php:850 666 699 msgid "This user doesn't seem to be a valid Client User." 667 700 msgstr "" … … 700 733 #: includes/admin/metaboxes/class-up-metaboxes-projects.php:940 701 734 #: includes/admin/metaboxes/class-up-metaboxes-projects.php:1465 702 #: includes/class-up-milestones.php:337 includes/class-up-milestones.php: 439735 #: includes/class-up-milestones.php:337 includes/class-up-milestones.php:560 703 736 #: includes/frontend/up-table-functions.php:61 704 737 #: includes/frontend/up-table-functions.php:215 705 738 #: includes/model/UpStream_Model_Milestone.php:271 706 #: includes/model/UpStream_Model_Project.php:4 58707 #: includes/model/UpStream_Model_Task.php:295 templates/archive-project.php:4 59739 #: includes/model/UpStream_Model_Project.php:469 740 #: includes/model/UpStream_Model_Task.php:295 templates/archive-project.php:464 708 741 #: templates/single-project/details.php:16 709 742 msgid "Start Date" … … 766 799 #: includes/frontend/up-table-functions.php:375 767 800 #: includes/frontend/up-table-functions.php:435 768 #: includes/model/UpStream_Model_Object.php:67 templates/archive-project.php:7 2801 #: includes/model/UpStream_Model_Object.php:67 templates/archive-project.php:75 769 802 #: templates/global/sidebar.php:24 templates/single-project/bugs.php:65 770 803 #: templates/single-project/files.php:45 templates/single-project/tasks.php:79 … … 776 809 #: includes/admin/metaboxes/class-up-metaboxes-projects.php:701 777 810 #: includes/admin/metaboxes/class-up-metaboxes-projects.php:718 778 #: includes/admin/metaboxes/class-up-metaboxes-projects.php:2 197779 #: includes/class-up-milestones.php:336 includes/class-up-milestones.php: 364811 #: includes/admin/metaboxes/class-up-metaboxes-projects.php:2208 812 #: includes/class-up-milestones.php:336 includes/class-up-milestones.php:480 780 813 #: includes/frontend/up-table-functions.php:1051 781 #: templates/archive-project.php:8 3templates/global/sidebar.php:35814 #: templates/archive-project.php:86 templates/global/sidebar.php:35 782 815 #: templates/single-project/bugs.php:230 templates/single-project/bugs.php:248 816 #: templates/single-project/progress.php:125 817 #: templates/single-project/progress.php:170 783 818 #: templates/single-project/tasks.php:253 784 819 #: templates/single-project/tasks.php:280 … … 791 826 #: includes/admin/options/class-up-options-projects.php:99 792 827 #: includes/admin/options/class-up-options-tasks.php:99 793 #: templates/archive-project.php:8 0templates/global/sidebar.php:32828 #: templates/archive-project.php:83 templates/global/sidebar.php:32 794 829 msgid "Statuses" 795 830 msgstr "" … … 851 886 #: includes/admin/metaboxes/class-up-metaboxes-projects.php:1805 852 887 #: includes/admin/metaboxes/class-up-metaboxes-projects.php:1819 888 #: includes/admin/up-enqueues.php:118 889 msgid "Add new Comment" 890 msgstr "" 891 892 #: includes/admin/metaboxes/class-up-metaboxes-projects.php:1811 853 893 #: includes/admin/up-enqueues.php:117 854 msgid "Add new Comment"855 msgstr ""856 857 #: includes/admin/metaboxes/class-up-metaboxes-projects.php:1811858 #: includes/admin/up-enqueues.php:116859 894 msgid "Add Comment" 860 895 msgstr "" … … 865 900 866 901 #: includes/admin/metaboxes/class-up-metaboxes-projects.php:1911 867 #: includes/class-up-comments.php:2 79 includes/class-up-comments.php:385868 #: includes/class-up-comments.php:48 2 includes/class-up-comments.php:754902 #: includes/class-up-comments.php:280 includes/class-up-comments.php:387 903 #: includes/class-up-comments.php:484 includes/class-up-comments.php:757 869 904 msgid "Invalid Project." 870 905 msgstr "" … … 872 907 #: includes/admin/metaboxes/class-up-metaboxes-projects.php:2009 873 908 #: includes/admin/metaboxes/metabox-functions.php:598 874 #: includes/class-up-comment.php:5 79 includes/class-up-comments.php:921909 #: includes/class-up-comment.php:580 includes/class-up-comments.php:925 875 910 #, php-format 876 911 msgctxt "%s = human-readable time difference" … … 890 925 #: includes/admin/options/class-up-options-projects.php:160 891 926 #: includes/admin/options/class-up-options-tasks.php:160 892 #: templates/single-project/overview.php:171 893 #: templates/single-project/overview.php:203 894 #: templates/single-project/overview.php:235 927 #: templates/single-project/overview.php:180 928 #: templates/single-project/overview.php:212 929 #: templates/single-project/overview.php:244 930 #: templates/single-project/progress.php:53 895 931 msgid "Open" 896 932 msgstr "" … … 914 950 915 951 #: includes/admin/metaboxes/metabox-functions.php:715 916 #: includes/admin/up-enqueues.php:12 3952 #: includes/admin/up-enqueues.php:124 917 953 msgid "Unapprove" 918 954 msgstr "" 919 955 920 956 #: includes/admin/metaboxes/metabox-functions.php:721 921 #: includes/admin/up-enqueues.php:12 5957 #: includes/admin/up-enqueues.php:126 922 958 msgid "Approve" 923 959 msgstr "" 924 960 925 961 #: includes/admin/metaboxes/metabox-functions.php:730 926 #: includes/admin/up-enqueues.php:11 5962 #: includes/admin/up-enqueues.php:116 927 963 msgid "Reply" 928 964 msgstr "" 929 965 930 966 #: includes/admin/metaboxes/metabox-functions.php:738 931 #: includes/admin/up-enqueues.php:12 1967 #: includes/admin/up-enqueues.php:122 932 968 msgid "Delete" 933 969 msgstr "" … … 942 978 943 979 #: includes/admin/metaboxes/metabox-functions.php:1232 944 #: includes/admin/up-enqueues.php:13 4980 #: includes/admin/up-enqueues.php:135 945 981 msgid "No client selected" 946 982 msgstr "" … … 1015 1051 #: includes/admin/options/class-up-options-projects.php:161 1016 1052 #: includes/admin/options/class-up-options-tasks.php:161 1017 #: templates/single-project/overview.php:2 121018 #: templates/single-project/overview.php:2 441053 #: templates/single-project/overview.php:221 1054 #: templates/single-project/overview.php:253 1019 1055 msgid "Closed" 1020 1056 msgstr "" … … 1289 1325 1290 1326 #: includes/admin/options/class-up-options-general.php:320 1291 #: includes/up-general-functions.php:8 181327 #: includes/up-general-functions.php:839 1292 1328 msgid "Contact Admin" 1293 1329 msgstr "" … … 1342 1378 1343 1379 #: includes/admin/options/class-up-options-general.php:394 1380 msgid "Collapse Project Progress box" 1381 msgstr "" 1382 1383 #: includes/admin/options/class-up-options-general.php:398 1384 msgid "Choose whether to collapse the Project progress box automatically when a user opens a project page." 1385 msgstr "" 1386 1387 #: includes/admin/options/class-up-options-general.php:408 1344 1388 msgid "Collapse Project Milestones box" 1345 1389 msgstr "" 1346 1390 1347 #: includes/admin/options/class-up-options-general.php: 3981391 #: includes/admin/options/class-up-options-general.php:412 1348 1392 msgid "Choose whether to collapse the Milestones box automatically when a user opens a project page." 1349 1393 msgstr "" 1350 1394 1351 #: includes/admin/options/class-up-options-general.php:4 081395 #: includes/admin/options/class-up-options-general.php:422 1352 1396 msgid "Collapse Project Tasks box" 1353 1397 msgstr "" 1354 1398 1355 #: includes/admin/options/class-up-options-general.php:4 121399 #: includes/admin/options/class-up-options-general.php:426 1356 1400 msgid "Choose whether to collapse the Tasks box automatically when a user opens a project page." 1357 1401 msgstr "" 1358 1402 1359 #: includes/admin/options/class-up-options-general.php:4 221403 #: includes/admin/options/class-up-options-general.php:436 1360 1404 msgid "Collapse Project Bugs box" 1361 1405 msgstr "" 1362 1406 1363 #: includes/admin/options/class-up-options-general.php:4 261407 #: includes/admin/options/class-up-options-general.php:440 1364 1408 msgid "Choose whether to collapse the Bugs box automatically when a user opens a project page." 1365 1409 msgstr "" 1366 1410 1367 #: includes/admin/options/class-up-options-general.php:4 361411 #: includes/admin/options/class-up-options-general.php:450 1368 1412 msgid "Collapse Project Files box" 1369 1413 msgstr "" 1370 1414 1371 #: includes/admin/options/class-up-options-general.php:4 401415 #: includes/admin/options/class-up-options-general.php:454 1372 1416 msgid "Choose whether to collapse the Files box automatically when a user opens a project page." 1373 1417 msgstr "" 1374 1418 1375 #: includes/admin/options/class-up-options-general.php:4 501419 #: includes/admin/options/class-up-options-general.php:464 1376 1420 msgid "Collapse Project Discussion box" 1377 1421 msgstr "" 1378 1422 1379 #: includes/admin/options/class-up-options-general.php:4 541423 #: includes/admin/options/class-up-options-general.php:468 1380 1424 msgid "Choose whether to collapse the Discussion box automatically when a user opens a project page." 1381 1425 msgstr "" 1382 1426 1383 #: includes/admin/options/class-up-options-general.php:4 681427 #: includes/admin/options/class-up-options-general.php:482 1384 1428 msgid "Toggle Features" 1385 1429 msgstr "" 1386 1430 1387 #: includes/admin/options/class-up-options-general.php:4 711431 #: includes/admin/options/class-up-options-general.php:485 1388 1432 msgid "Options to toggle different sections and features." 1389 1433 msgstr "" 1390 1434 1391 #: includes/admin/options/class-up-options-general.php:475 1435 #: includes/admin/options/class-up-options-general.php:489 1436 msgid "Disable Project Progress box" 1437 msgstr "" 1438 1439 #: includes/admin/options/class-up-options-general.php:493 1440 msgid "Choose whether to disable the Project progress box on the front end." 1441 msgstr "" 1442 1443 #: includes/admin/options/class-up-options-general.php:503 1392 1444 msgid "Disable Clients and Client Users" 1393 1445 msgstr "" 1394 1446 1395 #: includes/admin/options/class-up-options-general.php: 4791447 #: includes/admin/options/class-up-options-general.php:507 1396 1448 msgid "Choose whether if Clients and Client Users can be added and used on Projects." 1397 1449 msgstr "" 1398 1450 1399 #: includes/admin/options/class-up-options-general.php: 4891451 #: includes/admin/options/class-up-options-general.php:517 1400 1452 msgid "Select all client's users by default" 1401 1453 msgstr "" 1402 1454 1403 #: includes/admin/options/class-up-options-general.php: 4931455 #: includes/admin/options/class-up-options-general.php:521 1404 1456 msgid "Choose whether if all client's users should be checked by default after change or select the client." 1405 1457 msgstr "" 1406 1458 1407 #: includes/admin/options/class-up-options-general.php:5 031459 #: includes/admin/options/class-up-options-general.php:531 1408 1460 msgid "Disable Projects Categorization" 1409 1461 msgstr "" 1410 1462 1411 #: includes/admin/options/class-up-options-general.php:5 071463 #: includes/admin/options/class-up-options-general.php:535 1412 1464 msgid "Choose whether Projects can be sorted into categories by managers and users." 1413 1465 msgstr "" 1414 1466 1415 #: includes/admin/options/class-up-options-general.php:5 171467 #: includes/admin/options/class-up-options-general.php:545 1416 1468 msgid "Project Progress Icons" 1417 1469 msgstr "" 1418 1470 1419 #: includes/admin/options/class-up-options-general.php:5 211471 #: includes/admin/options/class-up-options-general.php:549 1420 1472 msgid "Choose whether to display the Project Progress Icons section on frontend." 1421 1473 msgstr "" 1422 1474 1423 #: includes/admin/options/class-up-options-general.php:5 261475 #: includes/admin/options/class-up-options-general.php:554 1424 1476 msgid "Do not show" 1425 1477 msgstr "" 1426 1478 1427 #: includes/admin/options/class-up-options-general.php:5 311479 #: includes/admin/options/class-up-options-general.php:559 1428 1480 msgid "Disable Project Details" 1429 1481 msgstr "" 1430 1482 1431 #: includes/admin/options/class-up-options-general.php:5 351483 #: includes/admin/options/class-up-options-general.php:563 1432 1484 msgid "Choose whether to display the Project Details section on frontend." 1433 1485 msgstr "" 1434 1486 1435 #: includes/admin/options/class-up-options-general.php:5 451487 #: includes/admin/options/class-up-options-general.php:573 1436 1488 msgid "Disable Bugs" 1437 1489 msgstr "" 1438 1490 1439 #: includes/admin/options/class-up-options-general.php:5 491491 #: includes/admin/options/class-up-options-general.php:577 1440 1492 msgid "Ticking this box will disable the Bugs section on both the frontend and the admin area." 1441 1493 msgstr "" 1442 1494 1443 #: includes/admin/options/class-up-options-general.php:5 541495 #: includes/admin/options/class-up-options-general.php:582 1444 1496 msgid "Disable the Bugs section?" 1445 1497 msgstr "" 1446 1498 1447 #: includes/admin/options/class-up-options-general.php:5 591499 #: includes/admin/options/class-up-options-general.php:587 1448 1500 msgid "Disable Tasks" 1449 1501 msgstr "" 1450 1502 1451 #: includes/admin/options/class-up-options-general.php:5 631503 #: includes/admin/options/class-up-options-general.php:591 1452 1504 msgid "Ticking this box will disable the Tasks section on both the frontend and the admin area." 1453 1505 msgstr "" 1454 1506 1455 #: includes/admin/options/class-up-options-general.php:5 681507 #: includes/admin/options/class-up-options-general.php:596 1456 1508 msgid "Disable the Tasks section?" 1457 1509 msgstr "" 1458 1510 1459 #: includes/admin/options/class-up-options-general.php: 5731511 #: includes/admin/options/class-up-options-general.php:601 1460 1512 msgid "Disable Milestones" 1461 1513 msgstr "" 1462 1514 1463 #: includes/admin/options/class-up-options-general.php: 5771515 #: includes/admin/options/class-up-options-general.php:605 1464 1516 msgid "Ticking this box will disable the Milestones section on both the frontend and the admin area. <strong>Warning: The project timeline and some other features require milestones to work properly.</strong>" 1465 1517 msgstr "" 1466 1518 1467 #: includes/admin/options/class-up-options-general.php: 5821519 #: includes/admin/options/class-up-options-general.php:610 1468 1520 msgid "Disable the Milestones section?" 1469 1521 msgstr "" 1470 1522 1471 #: includes/admin/options/class-up-options-general.php: 5871523 #: includes/admin/options/class-up-options-general.php:615 1472 1524 msgid "Disable Milestone Categories" 1473 1525 msgstr "" 1474 1526 1475 #: includes/admin/options/class-up-options-general.php: 5911527 #: includes/admin/options/class-up-options-general.php:619 1476 1528 msgid "Ticking this box will disable the Milestone Categories section on both the frontend and the admin area." 1477 1529 msgstr "" 1478 1530 1479 #: includes/admin/options/class-up-options-general.php:6 021531 #: includes/admin/options/class-up-options-general.php:630 1480 1532 msgid "Disable Files" 1481 1533 msgstr "" 1482 1534 1483 #: includes/admin/options/class-up-options-general.php:6 061535 #: includes/admin/options/class-up-options-general.php:634 1484 1536 msgid "Ticking this box will disable the Files section on both the frontend and the admin area." 1485 1537 msgstr "" 1486 1538 1487 #: includes/admin/options/class-up-options-general.php:6 111539 #: includes/admin/options/class-up-options-general.php:639 1488 1540 msgid "Disable the Files section?" 1489 1541 msgstr "" 1490 1542 1491 #: includes/admin/options/class-up-options-general.php:6 161492 msgid "File Upload Manager BETA (DO NOT change after you have added files)"1493 msgstr "" 1494 1495 #: includes/admin/options/class-up-options-general.php:6 201543 #: includes/admin/options/class-up-options-general.php:644 1544 msgid "File Upload Manager (NOTE: DO NOT change after you have added files)" 1545 msgstr "" 1546 1547 #: includes/admin/options/class-up-options-general.php:648 1496 1548 msgid "Choose which file upload system to use. <B>DO NOT CHANGE THIS SETTING AFTER YOU HAVE ADDED FILES</B>, since it will clear all files." 1497 1549 msgstr "" 1498 1550 1499 #: includes/admin/options/class-up-options-general.php:6 251551 #: includes/admin/options/class-up-options-general.php:653 1500 1552 msgid "Use WordPress built-in file uploads" 1501 1553 msgstr "" 1502 1554 1503 #: includes/admin/options/class-up-options-general.php:6 261555 #: includes/admin/options/class-up-options-general.php:654 1504 1556 msgid "Use UpStream secure file uploads" 1505 1557 msgstr "" 1506 1558 1507 #: includes/admin/options/class-up-options-general.php:6 301559 #: includes/admin/options/class-up-options-general.php:658 1508 1560 msgid "UpStream secure file upload location" 1509 1561 msgstr "" 1510 1562 1511 #: includes/admin/options/class-up-options-general.php:6 341512 msgid "If UpStream secure file uploads is enabled, this must be set to a path on your web server that is writeable. "1513 msgstr "" 1514 1515 #: includes/admin/options/class-up-options-general.php:6 401563 #: includes/admin/options/class-up-options-general.php:662 1564 msgid "If UpStream secure file uploads is enabled, this must be set to a path on your web server that is writeable. Contact your system administrator for help." 1565 msgstr "" 1566 1567 #: includes/admin/options/class-up-options-general.php:668 1516 1568 msgid "Disable Reports" 1517 1569 msgstr "" 1518 1570 1519 #: includes/admin/options/class-up-options-general.php:6 441571 #: includes/admin/options/class-up-options-general.php:672 1520 1572 msgid "Disable the reports section on the sidebar." 1521 1573 msgstr "" 1522 1574 1523 #: includes/admin/options/class-up-options-general.php:6 491575 #: includes/admin/options/class-up-options-general.php:677 1524 1576 msgid "Show reports section" 1525 1577 msgstr "" 1526 1578 1527 #: includes/admin/options/class-up-options-general.php:6501528 #: includes/admin/options/class-up-options-general.php:6641529 1579 #: includes/admin/options/class-up-options-general.php:678 1580 #: includes/admin/options/class-up-options-general.php:692 1581 #: includes/admin/options/class-up-options-general.php:706 1582 #: includes/admin/options/class-up-options-general.php:719 1583 #: includes/admin/options/class-up-options-general.php:733 1584 #: includes/admin/options/class-up-options-general.php:747 1585 #: includes/admin/options/class-up-options-general.php:761 1586 msgid "Disable section" 1587 msgstr "" 1588 1589 #: includes/admin/options/class-up-options-general.php:682 1590 #: includes/admin/options/class-up-options-general.php:696 1591 msgid "Disable Discussion on Projects" 1592 msgstr "" 1593 1594 #: includes/admin/options/class-up-options-general.php:686 1595 #: includes/admin/options/class-up-options-general.php:700 1596 msgid "Either allow comments on projects on both the frontend and the admin area or hide the section." 1597 msgstr "" 1598 1530 1599 #: includes/admin/options/class-up-options-general.php:691 1531 1600 #: includes/admin/options/class-up-options-general.php:705 1532 #: includes/admin/options/class-up-options-general.php:7191533 #: includes/admin/options/class-up-options-general.php:7331534 msgid "Disable section"1535 msgstr ""1536 1537 #: includes/admin/options/class-up-options-general.php:6541538 #: includes/admin/options/class-up-options-general.php:6681539 msgid "Disable Discussion on Projects"1540 msgstr ""1541 1542 #: includes/admin/options/class-up-options-general.php:6581543 #: includes/admin/options/class-up-options-general.php:6721544 msgid "Either allow comments on projects on both the frontend and the admin area or hide the section."1545 msgstr ""1546 1547 #: includes/admin/options/class-up-options-general.php:6631548 #: includes/admin/options/class-up-options-general.php:6771549 1601 msgid "Allow comments on projects" 1550 1602 msgstr "" 1551 1603 1552 #: includes/admin/options/class-up-options-general.php: 6811604 #: includes/admin/options/class-up-options-general.php:709 1553 1605 msgid "Disable Discussion on Milestones" 1554 1606 msgstr "" 1555 1607 1556 #: includes/admin/options/class-up-options-general.php:6851557 #: includes/admin/options/class-up-options-general.php:6991558 1608 #: includes/admin/options/class-up-options-general.php:713 1559 1609 #: includes/admin/options/class-up-options-general.php:727 1610 #: includes/admin/options/class-up-options-general.php:741 1611 #: includes/admin/options/class-up-options-general.php:755 1560 1612 #, php-format 1561 1613 msgid "Either allow comments on %s or hide the section." 1562 1614 msgstr "" 1563 1615 1564 #: includes/admin/options/class-up-options-general.php: 6861616 #: includes/admin/options/class-up-options-general.php:714 1565 1617 #: includes/up-labels.php:46 1566 1618 msgid "Milestones" 1567 1619 msgstr "" 1568 1620 1569 #: includes/admin/options/class-up-options-general.php: 6901621 #: includes/admin/options/class-up-options-general.php:718 1570 1622 msgid "Allow comments on Milestones" 1571 1623 msgstr "" 1572 1624 1573 #: includes/admin/options/class-up-options-general.php: 6951625 #: includes/admin/options/class-up-options-general.php:723 1574 1626 msgid "Disable Discussion on Tasks" 1575 1627 msgstr "" 1576 1628 1577 #: includes/admin/options/class-up-options-general.php:7 001629 #: includes/admin/options/class-up-options-general.php:728 1578 1630 #: includes/up-labels.php:62 1579 1631 msgid "Tasks" 1580 1632 msgstr "" 1581 1633 1582 #: includes/admin/options/class-up-options-general.php:7 041634 #: includes/admin/options/class-up-options-general.php:732 1583 1635 msgid "Allow comments on Tasks" 1584 1636 msgstr "" 1585 1637 1586 #: includes/admin/options/class-up-options-general.php:7 091638 #: includes/admin/options/class-up-options-general.php:737 1587 1639 msgid "Disable Discussion on Bugs" 1588 1640 msgstr "" 1589 1641 1590 #: includes/admin/options/class-up-options-general.php:7 141642 #: includes/admin/options/class-up-options-general.php:742 1591 1643 #: includes/up-labels.php:66 1592 1644 msgid "Bugs" 1593 1645 msgstr "" 1594 1646 1595 #: includes/admin/options/class-up-options-general.php:7 181647 #: includes/admin/options/class-up-options-general.php:746 1596 1648 msgid "Allow comments on Bugs" 1597 1649 msgstr "" 1598 1650 1599 #: includes/admin/options/class-up-options-general.php:7 231651 #: includes/admin/options/class-up-options-general.php:751 1600 1652 msgid "Disable Discussion on Files" 1601 1653 msgstr "" 1602 1654 1603 #: includes/admin/options/class-up-options-general.php:7 281655 #: includes/admin/options/class-up-options-general.php:756 1604 1656 #: includes/up-labels.php:70 1605 1657 msgid "Files" 1606 1658 msgstr "" 1607 1659 1608 #: includes/admin/options/class-up-options-general.php:7 321660 #: includes/admin/options/class-up-options-general.php:760 1609 1661 msgid "Allow comments on Files" 1610 1662 msgstr "" 1611 1663 1612 #: includes/admin/options/class-up-options-general.php:7 371664 #: includes/admin/options/class-up-options-general.php:765 1613 1665 msgid "Show all projects in the frontend sidebar" 1614 1666 msgstr "" 1615 1667 1616 #: includes/admin/options/class-up-options-general.php:7 401668 #: includes/admin/options/class-up-options-general.php:768 1617 1669 msgid "If enabled, all projects will be displayed in the sidebar on frontend." 1618 1670 msgstr "" 1619 1671 1620 #: includes/admin/options/class-up-options-general.php:7 441672 #: includes/admin/options/class-up-options-general.php:772 1621 1673 msgid "Show only the current project" 1622 1674 msgstr "" 1623 1675 1624 #: includes/admin/options/class-up-options-general.php:7 451676 #: includes/admin/options/class-up-options-general.php:773 1625 1677 msgid "Show all projects" 1626 1678 msgstr "" 1627 1679 1628 #: includes/admin/options/class-up-options-general.php:749 1680 #: includes/admin/options/class-up-options-general.php:777 1681 msgid "Override project locking on front end" 1682 msgstr "" 1683 1684 #: includes/admin/options/class-up-options-general.php:780 1685 msgid "If enabled, users will be allowed to edit projects regardless of whether another person is making edits (only applies on the front end). Note that if you allow multiple users to edit a project simultaneously, there is a chance that changes may be overwritten." 1686 msgstr "" 1687 1688 #: includes/admin/options/class-up-options-general.php:784 1689 msgid "Users cannot edit simultaneously (safe)" 1690 msgstr "" 1691 1692 #: includes/admin/options/class-up-options-general.php:785 1693 msgid "Multiple users can edit a project simultaneously" 1694 msgstr "" 1695 1696 #: includes/admin/options/class-up-options-general.php:789 1629 1697 msgid "Send Notifications for New Comments" 1630 1698 msgstr "" 1631 1699 1632 #: includes/admin/options/class-up-options-general.php:7 531633 #: includes/admin/options/class-up-options-general.php: 8661634 #: includes/admin/options/class-up-options-general.php: 8801700 #: includes/admin/options/class-up-options-general.php:793 1701 #: includes/admin/options/class-up-options-general.php:906 1702 #: includes/admin/options/class-up-options-general.php:920 1635 1703 #: includes/admin/options/class-up-options-milestones.php:108 1636 1704 msgid "Enabled" 1637 1705 msgstr "" 1638 1706 1639 #: includes/admin/options/class-up-options-general.php:7 541707 #: includes/admin/options/class-up-options-general.php:794 1640 1708 #: includes/admin/options/class-up-options-milestones.php:109 1641 1709 msgid "Disabled" 1642 1710 msgstr "" 1643 1711 1644 #: includes/admin/options/class-up-options-general.php:7 571712 #: includes/admin/options/class-up-options-general.php:797 1645 1713 msgid "Check this to send a notification to the owner and creator of a milestone, task, or bug when someone comments on it." 1646 1714 msgstr "" 1647 1715 1648 #: includes/admin/options/class-up-options-general.php: 7631716 #: includes/admin/options/class-up-options-general.php:803 1649 1717 msgid "Localization" 1650 1718 msgstr "" 1651 1719 1652 #: includes/admin/options/class-up-options-general.php: 7671720 #: includes/admin/options/class-up-options-general.php:807 1653 1721 msgid "General options for localization, such as times." 1654 1722 msgstr "" 1655 1723 1656 #: includes/admin/options/class-up-options-general.php: 7711724 #: includes/admin/options/class-up-options-general.php:811 1657 1725 msgid "Work Hours Per Day" 1658 1726 msgstr "" 1659 1727 1660 #: includes/admin/options/class-up-options-general.php: 7741728 #: includes/admin/options/class-up-options-general.php:814 1661 1729 msgid "The number of work hours per day (used in determining days of work)." 1662 1730 msgstr "" 1663 1731 1664 #: includes/admin/options/class-up-options-general.php: 7781732 #: includes/admin/options/class-up-options-general.php:818 1665 1733 msgid "Currency Symbol" 1666 1734 msgstr "" 1667 1735 1668 #: includes/admin/options/class-up-options-general.php: 7811736 #: includes/admin/options/class-up-options-general.php:821 1669 1737 msgid "The local currency symbol." 1670 1738 msgstr "" 1671 1739 1672 #: includes/admin/options/class-up-options-general.php: 7891740 #: includes/admin/options/class-up-options-general.php:829 1673 1741 msgid "Maintenance" 1674 1742 msgstr "" 1675 1743 1676 #: includes/admin/options/class-up-options-general.php: 7931744 #: includes/admin/options/class-up-options-general.php:833 1677 1745 msgid "General options for maintenance only. Be careful enabling any of these options." 1678 1746 msgstr "" 1679 1747 1680 #: includes/admin/options/class-up-options-general.php: 7971748 #: includes/admin/options/class-up-options-general.php:837 1681 1749 msgid "Add default UpStream capabilities" 1682 1750 msgstr "" 1683 1751 1684 #: includes/admin/options/class-up-options-general.php:8 021752 #: includes/admin/options/class-up-options-general.php:842 1685 1753 msgid "Administrator" 1686 1754 msgstr "" 1687 1755 1688 #: includes/admin/options/class-up-options-general.php:8 031756 #: includes/admin/options/class-up-options-general.php:843 1689 1757 #: includes/class-up-roles.php:45 1690 1758 msgid "UpStream Manager" 1691 1759 msgstr "" 1692 1760 1693 #: includes/admin/options/class-up-options-general.php:8 041694 #: includes/class-up-roles.php:80 upstream.php: 6161761 #: includes/admin/options/class-up-options-general.php:844 1762 #: includes/class-up-roles.php:80 upstream.php:549 1695 1763 msgid "UpStream User" 1696 1764 msgstr "" 1697 1765 1698 #: includes/admin/options/class-up-options-general.php:8 141766 #: includes/admin/options/class-up-options-general.php:854 1699 1767 msgid "Clicking this button will reset all the capabilities to the default set for the following user roles: administrator, upstream_manager, upstream_user and upstream_client_user. This can't be undone." 1700 1768 msgstr "" 1701 1769 1702 #: includes/admin/options/class-up-options-general.php:8 211770 #: includes/admin/options/class-up-options-general.php:861 1703 1771 msgid "Update Project Data" 1704 1772 msgstr "" 1705 1773 1706 #: includes/admin/options/class-up-options-general.php:8 241774 #: includes/admin/options/class-up-options-general.php:864 1707 1775 msgid "Update" 1708 1776 msgstr "" 1709 1777 1710 #: includes/admin/options/class-up-options-general.php:8 261778 #: includes/admin/options/class-up-options-general.php:866 1711 1779 msgid "Clicking this button will recalculate the data for all the projects, including: project members, milestones' tasks statuses, created time, project author. This can't be undone and can take some time if you have many projects." 1712 1780 msgstr "" 1713 1781 1714 #: includes/admin/options/class-up-options-general.php:8 331782 #: includes/admin/options/class-up-options-general.php:873 1715 1783 msgid "Migrate Legacy Milestones" 1716 1784 msgstr "" 1717 1785 1718 #: includes/admin/options/class-up-options-general.php:8 361786 #: includes/admin/options/class-up-options-general.php:876 1719 1787 msgid "Start migration" 1720 1788 msgstr "" 1721 1789 1722 #: includes/admin/options/class-up-options-general.php:8 381790 #: includes/admin/options/class-up-options-general.php:878 1723 1791 msgid "Clicking this button will force to migrate again all the legacy milestones (project meta data) to the new post type. Only do this if you had any issue with the migrated data after updating to the version 1.24.0. This can't be undone and can take some time if you have many projects." 1724 1792 msgstr "" 1725 1793 1726 #: includes/admin/options/class-up-options-general.php:8 451794 #: includes/admin/options/class-up-options-general.php:885 1727 1795 msgid "Cleanup Plugin's Update Cache" 1728 1796 msgstr "" 1729 1797 1730 #: includes/admin/options/class-up-options-general.php:8 481798 #: includes/admin/options/class-up-options-general.php:888 1731 1799 msgid "Cleanup" 1732 1800 msgstr "" 1733 1801 1734 #: includes/admin/options/class-up-options-general.php:8 501802 #: includes/admin/options/class-up-options-general.php:890 1735 1803 msgid "If you’re having problems seeing UpStream extension updates, click this button and you see any new plugin releases." 1736 1804 msgstr "" 1737 1805 1738 #: includes/admin/options/class-up-options-general.php:8 571806 #: includes/admin/options/class-up-options-general.php:897 1739 1807 msgid "Debug" 1740 1808 msgstr "" 1741 1809 1742 #: includes/admin/options/class-up-options-general.php: 8611810 #: includes/admin/options/class-up-options-general.php:901 1743 1811 msgid "Ticking this box will enable special debug code and a new menu to inspect the debug information." 1744 1812 msgstr "" 1745 1813 1746 #: includes/admin/options/class-up-options-general.php: 8711814 #: includes/admin/options/class-up-options-general.php:911 1747 1815 msgid "Beta Features" 1748 1816 msgstr "" 1749 1817 1750 #: includes/admin/options/class-up-options-general.php: 8751818 #: includes/admin/options/class-up-options-general.php:915 1751 1819 msgid "Ticking this box will enable beta features." 1752 1820 msgstr "" 1753 1821 1754 #: includes/admin/options/class-up-options-general.php: 8851822 #: includes/admin/options/class-up-options-general.php:925 1755 1823 msgid "Remove Data" 1756 1824 msgstr "" 1757 1825 1758 #: includes/admin/options/class-up-options-general.php: 8891826 #: includes/admin/options/class-up-options-general.php:929 1759 1827 msgid "Ticking this box will delete all UpStream data when plugin is uninstalled." 1760 1828 msgstr "" 1761 1829 1762 #: includes/admin/options/class-up-options-general.php: 8941830 #: includes/admin/options/class-up-options-general.php:934 1763 1831 msgid "Remove all data on uninstall?" 1764 1832 msgstr "" 1765 1833 1766 #: includes/admin/options/class-up-options-general.php:9 481767 #: includes/admin/options/class-up-options-general.php:9 521768 #: includes/admin/options/class-up-options-general.php: 9661769 #: includes/admin/options/class-up-options-general.php: 9701770 #: includes/admin/options/class-up-options-general.php:11 251771 #: includes/admin/options/class-up-options-general.php:11 291772 #: includes/admin/options/class-up-options-general.php:1 1601773 #: includes/admin/options/class-up-options-general.php:1 1641834 #: includes/admin/options/class-up-options-general.php:989 1835 #: includes/admin/options/class-up-options-general.php:993 1836 #: includes/admin/options/class-up-options-general.php:1007 1837 #: includes/admin/options/class-up-options-general.php:1011 1838 #: includes/admin/options/class-up-options-general.php:1171 1839 #: includes/admin/options/class-up-options-general.php:1175 1840 #: includes/admin/options/class-up-options-general.php:1206 1841 #: includes/admin/options/class-up-options-general.php:1210 1774 1842 msgid "Invalid Nonce" 1775 1843 msgstr "" 1776 1844 1777 #: includes/admin/options/class-up-options-general.php:979 1778 #: includes/admin/options/class-up-options-general.php:1022 1845 #: includes/admin/options/class-up-options-general.php:1018 1846 msgid "Invalid File" 1847 msgstr "" 1848 1849 #: includes/admin/options/class-up-options-general.php:1023 1850 #: includes/admin/options/class-up-options-general.php:1066 1779 1851 msgid "You must be an administrator to import data." 1780 1852 msgstr "" 1781 1853 1782 #: includes/admin/options/class-up-options-general.php: 9821854 #: includes/admin/options/class-up-options-general.php:1026 1783 1855 msgid "No file found." 1784 1856 msgstr "" 1785 1857 1786 #: includes/admin/options/class-up-options-general.php:10 391858 #: includes/admin/options/class-up-options-general.php:1085 1787 1859 msgid "The file could not be found." 1788 1860 msgstr "" 1789 1861 1790 #: includes/admin/options/class-up-options-general.php:10 441862 #: includes/admin/options/class-up-options-general.php:1090 1791 1863 msgid "A general error occurred." 1792 1864 msgstr "" 1793 1865 1794 #: includes/admin/options/class-up-options-general.php:1 1701866 #: includes/admin/options/class-up-options-general.php:1216 1795 1867 msgid "Invalid project id" 1796 1868 msgstr "" … … 1942 2014 msgstr "" 1943 2015 1944 #: includes/admin/up-enqueues.php:5 62016 #: includes/admin/up-enqueues.php:57 1945 2017 msgid "Resetting..." 1946 2018 msgstr "" 1947 2019 1948 #: includes/admin/up-enqueues.php:5 72020 #: includes/admin/up-enqueues.php:58 1949 2021 msgid "Refreshing..." 1950 2022 msgstr "" 1951 2023 1952 #: includes/admin/up-enqueues.php:5 82024 #: includes/admin/up-enqueues.php:59 1953 2025 msgid "Are you sure you want to reset the capabilities?" 1954 2026 msgstr "" 1955 2027 1956 #: includes/admin/up-enqueues.php: 592028 #: includes/admin/up-enqueues.php:60 1957 2029 msgid "Are you sure you want to refresh the projects meta data?" 1958 2030 msgstr "" 1959 2031 1960 #: includes/admin/up-enqueues.php:6 12032 #: includes/admin/up-enqueues.php:62 1961 2033 msgid "Are you sure you want to cleanup the cached data about updates?" 1962 2034 msgstr "" 1963 2035 1964 #: includes/admin/up-enqueues.php:6 32036 #: includes/admin/up-enqueues.php:64 1965 2037 msgid "Are you sure you want to perform an import? MAKE SURE YOU HAVE BACKED UP YOUR DATA FIRST!" 1966 2038 msgstr "" 1967 2039 1968 #: includes/admin/up-enqueues.php:6 4 includes/admin/up-enqueues.php:662040 #: includes/admin/up-enqueues.php:65 includes/admin/up-enqueues.php:67 1969 2041 msgid "Success!" 1970 2042 msgstr "" 1971 2043 1972 #: includes/admin/up-enqueues.php:6 5 includes/admin/up-enqueues.php:672044 #: includes/admin/up-enqueues.php:66 includes/admin/up-enqueues.php:68 1973 2045 msgid "Error!" 1974 2046 msgstr "" 1975 2047 1976 #: includes/admin/up-enqueues.php:6 82048 #: includes/admin/up-enqueues.php:69 1977 2049 msgid "Error cleaning up the cached data!" 1978 2050 msgstr "" 1979 2051 1980 #: includes/admin/up-enqueues.php: 692052 #: includes/admin/up-enqueues.php:70 1981 2053 msgid "Error importing data!" 1982 2054 msgstr "" 1983 2055 1984 #: includes/admin/up-enqueues.php:11 32056 #: includes/admin/up-enqueues.php:114 1985 2057 msgid "Cancel" 1986 2058 msgstr "" 1987 2059 1988 #: includes/admin/up-enqueues.php:11 42060 #: includes/admin/up-enqueues.php:115 1989 2061 msgid "Add Reply" 1990 2062 msgstr "" 1991 2063 1992 #: includes/admin/up-enqueues.php:11 82064 #: includes/admin/up-enqueues.php:119 1993 2065 msgid "Add Comment Reply" 1994 2066 msgstr "" 1995 2067 1996 #: includes/admin/up-enqueues.php:1 19 includes/admin/up-enqueues.php:1642068 #: includes/admin/up-enqueues.php:120 includes/admin/up-enqueues.php:165 1997 2069 msgid "Adding..." 1998 2070 msgstr "" 1999 2071 2000 #: includes/admin/up-enqueues.php:12 02072 #: includes/admin/up-enqueues.php:121 2001 2073 msgid "Replying..." 2002 2074 msgstr "" 2003 2075 2004 #: includes/admin/up-enqueues.php:12 22076 #: includes/admin/up-enqueues.php:123 2005 2077 msgid "Deleting..." 2006 2078 msgstr "" 2007 2079 2008 #: includes/admin/up-enqueues.php:12 42080 #: includes/admin/up-enqueues.php:125 2009 2081 msgid "Unapproving..." 2010 2082 msgstr "" 2011 2083 2012 #: includes/admin/up-enqueues.php:12 62084 #: includes/admin/up-enqueues.php:127 2013 2085 msgid "Approving..." 2014 2086 msgstr "" 2015 2087 2016 #: includes/admin/up-enqueues.php:12 7 includes/admin/up-enqueues.php:1652088 #: includes/admin/up-enqueues.php:128 includes/admin/up-enqueues.php:166 2017 2089 msgid "Are you sure? This action cannot be undone." 2018 2090 msgstr "" 2019 2091 2020 #: includes/admin/up-enqueues.php:1 292092 #: includes/admin/up-enqueues.php:130 2021 2093 msgid "This comment is not visible by regular users." 2022 2094 msgstr "" 2023 2095 2024 #: includes/admin/up-enqueues.php:13 22096 #: includes/admin/up-enqueues.php:133 2025 2097 msgid "Title can't be empty" 2026 2098 msgstr "" 2027 2099 2028 #: includes/admin/up-enqueues.php:13 32100 #: includes/admin/up-enqueues.php:134 2029 2101 msgid "Invalid interval between dates." 2030 2102 msgstr "" 2031 2103 2032 #: includes/admin/up-enqueues.php:13 52104 #: includes/admin/up-enqueues.php:136 includes/frontend/up-enqueues.php:286 2033 2105 msgid "No results" 2034 2106 msgstr "" 2035 2107 2036 #: includes/admin/up-enqueues.php:15 82108 #: includes/admin/up-enqueues.php:159 2037 2109 msgid "UpStream requires jQuery." 2038 2110 msgstr "" 2039 2111 2040 #: includes/admin/up-enqueues.php:1 592112 #: includes/admin/up-enqueues.php:160 2041 2113 msgid "There's no users assigned yet." 2042 2114 msgstr "" 2043 2115 2044 #: includes/admin/up-enqueues.php:16 02116 #: includes/admin/up-enqueues.php:161 2045 2117 msgid "Please, select at least one user" 2046 2118 msgstr "" 2047 2119 2048 #: includes/admin/up-enqueues.php:16 12120 #: includes/admin/up-enqueues.php:162 2049 2121 msgid "Add 1 User" 2050 2122 msgstr "" 2051 2123 2052 #: includes/admin/up-enqueues.php:16 22124 #: includes/admin/up-enqueues.php:163 2053 2125 #, php-format 2054 2126 msgid "Add %d Users" 2055 2127 msgstr "" 2056 2128 2057 #: includes/admin/up-enqueues.php:16 62129 #: includes/admin/up-enqueues.php:167 2058 2130 msgid "Fetching data..." 2059 2131 msgstr "" 2060 2132 2061 #: includes/admin/up-enqueues.php:16 72133 #: includes/admin/up-enqueues.php:168 2062 2134 msgid "No data found." 2063 2135 msgstr "" 2064 2136 2065 #: includes/admin/up-enqueues.php:16 82137 #: includes/admin/up-enqueues.php:169 2066 2138 #, php-format 2067 2139 msgid "Managing %s\\'s Permissions" … … 2074 2146 2075 2147 #: includes/class-up-comment.php:295 includes/class-up-comment.php:305 2076 #: includes/class-up-comments.php:65 02148 #: includes/class-up-comments.php:653 2077 2149 msgid "Unable to save the data into database." 2078 2150 msgstr "" … … 2082 2154 msgstr "" 2083 2155 2084 #: includes/class-up-comments.php:27 3 includes/class-up-comments.php:7772156 #: includes/class-up-comments.php:274 includes/class-up-comments.php:781 2085 2157 msgid "Invalid nonce." 2086 2158 msgstr "" 2087 2159 2088 #: includes/class-up-comments.php:28 4 includes/class-up-comments.php:4072089 #: includes/class-up-comments.php:78 22160 #: includes/class-up-comments.php:285 includes/class-up-comments.php:409 2161 #: includes/class-up-comments.php:786 2090 2162 msgid "Commenting is disabled on this project." 2091 2163 msgstr "" 2092 2164 2093 #: includes/class-up-comments.php:48 7 includes/class-up-comments.php:6402165 #: includes/class-up-comments.php:489 includes/class-up-comments.php:642 2094 2166 msgid "Comments are disabled for this project." 2095 2167 msgstr "" 2096 2168 2097 #: includes/class-up-comments.php:50 12169 #: includes/class-up-comments.php:503 2098 2170 msgctxt "Removing a comment in projects" 2099 2171 msgid "Comment not found." 2100 2172 msgstr "" 2101 2173 2102 #: includes/class-up-comments.php:51 52174 #: includes/class-up-comments.php:517 2103 2175 msgid "It wasn't possible to delete this comment." 2104 2176 msgstr "" 2105 2177 2106 #: includes/class-up-comments.php:63 52178 #: includes/class-up-comments.php:637 2107 2179 #, php-format 2108 2180 msgid "Invalid \"%s\" parameter." 2109 2181 msgstr "" 2110 2182 2111 #: includes/class-up-comments.php:64 52183 #: includes/class-up-comments.php:648 2112 2184 msgid "Comment not found." 2113 2185 msgstr "" 2114 2186 2115 #: includes/class-up-comments.php:122 52187 #: includes/class-up-comments.php:1229 2116 2188 #, php-format 2117 2189 msgctxt "Comment notification subject" … … 2119 2191 msgstr "" 2120 2192 2121 #: includes/class-up-comments.php:127 12193 #: includes/class-up-comments.php:1275 2122 2194 msgid "Item Title: " 2123 2195 msgstr "" 2124 2196 2125 #: includes/class-up-comments.php:12 792197 #: includes/class-up-comments.php:1283 2126 2198 msgid "Item Type: " 2127 2199 msgstr "" … … 2183 2255 msgstr "" 2184 2256 2185 #: includes/class-up-debug.php:2 392257 #: includes/class-up-debug.php:263 2186 2258 msgid "Action nonce not found." 2187 2259 msgstr "" 2188 2260 2189 #: includes/class-up-debug.php:2 462261 #: includes/class-up-debug.php:270 2190 2262 msgid "Invalid action nonce." 2191 2263 msgstr "" 2192 2264 2193 #: includes/class-up-import.php:7 4 includes/class-up-import.php:1022265 #: includes/class-up-import.php:76 includes/class-up-import.php:103 2194 2266 msgid "Error loading file: line " 2195 2267 msgstr "" 2196 2268 2197 #: includes/class-up-import.php:15 32269 #: includes/class-up-import.php:154 2198 2270 #, php-format 2199 2271 msgid "Project with ID %s does not exist." 2200 2272 msgstr "" 2201 2273 2202 #: includes/class-up-import.php:17 52274 #: includes/class-up-import.php:176 2203 2275 #, php-format 2204 2276 msgid "Milestone with ID %s does not exist." 2205 2277 msgstr "" 2206 2278 2207 #: includes/class-up-import.php:23 32279 #: includes/class-up-import.php:234 2208 2280 #, php-format 2209 2281 msgid "Item %s with ID %s does not exist." 2210 2282 msgstr "" 2211 2283 2212 #: includes/class-up-import.php:34 52284 #: includes/class-up-import.php:346 2213 2285 #, php-format 2214 2286 msgid "(column %s, field %s)" 2215 2287 msgstr "" 2216 2288 2217 #: includes/class-up-import.php:37 62289 #: includes/class-up-import.php:377 2218 2290 #, php-format 2219 2291 msgid "Header column %s must be of the form item.field (example: project.title)." 2220 2292 msgstr "" 2221 2293 2222 #: includes/class-up-import.php:38 42223 #: includes/model/UpStream_Model_Manager.php: 182224 #: includes/model/UpStream_Model_Manager.php:1 592225 #: includes/model/UpStream_Model_Manager.php: 1932294 #: includes/class-up-import.php:385 2295 #: includes/model/UpStream_Model_Manager.php:23 2296 #: includes/model/UpStream_Model_Manager.php:174 2297 #: includes/model/UpStream_Model_Manager.php:208 2226 2298 #, php-format 2227 2299 msgid "Item type %s is not valid." … … 2238 2310 msgstr "" 2239 2311 2240 #: includes/class-up-milestones.php:230 includes/up-post-types.php:22 02312 #: includes/class-up-milestones.php:230 includes/up-post-types.php:222 2241 2313 #, php-format 2242 2314 msgid "Edit %s" … … 2253 2325 msgstr "" 2254 2326 2255 #: includes/class-up-milestones.php:234 includes/up-post-types.php:21 42327 #: includes/class-up-milestones.php:234 includes/up-post-types.php:216 2256 2328 #, php-format 2257 2329 msgid "Search %s" … … 2273 2345 msgstr "" 2274 2346 2275 #: includes/class-up-milestones.php:238 includes/up-post-types.php:2 282347 #: includes/class-up-milestones.php:238 includes/up-post-types.php:230 2276 2348 #, php-format 2277 2349 msgid "%s" … … 2314 2386 msgstr "" 2315 2387 2316 #: includes/class-up-milestones.php:340 includes/class-up-milestones.php: 4372388 #: includes/class-up-milestones.php:340 includes/class-up-milestones.php:558 2317 2389 #: includes/up-labels.php:22 2318 2390 msgid "Project" … … 2325 2397 msgstr "" 2326 2398 2327 #: includes/class-up-project-activity.php:3 722399 #: includes/class-up-project-activity.php:394 2328 2400 #, php-format 2329 2401 msgid "New: %s" 2330 2402 msgstr "" 2331 2403 2332 #: includes/class-up-project-activity.php: 3782404 #: includes/class-up-project-activity.php:400 2333 2405 #, php-format 2334 2406 msgid "Edit: %s to %s" 2335 2407 msgstr "" 2336 2408 2337 #: includes/class-up-project-activity.php:4 152409 #: includes/class-up-project-activity.php:437 2338 2410 #, php-format 2339 2411 msgid "Deleted: %s" 2340 2412 msgstr "" 2341 2413 2342 #: includes/class-up-project-activity.php:4 492414 #: includes/class-up-project-activity.php:471 2343 2415 #, php-format 2344 2416 msgid "New Item: %s" 2345 2417 msgstr "" 2346 2418 2347 #: includes/class-up-project-activity.php:4 712419 #: includes/class-up-project-activity.php:493 2348 2420 #, php-format 2349 2421 msgid "New: %s - %s on %s" 2350 2422 msgstr "" 2351 2423 2352 #: includes/class-up-project-activity.php: 4872424 #: includes/class-up-project-activity.php:509 2353 2425 #, php-format 2354 2426 msgid "Edit: %s from %s to %s on %s" 2355 2427 msgstr "" 2356 2428 2357 #: includes/class-up-project.php:50 12429 #: includes/class-up-project.php:505 2358 2430 msgid "This project is being edited by " 2359 2431 msgstr "" 2360 2432 2361 #: includes/class-up-report.php:49 92433 #: includes/class-up-report.php:490 2362 2434 msgid "Project Table" 2363 2435 msgstr "" 2364 2436 2365 2437 #: includes/frontend/class-up-login.php:92 2366 msgid "Email address field cannot be empty."2438 msgid "Email address/username field cannot be empty." 2367 2439 msgstr "" 2368 2440 2369 2441 #: includes/frontend/class-up-login.php:94 2370 #: includes/frontend/class-up-login.php:99 2371 #: includes/frontend/class-up-login.php:122 2372 #: includes/frontend/class-up-login.php:128 2373 #: includes/frontend/class-up-login.php:149 2374 #: includes/frontend/class-up-login.php:176 2375 msgid "Invalid email address and/or password." 2442 msgid "Invalid email address/username." 2376 2443 msgstr "" 2377 2444 … … 2380 2447 msgstr "" 2381 2448 2382 #: includes/frontend/class-up-login.php:139 2449 #: includes/frontend/class-up-login.php:99 2450 #: includes/frontend/class-up-login.php:142 2451 #: includes/frontend/class-up-login.php:171 2452 #: includes/frontend/class-up-login.php:198 2453 msgid "Invalid email address and/or password." 2454 msgstr "" 2455 2456 #: includes/frontend/class-up-login.php:150 2457 msgid "Invalid user/email address and/or password." 2458 msgstr "" 2459 2460 #: includes/frontend/class-up-login.php:161 2383 2461 msgid "You don't have enough permissions to log in here." 2384 2462 msgstr "" 2385 2463 2386 #: includes/frontend/class-up-login.php:1 662464 #: includes/frontend/class-up-login.php:188 2387 2465 msgid "Sorry, you are not allowed to access this project." 2388 2466 msgstr "" 2389 2467 2390 #: includes/frontend/class-up-login.php:2 672468 #: includes/frontend/class-up-login.php:289 2391 2469 msgid "You were just logged out." 2392 2470 msgstr "" 2393 2471 2394 #: includes/frontend/up-enqueues.php: 149 includes/frontend/up-enqueues.php:1652472 #: includes/frontend/up-enqueues.php:215 includes/frontend/up-enqueues.php:231 2395 2473 #, php-format 2396 2474 msgctxt "%s: item name, ie Milestones, Tasks, Bugs, Files, Discussion" … … 2398 2476 msgstr "" 2399 2477 2400 #: includes/frontend/up-enqueues.php: 1612478 #: includes/frontend/up-enqueues.php:227 2401 2479 msgid "Copy" 2402 2480 msgstr "" 2403 2481 2404 #: includes/frontend/up-enqueues.php: 162 templates/archive-project.php:762482 #: includes/frontend/up-enqueues.php:228 templates/archive-project.php:79 2405 2483 #: templates/global/sidebar.php:28 templates/single-project/bugs.php:144 2406 2484 #: templates/single-project/bugs.php:177 templates/single-project/files.php:118 … … 2413 2491 msgstr "" 2414 2492 2415 #: includes/frontend/up-enqueues.php: 1632493 #: includes/frontend/up-enqueues.php:229 2416 2494 msgid "Search:" 2417 2495 msgstr "" 2418 2496 2419 #: includes/frontend/up-enqueues.php: 1742497 #: includes/frontend/up-enqueues.php:240 2420 2498 msgid "Sunday" 2421 2499 msgstr "" 2422 2500 2423 #: includes/frontend/up-enqueues.php: 1752501 #: includes/frontend/up-enqueues.php:241 2424 2502 msgid "Monday" 2425 2503 msgstr "" 2426 2504 2427 #: includes/frontend/up-enqueues.php: 1762505 #: includes/frontend/up-enqueues.php:242 2428 2506 msgid "Tuesday" 2429 2507 msgstr "" 2430 2508 2431 #: includes/frontend/up-enqueues.php: 1772509 #: includes/frontend/up-enqueues.php:243 2432 2510 msgid "Wednesday" 2433 2511 msgstr "" 2434 2512 2435 #: includes/frontend/up-enqueues.php: 1782513 #: includes/frontend/up-enqueues.php:244 2436 2514 msgid "Thursday" 2437 2515 msgstr "" 2438 2516 2439 #: includes/frontend/up-enqueues.php: 1792517 #: includes/frontend/up-enqueues.php:245 2440 2518 msgid "Friday" 2441 2519 msgstr "" 2442 2520 2443 #: includes/frontend/up-enqueues.php: 1802521 #: includes/frontend/up-enqueues.php:246 2444 2522 msgid "Saturday" 2445 2523 msgstr "" 2446 2524 2447 #: includes/frontend/up-enqueues.php: 1812525 #: includes/frontend/up-enqueues.php:247 2448 2526 msgid "Sun" 2449 2527 msgstr "" 2450 2528 2451 #: includes/frontend/up-enqueues.php: 1822529 #: includes/frontend/up-enqueues.php:248 2452 2530 msgid "Mon" 2453 2531 msgstr "" 2454 2532 2455 #: includes/frontend/up-enqueues.php: 1832533 #: includes/frontend/up-enqueues.php:249 2456 2534 msgid "Tue" 2457 2535 msgstr "" 2458 2536 2459 #: includes/frontend/up-enqueues.php: 1842537 #: includes/frontend/up-enqueues.php:250 2460 2538 msgid "Wed" 2461 2539 msgstr "" 2462 2540 2463 #: includes/frontend/up-enqueues.php: 1852541 #: includes/frontend/up-enqueues.php:251 2464 2542 msgid "Thu" 2465 2543 msgstr "" 2466 2544 2467 #: includes/frontend/up-enqueues.php: 1862545 #: includes/frontend/up-enqueues.php:252 2468 2546 msgid "Fri" 2469 2547 msgstr "" 2470 2548 2471 #: includes/frontend/up-enqueues.php: 1872549 #: includes/frontend/up-enqueues.php:253 2472 2550 msgid "Sat" 2473 2551 msgstr "" 2474 2552 2475 #: includes/frontend/up-enqueues.php: 1882553 #: includes/frontend/up-enqueues.php:254 2476 2554 msgid "Su" 2477 2555 msgstr "" 2478 2556 2479 #: includes/frontend/up-enqueues.php: 1892557 #: includes/frontend/up-enqueues.php:255 2480 2558 msgid "Mo" 2481 2559 msgstr "" 2482 2560 2483 #: includes/frontend/up-enqueues.php: 1902561 #: includes/frontend/up-enqueues.php:256 2484 2562 msgid "Tu" 2485 2563 msgstr "" 2486 2564 2487 #: includes/frontend/up-enqueues.php: 1912565 #: includes/frontend/up-enqueues.php:257 2488 2566 msgid "We" 2489 2567 msgstr "" 2490 2568 2491 #: includes/frontend/up-enqueues.php: 1922569 #: includes/frontend/up-enqueues.php:258 2492 2570 msgid "Th" 2493 2571 msgstr "" 2494 2572 2495 #: includes/frontend/up-enqueues.php: 1932573 #: includes/frontend/up-enqueues.php:259 2496 2574 msgid "Fr" 2497 2575 msgstr "" 2498 2576 2499 #: includes/frontend/up-enqueues.php: 1942577 #: includes/frontend/up-enqueues.php:260 2500 2578 msgid "Sa" 2501 2579 msgstr "" 2502 2580 2503 #: includes/frontend/up-enqueues.php: 1952581 #: includes/frontend/up-enqueues.php:261 2504 2582 msgid "January" 2505 2583 msgstr "" 2506 2584 2507 #: includes/frontend/up-enqueues.php: 1962585 #: includes/frontend/up-enqueues.php:262 2508 2586 msgid "February" 2509 2587 msgstr "" 2510 2588 2511 #: includes/frontend/up-enqueues.php: 1972589 #: includes/frontend/up-enqueues.php:263 2512 2590 msgid "March" 2513 2591 msgstr "" 2514 2592 2515 #: includes/frontend/up-enqueues.php: 1982593 #: includes/frontend/up-enqueues.php:264 2516 2594 msgid "April" 2517 2595 msgstr "" 2518 2596 2519 #: includes/frontend/up-enqueues.php: 1992597 #: includes/frontend/up-enqueues.php:265 2520 2598 msgid "May" 2521 2599 msgstr "" 2522 2600 2523 #: includes/frontend/up-enqueues.php:2 002601 #: includes/frontend/up-enqueues.php:266 2524 2602 msgid "June" 2525 2603 msgstr "" 2526 2604 2527 #: includes/frontend/up-enqueues.php:2 012605 #: includes/frontend/up-enqueues.php:267 2528 2606 msgid "July" 2529 2607 msgstr "" 2530 2608 2531 #: includes/frontend/up-enqueues.php:2 022609 #: includes/frontend/up-enqueues.php:268 2532 2610 msgid "August" 2533 2611 msgstr "" 2534 2612 2535 #: includes/frontend/up-enqueues.php:2 032613 #: includes/frontend/up-enqueues.php:269 2536 2614 msgid "September" 2537 2615 msgstr "" 2538 2616 2539 #: includes/frontend/up-enqueues.php:2 042617 #: includes/frontend/up-enqueues.php:270 2540 2618 msgid "October" 2541 2619 msgstr "" 2542 2620 2543 #: includes/frontend/up-enqueues.php:2 052621 #: includes/frontend/up-enqueues.php:271 2544 2622 msgid "November" 2545 2623 msgstr "" 2546 2624 2547 #: includes/frontend/up-enqueues.php:2 062625 #: includes/frontend/up-enqueues.php:272 2548 2626 msgid "December" 2549 2627 msgstr "" 2550 2628 2551 #: includes/frontend/up-enqueues.php:2 072629 #: includes/frontend/up-enqueues.php:273 2552 2630 msgid "Jan" 2553 2631 msgstr "" 2554 2632 2555 #: includes/frontend/up-enqueues.php:2 082633 #: includes/frontend/up-enqueues.php:274 2556 2634 msgid "Feb" 2557 2635 msgstr "" 2558 2636 2559 #: includes/frontend/up-enqueues.php:2 092637 #: includes/frontend/up-enqueues.php:275 2560 2638 msgid "Mar" 2561 2639 msgstr "" 2562 2640 2563 #: includes/frontend/up-enqueues.php:2 102641 #: includes/frontend/up-enqueues.php:276 2564 2642 msgid "Apr" 2565 2643 msgstr "" 2566 2644 2567 #: includes/frontend/up-enqueues.php:2 112645 #: includes/frontend/up-enqueues.php:277 2568 2646 msgid "Jun" 2569 2647 msgstr "" 2570 2648 2571 #: includes/frontend/up-enqueues.php:2 122649 #: includes/frontend/up-enqueues.php:278 2572 2650 msgid "Jul" 2573 2651 msgstr "" 2574 2652 2575 #: includes/frontend/up-enqueues.php:2 132653 #: includes/frontend/up-enqueues.php:279 2576 2654 msgid "Aug" 2577 2655 msgstr "" 2578 2656 2579 #: includes/frontend/up-enqueues.php:2 142657 #: includes/frontend/up-enqueues.php:280 2580 2658 msgid "Sep" 2581 2659 msgstr "" 2582 2660 2583 #: includes/frontend/up-enqueues.php:2 152661 #: includes/frontend/up-enqueues.php:281 2584 2662 msgid "Oct" 2585 2663 msgstr "" 2586 2664 2587 #: includes/frontend/up-enqueues.php:2 162665 #: includes/frontend/up-enqueues.php:282 2588 2666 msgid "Nov" 2589 2667 msgstr "" 2590 2668 2591 #: includes/frontend/up-enqueues.php:2 172669 #: includes/frontend/up-enqueues.php:283 2592 2670 msgid "Dec" 2593 2671 msgstr "" 2594 2672 2595 #: includes/frontend/up-enqueues.php:2 182673 #: includes/frontend/up-enqueues.php:284 2596 2674 msgid "Today" 2597 2675 msgstr "" 2598 2676 2599 #: includes/frontend/up-enqueues.php:2 192677 #: includes/frontend/up-enqueues.php:285 2600 2678 msgid "Clear" 2601 2679 msgstr "" … … 2628 2706 #: includes/frontend/up-table-functions.php:343 2629 2707 #: includes/frontend/up-table-functions.php:397 2630 #: includes/model/UpStream_Model_File.php:1 59includes/up-labels.php:692708 #: includes/model/UpStream_Model_File.php:175 includes/up-labels.php:69 2631 2709 #: templates/single-project/files.php:49 2632 2710 msgid "File" … … 2634 2712 2635 2713 #: includes/frontend/up-table-functions.php:386 2714 #: includes/model/UpStream_Model_File.php:176 2636 2715 #: templates/single-project/files.php:50 2637 2716 msgid "Upload Date" … … 2648 2727 #: includes/frontend/up-table-functions.php:986 2649 2728 #, php-format 2650 msgctxt "upstream"2651 2729 msgid " %s found" 2652 2730 msgstr "" 2653 2731 2654 #: includes/frontend/up-template-functions.php:2 162732 #: includes/frontend/up-template-functions.php:247 2655 2733 msgid "Currently no files" 2656 2734 msgstr "" 2657 2735 2658 #: includes/frontend/up-template-functions.php:2 372736 #: includes/frontend/up-template-functions.php:268 2659 2737 msgid "In reply to" 2660 2738 msgstr "" 2661 2739 2662 2740 #: includes/model/UpStream_Model_Bug.php:199 2663 #: includes/model/UpStream_Model_File.php:1 422741 #: includes/model/UpStream_Model_File.php:158 2664 2742 #, php-format 2665 2743 msgid "File ID %s is invalid." … … 2677 2755 2678 2756 #: includes/model/UpStream_Model_Bug.php:250 2679 #: includes/model/UpStream_Model_Project.php:3 792757 #: includes/model/UpStream_Model_Project.php:388 2680 2758 #: includes/model/UpStream_Model_Task.php:223 2681 2759 #, php-format … … 2684 2762 2685 2763 #: includes/model/UpStream_Model_Bug.php:268 2686 #: includes/model/UpStream_Model_Project.php: 3972764 #: includes/model/UpStream_Model_Project.php:406 2687 2765 #: includes/model/UpStream_Model_Task.php:241 2688 2766 #, php-format … … 2692 2770 #: includes/model/UpStream_Model_Bug.php:275 2693 2771 #: includes/model/UpStream_Model_Milestone.php:211 2694 #: includes/model/UpStream_Model_Project.php:44 02772 #: includes/model/UpStream_Model_Project.php:449 2695 2773 #: includes/model/UpStream_Model_Task.php:266 2696 2774 msgid "Argument is not a valid date of the form YYYY-MM-DD." … … 2723 2801 #: includes/model/UpStream_Model_Client.php:205 2724 2802 #: includes/model/UpStream_Model_Milestone.php:284 2725 #: includes/model/UpStream_Model_Project.php:5 242803 #: includes/model/UpStream_Model_Project.php:535 2726 2804 #: includes/model/UpStream_Model_Task.php:325 2727 2805 msgid "User ID does not exist." 2728 2806 msgstr "" 2729 2807 2730 #: includes/model/UpStream_Model_File.php:1 382808 #: includes/model/UpStream_Model_File.php:154 2731 2809 msgid "Set not implemented for Upfs." 2732 2810 msgstr "" 2733 2811 2734 #: includes/model/UpStream_Model_Manager.php: 282812 #: includes/model/UpStream_Model_Manager.php:33 2735 2813 #, php-format 2736 2814 msgid "This (ID = %s, TYPE = %s, PARENT ID = %s, PARENT TYPE = %s) is not a valid object" … … 2746 2824 2747 2825 #: includes/model/UpStream_Model_Milestone.php:200 2748 #: includes/model/UpStream_Model_Project.php:3 592826 #: includes/model/UpStream_Model_Project.php:368 2749 2827 #, php-format 2750 2828 msgid "Term ID %s is invalid." … … 2757 2835 2758 2836 #: includes/model/UpStream_Model_Milestone.php:273 2759 #: includes/model/UpStream_Model_Project.php:4 57 includes/up-post-types.php:1462760 #: templates/archive-project.php:8 1templates/global/sidebar.php:332837 #: includes/model/UpStream_Model_Project.php:466 includes/up-post-types.php:144 2838 #: templates/archive-project.php:84 templates/global/sidebar.php:33 2761 2839 msgid "Categories" 2762 2840 msgstr "" 2763 2841 2764 2842 #: includes/model/UpStream_Model_Milestone.php:274 2765 #: includes/model/UpStream_Model_Project.php:4 602843 #: includes/model/UpStream_Model_Project.php:471 2766 2844 #: includes/model/UpStream_Model_Task.php:298 2767 2845 msgid "Progress (%)" … … 2826 2904 msgstr "" 2827 2905 2828 #: includes/model/UpStream_Model_Project.php:2 272906 #: includes/model/UpStream_Model_Project.php:235 2829 2907 msgid "Argument must be of type UpStream_Model_Meta_Object" 2830 2908 msgstr "" 2831 2909 2832 #: includes/model/UpStream_Model_Project.php:2 532910 #: includes/model/UpStream_Model_Project.php:261 2833 2911 msgid "Can only add objects of type UpStream_Model_Meta_Object" 2834 2912 msgstr "" 2835 2913 2836 #: includes/model/UpStream_Model_Project.php:34 02914 #: includes/model/UpStream_Model_Project.php:349 2837 2915 msgid "Not implemented. Use &tasks(), &files(), or &bugs()." 2838 2916 msgstr "" 2839 2917 2840 #: includes/model/UpStream_Model_Project.php:4 072918 #: includes/model/UpStream_Model_Project.php:416 2841 2919 msgid "For projects, assignedTo must be an array of length 1." 2842 2920 msgstr "" 2843 2921 2844 #: includes/model/UpStream_Model_Project.php:42 02922 #: includes/model/UpStream_Model_Project.php:429 2845 2923 msgid "Cannot assign client users if the project has no client." 2846 2924 msgstr "" 2847 2925 2848 #: includes/model/UpStream_Model_Project.php:4 232926 #: includes/model/UpStream_Model_Project.php:432 2849 2927 msgid "Client user IDs must be an array." 2850 2928 msgstr "" 2851 2929 2852 #: includes/model/UpStream_Model_Project.php:4 262930 #: includes/model/UpStream_Model_Project.php:435 2853 2931 msgid "Input cannot contain duplicates." 2854 2932 msgstr "" 2855 2933 2856 #: includes/model/UpStream_Model_Project.php:4 312934 #: includes/model/UpStream_Model_Project.php:440 2857 2935 #, php-format 2858 2936 msgid "User ID %s does not exist in this client." 2937 msgstr "" 2938 2939 #: includes/model/UpStream_Model_Project.php:467 2940 msgid "Selected Client Users" 2941 msgstr "" 2942 2943 #: includes/model/UpStream_Model_Project.php:468 2944 #: templates/single-project/details.php:125 2945 msgid "Members" 2859 2946 msgstr "" 2860 2947 … … 2877 2964 msgstr "" 2878 2965 2879 #: includes/up-general-functions.php:298 2966 #: includes/up-filesystem.php:105 2967 msgid "Unable to move file to target folder" 2968 msgstr "" 2969 2970 #: includes/up-filesystem.php:109 2971 msgid "Unable to move file. The target folder does not exist." 2972 msgstr "" 2973 2974 #: includes/up-filesystem.php:112 includes/up-filesystem.php:119 2975 msgid "File exceeds the maximum file size" 2976 msgstr "" 2977 2978 #: includes/up-filesystem.php:116 2979 msgid "File is not an allowed type." 2980 msgstr "" 2981 2982 #: includes/up-general-functions.php:307 2880 2983 #, php-format 2881 2984 msgid "%s User" 2882 2985 msgstr "" 2883 2986 2884 #: includes/up-general-functions.php:3 012987 #: includes/up-general-functions.php:310 2885 2988 #, php-format 2886 2989 msgid "%s Manager" 2887 2990 msgstr "" 2888 2991 2889 #: includes/up-general-functions.php:3 042992 #: includes/up-general-functions.php:313 2890 2993 #, php-format 2891 2994 msgid "%s Client User" 2892 2995 msgstr "" 2893 2996 2894 #: includes/up-general-functions.php: 3972997 #: includes/up-general-functions.php:406 2895 2998 msgid "Client User" 2896 2999 msgstr "" … … 3178 3281 msgstr "" 3179 3282 3180 #: includes/up-post-types.php:13 63283 #: includes/up-post-types.php:134 3181 3284 msgctxt "taxonomy general name" 3182 3285 msgid "Category" 3183 3286 msgstr "" 3184 3287 3185 #: includes/up-post-types.php:13 73288 #: includes/up-post-types.php:135 3186 3289 msgctxt "taxonomy singular name" 3187 3290 msgid "Category" 3188 3291 msgstr "" 3189 3292 3293 #: includes/up-post-types.php:136 3294 #, php-format 3295 msgid "Search %s Categories" 3296 msgstr "" 3297 3298 #: includes/up-post-types.php:137 3299 #, php-format 3300 msgid "All %s Categories" 3301 msgstr "" 3302 3190 3303 #: includes/up-post-types.php:138 3191 3304 #, php-format 3192 msgid " Search %s Categories"3305 msgid "Parent %s Category" 3193 3306 msgstr "" 3194 3307 3195 3308 #: includes/up-post-types.php:139 3196 3309 #, php-format 3197 msgid " All %s Categories"3310 msgid "Parent %s Category:" 3198 3311 msgstr "" 3199 3312 3200 3313 #: includes/up-post-types.php:140 3201 3314 #, php-format 3202 msgid " Parent %s Category"3315 msgid "Edit %s Category" 3203 3316 msgstr "" 3204 3317 3205 3318 #: includes/up-post-types.php:141 3206 3319 #, php-format 3207 msgid " Parent %s Category:"3320 msgid "Update %s Category" 3208 3321 msgstr "" 3209 3322 3210 3323 #: includes/up-post-types.php:142 3211 3324 #, php-format 3212 msgid " Edit%s Category"3325 msgid "Add New %s Category" 3213 3326 msgstr "" 3214 3327 3215 3328 #: includes/up-post-types.php:143 3216 3329 #, php-format 3217 msgid "Update %s Category"3218 msgstr ""3219 3220 #: includes/up-post-types.php:1443221 #, php-format3222 msgid "Add New %s Category"3223 msgstr ""3224 3225 #: includes/up-post-types.php:1453226 #, php-format3227 3330 msgid "New %s Category Name" 3228 3331 msgstr "" 3229 3332 3230 #: includes/up-post-types.php:17 13333 #: includes/up-post-types.php:170 3231 3334 msgctxt "taxonomy (tag) general name" 3232 3335 msgid "Tags" 3233 3336 msgstr "" 3234 3337 3235 #: includes/up-post-types.php:17 23338 #: includes/up-post-types.php:171 3236 3339 msgctxt "taxonomy (tag) singular name" 3237 3340 msgid "Tag" 3238 3341 msgstr "" 3239 3342 3343 #: includes/up-post-types.php:172 3344 msgid "Search Tags" 3345 msgstr "" 3346 3240 3347 #: includes/up-post-types.php:173 3241 msgid " SearchTags"3348 msgid "Popular Tags" 3242 3349 msgstr "" 3243 3350 3244 3351 #: includes/up-post-types.php:174 3245 msgid "Popular Tags"3246 msgstr ""3247 3248 #: includes/up-post-types.php:1753249 3352 msgid "All Tags" 3250 3353 msgstr "" 3251 3354 3355 #: includes/up-post-types.php:177 3356 msgid "Edit Tag" 3357 msgstr "" 3358 3252 3359 #: includes/up-post-types.php:178 3253 msgid " EditTag"3360 msgid "Update Tag" 3254 3361 msgstr "" 3255 3362 3256 3363 #: includes/up-post-types.php:179 3257 msgid " UpdateTag"3364 msgid "Add New Tag" 3258 3365 msgstr "" 3259 3366 3260 3367 #: includes/up-post-types.php:180 3261 msgid " Add New Tag"3368 msgid "New Tag Name" 3262 3369 msgstr "" 3263 3370 3264 3371 #: includes/up-post-types.php:181 3265 msgid " New Tag Name"3372 msgid "Add or remove tags" 3266 3373 msgstr "" 3267 3374 3268 3375 #: includes/up-post-types.php:182 3269 msgid " Add or remove tags"3376 msgid "Separate tags with commas" 3270 3377 msgstr "" 3271 3378 3272 3379 #: includes/up-post-types.php:183 3273 msgid " Separate tags with commas"3380 msgid "Choose from the most used tags" 3274 3381 msgstr "" 3275 3382 3276 3383 #: includes/up-post-types.php:184 3277 msgid "Choose from the most used tags"3278 msgstr ""3279 3280 #: includes/up-post-types.php:1853281 3384 msgid "Tags" 3282 3385 msgstr "" 3283 3386 3284 #: includes/up-post-types.php:21 63387 #: includes/up-post-types.php:218 3285 3388 #, php-format 3286 3389 msgid "Popular %s" 3287 3390 msgstr "" 3288 3391 3289 #: includes/up-post-types.php:21 7templates/global/sidebar.php:953392 #: includes/up-post-types.php:219 templates/global/sidebar.php:95 3290 3393 #, php-format 3291 3394 msgid "All %s" 3292 3395 msgstr "" 3293 3396 3294 #: includes/up-post-types.php:22 13397 #: includes/up-post-types.php:223 3295 3398 #, php-format 3296 3399 msgid "Update %s" 3297 3400 msgstr "" 3298 3401 3299 #: includes/up-post-types.php:22 23402 #: includes/up-post-types.php:224 3300 3403 #, php-format 3301 3404 msgid "Add New %s" 3302 3405 msgstr "" 3303 3406 3304 #: includes/up-post-types.php:22 33407 #: includes/up-post-types.php:225 3305 3408 #, php-format 3306 3409 msgid "New %s Name" 3307 3410 msgstr "" 3308 3411 3309 #: includes/up-post-types.php:22 43412 #: includes/up-post-types.php:226 3310 3413 #, php-format 3311 3414 msgid "Add or remove %s" 3312 3415 msgstr "" 3313 3416 3314 #: includes/up-post-types.php:22 53417 #: includes/up-post-types.php:227 3315 3418 #, php-format 3316 3419 msgid "Separate %s with commas" 3317 3420 msgstr "" 3318 3421 3319 #: includes/up-post-types.php:22 63422 #: includes/up-post-types.php:228 3320 3423 #, php-format 3321 3424 msgid "Choose from the most used %s" 3322 3425 msgstr "" 3323 3426 3324 #: includes/up-post-types.php:27 03427 #: includes/up-post-types.php:273 3325 3428 msgid "Default color" 3326 3429 msgstr "" 3327 3430 3328 #: includes/up-project-functions.php:6 40 templates/archive-project.php:703431 #: includes/up-project-functions.php:656 templates/archive-project.php:73 3329 3432 #: templates/global/sidebar.php:22 3330 3433 msgid "Ends at" 3331 3434 msgstr "" 3332 3435 3333 #: templates/archive-project.php: 69templates/global/sidebar.php:213436 #: templates/archive-project.php:72 templates/global/sidebar.php:21 3334 3437 #: templates/global/top-nav.php:60 3335 3438 msgid "Log Out" 3336 3439 msgstr "" 3337 3440 3338 #: templates/archive-project.php:7 3templates/global/sidebar.php:253441 #: templates/archive-project.php:76 templates/global/sidebar.php:25 3339 3442 #: templates/single-project/bugs.php:125 templates/single-project/bugs.php:157 3340 3443 #: templates/single-project/files.php:99 templates/single-project/files.php:131 … … 3346 3449 msgstr "" 3347 3450 3348 #: templates/archive-project.php:7 4templates/global/sidebar.php:263451 #: templates/archive-project.php:77 templates/global/sidebar.php:26 3349 3452 #: templates/single-project/bugs.php:129 templates/single-project/bugs.php:162 3350 3453 #: templates/single-project/files.php:103 … … 3357 3460 msgstr "" 3358 3461 3359 #: templates/archive-project.php:7 5templates/global/sidebar.php:273462 #: templates/archive-project.php:78 templates/global/sidebar.php:27 3360 3463 #: templates/single-project/bugs.php:136 templates/single-project/bugs.php:169 3361 3464 #: templates/single-project/files.php:110 … … 3368 3471 msgstr "" 3369 3472 3370 #: templates/archive-project.php:8 5templates/global/sidebar.php:373473 #: templates/archive-project.php:88 templates/global/sidebar.php:37 3371 3474 #, php-format 3372 3475 msgid "%s Complete" 3373 3476 msgstr "" 3374 3477 3375 #: templates/archive-project.php:4 833478 #: templates/archive-project.php:491 3376 3479 #, php-format 3377 3480 msgid "%s Members" 3378 3481 msgstr "" 3379 3482 3380 #: templates/archive-project.php:7 493483 #: templates/archive-project.php:760 3381 3484 msgid "It seems that you're not participating in any project right now." 3382 3485 msgstr "" 3383 3486 3384 3487 #: templates/global/sidebar.php:137 templates/global/sidebar.php:161 3385 #: templates/global/sidebar.php:186 templates/single-project/overview.php:174 3386 #: templates/single-project/overview.php:206 3387 #: templates/single-project/overview.php:238 3488 #: templates/global/sidebar.php:186 templates/single-project/overview.php:183 3489 #: templates/single-project/overview.php:215 3490 #: templates/single-project/overview.php:247 3491 #: templates/single-project/progress.php:54 3388 3492 msgid "Assigned to me" 3389 3493 msgstr "" … … 3414 3518 msgstr "" 3415 3519 3416 #: templates/report-parameters/section.php: 433520 #: templates/report-parameters/section.php:51 3417 3521 msgid " Filters" 3418 3522 msgstr "" … … 3435 3539 #: templates/single-project/details.php:93 3436 3540 msgid "complete" 3437 msgstr ""3438 3439 #: templates/single-project/details.php:1253440 msgid "Members"3441 3541 msgstr "" 3442 3542 … … 3464 3564 msgstr "" 3465 3565 3466 #: templates/single-project/overview.php:177 3467 #: templates/single-project/overview.php:209 3468 #: templates/single-project/overview.php:241 3566 #: templates/single-project/overview.php:186 3567 #: templates/single-project/overview.php:218 3568 #: templates/single-project/overview.php:250 3569 #: templates/single-project/progress.php:55 3469 3570 msgid "Overdue" 3470 3571 msgstr "" 3471 3572 3472 #: templates/single-project/overview.php:180 3573 #: templates/single-project/overview.php:189 3574 #: templates/single-project/progress.php:56 3473 3575 msgid "Completed" 3474 3576 msgstr "" 3475 3577 3476 #: templates/single-project/overview.php:183 3477 #: templates/single-project/overview.php:215 3478 #: templates/single-project/overview.php:247 3578 #: templates/single-project/overview.php:192 3579 #: templates/single-project/overview.php:224 3580 #: templates/single-project/overview.php:256 3581 #: templates/single-project/progress.php:57 3479 3582 msgid "Total" 3480 3583 msgstr "" 3481 3584 3482 #: templates/single-project/overview.php: 1913483 #: templates/single-project/overview.php:2 233484 #: templates/single-project/overview.php:2 553585 #: templates/single-project/overview.php:200 3586 #: templates/single-project/overview.php:232 3587 #: templates/single-project/overview.php:264 3485 3588 msgid "Overview" 3486 3589 msgstr "" … … 3490 3593 msgstr "" 3491 3594 3492 #: upstream.php: 5253595 #: upstream.php:458 3493 3596 msgid "View Documentation" 3494 3597 msgstr "" 3495 3598 3496 #: upstream.php: 5273599 #: upstream.php:460 3497 3600 msgid "Docs" 3498 3601 msgstr "" 3499 3602 3500 #: upstream.php: 5293603 #: upstream.php:462 3501 3604 msgid "View Quick Start Guide" 3502 3605 msgstr "" 3503 3606 3504 #: upstream.php: 5313607 #: upstream.php:464 3505 3608 msgid "Quick Start Guide" 3506 3609 msgstr "" 3507 3610 3508 #: upstream.php: 5553611 #: upstream.php:488 3509 3612 msgid "Open Settings Page" 3510 3613 msgstr "" 3511 3614 3512 #: upstream.php: 5563615 #: upstream.php:489 3513 3616 msgid "Settings" 3514 3617 msgstr "" 3515 3618 3516 #: upstream.php: 6033619 #: upstream.php:536 3517 3620 msgid "Update notice:" 3518 3621 msgstr "" 3519 3622 3520 #: upstream.php: 6103623 #: upstream.php:543 3521 3624 #, php-format 3522 3625 msgctxt "1st %s: plugin version, 2nd %s: capability name, 3rd: UpStream User role" -
upstream/trunk/readme.txt
r2459836 r2472697 5 5 Tested up to: 5.6 6 6 Requires PHP: 5.6.20 7 Stable tag: 1.39. 17 Stable tag: 1.39.2 8 8 License: GPL-3 9 9 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 142 142 The format is based on [Keep a Changelog](http://keepachangelog.com) 143 143 and this project adheres to [Semantic Versioning](http://semver.org). 144 145 = [1.39.2] - 2021-02-10 = 146 * Fixed missing translations 147 * Fixed DST bug that appears in certain circumstances 144 148 145 149 = [1.39.1] - 2021-01-20 = -
upstream/trunk/templates/archive-project.php
r2417454 r2472697 132 132 $end = $project->get_meta('end'); 133 133 if (!$end) $end = 0; 134 134 135 $prog = $project->get_meta('progress'); 135 136 if (!$prog) $prog = 0; … … 175 176 $data->startDate = (string)upstream_format_date($data->startDateTimestamp); 176 177 $data->endDate = (string)upstream_format_date($data->endDateTimestamp); 178 179 if (($ymd = $project->get_meta('start.YMD'))) { 180 if (is_array($ymd)) $ymd = $ymd[0]; 181 $data->startDateTimestamp = \UpStream_Model_Object::ymdToTimestamp($ymd); 182 $data->startDate = date_i18n(get_option('date_format'), $data->startDateTimestamp); 183 } 184 185 if (($ymd = $project->get_meta('end.YMD'))) { 186 if (is_array($ymd)) $ymd = $ymd[0]; 187 $data->endDateTimestamp = \UpStream_Model_Object::ymdToTimestamp($ymd); 188 $data->endDate = date_i18n(get_option('date_format'), $data->endDateTimestamp); 189 } 177 190 178 191 if ($areClientsEnabled) { … … 599 612 <?php endif; ?> 600 613 601 <td data-column="owner"> 602 <?php upstream_output_project_owner($project->id); ?> 614 <?php $powner = upstream_get_project_owner($project->id); ?> 615 <td data-column="owner" data-value="<?php echo $powner && is_array($powner) ? esc_attr(implode(',', $powner[0])) : ''; ?>"> 616 <?php print $powner[1]; ?> 603 617 </td> 604 618 <td data-column="members"> -
upstream/trunk/templates/assets/js/upstream.js
r2376671 r2472697 689 689 if (filteredRows.length === 0) { 690 690 var thsCount = $('thead th', table).length; 691 var tr = $('<tr data-empty-row><td colspan="' + thsCount + '" class="text-center"> No results</td></tr>');691 var tr = $('<tr data-empty-row><td colspan="' + thsCount + '" class="text-center">'+upstream.langs.LB_NO_RESULTS+'</td></tr>'); 692 692 var tBody = $('tbody', table); 693 693 -
upstream/trunk/templates/assets/libraries/chosen/chosen.jquery.js
r2221927 r2472697 610 610 }; 611 611 612 AbstractChosen.default_multiple_text = " Select Some Options";613 614 AbstractChosen.default_single_text = " Select an Option";612 AbstractChosen.default_multiple_text = ""; 613 614 AbstractChosen.default_single_text = ""; 615 615 616 616 AbstractChosen.default_no_result_text = "No results match"; -
upstream/trunk/templates/single-project/details.php
r2459836 r2472697 12 12 $projectDateEndIsNotEmpty = $project->dateEnd > 0; 13 13 if ($projectDateStartIsNotEmpty || $projectDateEndIsNotEmpty) { 14 if ($project->dateStartYMD) { 15 $project->dateStart = esc_html( \UpStream_Model_Object::ymdToTimestamp($project->dateStartYMD)); 16 } 17 if ($project->dateEndYMD) { 18 $project->dateEnd = esc_html( \UpStream_Model_Object::ymdToTimestamp($project->dateEndYMD)); 19 } 20 14 21 if (!$projectDateEndIsNotEmpty) { 15 22 $projectTimeframe = '<i class="text-muted">' . __( … … 24 31 } else { 25 32 $projectTimeframe = esc_html(upstream_format_date($project->dateStart) . ' - ' . upstream_format_date($project->dateEnd)); 33 26 34 } 27 35 } -
upstream/trunk/upstream.php
r2459836 r2472697 5 5 * Author: UpStream 6 6 * Author URI: https://upstreamplugin.com 7 * Version: 1.39. 17 * Version: 1.39.2 8 8 * Text Domain: upstream 9 9 * Domain Path: /languages
Note: See TracChangeset
for help on using the changeset viewer.