Plugin Directory

Changeset 2472697


Ignore:
Timestamp:
02/10/2021 10:13:07 PM (5 years ago)
Author:
upstreamplugin
Message:

1.39.2

Location:
upstream/trunk
Files:
17 edited

Legend:

Unmodified
Added
Removed
  • upstream/trunk/includes.php

    r2459836 r2472697  
    11<?php
    2 define('UPSTREAM_VERSION', '1.39.1');
     2define('UPSTREAM_VERSION', '1.39.2');
    33
    44global $upstream_addon_requirements;
  • upstream/trunk/includes/admin/class-up-admin-pointers.php

    r2417454 r2472697  
    131131            }
    132132
    133             if ($pd) {
     133            if ($pd && !empty($pd['Name'])) {
    134134
    135135                $current_version = $pd['Version'];
  • upstream/trunk/includes/class-up-milestone.php

    r2369054 r2472697  
    478478            'start_date'       => $this->getStartDate('unix'),
    479479            'end_date'         => $this->getEndDate('unix'),
     480            'start_date.YMD'       => $this->getStartDate__YMD(),
     481            'end_date.YMD'         => $this->getEndDate__YMD(),
    480482            'task_count'       => $this->getTaskCount(),
    481483            'task_open'        => $this->getTaskOpen(),
     
    803805    public function getEndDate__YMD()
    804806    {
    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];
    807810        }
    808811        return $this->endDate__YMD;
     
    811814    public function getStartDate__YMD()
    812815    {
    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];
    815819        }
    816820        return $this->startDate__YMD;
  • upstream/trunk/includes/frontend/up-enqueues.php

    r2417454 r2472697  
    284284                'LB_TODAY'                => __('Today', 'upstream'),
    285285                'LB_CLEAR'                => __('Clear', 'upstream'),
     286                'LB_NO_RESULTS'           => __('No results', 'upstream')
    286287            ],
    287288        ]));
  • upstream/trunk/includes/frontend/up-table-functions.php

    r2417454 r2472697  
    640640            if (isset($row[$columnName . '.YMD']) && $row[$columnName . '.YMD']) {
    641641                $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));
    643643
    644644            } else {
     
    984984        <?php
    985985            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]));
    987987            }
    988988        ?>
  • upstream/trunk/includes/frontend/up-template-functions.php

    r2435596 r2472697  
    100100}
    101101
     102function 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 .= ',&nbsp;';
     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}
    102128
    103129function upstream_output_project_members($id = null)
  • upstream/trunk/includes/up-general-functions.php

    r2435596 r2472697  
    266266// get data for any user including current
    267267// can send id
    268 function upstream_user_data($data = 0, $ignore_current = false)
     268function upstream_user_data_uncached($data = 0, $ignore_current = false)
    269269{
    270270
     
    276276    $user_data = null;
    277277    $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);
    279285
    280286    if (empty($wp_user)) {
     
    426432
    427433    return $user_data;
     434}
     435
     436function 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;
    428446}
    429447
  • upstream/trunk/includes/up-project-functions.php

    r2416645 r2472697  
    127127function upstream_project_client_name($id = 0)
    128128{
    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;
    133142}
    134143
     
    429438        $project->dateStart   = 0;
    430439        $project->dateEnd     = 0;
     440        $project->dateStartYMD   = '';
     441        $project->dateEndYMD     = '';
    431442        $project->members     = [];
    432443        $project->clientUsers = [];
     
    458469            } elseif ($meta->meta_key === '_upstream_project_end') {
    459470                $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;
    460475            } elseif ($meta->meta_key === '_upstream_project_members') {
    461476                $project->members = (array)maybe_unserialize($meta->meta_value);
  • upstream/trunk/languages/upstream-es_ES.po

    r2354305 r2472697  
    22msgstr ""
    33"Project-Id-Version: UpStream\n"
    4 "POT-Creation-Date: 2020-07-30 14:45-0400\n"
    5 "PO-Revision-Date: 2020-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"
    66"Last-Translator: \n"
    77"Language-Team: \n"
     
    2727#: includes/admin/class-up-admin-project-columns.php:128
    2828#: includes/admin/class-up-admin-tasks-page.php:45
    29 #: includes/class-up-milestones.php:436
     29#: includes/class-up-milestones.php:557
    3030#: includes/model/UpStream_Model_Object.php:66
    3131#: templates/single-project/details.php:63
     
    3939#: includes/admin/metaboxes/class-up-metaboxes-projects.php:1226
    4040#: includes/admin/metaboxes/class-up-metaboxes-projects.php:1629
    41 #: includes/admin/up-enqueues.php:131 includes/class-up-milestones.php:335
    42 #: includes/class-up-milestones.php:438
     41#: includes/admin/up-enqueues.php:132 includes/class-up-milestones.php:335
     42#: includes/class-up-milestones.php:559
    4343#: includes/frontend/up-table-functions.php:33
    4444#: includes/frontend/up-table-functions.php:144
     
    6969#: includes/frontend/up-table-functions.php:439
    7070#: includes/model/UpStream_Model_Bug.php:303
    71 #: includes/model/UpStream_Model_Project.php:456
    72 #: includes/model/UpStream_Model_Task.php:297 templates/archive-project.php:79
     71#: includes/model/UpStream_Model_Project.php:465
     72#: includes/model/UpStream_Model_Task.php:297 templates/archive-project.php:82
    7373#: templates/global/sidebar.php:31 templates/single-project/bugs.php:246
    7474#: templates/single-project/bugs.php:250 templates/single-project/tasks.php:252
     
    106106#: includes/admin/class-up-admin-bugs-page.php:284
    107107#: includes/admin/class-up-admin-bugs-page.php:310
    108 #: includes/admin/class-up-admin-project-columns.php:447
    109 #: includes/admin/class-up-admin-project-columns.php:466
    110 #: includes/admin/class-up-admin-project-columns.php:483
     108#: 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
    111111#: includes/admin/class-up-admin-tasks-page.php:260
    112112#: includes/admin/class-up-admin-tasks-page.php:280
     
    133133#: includes/admin/class-up-admin-tasks-page.php:498
    134134#: includes/admin/metaboxes/metabox-functions.php:636
    135 #: includes/class-up-milestones.php:471
    136 #: includes/class-up-project-activity.php:607
     135#: includes/class-up-milestones.php:592
     136#: includes/class-up-project-activity.php:629
    137137#: includes/frontend/up-table-functions.php:107
    138138#: includes/frontend/up-table-functions.php:171
     
    145145#: includes/frontend/up-table-functions.php:768
    146146#: 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
    149150#: templates/single-project/bugs.php:66 templates/single-project/details.php:83
    150151#: templates/single-project/details.php:104
     
    215216#. Author of the plugin/theme
    216217#: includes/admin/class-up-admin-options.php:68
    217 #: includes/admin/class-up-admin.php:540
     218#: includes/admin/class-up-admin.php:544
    218219msgid "UpStream"
    219220msgstr "UpStream"
     
    223224msgstr "Planificador"
    224225
    225 #: includes/admin/class-up-admin-pointers.php:33
     226#: includes/admin/class-up-admin-pointers.php:39
    226227#, fuzzy
    227228msgid ""
     
    232233"UpStream y consigue la extensión UpStream Customizer gratis!"
    233234
    234 #: includes/admin/class-up-admin-pointers.php:35
     235#: includes/admin/class-up-admin-pointers.php:41
    235236msgid "Email Address:"
    236237msgstr "Dirección de correo electrónico:"
    237238
    238 #: includes/admin/class-up-admin-pointers.php:46
     239#: includes/admin/class-up-admin-pointers.php:52
    239240#, fuzzy
    240241msgid "Get a FREE UpStream extension!"
    241242msgstr "Obtenga una extensión UpStream GRATIS!"
    242243
    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
    244246msgid "Important!"
    245247msgstr "¡Importante!"
    246248
    247 #: includes/admin/class-up-admin-pointers.php:80
     249#: includes/admin/class-up-admin-pointers.php:86
    248250msgid "As this is your first project, we have included a walkthrough guide."
    249251msgstr "Como este es su primer plan, hemos incluido una guía de recorrido."
    250252
    251 #: includes/admin/class-up-admin-pointers.php:84
     253#: includes/admin/class-up-admin-pointers.php:90
    252254msgid ""
    253255"We <strong>strongly recommend</strong> that you take the time to follow it. "
     
    255257"Nosotros <strong>recomendamos</strong> que se tome el tiempo para seguirlo. "
    256258
    257 #: includes/admin/class-up-admin-pointers.php:88
     259#: includes/admin/class-up-admin-pointers.php:94
    258260msgid "There is important info in the guide and it does not take too long."
    259261msgstr "Hay información importante en la guía y no toma demasiado tiempo."
    260262
    261 #: includes/admin/class-up-admin-pointers.php:91
     263#: includes/admin/class-up-admin-pointers.php:97
    262264msgid "(you won't see this message or the guide again)"
    263265msgstr "(no verás este mensaje o la guía de nuevo)"
    264266
    265 #: includes/admin/class-up-admin-pointers.php:116
     267#: includes/admin/class-up-admin-pointers.php:139
     268msgid "- The installed version of "
     269msgstr "- La versión instalada de "
     270
     271#: includes/admin/class-up-admin-pointers.php:140
     272msgid " is "
     273msgstr " es "
     274
     275#: includes/admin/class-up-admin-pointers.php:141
     276msgid ". This version of UpStream requires version "
     277msgstr ". Esta versión de UpStream requiere la versión "
     278
     279#: includes/admin/class-up-admin-pointers.php:142
     280msgid " or later."
     281msgstr " o más tarde."
     282
     283#: includes/admin/class-up-admin-pointers.php:153
     284msgid ""
     285"This version of UpStream is not compatible with the following addon versions:"
     286msgstr ""
     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)"
     293msgid "Do not show this message again for this version"
     294msgstr "(no verás este mensaje o la guía de nuevo)"
     295
     296#: includes/admin/class-up-admin-pointers.php:183
    266297#, php-format
    267298msgid "%s Name"
    268299msgstr "%s Nombre"
    269300
    270 #: includes/admin/class-up-admin-pointers.php:118
     301#: includes/admin/class-up-admin-pointers.php:185
    271302#, php-format
    272303msgid "This is a required field and will be what your %s see on the frontend."
    273304msgstr "Este es un campo obligatorio y será lo que sus %s ven en la portada."
    274305
    275 #: includes/admin/class-up-admin-pointers.php:136
     306#: includes/admin/class-up-admin-pointers.php:203
    276307#, php-format
    277308msgid "%s Status"
    278309msgstr "%s estado"
    279310
    280 #: includes/admin/class-up-admin-pointers.php:140
     311#: includes/admin/class-up-admin-pointers.php:207
    281312#, php-format
    282313msgid "Choose a status for this %s."
    283314msgstr "Elije un estado para este %s."
    284315
    285 #: includes/admin/class-up-admin-pointers.php:144
     316#: includes/admin/class-up-admin-pointers.php:211
    286317msgid "Statuses are set within the UpStream Settings."
    287318msgstr "Los estados se establecen en la configuración del planificador."
    288319
    289 #: includes/admin/class-up-admin-pointers.php:161
     320#: includes/admin/class-up-admin-pointers.php:228
     321#: templates/archive-project.php:488
    290322#, php-format
    291323msgid "%s Owner"
    292324msgstr "%s Propietario"
    293325
    294 #: includes/admin/class-up-admin-pointers.php:163
     326#: includes/admin/class-up-admin-pointers.php:230
    295327#, php-format
    296328msgid "Choose the owner of this %s."
    297329msgstr "Elije al propietario de este %s."
    298330
    299 #: includes/admin/class-up-admin-pointers.php:167
     331#: includes/admin/class-up-admin-pointers.php:234
    300332msgid ""
    301333"Every user who has the Role of UpStream Manager, UpStream User or "
     
    305337"Administrador aparece en este desplegable."
    306338
    307 #: includes/admin/class-up-admin-pointers.php:171
     339#: includes/admin/class-up-admin-pointers.php:238
    308340#, php-format
    309341msgid ""
     
    314346"%s, independientemente de su rol."
    315347
    316 #: includes/admin/class-up-admin-pointers.php:194
     348#: includes/admin/class-up-admin-pointers.php:261
    317349#, fuzzy, php-format
    318350msgid "Choose the %s of this %s."
    319351msgstr "Elija los %s de este %s."
    320352
    321 #: includes/admin/class-up-admin-pointers.php:199
     353#: includes/admin/class-up-admin-pointers.php:266
    322354#, fuzzy, php-format
    323355msgid ""
     
    328360"<strong>Nuevo Cliente</strong> en la barra lateral."
    329361
    330 #: includes/admin/class-up-admin-pointers.php:216
     362#: includes/admin/class-up-admin-pointers.php:283
    331363#: includes/admin/metaboxes/class-up-metaboxes-projects.php:1453
    332 #: templates/archive-project.php:479 templates/single-project/details.php:115
     364#: templates/archive-project.php:484 templates/single-project/details.php:115
    333365#, php-format
    334366msgid "%s Users"
    335367msgstr "%s Usuarios"
    336368
    337 #: includes/admin/class-up-admin-pointers.php:218
     369#: includes/admin/class-up-admin-pointers.php:285
    338370#, fuzzy, php-format
    339371msgid "Tick the %s Users who will have access to this %s."
    340372msgstr "Marque los %s Usuarios que tendrán acceso a este %s."
    341373
    342 #: includes/admin/class-up-admin-pointers.php:222
     374#: includes/admin/class-up-admin-pointers.php:289
    343375#, fuzzy, php-format
    344376msgid ""
     
    349381"correo electrónico y la contraseña que se ha establecido dentro de los %s."
    350382
    351 #: includes/admin/class-up-admin-pointers.php:226
     383#: includes/admin/class-up-admin-pointers.php:293
    352384#, fuzzy, php-format
    353385msgid ""
     
    356388"Si no hay %s Usuarios aquí, necesita agregar uno primero editando sus %s"
    357389
    358 #: includes/admin/class-up-admin-pointers.php:243
     390#: includes/admin/class-up-admin-pointers.php:310
    359391#, fuzzy, php-format
    360392msgid "%s Dates"
    361393msgstr "%s Fechas"
    362394
    363 #: includes/admin/class-up-admin-pointers.php:245
     395#: includes/admin/class-up-admin-pointers.php:312
    364396#, php-format
    365397msgid "Add the projected start and finish dates for this %s."
    366398msgstr "Añade fechas de inicio y fin previstas para este %s."
    367399
    368 #: includes/admin/class-up-admin-pointers.php:259
     400#: includes/admin/class-up-admin-pointers.php:326
    369401#, php-format
    370402msgid "You can now start to add your %s."
    371403msgstr "Puedes empezar a sumar tus %s."
    372404
    373 #: includes/admin/class-up-admin-pointers.php:264
     405#: includes/admin/class-up-admin-pointers.php:331
    374406#, fuzzy, php-format
    375407msgid ""
     
    380412"Esto asegura que todos los %s estarán disponibles dentro de los %s."
    381413
    382 #: includes/admin/class-up-admin-pointers.php:273
     414#: includes/admin/class-up-admin-pointers.php:340
    383415#, fuzzy, php-format
    384416msgid ""
     
    416448#: includes/frontend/up-table-functions.php:55
    417449#: includes/frontend/up-table-functions.php:180
    418 #: templates/archive-project.php:82 templates/global/sidebar.php:34
     450#: templates/archive-project.php:85 templates/global/sidebar.php:34
    419451#: templates/single-project/details.php:90
     452#: templates/single-project/progress.php:33
    420453msgid "Progress"
    421454msgstr "Progreso"
     
    436469msgstr "Comentarios"
    437470
    438 #: includes/admin/class-up-admin-project-columns.php:447
     471#: includes/admin/class-up-admin-project-columns.php:453
    439472msgid "statuses"
    440473msgstr "estados"
    441474
    442 #: includes/admin/class-up-admin-project-columns.php:466
     475#: includes/admin/class-up-admin-project-columns.php:472
    443476msgid "owners"
    444477msgstr "propietarios"
     
    465498#: includes/admin/metaboxes/class-up-metaboxes-projects.php:949
    466499#: includes/admin/metaboxes/class-up-metaboxes-projects.php:1477
    467 #: includes/class-up-milestones.php:338 includes/class-up-milestones.php:440
     500#: includes/class-up-milestones.php:338 includes/class-up-milestones.php:561
    468501#: includes/frontend/up-table-functions.php:66
    469502#: includes/frontend/up-table-functions.php:220
    470503#: includes/model/UpStream_Model_Milestone.php:272
    471 #: includes/model/UpStream_Model_Project.php:459
    472 #: includes/model/UpStream_Model_Task.php:296 templates/archive-project.php:465
     504#: includes/model/UpStream_Model_Project.php:470
     505#: includes/model/UpStream_Model_Task.php:296 templates/archive-project.php:470
    473506#: templates/single-project/details.php:21
    474507msgid "End Date"
     
    480513msgstr "Completo"
    481514
    482 #: includes/admin/class-up-admin.php:546
     515#: includes/admin/class-up-admin.php:550
    483516#, fuzzy
    484517msgid "Comment reply notifications"
    485518msgstr "Notificaciones de respuesta a comentarios"
    486519
    487 #: includes/admin/class-up-admin.php:553
     520#: includes/admin/class-up-admin.php:557
    488521#: includes/admin/options/class-up-options-general.php:152
    489522#: includes/admin/options/class-up-options-general.php:166
     
    497530#: includes/admin/options/class-up-options-general.php:446
    498531#: includes/admin/options/class-up-options-general.php:460
    499 #: includes/admin/options/class-up-options-general.php:485
     532#: includes/admin/options/class-up-options-general.php:474
    500533#: includes/admin/options/class-up-options-general.php:499
    501534#: includes/admin/options/class-up-options-general.php:513
    502535#: includes/admin/options/class-up-options-general.php:527
    503536#: 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
    505540msgid "Yes"
    506541msgstr "Sí"
    507542
    508 #: includes/admin/class-up-admin.php:558
     543#: includes/admin/class-up-admin.php:562
    509544#: includes/admin/options/class-up-options-general.php:151
    510545#: includes/admin/options/class-up-options-general.php:165
     
    518553#: includes/admin/options/class-up-options-general.php:445
    519554#: includes/admin/options/class-up-options-general.php:459
    520 #: includes/admin/options/class-up-options-general.php:484
     555#: includes/admin/options/class-up-options-general.php:473
    521556#: includes/admin/options/class-up-options-general.php:498
    522557#: includes/admin/options/class-up-options-general.php:512
     558#: includes/admin/options/class-up-options-general.php:526
    523559#: 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
    525562msgid "No"
    526563msgstr "No"
    527564
    528 #: includes/admin/class-up-admin.php:564
     565#: includes/admin/class-up-admin.php:568
    529566#, fuzzy, php-format
    530567msgid "Whether to be notified when someone reply to your comments within %s."
     
    550587#: includes/admin/metaboxes/class-up-metaboxes-clients.php:230
    551588#: includes/admin/metaboxes/class-up-metaboxes-clients.php:404
    552 #: templates/report-parameters/section.php:53
     589#: templates/report-parameters/section.php:61
    553590msgid "Name"
    554591msgstr "Nombre"
     
    619656
    620657#: 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
    623661#, fuzzy
    624662msgid "UpStream Client User"
     
    626664
    627665#: includes/admin/metaboxes/class-up-metaboxes-clients.php:410
    628 #: includes/admin/up-enqueues.php:163
     666#: includes/admin/up-enqueues.php:164
    629667msgid "No users found."
    630668msgstr "No se encontraron usuarios."
     
    686724#: includes/admin/metaboxes/class-up-metaboxes-clients.php:609
    687725#: includes/admin/metaboxes/class-up-metaboxes-clients.php:676
    688 #: includes/admin/metaboxes/class-up-metaboxes-clients.php:769
    689 #: includes/admin/metaboxes/class-up-metaboxes-clients.php:819
    690 #: includes/class-up-comments.php:289 includes/class-up-comments.php:402
    691 #: includes/class-up-comments.php:510 includes/class-up-comments.php:629
     726#: 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
    692730#, fuzzy
    693731msgid "You're not allowed to do this."
     
    697735#: includes/admin/metaboxes/class-up-metaboxes-clients.php:613
    698736#: includes/admin/metaboxes/class-up-metaboxes-clients.php:680
    699 #: includes/admin/metaboxes/class-up-metaboxes-clients.php:773
    700 #: includes/admin/metaboxes/class-up-metaboxes-clients.php:823
     737#: includes/admin/metaboxes/class-up-metaboxes-clients.php:781
     738#: includes/admin/metaboxes/class-up-metaboxes-clients.php:831
    701739#: includes/admin/metaboxes/class-up-metaboxes-projects.php:1905
    702 #: includes/class-up-comments.php:250 includes/class-up-comments.php:377
    703 #: includes/class-up-comments.php:394 includes/class-up-comments.php:476
    704 #: includes/class-up-comments.php:624 includes/class-up-comments.php:748
    705 #: includes/class-up-comments.php:765
     740#: 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
    706744msgid "Invalid request."
    707745msgstr "Petición incorrecta."
     
    710748#: includes/admin/metaboxes/class-up-metaboxes-clients.php:618
    711749#: includes/admin/metaboxes/class-up-metaboxes-clients.php:685
    712 #: includes/admin/metaboxes/class-up-metaboxes-clients.php:778
    713 #: includes/admin/metaboxes/class-up-metaboxes-clients.php:828
     750#: includes/admin/metaboxes/class-up-metaboxes-clients.php:786
     751#: includes/admin/metaboxes/class-up-metaboxes-clients.php:836
    714752msgid "Invalid Client ID."
    715753msgstr "Invalido ID de cliente."
    716754
    717755#: includes/admin/metaboxes/class-up-metaboxes-clients.php:562
    718 #: includes/admin/metaboxes/class-up-metaboxes-clients.php:783
    719 #: includes/admin/metaboxes/class-up-metaboxes-clients.php:833
     756#: includes/admin/metaboxes/class-up-metaboxes-clients.php:791
     757#: includes/admin/metaboxes/class-up-metaboxes-clients.php:841
    720758msgid "Invalid User ID."
    721759msgstr "ID de usuario invalido."
     
    726764msgstr "Los IDs de usuario no pueden estar vacíos."
    727765
    728 #: includes/admin/metaboxes/class-up-metaboxes-clients.php:787
    729 #: includes/admin/metaboxes/class-up-metaboxes-clients.php:837
     766#: includes/admin/metaboxes/class-up-metaboxes-clients.php:795
     767#: includes/admin/metaboxes/class-up-metaboxes-clients.php:845
    730768#, fuzzy
    731769msgid "This Client User is not associated with this Client."
    732770msgstr "Este Usuario de Cliente no está asociado con este Cliente."
    733771
    734 #: includes/admin/metaboxes/class-up-metaboxes-clients.php:842
     772#: includes/admin/metaboxes/class-up-metaboxes-clients.php:850
    735773#, fuzzy
    736774msgid "This user doesn't seem to be a valid Client User."
     
    770808#: includes/admin/metaboxes/class-up-metaboxes-projects.php:940
    771809#: includes/admin/metaboxes/class-up-metaboxes-projects.php:1465
    772 #: includes/class-up-milestones.php:337 includes/class-up-milestones.php:439
     810#: includes/class-up-milestones.php:337 includes/class-up-milestones.php:560
    773811#: includes/frontend/up-table-functions.php:61
    774812#: includes/frontend/up-table-functions.php:215
    775813#: includes/model/UpStream_Model_Milestone.php:271
    776 #: includes/model/UpStream_Model_Project.php:458
    777 #: includes/model/UpStream_Model_Task.php:295 templates/archive-project.php:459
     814#: includes/model/UpStream_Model_Project.php:469
     815#: includes/model/UpStream_Model_Task.php:295 templates/archive-project.php:464
    778816#: templates/single-project/details.php:16
    779817msgid "Start Date"
     
    836874#: includes/frontend/up-table-functions.php:375
    837875#: includes/frontend/up-table-functions.php:435
    838 #: includes/model/UpStream_Model_Object.php:67 templates/archive-project.php:72
     876#: includes/model/UpStream_Model_Object.php:67 templates/archive-project.php:75
    839877#: templates/global/sidebar.php:24 templates/single-project/bugs.php:65
    840878#: templates/single-project/files.php:45 templates/single-project/tasks.php:79
     
    846884#: includes/admin/metaboxes/class-up-metaboxes-projects.php:701
    847885#: includes/admin/metaboxes/class-up-metaboxes-projects.php:718
    848 #: includes/admin/metaboxes/class-up-metaboxes-projects.php:2197
    849 #: includes/class-up-milestones.php:336 includes/class-up-milestones.php:364
     886#: includes/admin/metaboxes/class-up-metaboxes-projects.php:2208
     887#: includes/class-up-milestones.php:336 includes/class-up-milestones.php:480
    850888#: includes/frontend/up-table-functions.php:1051
    851 #: includes/libraries/cmb2/includes/CMB2_Field.php:1418
    852 #: includes/libraries/cmb2/includes/CMB2_Field.php:1423
    853 #: templates/archive-project.php:83 templates/global/sidebar.php:35
     889#: 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
    854892#: 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
    855895#: templates/single-project/tasks.php:253
    856896#: templates/single-project/tasks.php:280
     
    863903#: includes/admin/options/class-up-options-projects.php:99
    864904#: includes/admin/options/class-up-options-tasks.php:99
    865 #: templates/archive-project.php:80 templates/global/sidebar.php:32
     905#: templates/archive-project.php:83 templates/global/sidebar.php:32
    866906msgid "Statuses"
    867907msgstr "Estados"
     
    898938#: includes/frontend/up-table-functions.php:522
    899939#: includes/libraries/cmb2-grid/Test/Test.php:62
    900 #: includes/libraries/cmb2/example-functions.php:530
     940#: includes/libraries/cmb2/example-functions.php:544
    901941#: includes/model/UpStream_Model_Object.php:68
    902942#: templates/single-project/bugs.php:67
     
    932972#: includes/admin/metaboxes/class-up-metaboxes-projects.php:1805
    933973#: includes/admin/metaboxes/class-up-metaboxes-projects.php:1819
    934 #: includes/admin/up-enqueues.php:117
     974#: includes/admin/up-enqueues.php:118
    935975msgid "Add new Comment"
    936976msgstr "Añadir nuevo comentario"
    937977
    938978#: includes/admin/metaboxes/class-up-metaboxes-projects.php:1811
    939 #: includes/admin/up-enqueues.php:116
     979#: includes/admin/up-enqueues.php:117
    940980msgid "Add Comment"
    941981msgstr "Añadir comentario"
     
    947987
    948988#: includes/admin/metaboxes/class-up-metaboxes-projects.php:1911
    949 #: includes/class-up-comments.php:279 includes/class-up-comments.php:385
    950 #: includes/class-up-comments.php:482 includes/class-up-comments.php:754
     989#: 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
    951991msgid "Invalid Project."
    952992msgstr "Plan inválido."
     
    954994#: includes/admin/metaboxes/class-up-metaboxes-projects.php:2009
    955995#: includes/admin/metaboxes/metabox-functions.php:598
    956 #: includes/class-up-comment.php:579 includes/class-up-comments.php:921
     996#: includes/class-up-comment.php:580 includes/class-up-comments.php:925
    957997#, php-format
    958998msgctxt "%s = human-readable time difference"
     
    9731013#: includes/admin/options/class-up-options-projects.php:160
    9741014#: 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
    9781019msgid "Open"
    9791020msgstr "Abierto"
     
    10001041
    10011042#: includes/admin/metaboxes/metabox-functions.php:715
    1002 #: includes/admin/up-enqueues.php:123
     1043#: includes/admin/up-enqueues.php:124
    10031044msgid "Unapprove"
    10041045msgstr "Desaprobar"
    10051046
    10061047#: includes/admin/metaboxes/metabox-functions.php:721
    1007 #: includes/admin/up-enqueues.php:125
     1048#: includes/admin/up-enqueues.php:126
    10081049msgid "Approve"
    10091050msgstr "Aprobar"
    10101051
    10111052#: includes/admin/metaboxes/metabox-functions.php:730
    1012 #: includes/admin/up-enqueues.php:115
     1053#: includes/admin/up-enqueues.php:116
    10131054msgid "Reply"
    10141055msgstr "Responder"
    10151056
    10161057#: includes/admin/metaboxes/metabox-functions.php:738
    1017 #: includes/admin/up-enqueues.php:121
     1058#: includes/admin/up-enqueues.php:122
    10181059msgid "Delete"
    10191060msgstr "Borrar"
     
    10281069
    10291070#: includes/admin/metaboxes/metabox-functions.php:1232
    1030 #: includes/admin/up-enqueues.php:134
     1071#: includes/admin/up-enqueues.php:135
    10311072msgid "No client selected"
    10321073msgstr "No se ha seleccionado ningún cliente"
     
    10631104#: includes/admin/options/class-up-options-tasks.php:120
    10641105#: includes/libraries/cmb2-grid/Test/Test.php:52
    1065 #: includes/libraries/cmb2/example-functions.php:510
     1106#: includes/libraries/cmb2/example-functions.php:523
    10661107msgid "Remove Entry"
    10671108msgstr "Eliminar Entrada"
     
    11131154#: includes/admin/options/class-up-options-projects.php:161
    11141155#: includes/admin/options/class-up-options-tasks.php:161
    1115 #: templates/single-project/overview.php:212
    1116 #: templates/single-project/overview.php:244
     1156#: templates/single-project/overview.php:221
     1157#: templates/single-project/overview.php:253
    11171158msgid "Closed"
    11181159msgstr "Cerrado"
     
    15011542
    15021543#: includes/admin/options/class-up-options-general.php:320
    1503 #: includes/up-general-functions.php:818
     1544#: includes/up-general-functions.php:839
    15041545msgid "Contact Admin"
    15051546msgstr "Contactar al Administrador"
     
    15791620
    15801621#: includes/admin/options/class-up-options-general.php:394
     1622#, fuzzy
     1623#| msgid "Collapse Project Bugs box"
     1624msgid "Collapse Project Progress box"
     1625msgstr "Minimiza cuadro de riesgos del plan"
     1626
     1627#: includes/admin/options/class-up-options-general.php:398
     1628#, fuzzy
     1629msgid ""
     1630"Choose whether to collapse the Project progress box automatically when a "
     1631"user opens a project page."
     1632msgstr ""
     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
    15811637msgid "Collapse Project Milestones box"
    15821638msgstr "Minimiza cuadro de etapas del plan"
    15831639
    1584 #: includes/admin/options/class-up-options-general.php:398
     1640#: includes/admin/options/class-up-options-general.php:412
    15851641#, fuzzy
    15861642msgid ""
     
    15911647"abre una página de proyecto."
    15921648
    1593 #: includes/admin/options/class-up-options-general.php:408
     1649#: includes/admin/options/class-up-options-general.php:422
    15941650msgid "Collapse Project Tasks box"
    15951651msgstr "Minimiza cuadro de tareas del plan"
    15961652
    1597 #: includes/admin/options/class-up-options-general.php:412
     1653#: includes/admin/options/class-up-options-general.php:426
    15981654#, fuzzy
    15991655msgid ""
     
    16041660"abre una página de proyecto."
    16051661
    1606 #: includes/admin/options/class-up-options-general.php:422
     1662#: includes/admin/options/class-up-options-general.php:436
    16071663msgid "Collapse Project Bugs box"
    16081664msgstr "Minimiza cuadro de riesgos del plan"
    16091665
    1610 #: includes/admin/options/class-up-options-general.php:426
     1666#: includes/admin/options/class-up-options-general.php:440
    16111667#, fuzzy
    16121668msgid ""
     
    16171673"abre una página de proyecto."
    16181674
    1619 #: includes/admin/options/class-up-options-general.php:436
     1675#: includes/admin/options/class-up-options-general.php:450
    16201676msgid "Collapse Project Files box"
    16211677msgstr "Minimiza cuadro de archivos del plan"
    16221678
    1623 #: includes/admin/options/class-up-options-general.php:440
     1679#: includes/admin/options/class-up-options-general.php:454
    16241680#, fuzzy
    16251681msgid ""
     
    16301686"abre una página de proyecto."
    16311687
    1632 #: includes/admin/options/class-up-options-general.php:450
     1688#: includes/admin/options/class-up-options-general.php:464
    16331689msgid "Collapse Project Discussion box"
    16341690msgstr "Minimiza cuadro de comentarios del plan"
    16351691
    1636 #: includes/admin/options/class-up-options-general.php:454
     1692#: includes/admin/options/class-up-options-general.php:468
    16371693#, fuzzy
    16381694msgid ""
     
    16431699"usuario abre una página de proyecto."
    16441700
    1645 #: includes/admin/options/class-up-options-general.php:468
     1701#: includes/admin/options/class-up-options-general.php:482
    16461702#, fuzzy
    16471703msgid "Toggle Features"
    16481704msgstr "Características de la palanca"
    16491705
    1650 #: includes/admin/options/class-up-options-general.php:471
     1706#: includes/admin/options/class-up-options-general.php:485
    16511707#, fuzzy
    16521708msgid "Options to toggle different sections and features."
    16531709msgstr "Opciones para alternar entre diferentes secciones y características."
    16541710
    1655 #: includes/admin/options/class-up-options-general.php:475
     1711#: includes/admin/options/class-up-options-general.php:489
     1712#, fuzzy
     1713msgid "Disable Project Progress box"
     1714msgstr "Iconos de progreso del proyecto"
     1715
     1716#: includes/admin/options/class-up-options-general.php:493
     1717#, fuzzy
     1718msgid "Choose whether to disable the Project progress box on the front end."
     1719msgstr ""
     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
    16561724#, fuzzy
    16571725msgid "Disable Clients and Client Users"
    16581726msgstr "Desactivar Clientes y usuarios de Cliente"
    16591727
    1660 #: includes/admin/options/class-up-options-general.php:479
     1728#: includes/admin/options/class-up-options-general.php:507
    16611729#, fuzzy
    16621730msgid ""
     
    16661734"agregar y utilizar en los Proyectos."
    16671735
    1668 #: includes/admin/options/class-up-options-general.php:489
     1736#: includes/admin/options/class-up-options-general.php:517
    16691737#, fuzzy
    16701738msgid "Select all client's users by default"
    16711739msgstr "Seleccionar todos los usuarios del cliente por defecto"
    16721740
    1673 #: includes/admin/options/class-up-options-general.php:493
     1741#: includes/admin/options/class-up-options-general.php:521
    16741742#, fuzzy
    16751743msgid ""
     
    16801748"defecto después de la modificación o seleccione el cliente."
    16811749
    1682 #: includes/admin/options/class-up-options-general.php:503
     1750#: includes/admin/options/class-up-options-general.php:531
    16831751#, fuzzy
    16841752msgid "Disable Projects Categorization"
    16851753msgstr "Desactivar la categorización de proyectos"
    16861754
    1687 #: includes/admin/options/class-up-options-general.php:507
     1755#: includes/admin/options/class-up-options-general.php:535
    16881756#, fuzzy
    16891757msgid ""
     
    16931761"administradores y los usuarios."
    16941762
    1695 #: includes/admin/options/class-up-options-general.php:517
     1763#: includes/admin/options/class-up-options-general.php:545
    16961764#, fuzzy
    16971765msgid "Project Progress Icons"
    16981766msgstr "Iconos de progreso del proyecto"
    16991767
    1700 #: includes/admin/options/class-up-options-general.php:521
     1768#: includes/admin/options/class-up-options-general.php:549
    17011769#, fuzzy
    17021770msgid ""
     
    17061774"el módulo de acceso."
    17071775
    1708 #: includes/admin/options/class-up-options-general.php:526
     1776#: includes/admin/options/class-up-options-general.php:554
    17091777msgid "Do not show"
    17101778msgstr "No mostrar"
    17111779
    1712 #: includes/admin/options/class-up-options-general.php:531
     1780#: includes/admin/options/class-up-options-general.php:559
    17131781#, fuzzy
    17141782msgid "Disable Project Details"
    17151783msgstr "Desactivar los detalles del proyecto"
    17161784
    1717 #: includes/admin/options/class-up-options-general.php:535
     1785#: includes/admin/options/class-up-options-general.php:563
    17181786#, fuzzy
    17191787msgid "Choose whether to display the Project Details section on frontend."
     
    17221790"de acceso."
    17231791
    1724 #: includes/admin/options/class-up-options-general.php:545
     1792#: includes/admin/options/class-up-options-general.php:573
    17251793#, fuzzy
    17261794msgid "Disable Bugs"
    17271795msgstr "Desactivar errores"
    17281796
    1729 #: includes/admin/options/class-up-options-general.php:549
     1797#: includes/admin/options/class-up-options-general.php:577
    17301798#, fuzzy
    17311799msgid ""
     
    17361804"como en el área de administración."
    17371805
    1738 #: includes/admin/options/class-up-options-general.php:554
     1806#: includes/admin/options/class-up-options-general.php:582
    17391807msgid "Disable the Bugs section?"
    17401808msgstr "¿Desactivar la sección Riesgos?"
    17411809
    1742 #: includes/admin/options/class-up-options-general.php:559
     1810#: includes/admin/options/class-up-options-general.php:587
    17431811#, fuzzy
    17441812msgid "Disable Tasks"
    17451813msgstr "Desactivar tareas"
    17461814
    1747 #: includes/admin/options/class-up-options-general.php:563
     1815#: includes/admin/options/class-up-options-general.php:591
    17481816#, fuzzy
    17491817msgid ""
     
    17541822"end como en el área de administración."
    17551823
    1756 #: includes/admin/options/class-up-options-general.php:568
     1824#: includes/admin/options/class-up-options-general.php:596
    17571825msgid "Disable the Tasks section?"
    17581826msgstr "¿Desactivar la sección Tareas?"
    17591827
    1760 #: includes/admin/options/class-up-options-general.php:573
     1828#: includes/admin/options/class-up-options-general.php:601
    17611829#, fuzzy
    17621830msgid "Disable Milestones"
    17631831msgstr "Desactivar hitos"
    17641832
    1765 #: includes/admin/options/class-up-options-general.php:577
     1833#: includes/admin/options/class-up-options-general.php:605
    17661834msgid ""
    17671835"Ticking this box will disable the Milestones section on both the frontend "
     
    17731841"utilidades requieren las fases para funcionar adecuadamente.</strong>"
    17741842
    1775 #: includes/admin/options/class-up-options-general.php:582
     1843#: includes/admin/options/class-up-options-general.php:610
    17761844msgid "Disable the Milestones section?"
    17771845msgstr "¿Desactivar la sección Etapas?"
    17781846
    1779 #: includes/admin/options/class-up-options-general.php:587
     1847#: includes/admin/options/class-up-options-general.php:615
    17801848#, fuzzy
    17811849msgid "Disable Milestone Categories"
    17821850msgstr "Desactivar categorías de hitos"
    17831851
    1784 #: includes/admin/options/class-up-options-general.php:591
     1852#: includes/admin/options/class-up-options-general.php:619
    17851853#, fuzzy
    17861854msgid ""
     
    17911859"tanto en el área de administración como en la de frontend."
    17921860
    1793 #: includes/admin/options/class-up-options-general.php:602
     1861#: includes/admin/options/class-up-options-general.php:630
    17941862#, fuzzy
    17951863msgid "Disable Files"
    17961864msgstr "Desactivar archivos"
    17971865
    1798 #: includes/admin/options/class-up-options-general.php:606
     1866#: includes/admin/options/class-up-options-general.php:634
    17991867#, fuzzy
    18001868msgid ""
     
    18051873"frontend como en el área de administración."
    18061874
    1807 #: includes/admin/options/class-up-options-general.php:611
     1875#: includes/admin/options/class-up-options-general.php:639
    18081876msgid "Disable the Files section?"
    18091877msgstr "¿Desactivar la sección Archivos?"
    18101878
    1811 #: includes/admin/options/class-up-options-general.php:616
    1812 #, 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
     1881msgid "File Upload Manager (NOTE: DO NOT change after you have added files)"
    18141882msgstr ""
    18151883"File Upload Manager BETA (NO cambie después de haber añadido los archivos)"
    18161884
    1817 #: includes/admin/options/class-up-options-general.php:620
     1885#: includes/admin/options/class-up-options-general.php:648
    18181886#, fuzzy
    18191887msgid ""
     
    18251893"todos los archivos."
    18261894
    1827 #: includes/admin/options/class-up-options-general.php:625
     1895#: includes/admin/options/class-up-options-general.php:653
    18281896#, fuzzy
    18291897msgid "Use WordPress built-in file uploads"
    18301898msgstr "Usar las subidas de archivos incorporadas en WordPress"
    18311899
    1832 #: includes/admin/options/class-up-options-general.php:626
     1900#: includes/admin/options/class-up-options-general.php:654
    18331901#, fuzzy
    18341902msgid "Use UpStream secure file uploads"
    18351903msgstr "Usar UpStream para subir archivos de forma segura"
    18361904
    1837 #: includes/admin/options/class-up-options-general.php:630
     1905#: includes/admin/options/class-up-options-general.php:658
    18381906#, fuzzy
    18391907msgid "UpStream secure file upload location"
    18401908msgstr "Ubicación segura de la carga de archivos de UpStream"
    18411909
    1842 #: includes/admin/options/class-up-options-general.php:634
     1910#: includes/admin/options/class-up-options-general.php:662
    18431911#, fuzzy
    18441912msgid ""
    18451913"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."
    18471916msgstr ""
    18481917"Si UpStream secure file uploads está habilitado, esto debe ser configurado "
    18491918"en una ruta en su servidor web que sea escribible."
    18501919
    1851 #: includes/admin/options/class-up-options-general.php:640
     1920#: includes/admin/options/class-up-options-general.php:668
    18521921#, fuzzy
    18531922msgid "Disable Reports"
    18541923msgstr "Desactivar archivos"
    18551924
    1856 #: includes/admin/options/class-up-options-general.php:644
     1925#: includes/admin/options/class-up-options-general.php:672
    18571926#, fuzzy
    18581927#| msgid "Disable the Files section?"
     
    18601929msgstr "¿Desactivar la sección Archivos?"
    18611930
    1862 #: includes/admin/options/class-up-options-general.php:649
     1931#: includes/admin/options/class-up-options-general.php:677
    18631932#, fuzzy
    18641933msgid "Show reports section"
    18651934msgstr "Mostrar la sección de informes"
    18661935
    1867 #: includes/admin/options/class-up-options-general.php:650
    1868 #: includes/admin/options/class-up-options-general.php:664
    18691936#: 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
     1943msgid "Disable section"
     1944msgstr "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
     1949msgid "Disable Discussion on Projects"
     1950msgstr "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
     1955msgid ""
     1956"Either allow comments on projects on both the frontend and the admin area or "
     1957"hide the section."
     1958msgstr ""
     1959"Puede permitir comentarios sobre proyectos tanto en el frontend como en el "
     1960"área de administración u ocultar la sección."
     1961
    18701962#: includes/admin/options/class-up-options-general.php:691
    18711963#: includes/admin/options/class-up-options-general.php:705
    1872 #: includes/admin/options/class-up-options-general.php:719
    1873 #: includes/admin/options/class-up-options-general.php:733
    1874 msgid "Disable section"
    1875 msgstr "Desactivar Sección"
    1876 
    1877 #: includes/admin/options/class-up-options-general.php:654
    1878 #: includes/admin/options/class-up-options-general.php:668
    1879 #, fuzzy
    1880 msgid "Disable Discussion on Projects"
    1881 msgstr "Deshabilitar la discusión sobre proyectos"
    1882 
    1883 #: includes/admin/options/class-up-options-general.php:658
    1884 #: includes/admin/options/class-up-options-general.php:672
    1885 #, fuzzy
    1886 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:663
    1894 #: includes/admin/options/class-up-options-general.php:677
    18951964#, fuzzy
    18961965msgid "Allow comments on projects"
    18971966msgstr "Permitir comentarios sobre proyectos"
    18981967
    1899 #: includes/admin/options/class-up-options-general.php:681
     1968#: includes/admin/options/class-up-options-general.php:709
    19001969#, fuzzy
    19011970msgid "Disable Discussion on Milestones"
    19021971msgstr "Deshabilitar el debate sobre los hitos"
    19031972
    1904 #: includes/admin/options/class-up-options-general.php:685
    1905 #: includes/admin/options/class-up-options-general.php:699
    19061973#: includes/admin/options/class-up-options-general.php:713
    19071974#: 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
    19081977#, fuzzy, php-format
    19091978msgid "Either allow comments on %s or hide the section."
    19101979msgstr "Permita comentarios sobre %s u oculte la sección."
    19111980
    1912 #: includes/admin/options/class-up-options-general.php:686
     1981#: includes/admin/options/class-up-options-general.php:714
    19131982#: includes/up-labels.php:46
    19141983msgid "Milestones"
    19151984msgstr "Hitos"
    19161985
    1917 #: includes/admin/options/class-up-options-general.php:690
     1986#: includes/admin/options/class-up-options-general.php:718
    19181987#, fuzzy
    19191988msgid "Allow comments on Milestones"
    19201989msgstr "Permitir comentarios sobre Hitos"
    19211990
    1922 #: includes/admin/options/class-up-options-general.php:695
     1991#: includes/admin/options/class-up-options-general.php:723
    19231992#, fuzzy
    19241993msgid "Disable Discussion on Tasks"
    19251994msgstr "Desactivar el debate sobre las tareas"
    19261995
    1927 #: includes/admin/options/class-up-options-general.php:700
     1996#: includes/admin/options/class-up-options-general.php:728
    19281997#: includes/up-labels.php:62
    19291998msgid "Tasks"
    19301999msgstr "Tareas"
    19312000
    1932 #: includes/admin/options/class-up-options-general.php:704
     2001#: includes/admin/options/class-up-options-general.php:732
    19332002#, fuzzy
    19342003msgid "Allow comments on Tasks"
    19352004msgstr "Permitir comentarios sobre Tareas"
    19362005
    1937 #: includes/admin/options/class-up-options-general.php:709
     2006#: includes/admin/options/class-up-options-general.php:737
    19382007#, fuzzy
    19392008msgid "Disable Discussion on Bugs"
    19402009msgstr "Desactivar la discusión sobre errores"
    19412010
    1942 #: includes/admin/options/class-up-options-general.php:714
     2011#: includes/admin/options/class-up-options-general.php:742
    19432012#: includes/up-labels.php:66
    19442013msgid "Bugs"
    19452014msgstr "Errores"
    19462015
    1947 #: includes/admin/options/class-up-options-general.php:718
     2016#: includes/admin/options/class-up-options-general.php:746
    19482017#, fuzzy
    19492018msgid "Allow comments on Bugs"
    19502019msgstr "Permitir comentarios sobre errores"
    19512020
    1952 #: includes/admin/options/class-up-options-general.php:723
     2021#: includes/admin/options/class-up-options-general.php:751
    19532022#, fuzzy
    19542023msgid "Disable Discussion on Files"
    19552024msgstr "Desactivar Discusión en Archivos"
    19562025
    1957 #: includes/admin/options/class-up-options-general.php:728
     2026#: includes/admin/options/class-up-options-general.php:756
    19582027#: includes/up-labels.php:70
    19592028msgid "Files"
    19602029msgstr "Archivos"
    19612030
    1962 #: includes/admin/options/class-up-options-general.php:732
     2031#: includes/admin/options/class-up-options-general.php:760
    19632032#, fuzzy
    19642033msgid "Allow comments on Files"
    19652034msgstr "Permitir comentarios sobre Archivos"
    19662035
    1967 #: includes/admin/options/class-up-options-general.php:737
     2036#: includes/admin/options/class-up-options-general.php:765
    19682037#, fuzzy
    19692038msgid "Show all projects in the frontend sidebar"
    19702039msgstr "Mostrar todos los proyectos en la barra lateral del módulo frontal"
    19712040
    1972 #: includes/admin/options/class-up-options-general.php:740
     2041#: includes/admin/options/class-up-options-general.php:768
    19732042#, fuzzy
    19742043msgid "If enabled, all projects will be displayed in the sidebar on frontend."
     
    19772046"módulo de acceso."
    19782047
    1979 #: includes/admin/options/class-up-options-general.php:744
     2048#: includes/admin/options/class-up-options-general.php:772
    19802049#, fuzzy
    19812050msgid "Show only the current project"
    19822051msgstr "Mostrar sólo el proyecto actual"
    19832052
    1984 #: includes/admin/options/class-up-options-general.php:745
     2053#: includes/admin/options/class-up-options-general.php:773
    19852054msgid "Show all projects"
    19862055msgstr "Mostrar todos los proyectos"
    19872056
    1988 #: includes/admin/options/class-up-options-general.php:749
     2057#: includes/admin/options/class-up-options-general.php:777
     2058msgid "Override project locking on front end"
     2059msgstr "Reemplazar el bloqueo del proyecto en la parte delantera"
     2060
     2061#: includes/admin/options/class-up-options-general.php:780
     2062msgid ""
     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."
     2067msgstr ""
     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
     2075msgid "Users cannot edit simultaneously (safe)"
     2076msgstr "Los usuarios no pueden editar simultáneamente (seguro)"
     2077
     2078#: includes/admin/options/class-up-options-general.php:785
     2079msgid "Multiple users can edit a project simultaneously"
     2080msgstr "Varios usuarios pueden editar un proyecto simultáneamente"
     2081
     2082#: includes/admin/options/class-up-options-general.php:789
    19892083#, fuzzy
    19902084msgid "Send Notifications for New Comments"
    19912085msgstr "Enviar notificaciones para nuevos comentarios"
    19922086
    1993 #: includes/admin/options/class-up-options-general.php:753
    1994 #: includes/admin/options/class-up-options-general.php:866
    1995 #: includes/admin/options/class-up-options-general.php:880
     2087#: 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
    19962090#: includes/admin/options/class-up-options-milestones.php:108
    19972091msgid "Enabled"
    19982092msgstr "Habilitado"
    19992093
    2000 #: includes/admin/options/class-up-options-general.php:754
     2094#: includes/admin/options/class-up-options-general.php:794
    20012095#: includes/admin/options/class-up-options-milestones.php:109
    20022096msgid "Disabled"
    20032097msgstr "Desactivado"
    20042098
    2005 #: includes/admin/options/class-up-options-general.php:757
     2099#: includes/admin/options/class-up-options-general.php:797
    20062100#, fuzzy
    20072101msgid ""
     
    20122106"hito, tarea o fallo cuando alguien lo comente."
    20132107
    2014 #: includes/admin/options/class-up-options-general.php:763
     2108#: includes/admin/options/class-up-options-general.php:803
    20152109msgid "Localization"
    20162110msgstr "Localización"
    20172111
    2018 #: includes/admin/options/class-up-options-general.php:767
     2112#: includes/admin/options/class-up-options-general.php:807
    20192113#, fuzzy
    20202114msgid "General options for localization, such as times."
    20212115msgstr "Opciones generales de localización, como las horas."
    20222116
    2023 #: includes/admin/options/class-up-options-general.php:771
     2117#: includes/admin/options/class-up-options-general.php:811
    20242118#, fuzzy
    20252119msgid "Work Hours Per Day"
    20262120msgstr "Horas de trabajo por día"
    20272121
    2028 #: includes/admin/options/class-up-options-general.php:774
     2122#: includes/admin/options/class-up-options-general.php:814
    20292123#, fuzzy
    20302124msgid "The number of work hours per day (used in determining days of work)."
     
    20332127"trabajo)."
    20342128
    2035 #: includes/admin/options/class-up-options-general.php:778
     2129#: includes/admin/options/class-up-options-general.php:818
    20362130msgid "Currency Symbol"
    20372131msgstr "Símbolo de moneda"
    20382132
    2039 #: includes/admin/options/class-up-options-general.php:781
     2133#: includes/admin/options/class-up-options-general.php:821
    20402134#, fuzzy
    20412135msgid "The local currency symbol."
    20422136msgstr "El símbolo de la moneda local."
    20432137
    2044 #: includes/admin/options/class-up-options-general.php:789
     2138#: includes/admin/options/class-up-options-general.php:829
    20452139msgid "Maintenance"
    20462140msgstr "Mantenimiento"
    20472141
    2048 #: includes/admin/options/class-up-options-general.php:793
     2142#: includes/admin/options/class-up-options-general.php:833
    20492143#, fuzzy
    20502144msgid ""
     
    20552149"cualquiera de estas opciones."
    20562150
    2057 #: includes/admin/options/class-up-options-general.php:797
     2151#: includes/admin/options/class-up-options-general.php:837
    20582152#, fuzzy
    20592153msgid "Add default UpStream capabilities"
    20602154msgstr "Añadir capacidades predeterminadas de UpStream"
    20612155
    2062 #: includes/admin/options/class-up-options-general.php:802
     2156#: includes/admin/options/class-up-options-general.php:842
    20632157msgid "Administrator"
    20642158msgstr "Administrador"
    20652159
    2066 #: includes/admin/options/class-up-options-general.php:803
     2160#: includes/admin/options/class-up-options-general.php:843
    20672161#: includes/class-up-roles.php:45
    20682162#, fuzzy
     
    20702164msgstr "Administrador de UpStream"
    20712165
    2072 #: includes/admin/options/class-up-options-general.php:804
    2073 #: includes/class-up-roles.php:80 upstream.php:616
     2166#: includes/admin/options/class-up-options-general.php:844
     2167#: includes/class-up-roles.php:80 upstream.php:549
    20742168msgid "UpStream User"
    20752169msgstr "Usuario UpStream"
    20762170
    2077 #: includes/admin/options/class-up-options-general.php:814
     2171#: includes/admin/options/class-up-options-general.php:854
    20782172#, fuzzy
    20792173msgid ""
     
    20872181"puede deshacer."
    20882182
    2089 #: includes/admin/options/class-up-options-general.php:821
     2183#: includes/admin/options/class-up-options-general.php:861
    20902184msgid "Update Project Data"
    20912185msgstr "Actualizar los datos del plan"
    20922186
    2093 #: includes/admin/options/class-up-options-general.php:824
     2187#: includes/admin/options/class-up-options-general.php:864
    20942188msgid "Update"
    20952189msgstr "Actualizar"
    20962190
    2097 #: includes/admin/options/class-up-options-general.php:826
     2191#: includes/admin/options/class-up-options-general.php:866
    20982192#, fuzzy
    20992193msgid ""
     
    21082202"algún tiempo si tiene muchos proyectos."
    21092203
    2110 #: includes/admin/options/class-up-options-general.php:833
     2204#: includes/admin/options/class-up-options-general.php:873
    21112205#, fuzzy
    21122206msgid "Migrate Legacy Milestones"
    21132207msgstr "Migración de hitos heredados"
    21142208
    2115 #: includes/admin/options/class-up-options-general.php:836
     2209#: includes/admin/options/class-up-options-general.php:876
    21162210#, fuzzy
    21172211msgid "Start migration"
    21182212msgstr "Iniciar la migración"
    21192213
    2120 #: includes/admin/options/class-up-options-general.php:838
     2214#: includes/admin/options/class-up-options-general.php:878
    21212215msgid ""
    21222216"Clicking this button will force to migrate again all the legacy milestones "
     
    21312225"tiene muchos proyectos."
    21322226
    2133 #: includes/admin/options/class-up-options-general.php:845
     2227#: includes/admin/options/class-up-options-general.php:885
    21342228#, fuzzy
    21352229msgid "Cleanup Plugin's Update Cache"
    21362230msgstr "Caché de actualización del plugin de limpieza"
    21372231
    2138 #: includes/admin/options/class-up-options-general.php:848
     2232#: includes/admin/options/class-up-options-general.php:888
    21392233msgid "Cleanup"
    21402234msgstr "Limpieza"
    21412235
    2142 #: includes/admin/options/class-up-options-general.php:850
     2236#: includes/admin/options/class-up-options-general.php:890
    21432237#, fuzzy
    21442238msgid ""
     
    21492243"haga clic en este botón y verá las nuevas versiones de los plugins."
    21502244
    2151 #: includes/admin/options/class-up-options-general.php:857
     2245#: includes/admin/options/class-up-options-general.php:897
    21522246msgid "Debug"
    21532247msgstr "Depurar"
    21542248
    2155 #: includes/admin/options/class-up-options-general.php:861
     2249#: includes/admin/options/class-up-options-general.php:901
    21562250#, fuzzy
    21572251msgid ""
     
    21622256"nuevo menú para inspeccionar la información de depuración."
    21632257
    2164 #: includes/admin/options/class-up-options-general.php:871
     2258#: includes/admin/options/class-up-options-general.php:911
    21652259msgid "Beta Features"
    21662260msgstr "Características de beta"
    21672261
    2168 #: includes/admin/options/class-up-options-general.php:875
     2262#: includes/admin/options/class-up-options-general.php:915
    21692263#, fuzzy
    21702264msgid "Ticking this box will enable beta features."
    21712265msgstr "Al marcar esta casilla se habilitarán las características beta."
    21722266
    2173 #: includes/admin/options/class-up-options-general.php:885
     2267#: includes/admin/options/class-up-options-general.php:925
    21742268msgid "Remove Data"
    21752269msgstr "Eliminar datos"
    21762270
    2177 #: includes/admin/options/class-up-options-general.php:889
     2271#: includes/admin/options/class-up-options-general.php:929
    21782272#, fuzzy
    21792273msgid ""
     
    21832277"desinstale el plugin."
    21842278
    2185 #: includes/admin/options/class-up-options-general.php:894
     2279#: includes/admin/options/class-up-options-general.php:934
    21862280msgid "Remove all data on uninstall?"
    21872281msgstr "¿eliminar todos los datos al desinstalar?"
    21882282
    2189 #: includes/admin/options/class-up-options-general.php:948
    2190 #: includes/admin/options/class-up-options-general.php:952
    2191 #: includes/admin/options/class-up-options-general.php:966
    2192 #: includes/admin/options/class-up-options-general.php:970
    2193 #: includes/admin/options/class-up-options-general.php:1125
    2194 #: includes/admin/options/class-up-options-general.php:1129
    2195 #: includes/admin/options/class-up-options-general.php:1160
    2196 #: includes/admin/options/class-up-options-general.php:1164
     2283#: 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
    21972291msgid "Invalid Nonce"
    21982292msgstr "Noción inválida"
    21992293
    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
     2295msgid "Invalid File"
     2296msgstr "Archivo Inválido"
     2297
     2298#: includes/admin/options/class-up-options-general.php:1023
     2299#: includes/admin/options/class-up-options-general.php:1066
    22022300#, fuzzy
    22032301msgid "You must be an administrator to import data."
    22042302msgstr "Debe ser un administrador para importar datos."
    22052303
    2206 #: includes/admin/options/class-up-options-general.php:982
     2304#: includes/admin/options/class-up-options-general.php:1026
    22072305msgid "No file found."
    22082306msgstr "Archivo no encontrado."
    22092307
    2210 #: includes/admin/options/class-up-options-general.php:1039
     2308#: includes/admin/options/class-up-options-general.php:1085
    22112309msgid "The file could not be found."
    22122310msgstr "No se pudo encontrar el archivo."
    22132311
    2214 #: includes/admin/options/class-up-options-general.php:1044
     2312#: includes/admin/options/class-up-options-general.php:1090
    22152313#, fuzzy
    22162314msgid "A general error occurred."
    22172315msgstr "Se produjo un error general."
    22182316
    2219 #: includes/admin/options/class-up-options-general.php:1170
     2317#: includes/admin/options/class-up-options-general.php:1216
    22202318#, fuzzy
    22212319msgid "Invalid project id"
     
    23852483msgstr "Plural"
    23862484
    2387 #: includes/admin/up-enqueues.php:56
     2485#: includes/admin/up-enqueues.php:57
    23882486msgid "Resetting..."
    23892487msgstr "Restableciendo ..."
    23902488
    2391 #: includes/admin/up-enqueues.php:57
     2489#: includes/admin/up-enqueues.php:58
    23922490msgid "Refreshing..."
    23932491msgstr "Refrescando…"
    23942492
    2395 #: includes/admin/up-enqueues.php:58
     2493#: includes/admin/up-enqueues.php:59
    23962494msgid "Are you sure you want to reset the capabilities?"
    23972495msgstr "¿Seguro de restablecer las capacidades?"
    23982496
    2399 #: includes/admin/up-enqueues.php:59
     2497#: includes/admin/up-enqueues.php:60
    24002498msgid "Are you sure you want to refresh the projects meta data?"
    24012499msgstr "¿Seguro de actualizar los metadatos del plan?"
    24022500
    2403 #: includes/admin/up-enqueues.php:61
     2501#: includes/admin/up-enqueues.php:62
    24042502msgid "Are you sure you want to cleanup the cached data about updates?"
    24052503msgstr "¿Seguro de limpiar los datos en caché de las actualizaciones?"
    24062504
    2407 #: includes/admin/up-enqueues.php:63
     2505#: includes/admin/up-enqueues.php:64
    24082506#, fuzzy
    24092507msgid ""
     
    24142512"HECHO UNA COPIA DE SEGURIDAD DE TUS DATOS PRIMERO!"
    24152513
    2416 #: includes/admin/up-enqueues.php:64 includes/admin/up-enqueues.php:66
     2514#: includes/admin/up-enqueues.php:65 includes/admin/up-enqueues.php:67
    24172515msgid "Success!"
    24182516msgstr "Correcto!"
    24192517
    2420 #: includes/admin/up-enqueues.php:65 includes/admin/up-enqueues.php:67
     2518#: includes/admin/up-enqueues.php:66 includes/admin/up-enqueues.php:68
    24212519msgid "Error!"
    24222520msgstr "Error!"
    24232521
    2424 #: includes/admin/up-enqueues.php:68
     2522#: includes/admin/up-enqueues.php:69
    24252523#, fuzzy
    24262524msgid "Error cleaning up the cached data!"
    24272525msgstr "Error al limpiar los datos de la caché!"
    24282526
    2429 #: includes/admin/up-enqueues.php:69
     2527#: includes/admin/up-enqueues.php:70
    24302528#, fuzzy
    24312529msgid "Error importing data!"
    24322530msgstr "Error al importar los datos!"
    24332531
    2434 #: includes/admin/up-enqueues.php:113
     2532#: includes/admin/up-enqueues.php:114
    24352533msgid "Cancel"
    24362534msgstr "Cancelar"
    24372535
    2438 #: includes/admin/up-enqueues.php:114
     2536#: includes/admin/up-enqueues.php:115
    24392537msgid "Add Reply"
    24402538msgstr "Añadir respuesta"
    24412539
    2442 #: includes/admin/up-enqueues.php:118
     2540#: includes/admin/up-enqueues.php:119
    24432541#, fuzzy
    24442542msgid "Add Comment Reply"
    24452543msgstr "Agregar comentario Responder"
    24462544
    2447 #: includes/admin/up-enqueues.php:119 includes/admin/up-enqueues.php:164
     2545#: includes/admin/up-enqueues.php:120 includes/admin/up-enqueues.php:165
    24482546msgid "Adding..."
    24492547msgstr "Añadiendo..."
    24502548
    2451 #: includes/admin/up-enqueues.php:120
     2549#: includes/admin/up-enqueues.php:121
    24522550#, fuzzy
    24532551msgid "Replying..."
    24542552msgstr "Respondiendo...."
    24552553
    2456 #: includes/admin/up-enqueues.php:122
     2554#: includes/admin/up-enqueues.php:123
    24572555msgid "Deleting..."
    24582556msgstr "Eliminando …"
    24592557
    2460 #: includes/admin/up-enqueues.php:124
     2558#: includes/admin/up-enqueues.php:125
    24612559msgid "Unapproving..."
    24622560msgstr "Desaprobar...."
    24632561
    2464 #: includes/admin/up-enqueues.php:126
     2562#: includes/admin/up-enqueues.php:127
    24652563msgid "Approving..."
    24662564msgstr "Aprobando..."
    24672565
    2468 #: includes/admin/up-enqueues.php:127 includes/admin/up-enqueues.php:165
     2566#: includes/admin/up-enqueues.php:128 includes/admin/up-enqueues.php:166
    24692567msgid "Are you sure? This action cannot be undone."
    24702568msgstr "¿Está seguro? Esta acción no se puede deshacer."
    24712569
    2472 #: includes/admin/up-enqueues.php:129
     2570#: includes/admin/up-enqueues.php:130
    24732571#, fuzzy
    24742572msgid "This comment is not visible by regular users."
    24752573msgstr "Este comentario no es visible para los usuarios habituales."
    24762574
    2477 #: includes/admin/up-enqueues.php:132
     2575#: includes/admin/up-enqueues.php:133
    24782576#, fuzzy
    24792577msgid "Title can't be empty"
    24802578msgstr "El título no puede estar vacío"
    24812579
    2482 #: includes/admin/up-enqueues.php:133
     2580#: includes/admin/up-enqueues.php:134
    24832581#, fuzzy
    24842582msgid "Invalid interval between dates."
    24852583msgstr "Intervalo no válido entre fechas."
    24862584
    2487 #: includes/admin/up-enqueues.php:135
     2585#: includes/admin/up-enqueues.php:136 includes/frontend/up-enqueues.php:286
    24882586msgid "No results"
    24892587msgstr "No hay resultados"
    24902588
    2491 #: includes/admin/up-enqueues.php:158
     2589#: includes/admin/up-enqueues.php:159
    24922590#, fuzzy
    24932591msgid "UpStream requires jQuery."
    24942592msgstr "UpStream requiere jQuery."
    24952593
    2496 #: includes/admin/up-enqueues.php:159
     2594#: includes/admin/up-enqueues.php:160
    24972595#, fuzzy
    24982596msgid "There's no users assigned yet."
    24992597msgstr "Aún no hay usuarios asignados."
    25002598
    2501 #: includes/admin/up-enqueues.php:160
     2599#: includes/admin/up-enqueues.php:161
    25022600msgid "Please, select at least one user"
    25032601msgstr "Por favor seleccione al menos un usuario"
    25042602
    2505 #: includes/admin/up-enqueues.php:161
     2603#: includes/admin/up-enqueues.php:162
    25062604#, fuzzy
    25072605msgid "Add 1 User"
    25082606msgstr "Añadir 1 usuario"
    25092607
    2510 #: includes/admin/up-enqueues.php:162
     2608#: includes/admin/up-enqueues.php:163
    25112609#, fuzzy, php-format
    25122610msgid "Add %d Users"
    25132611msgstr "Añadir %d Usuarios"
    25142612
    2515 #: includes/admin/up-enqueues.php:166
     2613#: includes/admin/up-enqueues.php:167
    25162614msgid "Fetching data..."
    25172615msgstr "Obteniendo datos..."
    25182616
    2519 #: includes/admin/up-enqueues.php:167
     2617#: includes/admin/up-enqueues.php:168
    25202618msgid "No data found."
    25212619msgstr "Ningún dato encontrado."
    25222620
    2523 #: includes/admin/up-enqueues.php:168
     2621#: includes/admin/up-enqueues.php:169
    25242622#, fuzzy, php-format
    25252623msgid "Managing %s\\'s Permissions"
     
    25322630
    25332631#: includes/class-up-comment.php:295 includes/class-up-comment.php:305
    2534 #: includes/class-up-comments.php:650
     2632#: includes/class-up-comments.php:653
    25352633#, fuzzy
    25362634msgid "Unable to save the data into database."
     
    25412639msgstr "Artículo no válido."
    25422640
    2543 #: includes/class-up-comments.php:273 includes/class-up-comments.php:777
     2641#: includes/class-up-comments.php:274 includes/class-up-comments.php:781
    25442642msgid "Invalid nonce."
    25452643msgstr "Mientras tanto no es válido."
    25462644
    2547 #: includes/class-up-comments.php:284 includes/class-up-comments.php:407
    2548 #: includes/class-up-comments.php:782
     2645#: includes/class-up-comments.php:285 includes/class-up-comments.php:409
     2646#: includes/class-up-comments.php:786
    25492647#, fuzzy
    25502648msgid "Commenting is disabled on this project."
    25512649msgstr "Comentar está desactivado en este proyecto."
    25522650
    2553 #: includes/class-up-comments.php:487 includes/class-up-comments.php:640
     2651#: includes/class-up-comments.php:489 includes/class-up-comments.php:642
    25542652#, fuzzy
    25552653msgid "Comments are disabled for this project."
    25562654msgstr "Los comentarios están desactivados para este proyecto."
    25572655
    2558 #: includes/class-up-comments.php:501
     2656#: includes/class-up-comments.php:503
    25592657msgctxt "Removing a comment in projects"
    25602658msgid "Comment not found."
    25612659msgstr "Comentario no encontrado."
    25622660
    2563 #: includes/class-up-comments.php:515
     2661#: includes/class-up-comments.php:517
    25642662#, fuzzy
    25652663msgid "It wasn't possible to delete this comment."
    25662664msgstr "No fue posible borrar este comentario."
    25672665
    2568 #: includes/class-up-comments.php:635
     2666#: includes/class-up-comments.php:637
    25692667#, fuzzy, php-format
    25702668msgid "Invalid \"%s\" parameter."
    25712669msgstr "Parámetro \"%s\" no válido."
    25722670
    2573 #: includes/class-up-comments.php:645
     2671#: includes/class-up-comments.php:648
    25742672msgid "Comment not found."
    25752673msgstr "Comentario no encontrado."
    25762674
    2577 #: includes/class-up-comments.php:1225
     2675#: includes/class-up-comments.php:1229
    25782676#, php-format
    25792677msgctxt "Comment notification subject"
     
    25812679msgstr "Nuevo comentario en %s"
    25822680
    2583 #: includes/class-up-comments.php:1271
     2681#: includes/class-up-comments.php:1275
    25842682msgid "Item Title: "
    25852683msgstr "Título del elemento: "
    25862684
    2587 #: includes/class-up-comments.php:1279
     2685#: includes/class-up-comments.php:1283
    25882686msgid "Item Type: "
    25892687msgstr "Tipo del elemento: "
     
    26562754"deshacer. "
    26572755
    2658 #: includes/class-up-debug.php:239
     2756#: includes/class-up-debug.php:263
    26592757#, fuzzy
    26602758msgid "Action nonce not found."
    26612759msgstr "Acción nonce no encontrada."
    26622760
    2663 #: includes/class-up-debug.php:246
     2761#: includes/class-up-debug.php:270
    26642762#, fuzzy
    26652763msgid "Invalid action nonce."
    26662764msgstr "Acción inválida nonce."
    26672765
    2668 #: includes/class-up-import.php:74 includes/class-up-import.php:102
     2766#: includes/class-up-import.php:76 includes/class-up-import.php:103
    26692767#, fuzzy
    26702768msgid "Error loading file: line "
    26712769msgstr "Error al cargar el archivo: línea"
    26722770
    2673 #: includes/class-up-import.php:153
     2771#: includes/class-up-import.php:154
    26742772#, fuzzy, php-format
    26752773msgid "Project with ID %s does not exist."
    26762774msgstr "El proyecto con ID %s no existe."
    26772775
    2678 #: includes/class-up-import.php:175
     2776#: includes/class-up-import.php:176
    26792777#, fuzzy, php-format
    26802778msgid "Milestone with ID %s does not exist."
    26812779msgstr "Este hito ya no existe."
    26822780
    2683 #: includes/class-up-import.php:233
     2781#: includes/class-up-import.php:234
    26842782#, fuzzy, php-format
    26852783msgid "Item %s with ID %s does not exist."
    26862784msgstr "No existe el %s con el %s de identificación."
    26872785
    2688 #: includes/class-up-import.php:345
     2786#: includes/class-up-import.php:346
    26892787#, fuzzy, php-format
    26902788msgid "(column %s, field %s)"
    26912789msgstr "(columna %s, campo %s)"
    26922790
    2693 #: includes/class-up-import.php:376
     2791#: includes/class-up-import.php:377
    26942792#, fuzzy, php-format
    26952793msgid ""
     
    26992797"(ejemplo: project.title)."
    27002798
    2701 #: includes/class-up-import.php:384
    2702 #: includes/model/UpStream_Model_Manager.php:18
    2703 #: includes/model/UpStream_Model_Manager.php:159
    2704 #: includes/model/UpStream_Model_Manager.php:193
     2799#: 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
    27052803#, fuzzy, php-format
    27062804msgid "Item type %s is not valid."
     
    27182816msgstr "Añadir nuevo %s"
    27192817
    2720 #: includes/class-up-milestones.php:230 includes/up-post-types.php:220
     2818#: includes/class-up-milestones.php:230 includes/up-post-types.php:222
    27212819#, php-format
    27222820msgid "Edit %s"
     
    27332831msgstr "Ver %s"
    27342832
    2735 #: includes/class-up-milestones.php:234 includes/up-post-types.php:214
     2833#: includes/class-up-milestones.php:234 includes/up-post-types.php:216
    27362834#, php-format
    27372835msgid "Search %s"
     
    27532851msgstr "Superior %s:"
    27542852
    2755 #: includes/class-up-milestones.php:238 includes/up-post-types.php:228
     2853#: includes/class-up-milestones.php:238 includes/up-post-types.php:230
    27562854#, php-format
    27572855msgid "%s"
     
    27942892msgstr "Usar como imagen destacada"
    27952893
    2796 #: includes/class-up-milestones.php:340 includes/class-up-milestones.php:437
     2894#: includes/class-up-milestones.php:340 includes/class-up-milestones.php:558
    27972895#: includes/up-labels.php:22
    27982896msgid "Project"
     
    28052903msgstr "Color"
    28062904
    2807 #: includes/class-up-project-activity.php:372
     2905#: includes/class-up-project-activity.php:394
    28082906#, fuzzy, php-format
    28092907msgid "New: %s"
    28102908msgstr "Nuevo %s"
    28112909
    2812 #: includes/class-up-project-activity.php:378
     2910#: includes/class-up-project-activity.php:400
    28132911#, fuzzy, php-format
    28142912msgid "Edit: %s to %s"
    28152913msgstr "Edición: de %s a %s"
    28162914
    2817 #: includes/class-up-project-activity.php:415
     2915#: includes/class-up-project-activity.php:437
    28182916#, php-format
    28192917msgid "Deleted: %s"
    28202918msgstr "Eliminado %s"
    28212919
    2822 #: includes/class-up-project-activity.php:449
     2920#: includes/class-up-project-activity.php:471
    28232921#, fuzzy, php-format
    28242922msgid "New Item: %s"
    28252923msgstr "Nuevo Artículo: %s"
    28262924
    2827 #: includes/class-up-project-activity.php:471
     2925#: includes/class-up-project-activity.php:493
    28282926#, fuzzy, php-format
    28292927msgid "New: %s - %s on %s"
    28302928msgstr "Nuevo: %s - %s on %s"
    28312929
    2832 #: includes/class-up-project-activity.php:487
     2930#: includes/class-up-project-activity.php:509
    28332931#, fuzzy, php-format
    28342932msgid "Edit: %s from %s to %s on %s"
    28352933msgstr "Edición: %s de %s a %s sobre %s"
    28362934
    2837 #: includes/class-up-project.php:501
     2935#: includes/class-up-project.php:505
    28382936msgid "This project is being edited by "
    28392937msgstr "Este plan lo está editando "
    28402938
    2841 #: includes/class-up-report.php:499
     2939#: includes/class-up-report.php:490
    28422940#, fuzzy
    28432941#| msgid "Project Label"
     
    28472945#: includes/frontend/class-up-login.php:92
    28482946#, fuzzy
    2849 msgid "Email address field cannot be empty."
     2947msgid "Email address/username field cannot be empty."
    28502948msgstr "El campo de dirección de correo electrónico no puede estar vacío."
    28512949
    28522950#: includes/frontend/class-up-login.php:94
     2951#, fuzzy
     2952#| msgid "Invalid email address."
     2953msgid "Invalid email address/username."
     2954msgstr "Correo electrónico no valido."
     2955
     2956#: includes/frontend/class-up-login.php:97
     2957msgid "Password field cannot be empty."
     2958msgstr "El campo de contraseña no puede estar vacío."
     2959
    28532960#: 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
    28582964msgid "Invalid email address and/or password."
    28592965msgstr "Dirección de correo electrónico o contraseña no válida."
    28602966
    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."
     2970msgid "Invalid user/email address and/or password."
     2971msgstr "Dirección de correo electrónico o contraseña no válida."
     2972
     2973#: includes/frontend/class-up-login.php:161
    28672974#, fuzzy
    28682975msgid "You don't have enough permissions to log in here."
    28692976msgstr "No tienes suficientes permisos para entrar aquí."
    28702977
    2871 #: includes/frontend/class-up-login.php:166
     2978#: includes/frontend/class-up-login.php:188
    28722979#, fuzzy
    28732980msgid "Sorry, you are not allowed to access this project."
    28742981msgstr "Lo sentimos, no se le permite acceder a este proyecto."
    28752982
    2876 #: includes/frontend/class-up-login.php:267
     2983#: includes/frontend/class-up-login.php:289
    28772984#, fuzzy
    28782985msgid "You were just logged out."
    28792986msgstr "Acabas de cerrar la sesión."
    28802987
    2881 #: includes/frontend/up-enqueues.php:149 includes/frontend/up-enqueues.php:165
     2988#: includes/frontend/up-enqueues.php:215 includes/frontend/up-enqueues.php:231
    28822989#, php-format
    28832990msgctxt "%s: item name, ie Milestones, Tasks, Bugs, Files, Discussion"
     
    28852992msgstr "No has creado ningún %s todavía"
    28862993
    2887 #: includes/frontend/up-enqueues.php:161
     2994#: includes/frontend/up-enqueues.php:227
    28882995msgid "Copy"
    28892996msgstr "Copiar"
    28902997
    2891 #: includes/frontend/up-enqueues.php:162 templates/archive-project.php:76
     2998#: includes/frontend/up-enqueues.php:228 templates/archive-project.php:79
    28922999#: templates/global/sidebar.php:28 templates/single-project/bugs.php:144
    28933000#: templates/single-project/bugs.php:177 templates/single-project/files.php:118
     
    29003007msgstr "CSV"
    29013008
    2902 #: includes/frontend/up-enqueues.php:163
     3009#: includes/frontend/up-enqueues.php:229
    29033010msgid "Search:"
    29043011msgstr "Buscar:"
    29053012
    2906 #: includes/frontend/up-enqueues.php:174
     3013#: includes/frontend/up-enqueues.php:240
    29073014msgid "Sunday"
    29083015msgstr "Domingo"
    29093016
    2910 #: includes/frontend/up-enqueues.php:175
     3017#: includes/frontend/up-enqueues.php:241
    29113018msgid "Monday"
    29123019msgstr "Lunes"
    29133020
    2914 #: includes/frontend/up-enqueues.php:176
     3021#: includes/frontend/up-enqueues.php:242
    29153022msgid "Tuesday"
    29163023msgstr "Martes"
    29173024
    2918 #: includes/frontend/up-enqueues.php:177
     3025#: includes/frontend/up-enqueues.php:243
    29193026msgid "Wednesday"
    29203027msgstr "Miércoles"
    29213028
    2922 #: includes/frontend/up-enqueues.php:178
     3029#: includes/frontend/up-enqueues.php:244
    29233030msgid "Thursday"
    29243031msgstr "Jueves"
    29253032
    2926 #: includes/frontend/up-enqueues.php:179
     3033#: includes/frontend/up-enqueues.php:245
    29273034msgid "Friday"
    29283035msgstr "Viernes"
    29293036
    2930 #: includes/frontend/up-enqueues.php:180
     3037#: includes/frontend/up-enqueues.php:246
    29313038msgid "Saturday"
    29323039msgstr "Sábado"
    29333040
    2934 #: includes/frontend/up-enqueues.php:181
     3041#: includes/frontend/up-enqueues.php:247
    29353042msgid "Sun"
    29363043msgstr "Dom"
    29373044
    2938 #: includes/frontend/up-enqueues.php:182
     3045#: includes/frontend/up-enqueues.php:248
    29393046msgid "Mon"
    29403047msgstr "Lun"
    29413048
    2942 #: includes/frontend/up-enqueues.php:183
     3049#: includes/frontend/up-enqueues.php:249
    29433050msgid "Tue"
    29443051msgstr "Mar"
    29453052
    2946 #: includes/frontend/up-enqueues.php:184
     3053#: includes/frontend/up-enqueues.php:250
    29473054msgid "Wed"
    29483055msgstr "Mie"
    29493056
    2950 #: includes/frontend/up-enqueues.php:185
     3057#: includes/frontend/up-enqueues.php:251
    29513058msgid "Thu"
    29523059msgstr "Jue"
    29533060
    2954 #: includes/frontend/up-enqueues.php:186
     3061#: includes/frontend/up-enqueues.php:252
    29553062msgid "Fri"
    29563063msgstr "Vie"
    29573064
    2958 #: includes/frontend/up-enqueues.php:187
     3065#: includes/frontend/up-enqueues.php:253
    29593066msgid "Sat"
    29603067msgstr "Sab"
    29613068
    2962 #: includes/frontend/up-enqueues.php:188
     3069#: includes/frontend/up-enqueues.php:254
    29633070msgid "Su"
    29643071msgstr "Do"
    29653072
    2966 #: includes/frontend/up-enqueues.php:189
     3073#: includes/frontend/up-enqueues.php:255
    29673074msgid "Mo"
    29683075msgstr "Lu"
    29693076
    2970 #: includes/frontend/up-enqueues.php:190
     3077#: includes/frontend/up-enqueues.php:256
    29713078msgid "Tu"
    29723079msgstr "Ma"
    29733080
    2974 #: includes/frontend/up-enqueues.php:191
     3081#: includes/frontend/up-enqueues.php:257
    29753082msgid "We"
    29763083msgstr "Mi"
    29773084
    2978 #: includes/frontend/up-enqueues.php:192
     3085#: includes/frontend/up-enqueues.php:258
    29793086msgid "Th"
    29803087msgstr "Ju"
    29813088
    2982 #: includes/frontend/up-enqueues.php:193
     3089#: includes/frontend/up-enqueues.php:259
    29833090msgid "Fr"
    29843091msgstr "Vi"
    29853092
    2986 #: includes/frontend/up-enqueues.php:194
     3093#: includes/frontend/up-enqueues.php:260
    29873094msgid "Sa"
    29883095msgstr "Sa"
    29893096
    2990 #: includes/frontend/up-enqueues.php:195
     3097#: includes/frontend/up-enqueues.php:261
    29913098msgid "January"
    29923099msgstr "Enero"
    29933100
    2994 #: includes/frontend/up-enqueues.php:196
     3101#: includes/frontend/up-enqueues.php:262
    29953102msgid "February"
    29963103msgstr "Febrero"
    29973104
    2998 #: includes/frontend/up-enqueues.php:197
     3105#: includes/frontend/up-enqueues.php:263
    29993106msgid "March"
    30003107msgstr "Marzo"
    30013108
    3002 #: includes/frontend/up-enqueues.php:198
     3109#: includes/frontend/up-enqueues.php:264
    30033110msgid "April"
    30043111msgstr "Abril"
    30053112
    3006 #: includes/frontend/up-enqueues.php:199
     3113#: includes/frontend/up-enqueues.php:265
    30073114msgid "May"
    30083115msgstr "Mayo"
    30093116
    3010 #: includes/frontend/up-enqueues.php:200
     3117#: includes/frontend/up-enqueues.php:266
    30113118msgid "June"
    30123119msgstr "Junio"
    30133120
    3014 #: includes/frontend/up-enqueues.php:201
     3121#: includes/frontend/up-enqueues.php:267
    30153122msgid "July"
    30163123msgstr "Julio"
    30173124
    3018 #: includes/frontend/up-enqueues.php:202
     3125#: includes/frontend/up-enqueues.php:268
    30193126msgid "August"
    30203127msgstr "Agosto"
    30213128
    3022 #: includes/frontend/up-enqueues.php:203
     3129#: includes/frontend/up-enqueues.php:269
    30233130msgid "September"
    30243131msgstr "Septiembre"
    30253132
    3026 #: includes/frontend/up-enqueues.php:204
     3133#: includes/frontend/up-enqueues.php:270
    30273134msgid "October"
    30283135msgstr "Octubre"
    30293136
    3030 #: includes/frontend/up-enqueues.php:205
     3137#: includes/frontend/up-enqueues.php:271
    30313138msgid "November"
    30323139msgstr "Noviembre"
    30333140
    3034 #: includes/frontend/up-enqueues.php:206
     3141#: includes/frontend/up-enqueues.php:272
    30353142msgid "December"
    30363143msgstr "Diciembre"
    30373144
    3038 #: includes/frontend/up-enqueues.php:207
     3145#: includes/frontend/up-enqueues.php:273
    30393146msgid "Jan"
    30403147msgstr "Ene"
    30413148
    3042 #: includes/frontend/up-enqueues.php:208
     3149#: includes/frontend/up-enqueues.php:274
    30433150msgid "Feb"
    30443151msgstr "Feb"
    30453152
    3046 #: includes/frontend/up-enqueues.php:209
     3153#: includes/frontend/up-enqueues.php:275
    30473154msgid "Mar"
    30483155msgstr "Mar"
    30493156
    3050 #: includes/frontend/up-enqueues.php:210
     3157#: includes/frontend/up-enqueues.php:276
    30513158msgid "Apr"
    30523159msgstr "Abr"
    30533160
    3054 #: includes/frontend/up-enqueues.php:211
     3161#: includes/frontend/up-enqueues.php:277
    30553162msgid "Jun"
    30563163msgstr "Jun"
    30573164
    3058 #: includes/frontend/up-enqueues.php:212
     3165#: includes/frontend/up-enqueues.php:278
    30593166msgid "Jul"
    30603167msgstr "Jul"
    30613168
    3062 #: includes/frontend/up-enqueues.php:213
     3169#: includes/frontend/up-enqueues.php:279
    30633170msgid "Aug"
    30643171msgstr "Ago"
    30653172
    3066 #: includes/frontend/up-enqueues.php:214
     3173#: includes/frontend/up-enqueues.php:280
    30673174msgid "Sep"
    30683175msgstr "Sep"
    30693176
    3070 #: includes/frontend/up-enqueues.php:215
     3177#: includes/frontend/up-enqueues.php:281
    30713178msgid "Oct"
    30723179msgstr "Oct"
    30733180
    3074 #: includes/frontend/up-enqueues.php:216
     3181#: includes/frontend/up-enqueues.php:282
    30753182msgid "Nov"
    30763183msgstr "Nov"
    30773184
    3078 #: includes/frontend/up-enqueues.php:217
     3185#: includes/frontend/up-enqueues.php:283
    30793186msgid "Dec"
    30803187msgstr "Dic"
    30813188
    3082 #: includes/frontend/up-enqueues.php:218
    3083 #: includes/libraries/cmb2/includes/CMB2_JS.php:224
     3189#: includes/frontend/up-enqueues.php:284
     3190#: includes/libraries/cmb2/includes/CMB2_JS.php:215
    30843191msgid "Today"
    30853192msgstr "Hoy"
    30863193
    3087 #: includes/frontend/up-enqueues.php:219
    3088 #: includes/libraries/cmb2/includes/CMB2_JS.php:178
    3089 #: includes/libraries/cmb2/includes/CMB2_JS.php:226
     3194#: includes/frontend/up-enqueues.php:285
     3195#: includes/libraries/cmb2/includes/CMB2_JS.php:172
     3196#: includes/libraries/cmb2/includes/CMB2_JS.php:217
    30903197msgid "Clear"
    30913198msgstr "Limpiar"
     
    31213228#: includes/frontend/up-table-functions.php:343
    31223229#: includes/frontend/up-table-functions.php:397
    3123 #: includes/model/UpStream_Model_File.php:159 includes/up-labels.php:69
     3230#: includes/model/UpStream_Model_File.php:175 includes/up-labels.php:69
    31243231#: templates/single-project/files.php:49
    31253232msgid "File"
     
    31273234
    31283235#: includes/frontend/up-table-functions.php:386
     3236#: includes/model/UpStream_Model_File.php:176
    31293237#: templates/single-project/files.php:50
    31303238msgid "Upload Date"
     
    31413249#: includes/frontend/up-table-functions.php:986
    31423250#, php-format
    3143 msgctxt "upstream"
    31443251msgid " %s found"
    31453252msgstr " %s encontrado"
    31463253
    3147 #: includes/frontend/up-template-functions.php:216
     3254#: includes/frontend/up-template-functions.php:247
    31483255msgid "Currently no files"
    31493256msgstr "Actualmente no hay archivos"
    31503257
    3151 #: includes/frontend/up-template-functions.php:237
     3258#: includes/frontend/up-template-functions.php:268
    31523259msgid "In reply to"
    31533260msgstr "En respuesta a"
     
    31603267#: includes/libraries/cmb2-grid/Test/Test.php:33
    31613268#: includes/libraries/cmb2-grid/Test/Test.php:108
    3162 #: includes/libraries/cmb2/example-functions.php:138
    3163 #: includes/libraries/cmb2/example-functions.php:478
     3269#: includes/libraries/cmb2/example-functions.php:148
     3270#: includes/libraries/cmb2/example-functions.php:492
    31643271msgid "Test Text"
    31653272msgstr "Probar Texto"
     
    31723279#: includes/libraries/cmb2-grid/Test/Test.php:127
    31733280#: includes/libraries/cmb2-grid/Test/Test.php:133
    3174 #: includes/libraries/cmb2/example-functions.php:139
    3175 #: includes/libraries/cmb2/example-functions.php:152
    3176 #: includes/libraries/cmb2/example-functions.php:165
    3177 #: includes/libraries/cmb2/example-functions.php:172
    3178 #: includes/libraries/cmb2/example-functions.php:185
    3179 #: includes/libraries/cmb2/example-functions.php:193
    3180 #: includes/libraries/cmb2/example-functions.php:202
    3181 #: includes/libraries/cmb2/example-functions.php:210
    3182 #: includes/libraries/cmb2/example-functions.php:225
    3183 #: includes/libraries/cmb2/example-functions.php:233
    3184 #: includes/libraries/cmb2/example-functions.php:241
    3185 #: includes/libraries/cmb2/example-functions.php:258
    3186 #: includes/libraries/cmb2/example-functions.php:267
    3187 #: includes/libraries/cmb2/example-functions.php:283
    3188 #: includes/libraries/cmb2/example-functions.php:290
    3189 #: includes/libraries/cmb2/example-functions.php:297
    3190 #: includes/libraries/cmb2/example-functions.php:322
    3191 #: includes/libraries/cmb2/example-functions.php:335
    3192 #: includes/libraries/cmb2/example-functions.php:348
    3193 #: includes/libraries/cmb2/example-functions.php:360
    3194 #: includes/libraries/cmb2/example-functions.php:369
    3195 #: includes/libraries/cmb2/example-functions.php:377
    3196 #: includes/libraries/cmb2/example-functions.php:386
    3197 #: includes/libraries/cmb2/example-functions.php:393
    3198 #: includes/libraries/cmb2/example-functions.php:407
    3199 #: includes/libraries/cmb2/example-functions.php:479
    3200 #: includes/libraries/cmb2/example-functions.php:573
    3201 #: includes/libraries/cmb2/example-functions.php:581
    3202 #: includes/libraries/cmb2/example-functions.php:588
    3203 #: includes/libraries/cmb2/example-functions.php:595
    3204 #: includes/libraries/cmb2/example-functions.php:602
    3205 #: includes/libraries/cmb2/example-functions.php:609
    3206 #: includes/libraries/cmb2/example-functions.php:616
    3207 #: includes/libraries/cmb2/example-functions.php:643
    3208 #: includes/libraries/cmb2/example-functions.php:651
    3209 #: includes/libraries/cmb2/example-functions.php:658
    3210 #: includes/libraries/cmb2/example-functions.php:709
     3281#: 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
    32113318msgid "field description (optional)"
    32123319msgstr "descripción del campo (opcional)"
     
    32143321#: includes/libraries/cmb2-grid/Test/Test.php:39
    32153322#: includes/libraries/cmb2-grid/Test/Test.php:114
    3216 #: includes/libraries/cmb2/example-functions.php:151
     3323#: includes/libraries/cmb2/example-functions.php:161
    32173324msgid "Test Text Small"
    32183325msgstr "Texto pequeño de prueba"
    32193326
    32203327#: includes/libraries/cmb2-grid/Test/Test.php:50
    3221 #: includes/libraries/cmb2/example-functions.php:508
     3328#: includes/libraries/cmb2/example-functions.php:521
    32223329msgid "Entry {#}"
    32233330msgstr "Entrada {#}"
    32243331
    32253332#: includes/libraries/cmb2-grid/Test/Test.php:51
    3226 #: includes/libraries/cmb2/example-functions.php:509
     3333#: includes/libraries/cmb2/example-functions.php:522
    32273334msgid "Add Another Entry"
    32283335msgstr "Agregar otra entrada"
    32293336
    32303337#: includes/libraries/cmb2-grid/Test/Test.php:57
    3231 #: includes/libraries/cmb2/example-functions.php:523
     3338#: includes/libraries/cmb2/example-functions.php:537
    32323339msgid "Entry Title"
    32333340msgstr "Título de la entrada"
    32343341
    32353342#: includes/libraries/cmb2-grid/Test/Test.php:63
    3236 #: includes/libraries/cmb2/example-functions.php:531
     3343#: includes/libraries/cmb2/example-functions.php:545
    32373344msgid "Write a short description for this entry"
    32383345msgstr "Escriba una descripción corta"
     
    32443351
    32453352#: includes/libraries/cmb2-grid/Test/Test.php:120
    3246 #: includes/libraries/cmb2/example-functions.php:164
     3353#: includes/libraries/cmb2/example-functions.php:174
    32473354msgid "Test Text Medium"
    32483355msgstr "Probar Texto Medio"
    32493356
    32503357#: includes/libraries/cmb2-grid/Test/Test.php:126
    3251 #: includes/libraries/cmb2/example-functions.php:192
     3358#: includes/libraries/cmb2/example-functions.php:202
    32523359msgid "Website URL"
    32533360msgstr "URL del Sitio Web"
    32543361
    32553362#: includes/libraries/cmb2-grid/Test/Test.php:132
    3256 #: includes/libraries/cmb2/example-functions.php:201
     3363#: includes/libraries/cmb2/example-functions.php:211
    32573364msgid "Test Text Email"
    32583365msgstr "Probar Texto de Email"
    32593366
    3260 #: includes/libraries/cmb2/example-functions.php:125
     3367#: includes/libraries/cmb2/example-functions.php:115
    32613368msgid "Test Metabox"
    32623369msgstr "Prueba Metabox"
    32633370
    3264 #: includes/libraries/cmb2/example-functions.php:171
     3371#: includes/libraries/cmb2/example-functions.php:181
    32653372msgid "Read-only Disabled Field"
    32663373msgstr "Campo deshabilitado de solo lectura"
    32673374
    3268 #: includes/libraries/cmb2/example-functions.php:175
     3375#: includes/libraries/cmb2/example-functions.php:185
    32693376msgid "Hey there, I'm a read-only field"
    32703377msgstr "Hola, soy un campo de solo lectura"
    32713378
    3272 #: includes/libraries/cmb2/example-functions.php:184
     3379#: includes/libraries/cmb2/example-functions.php:194
    32733380msgid "Custom Rendered Field"
    32743381msgstr "Campo Renderizado Personalizado"
    32753382
    3276 #: includes/libraries/cmb2/example-functions.php:209
     3383#: includes/libraries/cmb2/example-functions.php:219
    32773384msgid "Test Time"
    32783385msgstr "Probar Tiempo"
    32793386
    3280 #: includes/libraries/cmb2/example-functions.php:217
    3281 #: includes/libraries/cmb2/example-functions.php:218
     3387#: includes/libraries/cmb2/example-functions.php:227
     3388#: includes/libraries/cmb2/example-functions.php:228
    32823389msgid "Time zone"
    32833390msgstr "Zona Horaria"
    32843391
    3285 #: includes/libraries/cmb2/example-functions.php:224
     3392#: includes/libraries/cmb2/example-functions.php:234
    32863393msgid "Test Date Picker"
    32873394msgstr "Probar Herramienta de Tiempo"
    32883395
    3289 #: includes/libraries/cmb2/example-functions.php:232
     3396#: includes/libraries/cmb2/example-functions.php:242
    32903397msgid "Test Date Picker (UNIX timestamp)"
    32913398msgstr "Probar Herramienta de Tiempo (estilo UNIX)"
    32923399
    3293 #: includes/libraries/cmb2/example-functions.php:240
     3400#: includes/libraries/cmb2/example-functions.php:250
    32943401msgid "Test Date/Time Picker Combo (UNIX timestamp)"
    32953402msgstr "Probar Herramienta de Tiempo/Hora (estilo UNIX)"
    32963403
    3297 #: includes/libraries/cmb2/example-functions.php:257
     3404#: includes/libraries/cmb2/example-functions.php:267
    32983405msgid "Test Money"
    32993406msgstr "Dinero de prueba"
    33003407
    3301 #: includes/libraries/cmb2/example-functions.php:266
     3408#: includes/libraries/cmb2/example-functions.php:276
    33023409msgid "Test Color Picker"
    33033410msgstr "Probar Selector de Color"
    33043411
    3305 #: includes/libraries/cmb2/example-functions.php:282
     3412#: includes/libraries/cmb2/example-functions.php:292
    33063413msgid "Test Text Area"
    33073414msgstr "Probar Área de Texto"
    33083415
    3309 #: includes/libraries/cmb2/example-functions.php:289
     3416#: includes/libraries/cmb2/example-functions.php:299
    33103417msgid "Test Text Area Small"
    33113418msgstr "Probar Área Pequeña de Texto"
    33123419
    3313 #: includes/libraries/cmb2/example-functions.php:296
     3420#: includes/libraries/cmb2/example-functions.php:306
    33143421msgid "Test Text Area for Code"
    33153422msgstr "Probar Área de Texto para Código"
    33163423
    3317 #: includes/libraries/cmb2/example-functions.php:314
     3424#: includes/libraries/cmb2/example-functions.php:324
    33183425msgid "Test Title Weeeee"
    33193426msgstr "Probar Título Weeeee"
    33203427
    3321 #: includes/libraries/cmb2/example-functions.php:315
     3428#: includes/libraries/cmb2/example-functions.php:325
    33223429msgid "This is a title description"
    33233430msgstr "Esto es la descripción del título"
    33243431
    3325 #: includes/libraries/cmb2/example-functions.php:321
     3432#: includes/libraries/cmb2/example-functions.php:331
    33263433msgid "Test Select"
    33273434msgstr "Test Select"
    33283435
    3329 #: includes/libraries/cmb2/example-functions.php:327
    3330 #: includes/libraries/cmb2/example-functions.php:340
    3331 #: includes/libraries/cmb2/example-functions.php:352
     3436#: includes/libraries/cmb2/example-functions.php:337
     3437#: includes/libraries/cmb2/example-functions.php:350
     3438#: includes/libraries/cmb2/example-functions.php:362
    33323439msgid "Option One"
    33333440msgstr "Opción Uno"
    33343441
    3335 #: includes/libraries/cmb2/example-functions.php:328
    3336 #: includes/libraries/cmb2/example-functions.php:341
    3337 #: includes/libraries/cmb2/example-functions.php:353
     3442#: includes/libraries/cmb2/example-functions.php:338
     3443#: includes/libraries/cmb2/example-functions.php:351
     3444#: includes/libraries/cmb2/example-functions.php:363
    33383445msgid "Option Two"
    33393446msgstr "Opción Dos"
    33403447
    3341 #: includes/libraries/cmb2/example-functions.php:329
    3342 #: includes/libraries/cmb2/example-functions.php:342
    3343 #: includes/libraries/cmb2/example-functions.php:354
     3448#: includes/libraries/cmb2/example-functions.php:339
     3449#: includes/libraries/cmb2/example-functions.php:352
     3450#: includes/libraries/cmb2/example-functions.php:364
    33443451msgid "Option Three"
    33453452msgstr "Opción Tres"
    33463453
    3347 #: includes/libraries/cmb2/example-functions.php:334
     3454#: includes/libraries/cmb2/example-functions.php:344
    33483455msgid "Test Radio inline"
    33493456msgstr "Probar Radio inline"
    33503457
    3351 #: includes/libraries/cmb2/example-functions.php:347
     3458#: includes/libraries/cmb2/example-functions.php:357
    33523459msgid "Test Radio"
    33533460msgstr "Prueba de Radio"
    33543461
    3355 #: includes/libraries/cmb2/example-functions.php:359
     3462#: includes/libraries/cmb2/example-functions.php:369
    33563463msgid "Test Taxonomy Radio"
    33573464msgstr "Probar Taxonomía de Radio"
    33583465
    3359 #: includes/libraries/cmb2/example-functions.php:368
     3466#: includes/libraries/cmb2/example-functions.php:383
    33603467msgid "Test Taxonomy Select"
    33613468msgstr "Probar Selección de Taxonomía"
    33623469
    3363 #: includes/libraries/cmb2/example-functions.php:376
     3470#: includes/libraries/cmb2/example-functions.php:391
    33643471msgid "Test Taxonomy Multi Checkbox"
    33653472msgstr "Probar Multi Checkbox de Taxonomía"
    33663473
    3367 #: includes/libraries/cmb2/example-functions.php:385
     3474#: includes/libraries/cmb2/example-functions.php:400
    33683475msgid "Test Checkbox"
    33693476msgstr "Probar Checkbox"
    33703477
    3371 #: includes/libraries/cmb2/example-functions.php:392
     3478#: includes/libraries/cmb2/example-functions.php:407
    33723479msgid "Test Multi Checkbox"
    33733480msgstr "Test Multi Checkbox"
    33743481
    3375 #: includes/libraries/cmb2/example-functions.php:398
     3482#: includes/libraries/cmb2/example-functions.php:413
    33763483msgid "Check One"
    33773484msgstr "Marque uno"
    33783485
    3379 #: includes/libraries/cmb2/example-functions.php:399
     3486#: includes/libraries/cmb2/example-functions.php:414
    33803487msgid "Check Two"
    33813488msgstr "Seleccione dos"
    33823489
    3383 #: includes/libraries/cmb2/example-functions.php:400
     3490#: includes/libraries/cmb2/example-functions.php:415
    33843491msgid "Check Three"
    33853492msgstr "Seleccione tres"
    33863493
    3387 #: includes/libraries/cmb2/example-functions.php:406
     3494#: includes/libraries/cmb2/example-functions.php:421
    33883495msgid "Test wysiwyg"
    33893496msgstr "Probar wysiwyg"
    33903497
    3391 #: includes/libraries/cmb2/example-functions.php:416
     3498#: includes/libraries/cmb2/example-functions.php:431
    33923499msgid "Test Image"
    33933500msgstr "Prueba Imagen"
    33943501
    3395 #: includes/libraries/cmb2/example-functions.php:417
     3502#: includes/libraries/cmb2/example-functions.php:432
    33963503msgid "Upload an image or enter a URL."
    33973504msgstr "Sube una imagen o introduce una URL."
    33983505
    3399 #: includes/libraries/cmb2/example-functions.php:423
     3506#: includes/libraries/cmb2/example-functions.php:438
    34003507msgid "Multiple Files"
    34013508msgstr "Archivos múltiples"
    34023509
    3403 #: includes/libraries/cmb2/example-functions.php:424
     3510#: includes/libraries/cmb2/example-functions.php:439
    34043511msgid "Upload or add multiple images/attachments."
    34053512msgstr "Subir o añadir varias imágenes/adjuntos."
    34063513
    3407 #: includes/libraries/cmb2/example-functions.php:431
     3514#: includes/libraries/cmb2/example-functions.php:446
    34083515msgid "oEmbed"
    34093516msgstr "oEmbed"
    34103517
    34113518#. translators: %s: link to codex.wordpress.org/Embeds
    3412 #: includes/libraries/cmb2/example-functions.php:434
     3519#: includes/libraries/cmb2/example-functions.php:449
    34133520#, php-format
    34143521msgid ""
     
    34183525"enumerados en %s."
    34193526
    3420 #: includes/libraries/cmb2/example-functions.php:467
     3527#: includes/libraries/cmb2/example-functions.php:481
    34213528msgid "About Page Metabox"
    34223529msgstr "Acerca de la Página Metabox"
    34233530
    3424 #: includes/libraries/cmb2/example-functions.php:498
     3531#: includes/libraries/cmb2/example-functions.php:511
    34253532msgid "Repeating Field Group"
    34263533msgstr "Campo de Grupo que se repite"
    34273534
    3428 #: includes/libraries/cmb2/example-functions.php:506
     3535#: includes/libraries/cmb2/example-functions.php:519
    34293536msgid "Generates reusable form entries"
    34303537msgstr "Generar entradas de formulario reutilizables"
    34313538
    3432 #: includes/libraries/cmb2/example-functions.php:537
     3539#: includes/libraries/cmb2/example-functions.php:551
    34333540msgid "Entry Image"
    34343541msgstr "Imagen de la entrada"
    34353542
    3436 #: includes/libraries/cmb2/example-functions.php:543
     3543#: includes/libraries/cmb2/example-functions.php:557
    34373544msgid "Image Caption"
    34383545msgstr "Leyenda de la imagen"
    34393546
    3440 #: includes/libraries/cmb2/example-functions.php:562
     3547#: includes/libraries/cmb2/example-functions.php:575
    34413548msgid "User Profile Metabox"
    34423549msgstr "Perfil de usuario Metabox"
    34433550
    3444 #: includes/libraries/cmb2/example-functions.php:572
    3445 #: includes/libraries/cmb2/example-functions.php:642
     3551#: includes/libraries/cmb2/example-functions.php:582
     3552#: includes/libraries/cmb2/example-functions.php:651
    34463553msgid "Extra Info"
    34473554msgstr "Información Extra"
    34483555
    3449 #: includes/libraries/cmb2/example-functions.php:580
     3556#: includes/libraries/cmb2/example-functions.php:590
    34503557msgid "Avatar"
    34513558msgstr "Avatar"
    34523559
    3453 #: includes/libraries/cmb2/example-functions.php:587
     3560#: includes/libraries/cmb2/example-functions.php:597
    34543561msgid "Facebook URL"
    34553562msgstr "URL de Facebook"
    34563563
    3457 #: includes/libraries/cmb2/example-functions.php:594
     3564#: includes/libraries/cmb2/example-functions.php:604
    34583565msgid "Twitter URL"
    34593566msgstr "URL de Twitter"
    34603567
    3461 #: includes/libraries/cmb2/example-functions.php:601
     3568#: includes/libraries/cmb2/example-functions.php:611
    34623569msgid "Google+ URL"
    34633570msgstr "URL de Google+"
    34643571
    3465 #: includes/libraries/cmb2/example-functions.php:608
     3572#: includes/libraries/cmb2/example-functions.php:618
    34663573msgid "Linkedin URL"
    34673574msgstr "URL de LinkedIn"
    34683575
    3469 #: includes/libraries/cmb2/example-functions.php:615
     3576#: includes/libraries/cmb2/example-functions.php:625
    34703577msgid "User Field"
    34713578msgstr "Campo de usuario"
    34723579
    3473 #: includes/libraries/cmb2/example-functions.php:635
     3580#: includes/libraries/cmb2/example-functions.php:644
    34743581msgid "Category Metabox"
    34753582msgstr "Metabox de categoría"
    34763583
    3477 #: includes/libraries/cmb2/example-functions.php:650
     3584#: includes/libraries/cmb2/example-functions.php:659
    34783585msgid "Term Image"
    34793586msgstr "Imagen del término"
    34803587
    3481 #: includes/libraries/cmb2/example-functions.php:657
     3588#: includes/libraries/cmb2/example-functions.php:666
    34823589msgid "Arbitrary Term Field"
    34833590msgstr "Campo arbitrario por término"
    34843591
    3485 #: includes/libraries/cmb2/example-functions.php:676
     3592#: includes/libraries/cmb2/example-functions.php:685
    34863593msgid "Theme Options"
    34873594msgstr "Opciones del Tema"
    34883595
    3489 #: includes/libraries/cmb2/example-functions.php:708
     3596#: includes/libraries/cmb2/example-functions.php:715
    34903597msgid "Site Background Color"
    34913598msgstr "Color de fondo del sitio"
    34923599
    3493 #: includes/libraries/cmb2/example-functions.php:744
     3600#: includes/libraries/cmb2/example-functions.php:752
    34943601#, php-format
    34953602msgid "%s &mdash; Updated!"
    34963603msgstr "%s &mdash; ¡Actualizado!"
    34973604
    3498 #: includes/libraries/cmb2/example-functions.php:780
     3605#: includes/libraries/cmb2/example-functions.php:784
    34993606msgid "REST Test Box"
    35003607msgstr "Caja de prueba para REST API"
    35013608
    3502 #: includes/libraries/cmb2/example-functions.php:791
     3609#: includes/libraries/cmb2/example-functions.php:793
    35033610msgid "REST Test Text"
    35043611msgstr "Campo de texto de prueba para REST API"
    35053612
    3506 #: includes/libraries/cmb2/example-functions.php:792
     3613#: includes/libraries/cmb2/example-functions.php:794
    35073614msgid "Will show in the REST API for this box and for pages."
    35083615msgstr "Se mostrará en la API REST para esta casilla y para las páginas."
    35093616
    3510 #: includes/libraries/cmb2/example-functions.php:798
     3617#: includes/libraries/cmb2/example-functions.php:800
    35113618msgid "REST Editable Test Text"
    35123619msgstr "Probar el campo de texto, editable de la REST API"
    35133620
    3514 #: includes/libraries/cmb2/example-functions.php:799
     3621#: includes/libraries/cmb2/example-functions.php:801
    35153622msgid "Will show in REST API \"editable\" contexts only (`POST` requests)."
    35163623msgstr ""
    35173624"Se mostrará en el REST API \"editables\" contextos sólo (`POST` peticiones)."
    35183625
    3519 #: includes/libraries/cmb2/includes/CMB2.php:202
     3626#: includes/libraries/cmb2/includes/CMB2.php:199
    35203627msgid "Metabox configuration is required to have an ID parameter."
    35213628msgstr ""
     
    35233630"identificación ID."
    35243631
    3525 #: includes/libraries/cmb2/includes/CMB2.php:617
     3632#: includes/libraries/cmb2/includes/CMB2.php:609
    35263633msgid "Click to toggle"
    35273634msgstr "Haga clic para activar"
    35283635
    3529 #: includes/libraries/cmb2/includes/CMB2_Ajax.php:80
     3636#: includes/libraries/cmb2/includes/CMB2_Ajax.php:75
    35303637msgid "Please Try Again"
    35313638msgstr "Por favor inténtalo de nuevo"
    35323639
    3533 #: includes/libraries/cmb2/includes/CMB2_Ajax.php:190
     3640#: includes/libraries/cmb2/includes/CMB2_Ajax.php:181
    35343641msgid "Remove Embed"
    35353642msgstr "Eliminar el incrustado"
    35363643
    35373644#. translators: 1: results for. 2: link to codex.wordpress.org/Embeds
    3538 #: includes/libraries/cmb2/includes/CMB2_Ajax.php:199
    3539 #: includes/libraries/cmb2/includes/helper-functions.php:116
     3645#: includes/libraries/cmb2/includes/CMB2_Ajax.php:189
     3646#: includes/libraries/cmb2/includes/helper-functions.php:107
    35403647#, php-format
    35413648msgid "No oEmbed Results Found for %1$s. View more info at %2$s."
     
    35443651"%2$s."
    35453652
    3546 #: includes/libraries/cmb2/includes/CMB2_Base.php:464
     3653#: includes/libraries/cmb2/includes/CMB2_Base.php:422
    35473654#, php-format
    35483655msgid ""
     
    35533660"\"%2$s\"."
    35543661
    3555 #: includes/libraries/cmb2/includes/CMB2_Base.php:469
     3662#: includes/libraries/cmb2/includes/CMB2_Base.php:426
    35563663#, php-format
    35573664msgid ""
     
    35623669"en desuso en favor del parámetro \"%2$s\"."
    35633670
    3564 #: includes/libraries/cmb2/includes/CMB2_Base.php:500
     3671#: includes/libraries/cmb2/includes/CMB2_Base.php:456
    35653672#, php-format
    35663673msgid ""
     
    35713678"la versión %2$s! %3$s"
    35723679
    3573 #: includes/libraries/cmb2/includes/CMB2_Base.php:503
     3680#: includes/libraries/cmb2/includes/CMB2_Base.php:458
    35743681#, php-format
    35753682msgid ""
     
    35803687"la versión %2$s sin alternativa disponible."
    35813688
    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
    35863694#, php-format
    35873695msgid "Invalid %1$s property: %2$s"
    35883696msgstr "Propiedad %1$s no válida: %2$s"
    35893697
    3590 #: includes/libraries/cmb2/includes/CMB2_Base.php:559
    3591 #: includes/libraries/cmb2/includes/types/CMB2_Type_Base.php:173
     3698#: includes/libraries/cmb2/includes/CMB2_Base.php:509
     3699#: includes/libraries/cmb2/includes/types/CMB2_Type_Base.php:157
    35923700#, php-format
    35933701msgid "Invalid %1$s method: %2$s"
    35943702msgstr "Método %1$s inválido: %2$s"
    35953703
    3596 #: includes/libraries/cmb2/includes/CMB2_Field.php:1382
     3704#: includes/libraries/cmb2/includes/CMB2_Field.php:1438
    35973705msgid "Add Group"
    35983706msgstr "Añadir grupo"
    35993707
    3600 #: includes/libraries/cmb2/includes/CMB2_Field.php:1383
     3708#: includes/libraries/cmb2/includes/CMB2_Field.php:1439
    36013709msgid "Remove Group"
    36023710msgstr "Eliminar Grupo"
    36033711
    3604 #: includes/libraries/cmb2/includes/CMB2_Field.php:1544
     3712#: includes/libraries/cmb2/includes/CMB2_Field.php:1589
    36053713msgid "Sorry, this field does not have a cmb_id specified."
    36063714msgstr "Lo sentimos, este campo no tiene un cmb_id especificado."
    36073715
    3608 #: includes/libraries/cmb2/includes/CMB2_Field_Display.php:467
    3609 #: includes/libraries/cmb2/includes/CMB2_JS.php:247
    3610 #: includes/libraries/cmb2/includes/types/CMB2_Type_File_Base.php:92
     3716#: 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
    36113719msgid "File:"
    36123720msgstr "Archivo:"
    36133721
    3614 #: includes/libraries/cmb2/includes/CMB2_Hookup_Base.php:45
     3722#: includes/libraries/cmb2/includes/CMB2_Hookup.php:188
     3723msgid ""
     3724"Term Metadata is a WordPress 4.4+ feature. Please upgrade your WordPress "
     3725"install."
     3726msgstr ""
     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
     3731msgid "Term metaboxes configuration requires a \"taxonomies\" parameter."
     3732msgstr ""
     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
     3737msgid "Toggle panel: %s"
     3738msgstr "Alternar panel: %s"
     3739
     3740#: includes/libraries/cmb2/includes/CMB2_Hookup_Base.php:44
    36153741#, php-format
    36163742msgid "%1$s should be implemented by the extended class."
    36173743msgstr "%1$s deben ser implementadas extendiendo la clase."
    36183744
    3619 #: includes/libraries/cmb2/includes/CMB2_JS.php:179
     3745#: includes/libraries/cmb2/includes/CMB2_JS.php:173
    36203746msgid "Default"
    36213747msgstr "Por defecto"
    36223748
    3623 #: includes/libraries/cmb2/includes/CMB2_JS.php:180
     3749#: includes/libraries/cmb2/includes/CMB2_JS.php:174
    36243750msgid "Select Color"
    36253751msgstr "Seleccionar Color"
    36263752
    3627 #: includes/libraries/cmb2/includes/CMB2_JS.php:181
     3753#: includes/libraries/cmb2/includes/CMB2_JS.php:175
    36283754msgid "Current Color"
    36293755msgstr "Color actual"
    36303756
    3631 #: includes/libraries/cmb2/includes/CMB2_JS.php:212
     3757#: includes/libraries/cmb2/includes/CMB2_JS.php:207
    36323758msgctxt "Valid formatDate string for jquery-ui datepicker"
    36333759msgid "mm/dd/yy"
    36343760msgstr "mm/dd/yy"
    36353761
    3636 #: includes/libraries/cmb2/includes/CMB2_JS.php:214
     3762#: includes/libraries/cmb2/includes/CMB2_JS.php:208
    36373763msgid "Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday"
    36383764msgstr "Domingo, Lunes, Martes, Miércoles, Jueves, Viernes, Sábado"
    36393765
    3640 #: includes/libraries/cmb2/includes/CMB2_JS.php:215
     3766#: includes/libraries/cmb2/includes/CMB2_JS.php:209
    36413767msgid "Su, Mo, Tu, We, Th, Fr, Sa"
    36423768msgstr "Do, Lu, Ma, Mi, Ju, Vi, Sa"
    36433769
    3644 #: includes/libraries/cmb2/includes/CMB2_JS.php:216
     3770#: includes/libraries/cmb2/includes/CMB2_JS.php:210
    36453771msgid "Sun, Mon, Tue, Wed, Thu, Fri, Sat"
    36463772msgstr "Dom, Lun, Mar, Mie, Jue, Vie, Sab"
    36473773
    3648 #: includes/libraries/cmb2/includes/CMB2_JS.php:218
     3774#: includes/libraries/cmb2/includes/CMB2_JS.php:211
    36493775msgid ""
    36503776"January, February, March, April, May, June, July, August, September, "
     
    36543780"Octubre, Noviembre, Diciembre"
    36553781
    3656 #: includes/libraries/cmb2/includes/CMB2_JS.php:221
     3782#: includes/libraries/cmb2/includes/CMB2_JS.php:212
    36573783msgid "Jan, Feb, Mar, Apr, May, Jun, Jul, Aug, Sep, Oct, Nov, Dec"
    36583784msgstr "Ene, Feb, Mar, Apr, May, Jun, Jul, ago, Sep, Oct, Nov, Dic"
    36593785
    3660 #: includes/libraries/cmb2/includes/CMB2_JS.php:222
     3786#: includes/libraries/cmb2/includes/CMB2_JS.php:213
    36613787msgid "Next"
    36623788msgstr "Siguiente"
    36633789
    3664 #: includes/libraries/cmb2/includes/CMB2_JS.php:223
     3790#: includes/libraries/cmb2/includes/CMB2_JS.php:214
    36653791msgid "Prev"
    36663792msgstr "Anterior"
    36673793
    3668 #: includes/libraries/cmb2/includes/CMB2_JS.php:225
    3669 #: includes/libraries/cmb2/includes/CMB2_JS.php:235
     3794#: includes/libraries/cmb2/includes/CMB2_JS.php:216
     3795#: includes/libraries/cmb2/includes/CMB2_JS.php:226
    36703796msgid "Done"
    36713797msgstr "Hecho"
    36723798
    3673 #: includes/libraries/cmb2/includes/CMB2_JS.php:229
     3799#: includes/libraries/cmb2/includes/CMB2_JS.php:220
    36743800msgid "Choose Time"
    36753801msgstr "Elegir Hora"
    36763802
    3677 #: includes/libraries/cmb2/includes/CMB2_JS.php:230
     3803#: includes/libraries/cmb2/includes/CMB2_JS.php:221
    36783804msgid "Time"
    36793805msgstr "Hora"
    36803806
    3681 #: includes/libraries/cmb2/includes/CMB2_JS.php:231
     3807#: includes/libraries/cmb2/includes/CMB2_JS.php:222
    36823808msgid "Hour"
    36833809msgstr "Hora"
    36843810
    3685 #: includes/libraries/cmb2/includes/CMB2_JS.php:232
     3811#: includes/libraries/cmb2/includes/CMB2_JS.php:223
    36863812msgid "Minute"
    36873813msgstr "Minuto"
    36883814
    3689 #: includes/libraries/cmb2/includes/CMB2_JS.php:233
     3815#: includes/libraries/cmb2/includes/CMB2_JS.php:224
    36903816msgid "Second"
    36913817msgstr "Segundo"
    36923818
    3693 #: includes/libraries/cmb2/includes/CMB2_JS.php:234
     3819#: includes/libraries/cmb2/includes/CMB2_JS.php:225
    36943820msgid "Now"
    36953821msgstr "Ahora"
    36963822
    3697 #: includes/libraries/cmb2/includes/CMB2_JS.php:236
     3823#: includes/libraries/cmb2/includes/CMB2_JS.php:227
    36983824msgctxt ""
    36993825"Valid formatting string, as per http://trentrichardson.com/examples/"
     
    37023828msgstr "hh: mm TT"
    37033829
    3704 #: includes/libraries/cmb2/includes/CMB2_JS.php:243
     3830#: includes/libraries/cmb2/includes/CMB2_JS.php:233
    37053831msgid "Use this file"
    37063832msgstr "Usar este archivo"
    37073833
    3708 #: includes/libraries/cmb2/includes/CMB2_JS.php:244
     3834#: includes/libraries/cmb2/includes/CMB2_JS.php:234
    37093835msgid "Use these files"
    37103836msgstr "Utilizar estos archivos"
    37113837
    3712 #: includes/libraries/cmb2/includes/CMB2_JS.php:245
    3713 #: includes/libraries/cmb2/includes/types/CMB2_Type_File_Base.php:73
     3838#: includes/libraries/cmb2/includes/CMB2_JS.php:235
     3839#: includes/libraries/cmb2/includes/types/CMB2_Type_File_Base.php:64
    37143840msgid "Remove Image"
    37153841msgstr "Eliminar imagen"
    37163842
    3717 #: includes/libraries/cmb2/includes/CMB2_JS.php:246
    3718 #: includes/libraries/cmb2/includes/CMB2_Types.php:446
    3719 #: includes/libraries/cmb2/includes/types/CMB2_Type_File_Base.php:97
     3843#: 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
    37203846msgid "Remove"
    37213847msgstr "Eliminar"
    37223848
    3723 #: includes/libraries/cmb2/includes/CMB2_JS.php:248
    3724 #: includes/libraries/cmb2/includes/types/CMB2_Type_File_Base.php:95
     3849#: includes/libraries/cmb2/includes/CMB2_JS.php:238
     3850#: includes/libraries/cmb2/includes/types/CMB2_Type_File_Base.php:82
    37253851msgid "Download"
    37263852msgstr "Descargar"
    37273853
    3728 #: includes/libraries/cmb2/includes/CMB2_JS.php:249
     3854#: includes/libraries/cmb2/includes/CMB2_JS.php:239
    37293855msgid "Select / Deselect All"
    37303856msgstr "Seleccionar / Deseleccionar Todo"
    37313857
    3732 #: includes/libraries/cmb2/includes/CMB2_Options_Hookup.php:138
     3858#: includes/libraries/cmb2/includes/CMB2_Options_Hookup.php:139
    37333859msgid "Nothing to update."
    37343860msgstr "No hay nada que actualizar."
    37353861
    3736 #: includes/libraries/cmb2/includes/CMB2_Options_Hookup.php:142
     3862#: includes/libraries/cmb2/includes/CMB2_Options_Hookup.php:143
    37373863msgid "Settings updated."
    37383864msgstr "Ajustes actualizados."
    37393865
    3740 #: includes/libraries/cmb2/includes/CMB2_Types.php:239
     3866#: includes/libraries/cmb2/includes/CMB2_Types.php:226
    37413867msgid "Custom CMB2 field type classes must extend CMB2_Type_Base."
    37423868msgstr ""
    37433869"Clases personalizadas de tipo de campo CMB2 deben extender CMB2_Type_Base."
    37443870
    3745 #: includes/libraries/cmb2/includes/CMB2_Types.php:377
     3871#: includes/libraries/cmb2/includes/CMB2_Types.php:344
    37463872msgid "Add Row"
    37473873msgstr "Añadir fila"
    37483874
    3749 #: includes/libraries/cmb2/includes/CMB2_Types.php:445
     3875#: includes/libraries/cmb2/includes/CMB2_Types.php:408
    37503876msgid "Remove Row"
    37513877msgstr "Eliminar Fila"
    37523878
    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
    37723880msgid "Save"
    37733881msgstr "Guardar"
    37743882
    3775 #: includes/libraries/cmb2/includes/rest-api/CMB2_REST_Controller.php:270
     3883#: includes/libraries/cmb2/includes/rest-api/CMB2_REST_Controller.php:257
    37763884msgid "This box does not have read permissions."
    37773885msgstr "Este cuadro no tiene permisos de lectura."
    37783886
    3779 #: includes/libraries/cmb2/includes/rest-api/CMB2_REST_Controller.php:292
     3887#: includes/libraries/cmb2/includes/rest-api/CMB2_REST_Controller.php:277
    37803888msgid "This box does not have write permissions."
    37813889msgstr "Este cuadro no tiene permisos de escritura."
    37823890
    3783 #: includes/libraries/cmb2/includes/rest-api/CMB2_REST_Controller.php:316
     3891#: includes/libraries/cmb2/includes/rest-api/CMB2_REST_Controller.php:300
    37843892msgid ""
    37853893"No box found by that id. A box needs to be registered with the \"show_in_rest"
     
    37893897"registrarse con el parámetro “show_in_rest” configurado."
    37903898
    3791 #: includes/libraries/cmb2/includes/rest-api/CMB2_REST_Controller.php:397
     3899#: includes/libraries/cmb2/includes/rest-api/CMB2_REST_Controller.php:378
    37923900msgid "A human-readable description of the object."
    37933901msgstr "Una descripción humanamente legible del objeto."
    37943902
    3795 #: includes/libraries/cmb2/includes/rest-api/CMB2_REST_Controller.php:404
     3903#: includes/libraries/cmb2/includes/rest-api/CMB2_REST_Controller.php:385
    37963904msgid "The id for the object."
    37973905msgstr "El ID para el objeto."
    37983906
    3799 #: includes/libraries/cmb2/includes/rest-api/CMB2_REST_Controller.php:411
     3907#: includes/libraries/cmb2/includes/rest-api/CMB2_REST_Controller.php:392
    38003908msgid "The title for the object."
    38013909msgstr "El título para el objeto."
    38023910
    3803 #: includes/libraries/cmb2/includes/rest-api/CMB2_REST_Controller_Boxes.php:55
     3911#: includes/libraries/cmb2/includes/rest-api/CMB2_REST_Controller_Boxes.php:51
    38043912msgid "Includes the registered fields for the box in the response."
    38053913msgstr "Incluye los campos registrados para el cuadro en la respuesta."
    38063914
    3807 #: includes/libraries/cmb2/includes/rest-api/CMB2_REST_Controller_Boxes.php:76
     3915#: includes/libraries/cmb2/includes/rest-api/CMB2_REST_Controller_Boxes.php:72
    38083916msgid ""
    38093917"Includes the fully rendered attributes, 'form_open', 'form_close', as well "
     
    38153923"de hoja de estilo 'css_dependencies'."
    38163924
    3817 #: includes/libraries/cmb2/includes/rest-api/CMB2_REST_Controller_Boxes.php:131
     3925#: includes/libraries/cmb2/includes/rest-api/CMB2_REST_Controller_Boxes.php:122
    38183926msgid "No boxes found."
    38193927msgstr "No se han encontrado cajas."
    38203928
    3821 #: includes/libraries/cmb2/includes/rest-api/CMB2_REST_Controller_Fields.php:30
     3929#: includes/libraries/cmb2/includes/rest-api/CMB2_REST_Controller_Fields.php:27
    38223930msgid ""
    38233931"Includes the box object which the fields are registered to in the response."
     
    38263934"respuesta."
    38273935
    3828 #: includes/libraries/cmb2/includes/rest-api/CMB2_REST_Controller_Fields.php:34
     3936#: includes/libraries/cmb2/includes/rest-api/CMB2_REST_Controller_Fields.php:30
    38293937msgid ""
    38303938"When the '_rendered' argument is passed, the renderable field attributes "
     
    38373945"renderizable."
    38383946
    3839 #: includes/libraries/cmb2/includes/rest-api/CMB2_REST_Controller_Fields.php:38
    3840 #: includes/libraries/cmb2/includes/rest-api/CMB2_REST_Controller_Fields.php:42
     3947#: 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
    38413949msgid ""
    38423950"To view or modify the field's value, the 'object_id' and 'object_type' "
     
    38463954"'tipo_objeto' son requeridos."
    38473955
    3848 #: includes/libraries/cmb2/includes/rest-api/CMB2_REST_Controller_Fields.php:260
     3956#: includes/libraries/cmb2/includes/rest-api/CMB2_REST_Controller_Fields.php:236
    38493957msgid ""
    38503958"CMB2 Field value cannot be updated without the value parameter specified."
     
    38533961"especificado."
    38543962
    3855 #: includes/libraries/cmb2/includes/rest-api/CMB2_REST_Controller_Fields.php:328
     3963#: includes/libraries/cmb2/includes/rest-api/CMB2_REST_Controller_Fields.php:297
    38563964msgid ""
    38573965"CMB2 Field value cannot be modified without the object_id and object_type "
     
    38613969"object_id y object_type."
    38623970
    3863 #: includes/libraries/cmb2/includes/rest-api/CMB2_REST_Controller_Fields.php:344
    3864 #: includes/libraries/cmb2/includes/rest-api/CMB2_REST_Controller_Fields.php:375
     3971#: 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
    38653973msgid "No field found by that id."
    38663974msgstr "Ningún campo se encontró con ese id."
    38673975
    3868 #: includes/libraries/cmb2/includes/rest-api/CMB2_REST_Controller_Fields.php:451
     3976#: includes/libraries/cmb2/includes/rest-api/CMB2_REST_Controller_Fields.php:415
    38693977#, php-format
    38703978msgid "Value Error for %s"
    38713979msgstr "Error de valor para%s"
    38723980
    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
    38743983#, php-format
    38753984msgid "Method '%s' must be overridden."
    38763985msgstr "Se debe sobreescribir el método '%s'."
    38773986
    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
    38803990#: 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
    38843995#: 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
    38903999#, php-format
    38914000msgid "Method '%s' not implemented. Must be overridden in subclass."
    38924001msgstr "El método '%s' no está implementado. Debe sustituirse en la subclase."
    38934002
    3894 #: includes/libraries/cmb2/includes/shim/WP_REST_Controller.php:317
     4003#: includes/libraries/cmb2/includes/shim/WP_REST_Controller.php:273
    38954004msgid "Current page of the collection."
    38964005msgstr "Página actual de la colección."
    38974006
    3898 #: includes/libraries/cmb2/includes/shim/WP_REST_Controller.php:325
     4007#: includes/libraries/cmb2/includes/shim/WP_REST_Controller.php:281
    38994008msgid "Maximum number of items to be returned in result set."
    39004009msgstr "Número máximo de artículos a mostrar en los resultados."
    39014010
    3902 #: includes/libraries/cmb2/includes/shim/WP_REST_Controller.php:334
     4011#: includes/libraries/cmb2/includes/shim/WP_REST_Controller.php:290
    39034012msgid "Limit results to those matching a string."
    39044013msgstr "Limita los resultados a lo indicado en la cadena."
    39054014
    3906 #: includes/libraries/cmb2/includes/shim/WP_REST_Controller.php:354
     4015#: includes/libraries/cmb2/includes/shim/WP_REST_Controller.php:308
    39074016msgid ""
    39084017"Scope under which the request is made; determines fields present in response."
    39094018msgstr "Alcance de la petición; determina los campos visibles en la respuesta."
    39104019
    3911 #: includes/libraries/cmb2/includes/types/CMB2_Type_File.php:80
     4020#: includes/libraries/cmb2/includes/types/CMB2_Type_Counter_Base.php:50
     4021msgid "Words left"
     4022msgstr "Quedan palabras"
     4023
     4024#: includes/libraries/cmb2/includes/types/CMB2_Type_Counter_Base.php:51
     4025msgid "Words"
     4026msgstr "Palabras"
     4027
     4028#: includes/libraries/cmb2/includes/types/CMB2_Type_Counter_Base.php:56
     4029msgid "Characters left"
     4030msgstr "Caracteres restantes"
     4031
     4032#: includes/libraries/cmb2/includes/types/CMB2_Type_Counter_Base.php:57
     4033msgid "Characters"
     4034msgstr "Caracteres"
     4035
     4036#: includes/libraries/cmb2/includes/types/CMB2_Type_Counter_Base.php:62
     4037msgid "Your text may be truncated."
     4038msgstr "Es posible que el texto se trune."
     4039
     4040#: includes/libraries/cmb2/includes/types/CMB2_Type_File.php:76
    39124041msgid "Add or Upload File"
    39134042msgstr "Agregar o Subir Archivo"
    39144043
    3915 #: includes/libraries/cmb2/includes/types/CMB2_Type_File_List.php:43
     4044#: includes/libraries/cmb2/includes/types/CMB2_Type_File_List.php:41
    39164045msgid "Add or Upload Files"
    39174046msgstr "Añadir o subir archivos"
    39184047
    3919 #: includes/libraries/cmb2/includes/types/CMB2_Type_Taxonomy_Base.php:122
     4048#: includes/libraries/cmb2/includes/types/CMB2_Type_Taxonomy_Base.php:115
    39204049msgid "No terms"
    39214050msgstr "No hay términos"
    39224051
    39234052#: includes/model/UpStream_Model_Bug.php:199
    3924 #: includes/model/UpStream_Model_File.php:142
     4053#: includes/model/UpStream_Model_File.php:158
    39254054#, fuzzy, php-format
    39264055msgid "File ID %s is invalid."
     
    39384067
    39394068#: includes/model/UpStream_Model_Bug.php:250
    3940 #: includes/model/UpStream_Model_Project.php:379
     4069#: includes/model/UpStream_Model_Project.php:388
    39414070#: includes/model/UpStream_Model_Task.php:223
    39424071#, fuzzy, php-format
     
    39454074
    39464075#: includes/model/UpStream_Model_Bug.php:268
    3947 #: includes/model/UpStream_Model_Project.php:397
     4076#: includes/model/UpStream_Model_Project.php:406
    39484077#: includes/model/UpStream_Model_Task.php:241
    39494078#, fuzzy, php-format
     
    39534082#: includes/model/UpStream_Model_Bug.php:275
    39544083#: includes/model/UpStream_Model_Milestone.php:211
    3955 #: includes/model/UpStream_Model_Project.php:440
     4084#: includes/model/UpStream_Model_Project.php:449
    39564085#: includes/model/UpStream_Model_Task.php:266
    39574086#, fuzzy
     
    39864115#: includes/model/UpStream_Model_Client.php:205
    39874116#: includes/model/UpStream_Model_Milestone.php:284
    3988 #: includes/model/UpStream_Model_Project.php:524
     4117#: includes/model/UpStream_Model_Project.php:535
    39894118#: includes/model/UpStream_Model_Task.php:325
    39904119#, fuzzy
     
    39924121msgstr "Los IDs de usuario no pueden estar vacíos."
    39934122
    3994 #: includes/model/UpStream_Model_File.php:138
     4123#: includes/model/UpStream_Model_File.php:154
    39954124#, fuzzy
    39964125msgid "Set not implemented for Upfs."
    39974126msgstr "Set no implementado para Upfs."
    39984127
    3999 #: includes/model/UpStream_Model_Manager.php:28
     4128#: includes/model/UpStream_Model_Manager.php:33
    40004129#, fuzzy, php-format
    40014130msgid ""
     
    40174146
    40184147#: includes/model/UpStream_Model_Milestone.php:200
    4019 #: includes/model/UpStream_Model_Project.php:359
     4148#: includes/model/UpStream_Model_Project.php:368
    40204149#, fuzzy, php-format
    40214150msgid "Term ID %s is invalid."
     
    40284157
    40294158#: includes/model/UpStream_Model_Milestone.php:273
    4030 #: includes/model/UpStream_Model_Project.php:457 includes/up-post-types.php:146
    4031 #: templates/archive-project.php:81 templates/global/sidebar.php:33
     4159#: includes/model/UpStream_Model_Project.php:466 includes/up-post-types.php:144
     4160#: templates/archive-project.php:84 templates/global/sidebar.php:33
    40324161msgid "Categories"
    40334162msgstr "Categorías"
    40344163
    40354164#: includes/model/UpStream_Model_Milestone.php:274
    4036 #: includes/model/UpStream_Model_Project.php:460
     4165#: includes/model/UpStream_Model_Project.php:471
    40374166#: includes/model/UpStream_Model_Task.php:298
    40384167msgid "Progress (%)"
     
    40984227msgstr "La identificación debe ser un número válido."
    40994228
    4100 #: includes/model/UpStream_Model_Project.php:227
     4229#: includes/model/UpStream_Model_Project.php:235
    41014230#, fuzzy
    41024231msgid "Argument must be of type UpStream_Model_Meta_Object"
    41034232msgstr "El argumento debe ser del tipo UpStream_Model_Meta_Object"
    41044233
    4105 #: includes/model/UpStream_Model_Project.php:253
     4234#: includes/model/UpStream_Model_Project.php:261
    41064235#, fuzzy
    41074236msgid "Can only add objects of type UpStream_Model_Meta_Object"
    41084237msgstr "Sólo puede añadir objetos del tipo UpStream_Model_Meta_Object"
    41094238
    4110 #: includes/model/UpStream_Model_Project.php:340
     4239#: includes/model/UpStream_Model_Project.php:349
    41114240#, fuzzy
    41124241msgid "Not implemented. Use &tasks(), &files(), or &bugs()."
    41134242msgstr "No se ha implementado. Usa &tasks(), &files(), o &bugs()."
    41144243
    4115 #: includes/model/UpStream_Model_Project.php:407
     4244#: includes/model/UpStream_Model_Project.php:416
    41164245#, fuzzy
    41174246msgid "For projects, assignedTo must be an array of length 1."
    41184247msgstr "Para los proyectos, la asignaciónTo debe ser un arreglo de longitud 1."
    41194248
    4120 #: includes/model/UpStream_Model_Project.php:420
     4249#: includes/model/UpStream_Model_Project.php:429
    41214250#, fuzzy
    41224251msgid "Cannot assign client users if the project has no client."
     
    41254254"cliente."
    41264255
    4127 #: includes/model/UpStream_Model_Project.php:423
     4256#: includes/model/UpStream_Model_Project.php:432
    41284257#, fuzzy
    41294258msgid "Client user IDs must be an array."
    41304259msgstr "Las identificaciones de usuario de los clientes deben ser una matriz."
    41314260
    4132 #: includes/model/UpStream_Model_Project.php:426
     4261#: includes/model/UpStream_Model_Project.php:435
    41334262#, fuzzy
    41344263msgid "Input cannot contain duplicates."
    41354264msgstr "La entrada no puede contener duplicados."
    41364265
    4137 #: includes/model/UpStream_Model_Project.php:431
     4266#: includes/model/UpStream_Model_Project.php:440
    41384267#, fuzzy, php-format
    41394268msgid "User ID %s does not exist in this client."
    41404269msgstr "El ID de usuario %s no existe en este cliente."
    41414270
     4271#: includes/model/UpStream_Model_Project.php:467
     4272#, fuzzy
     4273msgid "Selected Client Users"
     4274msgstr "Usuario Cliente UpStream"
     4275
     4276#: includes/model/UpStream_Model_Project.php:468
     4277#: templates/single-project/details.php:125
     4278msgid "Members"
     4279msgstr "Miembros"
     4280
    41424281#: includes/model/UpStream_Model_Task.php:205
    41434282#, fuzzy
     
    41614300msgstr "Esto (%s) no es un número."
    41624301
    4163 #: includes/up-general-functions.php:298
     4302#: includes/up-filesystem.php:105
     4303msgid "Unable to move file to target folder"
     4304msgstr "No se puede mover el archivo a la carpeta de destino"
     4305
     4306#: includes/up-filesystem.php:109
     4307msgid "Unable to move file. The target folder does not exist."
     4308msgstr "No se puede mover el archivo. La carpeta de destino no existe."
     4309
     4310#: includes/up-filesystem.php:112 includes/up-filesystem.php:119
     4311msgid "File exceeds the maximum file size"
     4312msgstr "El archivo supera el tamaño máximo de archivo"
     4313
     4314#: includes/up-filesystem.php:116
     4315msgid "File is not an allowed type."
     4316msgstr "El archivo no es un tipo permitido."
     4317
     4318#: includes/up-general-functions.php:307
    41644319#, php-format
    41654320msgid "%s User"
    41664321msgstr "%s Usuario"
    41674322
    4168 #: includes/up-general-functions.php:301
     4323#: includes/up-general-functions.php:310
    41694324#, php-format
    41704325msgid "%s Manager"
    41714326msgstr "%s Gerente"
    41724327
    4173 #: includes/up-general-functions.php:304
     4328#: includes/up-general-functions.php:313
    41744329#, php-format
    41754330msgid "%s Client User"
    41764331msgstr "%s Usuario Cliente"
    41774332
    4178 #: includes/up-general-functions.php:397
     4333#: includes/up-general-functions.php:406
    41794334msgid "Client User"
    41804335msgstr "Usuario Cliente"
     
    45044659msgstr "%2$s List"
    45054660
    4506 #: includes/up-post-types.php:136
     4661#: includes/up-post-types.php:134
    45074662msgctxt "taxonomy general name"
    45084663msgid "Category"
    45094664msgstr "Categoría"
    45104665
    4511 #: includes/up-post-types.php:137
     4666#: includes/up-post-types.php:135
    45124667msgctxt "taxonomy singular name"
    45134668msgid "Category"
    45144669msgstr "Categoría"
    45154670
    4516 #: includes/up-post-types.php:138
     4671#: includes/up-post-types.php:136
    45174672#, php-format
    45184673msgid "Search %s Categories"
    45194674msgstr "Buscar categorías de %s"
    45204675
    4521 #: includes/up-post-types.php:139
     4676#: includes/up-post-types.php:137
    45224677#, php-format
    45234678msgid "All %s Categories"
    45244679msgstr "Todas las categorías del %s"
    45254680
    4526 #: includes/up-post-types.php:140
     4681#: includes/up-post-types.php:138
    45274682#, php-format
    45284683msgid "Parent %s Category"
    45294684msgstr "Categoría %s Superior"
    45304685
    4531 #: includes/up-post-types.php:141
     4686#: includes/up-post-types.php:139
    45324687#, php-format
    45334688msgid "Parent %s Category:"
    45344689msgstr "Categoría %s Superior:"
    45354690
    4536 #: includes/up-post-types.php:142
     4691#: includes/up-post-types.php:140
    45374692#, php-format
    45384693msgid "Edit %s Category"
    45394694msgstr "Editar %s Categoría"
    45404695
    4541 #: includes/up-post-types.php:143
     4696#: includes/up-post-types.php:141
    45424697#, php-format
    45434698msgid "Update %s Category"
    45444699msgstr "Actualizar categoría de %s"
    45454700
    4546 #: includes/up-post-types.php:144
     4701#: includes/up-post-types.php:142
    45474702#, php-format
    45484703msgid "Add New %s Category"
    45494704msgstr "Añadir nueva categoría de %s"
    45504705
    4551 #: includes/up-post-types.php:145
     4706#: includes/up-post-types.php:143
    45524707#, php-format
    45534708msgid "New %s Category Name"
    45544709msgstr "Nombre de la nueva categoría de %s"
    45554710
    4556 #: includes/up-post-types.php:171
     4711#: includes/up-post-types.php:170
    45574712msgctxt "taxonomy (tag) general name"
    45584713msgid "Tags"
    45594714msgstr "Etiquetas"
    45604715
    4561 #: includes/up-post-types.php:172
     4716#: includes/up-post-types.php:171
    45624717msgctxt "taxonomy (tag) singular name"
    45634718msgid "Tag"
    45644719msgstr "Etiqueta"
    45654720
    4566 #: includes/up-post-types.php:173
     4721#: includes/up-post-types.php:172
    45674722msgid "Search Tags"
    45684723msgstr "Buscar Etiquetas"
    45694724
    4570 #: includes/up-post-types.php:174
     4725#: includes/up-post-types.php:173
    45714726msgid "Popular Tags"
    45724727msgstr "Etiquetas populares"
    45734728
    4574 #: includes/up-post-types.php:175
     4729#: includes/up-post-types.php:174
    45754730msgid "All Tags"
    45764731msgstr "Todas las etiquetas"
    45774732
    4578 #: includes/up-post-types.php:178
     4733#: includes/up-post-types.php:177
    45794734msgid "Edit Tag"
    45804735msgstr "Editar etiqueta"
    45814736
    4582 #: includes/up-post-types.php:179
     4737#: includes/up-post-types.php:178
    45834738msgid "Update Tag"
    45844739msgstr "Actualizar etiqueta"
    45854740
    4586 #: includes/up-post-types.php:180
     4741#: includes/up-post-types.php:179
    45874742msgid "Add New Tag"
    45884743msgstr "Añadir nueva etiqueta"
    45894744
    4590 #: includes/up-post-types.php:181
     4745#: includes/up-post-types.php:180
    45914746msgid "New Tag Name"
    45924747msgstr "Nuevo nombre de etiqueta"
    45934748
    4594 #: includes/up-post-types.php:182
     4749#: includes/up-post-types.php:181
    45954750msgid "Add or remove tags"
    45964751msgstr "Añadir o eliminar etiquetas"
    45974752
    4598 #: includes/up-post-types.php:183
     4753#: includes/up-post-types.php:182
    45994754msgid "Separate tags with commas"
    46004755msgstr "Separa las etiquetas con comas"
    46014756
    4602 #: includes/up-post-types.php:184
     4757#: includes/up-post-types.php:183
    46034758msgid "Choose from the most used tags"
    46044759msgstr "Elige de las etiquetas más utilizadas"
    46054760
    4606 #: includes/up-post-types.php:185
     4761#: includes/up-post-types.php:184
    46074762msgid "Tags"
    46084763msgstr "Etiquetas"
    46094764
    4610 #: includes/up-post-types.php:216
     4765#: includes/up-post-types.php:218
    46114766#, php-format
    46124767msgid "Popular %s"
    46134768msgstr "Popular %s"
    46144769
    4615 #: includes/up-post-types.php:217 templates/global/sidebar.php:95
     4770#: includes/up-post-types.php:219 templates/global/sidebar.php:95
    46164771#, php-format
    46174772msgid "All %s"
    46184773msgstr "Todos %s"
    46194774
    4620 #: includes/up-post-types.php:221
     4775#: includes/up-post-types.php:223
    46214776#, php-format
    46224777msgid "Update %s"
    46234778msgstr "Actualizar %s"
    46244779
    4625 #: includes/up-post-types.php:222
     4780#: includes/up-post-types.php:224
    46264781#, php-format
    46274782msgid "Add New %s"
    46284783msgstr "Añadir nuevo %s"
    46294784
    4630 #: includes/up-post-types.php:223
     4785#: includes/up-post-types.php:225
    46314786#, php-format
    46324787msgid "New %s Name"
    46334788msgstr "Nuevo %s Nombre"
    46344789
    4635 #: includes/up-post-types.php:224
     4790#: includes/up-post-types.php:226
    46364791#, php-format
    46374792msgid "Add or remove %s"
    46384793msgstr "Añadir o eliminar %s"
    46394794
    4640 #: includes/up-post-types.php:225
     4795#: includes/up-post-types.php:227
    46414796#, php-format
    46424797msgid "Separate %s with commas"
    46434798msgstr "Separar %s con comas"
    46444799
    4645 #: includes/up-post-types.php:226
     4800#: includes/up-post-types.php:228
    46464801#, php-format
    46474802msgid "Choose from the most used %s"
    46484803msgstr "Elija entre los % s más utilizados"
    46494804
    4650 #: includes/up-post-types.php:270
     4805#: includes/up-post-types.php:273
    46514806msgid "Default color"
    46524807msgstr "Color por defecto"
    46534808
    4654 #: includes/up-project-functions.php:640 templates/archive-project.php:70
     4809#: includes/up-project-functions.php:656 templates/archive-project.php:73
    46554810#: templates/global/sidebar.php:22
    46564811msgid "Ends at"
    46574812msgstr "Finaliza a las"
    46584813
    4659 #: templates/archive-project.php:69 templates/global/sidebar.php:21
     4814#: templates/archive-project.php:72 templates/global/sidebar.php:21
    46604815#: templates/global/top-nav.php:60
    46614816msgid "Log Out"
    46624817msgstr "Cerrar sesión"
    46634818
    4664 #: templates/archive-project.php:73 templates/global/sidebar.php:25
     4819#: templates/archive-project.php:76 templates/global/sidebar.php:25
    46654820#: templates/single-project/bugs.php:125 templates/single-project/bugs.php:157
    46664821#: templates/single-project/files.php:99 templates/single-project/files.php:131
     
    46724827msgstr "Alternar Filtros"
    46734828
    4674 #: templates/archive-project.php:74 templates/global/sidebar.php:26
     4829#: templates/archive-project.php:77 templates/global/sidebar.php:26
    46754830#: templates/single-project/bugs.php:129 templates/single-project/bugs.php:162
    46764831#: templates/single-project/files.php:103
     
    46834838msgstr "Exportar"
    46844839
    4685 #: templates/archive-project.php:75 templates/global/sidebar.php:27
     4840#: templates/archive-project.php:78 templates/global/sidebar.php:27
    46864841#: templates/single-project/bugs.php:136 templates/single-project/bugs.php:169
    46874842#: templates/single-project/files.php:110
     
    46944849msgstr "Texto sin formato"
    46954850
    4696 #: templates/archive-project.php:85 templates/global/sidebar.php:37
     4851#: templates/archive-project.php:88 templates/global/sidebar.php:37
    46974852#, php-format
    46984853msgid "%s Complete"
    46994854msgstr "%s completado"
    47004855
    4701 #: templates/archive-project.php:483
     4856#: templates/archive-project.php:491
    47024857#, php-format
    47034858msgid "%s Members"
    47044859msgstr "%s Miembros"
    47054860
    4706 #: templates/archive-project.php:749
     4861#: templates/archive-project.php:760
    47074862#, fuzzy
    47084863msgid "It seems that you're not participating in any project right now."
     
    47104865
    47114866#: 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
    47154871msgid "Assigned to me"
    47164872msgstr "Asignado a mí"
     
    47414897msgstr "Incluir campos"
    47424898
    4743 #: templates/report-parameters/section.php:43
     4899#: templates/report-parameters/section.php:51
    47444900msgid " Filters"
    47454901msgstr "Filtros"
     
    47634919msgid "complete"
    47644920msgstr "completado"
    4765 
    4766 #: templates/single-project/details.php:125
    4767 msgid "Members"
    4768 msgstr "Miembros"
    47694921
    47704922#: templates/single-project/files.php:177
     
    47934945msgstr "usuario no válido"
    47944946
    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
    47984951msgid "Overdue"
    47994952msgstr "Atrasado"
    48004953
    4801 #: templates/single-project/overview.php:180
     4954#: templates/single-project/overview.php:189
     4955#: templates/single-project/progress.php:56
    48024956msgid "Completed"
    48034957msgstr "Completado"
    48044958
    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
    48084963msgid "Total"
    48094964msgstr "Total"
    48104965
    4811 #: templates/single-project/overview.php:191
    4812 #: templates/single-project/overview.php:223
    4813 #: templates/single-project/overview.php:255
     4966#: templates/single-project/overview.php:200
     4967#: templates/single-project/overview.php:232
     4968#: templates/single-project/overview.php:264
    48144969msgid "Overview"
    48154970msgstr "Resumen"
     
    48194974msgstr "hito no válido"
    48204975
    4821 #: upstream.php:525
     4976#: upstream.php:458
    48224977msgid "View Documentation"
    48234978msgstr "Ver Documentación"
    48244979
    4825 #: upstream.php:527
     4980#: upstream.php:460
    48264981msgid "Docs"
    48274982msgstr "Documentos"
    48284983
    4829 #: upstream.php:529
     4984#: upstream.php:462
    48304985#, fuzzy
    48314986msgid "View Quick Start Guide"
    48324987msgstr "Ver la Guía de inicio rápido"
    48334988
    4834 #: upstream.php:531
     4989#: upstream.php:464
    48354990msgid "Quick Start Guide"
    48364991msgstr "Guía de inicio rápido"
    48374992
    4838 #: upstream.php:555
     4993#: upstream.php:488
    48394994msgid "Open Settings Page"
    48404995msgstr "Abrir página de configuración"
    48414996
    4842 #: upstream.php:556
     4997#: upstream.php:489
    48434998msgid "Settings"
    48444999msgstr "Ajustes"
    48455000
    4846 #: upstream.php:603
     5001#: upstream.php:536
    48475002msgid "Update notice:"
    48485003msgstr "Actualizar aviso:"
    48495004
    4850 #: upstream.php:610
     5005#: upstream.php:543
    48515006#, php-format
    48525007msgctxt ""
  • upstream/trunk/languages/upstream.pot

    r2354305 r2472697  
    2626#: includes/admin/class-up-admin-project-columns.php:128
    2727#: includes/admin/class-up-admin-tasks-page.php:45
    28 #: includes/class-up-milestones.php:436
     28#: includes/class-up-milestones.php:557
    2929#: includes/model/UpStream_Model_Object.php:66
    3030#: templates/single-project/details.php:63
     
    3838#: includes/admin/metaboxes/class-up-metaboxes-projects.php:1226
    3939#: includes/admin/metaboxes/class-up-metaboxes-projects.php:1629
    40 #: includes/admin/up-enqueues.php:131 includes/class-up-milestones.php:335
    41 #: includes/class-up-milestones.php:438
     40#: includes/admin/up-enqueues.php:132 includes/class-up-milestones.php:335
     41#: includes/class-up-milestones.php:559
    4242#: includes/frontend/up-table-functions.php:33
    4343#: includes/frontend/up-table-functions.php:144
     
    6868#: includes/frontend/up-table-functions.php:439
    6969#: includes/model/UpStream_Model_Bug.php:303
    70 #: includes/model/UpStream_Model_Project.php:456
    71 #: includes/model/UpStream_Model_Task.php:297 templates/archive-project.php:79
     70#: includes/model/UpStream_Model_Project.php:465
     71#: includes/model/UpStream_Model_Task.php:297 templates/archive-project.php:82
    7272#: templates/global/sidebar.php:31 templates/single-project/bugs.php:246
    7373#: templates/single-project/bugs.php:250 templates/single-project/tasks.php:252
     
    105105#: includes/admin/class-up-admin-bugs-page.php:284
    106106#: includes/admin/class-up-admin-bugs-page.php:310
    107 #: includes/admin/class-up-admin-project-columns.php:447
    108 #: includes/admin/class-up-admin-project-columns.php:466
    109 #: includes/admin/class-up-admin-project-columns.php:483
     107#: 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
    110110#: includes/admin/class-up-admin-tasks-page.php:260
    111111#: includes/admin/class-up-admin-tasks-page.php:280
     
    132132#: includes/admin/class-up-admin-tasks-page.php:498
    133133#: includes/admin/metaboxes/metabox-functions.php:636
    134 #: includes/class-up-milestones.php:471
    135 #: includes/class-up-project-activity.php:607
     134#: includes/class-up-milestones.php:592
     135#: includes/class-up-project-activity.php:629
    136136#: includes/frontend/up-table-functions.php:107
    137137#: includes/frontend/up-table-functions.php:171
     
    144144#: includes/frontend/up-table-functions.php:768
    145145#: 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
    148149#: templates/single-project/bugs.php:66 templates/single-project/details.php:83
    149150#: templates/single-project/details.php:104
     
    212213
    213214#: includes/admin/class-up-admin-options.php:68
    214 #: includes/admin/class-up-admin.php:540
     215#: includes/admin/class-up-admin.php:544
    215216msgid "UpStream"
    216217msgstr ""
     
    220221msgstr ""
    221222
    222 #: includes/admin/class-up-admin-pointers.php:33
     223#: includes/admin/class-up-admin-pointers.php:39
    223224msgid "Sign up for our UpStream Project Management tips and tricks newsletter and get the UpStream Customizer extension for free!"
    224225msgstr ""
    225226
    226 #: includes/admin/class-up-admin-pointers.php:35
     227#: includes/admin/class-up-admin-pointers.php:41
    227228msgid "Email Address:"
    228229msgstr ""
    229230
    230 #: includes/admin/class-up-admin-pointers.php:46
     231#: includes/admin/class-up-admin-pointers.php:52
    231232msgid "Get a FREE UpStream extension!"
    232233msgstr ""
    233234
    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
    235237msgid "Important!"
    236238msgstr ""
    237239
    238 #: includes/admin/class-up-admin-pointers.php:80
     240#: includes/admin/class-up-admin-pointers.php:86
    239241msgid "As this is your first project, we have included a walkthrough guide."
    240242msgstr ""
    241243
    242 #: includes/admin/class-up-admin-pointers.php:84
     244#: includes/admin/class-up-admin-pointers.php:90
    243245msgid "We <strong>strongly recommend</strong> that you take the time to follow it. "
    244246msgstr ""
    245247
    246 #: includes/admin/class-up-admin-pointers.php:88
     248#: includes/admin/class-up-admin-pointers.php:94
    247249msgid "There is important info in the guide and it does not take too long."
    248250msgstr ""
    249251
    250 #: includes/admin/class-up-admin-pointers.php:91
     252#: includes/admin/class-up-admin-pointers.php:97
    251253msgid "(you won't see this message or the guide again)"
    252254msgstr ""
    253255
    254 #: includes/admin/class-up-admin-pointers.php:116
     256#: includes/admin/class-up-admin-pointers.php:139
     257msgid "- The installed version of "
     258msgstr ""
     259
     260#: includes/admin/class-up-admin-pointers.php:140
     261msgid " is "
     262msgstr ""
     263
     264#: includes/admin/class-up-admin-pointers.php:141
     265msgid ". This version of UpStream requires version "
     266msgstr ""
     267
     268#: includes/admin/class-up-admin-pointers.php:142
     269msgid " or later."
     270msgstr ""
     271
     272#: includes/admin/class-up-admin-pointers.php:153
     273msgid "This version of UpStream is not compatible with the following addon versions:"
     274msgstr ""
     275
     276#: includes/admin/class-up-admin-pointers.php:158
     277msgid "Do not show this message again for this version"
     278msgstr ""
     279
     280#: includes/admin/class-up-admin-pointers.php:183
    255281#, php-format
    256282msgid "%s Name"
    257283msgstr ""
    258284
    259 #: includes/admin/class-up-admin-pointers.php:118
     285#: includes/admin/class-up-admin-pointers.php:185
    260286#, php-format
    261287msgid "This is a required field and will be what your %s see on the frontend."
    262288msgstr ""
    263289
    264 #: includes/admin/class-up-admin-pointers.php:136
     290#: includes/admin/class-up-admin-pointers.php:203
    265291#, php-format
    266292msgid "%s Status"
    267293msgstr ""
    268294
    269 #: includes/admin/class-up-admin-pointers.php:140
     295#: includes/admin/class-up-admin-pointers.php:207
    270296#, php-format
    271297msgid "Choose a status for this %s."
    272298msgstr ""
    273299
    274 #: includes/admin/class-up-admin-pointers.php:144
     300#: includes/admin/class-up-admin-pointers.php:211
    275301msgid "Statuses are set within the UpStream Settings."
    276302msgstr ""
    277303
    278 #: includes/admin/class-up-admin-pointers.php:161
     304#: includes/admin/class-up-admin-pointers.php:228
     305#: templates/archive-project.php:488
    279306#, php-format
    280307msgid "%s Owner"
    281308msgstr ""
    282309
    283 #: includes/admin/class-up-admin-pointers.php:163
     310#: includes/admin/class-up-admin-pointers.php:230
    284311#, php-format
    285312msgid "Choose the owner of this %s."
    286313msgstr ""
    287314
    288 #: includes/admin/class-up-admin-pointers.php:167
     315#: includes/admin/class-up-admin-pointers.php:234
    289316msgid "Every user who has the Role of UpStream Manager, UpStream User or Administrator appears in this dropdown."
    290317msgstr ""
    291318
    292 #: includes/admin/class-up-admin-pointers.php:171
     319#: includes/admin/class-up-admin-pointers.php:238
    293320#, php-format
    294321msgid "The selected owner will have full access and control of everything within this %s, regardless of their role."
    295322msgstr ""
    296323
    297 #: includes/admin/class-up-admin-pointers.php:194
     324#: includes/admin/class-up-admin-pointers.php:261
    298325#, php-format
    299326msgid "Choose the %s of this %s."
    300327msgstr ""
    301328
    302 #: includes/admin/class-up-admin-pointers.php:199
     329#: includes/admin/class-up-admin-pointers.php:266
    303330#, php-format
    304331msgid "If there are no %s here, you need to add one first by clicking on <strong>New Client</strong> in the sidebar."
    305332msgstr ""
    306333
    307 #: includes/admin/class-up-admin-pointers.php:216
     334#: includes/admin/class-up-admin-pointers.php:283
    308335#: includes/admin/metaboxes/class-up-metaboxes-projects.php:1453
    309 #: templates/archive-project.php:479 templates/single-project/details.php:115
     336#: templates/archive-project.php:484 templates/single-project/details.php:115
    310337#, php-format
    311338msgid "%s Users"
    312339msgstr ""
    313340
    314 #: includes/admin/class-up-admin-pointers.php:218
     341#: includes/admin/class-up-admin-pointers.php:285
    315342#, php-format
    316343msgid "Tick the %s Users who will have access to this %s."
    317344msgstr ""
    318345
    319 #: includes/admin/class-up-admin-pointers.php:222
     346#: includes/admin/class-up-admin-pointers.php:289
    320347#, php-format
    321348msgid "The selected Users can then login using their email address and the password that is set within the %s."
    322349msgstr ""
    323350
    324 #: includes/admin/class-up-admin-pointers.php:226
     351#: includes/admin/class-up-admin-pointers.php:293
    325352#, php-format
    326353msgid "If there are no %s Users here, you need to add one first by editing your %s"
    327354msgstr ""
    328355
    329 #: includes/admin/class-up-admin-pointers.php:243
     356#: includes/admin/class-up-admin-pointers.php:310
    330357#, php-format
    331358msgid "%s Dates"
    332359msgstr ""
    333360
    334 #: includes/admin/class-up-admin-pointers.php:245
     361#: includes/admin/class-up-admin-pointers.php:312
    335362#, php-format
    336363msgid "Add the projected start and finish dates for this %s."
    337364msgstr ""
    338365
    339 #: includes/admin/class-up-admin-pointers.php:259
     366#: includes/admin/class-up-admin-pointers.php:326
    340367#, php-format
    341368msgid "You can now start to add your %s."
    342369msgstr ""
    343370
    344 #: includes/admin/class-up-admin-pointers.php:264
     371#: includes/admin/class-up-admin-pointers.php:331
    345372#, php-format
    346373msgid "Once you've added your %s, you should now Publish/Update the %s. This ensures that all %s will be available within the %s."
    347374msgstr ""
    348375
    349 #: includes/admin/class-up-admin-pointers.php:273
     376#: includes/admin/class-up-admin-pointers.php:340
    350377#, php-format
    351378msgid "If there are no %s in the dropdown, add them by editing the <strong>UpStream Settings</strong>."
     
    379406#: includes/frontend/up-table-functions.php:55
    380407#: includes/frontend/up-table-functions.php:180
    381 #: templates/archive-project.php:82 templates/global/sidebar.php:34
     408#: templates/archive-project.php:85 templates/global/sidebar.php:34
    382409#: templates/single-project/details.php:90
     410#: templates/single-project/progress.php:33
    383411msgid "Progress"
    384412msgstr ""
     
    399427msgstr ""
    400428
    401 #: includes/admin/class-up-admin-project-columns.php:447
     429#: includes/admin/class-up-admin-project-columns.php:453
    402430msgid "statuses"
    403431msgstr ""
    404432
    405 #: includes/admin/class-up-admin-project-columns.php:466
     433#: includes/admin/class-up-admin-project-columns.php:472
    406434msgid "owners"
    407435msgstr ""
     
    422450#: includes/admin/metaboxes/class-up-metaboxes-projects.php:949
    423451#: includes/admin/metaboxes/class-up-metaboxes-projects.php:1477
    424 #: includes/class-up-milestones.php:338 includes/class-up-milestones.php:440
     452#: includes/class-up-milestones.php:338 includes/class-up-milestones.php:561
    425453#: includes/frontend/up-table-functions.php:66
    426454#: includes/frontend/up-table-functions.php:220
    427455#: includes/model/UpStream_Model_Milestone.php:272
    428 #: includes/model/UpStream_Model_Project.php:459
    429 #: includes/model/UpStream_Model_Task.php:296 templates/archive-project.php:465
     456#: includes/model/UpStream_Model_Project.php:470
     457#: includes/model/UpStream_Model_Task.php:296 templates/archive-project.php:470
    430458#: templates/single-project/details.php:21
    431459msgid "End Date"
     
    437465msgstr ""
    438466
    439 #: includes/admin/class-up-admin.php:546
     467#: includes/admin/class-up-admin.php:550
    440468msgid "Comment reply notifications"
    441469msgstr ""
    442470
    443 #: includes/admin/class-up-admin.php:553
     471#: includes/admin/class-up-admin.php:557
    444472#: includes/admin/options/class-up-options-general.php:152
    445473#: includes/admin/options/class-up-options-general.php:166
     
    453481#: includes/admin/options/class-up-options-general.php:446
    454482#: includes/admin/options/class-up-options-general.php:460
    455 #: includes/admin/options/class-up-options-general.php:485
     483#: includes/admin/options/class-up-options-general.php:474
    456484#: includes/admin/options/class-up-options-general.php:499
    457485#: includes/admin/options/class-up-options-general.php:513
    458486#: includes/admin/options/class-up-options-general.php:527
    459487#: 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
    461491msgid "Yes"
    462492msgstr ""
    463493
    464 #: includes/admin/class-up-admin.php:558
     494#: includes/admin/class-up-admin.php:562
    465495#: includes/admin/options/class-up-options-general.php:151
    466496#: includes/admin/options/class-up-options-general.php:165
     
    474504#: includes/admin/options/class-up-options-general.php:445
    475505#: includes/admin/options/class-up-options-general.php:459
    476 #: includes/admin/options/class-up-options-general.php:484
     506#: includes/admin/options/class-up-options-general.php:473
    477507#: includes/admin/options/class-up-options-general.php:498
    478508#: includes/admin/options/class-up-options-general.php:512
     509#: includes/admin/options/class-up-options-general.php:526
    479510#: 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
    481513msgid "No"
    482514msgstr ""
    483515
    484 #: includes/admin/class-up-admin.php:564
     516#: includes/admin/class-up-admin.php:568
    485517#, php-format
    486518msgid "Whether to be notified when someone reply to your comments within %s."
     
    506538#: includes/admin/metaboxes/class-up-metaboxes-clients.php:230
    507539#: includes/admin/metaboxes/class-up-metaboxes-clients.php:404
    508 #: templates/report-parameters/section.php:53
     540#: templates/report-parameters/section.php:61
    509541msgid "Name"
    510542msgstr ""
     
    564596
    565597#: 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
    568601msgid "UpStream Client User"
    569602msgstr ""
    570603
    571604#: includes/admin/metaboxes/class-up-metaboxes-clients.php:410
    572 #: includes/admin/up-enqueues.php:163
     605#: includes/admin/up-enqueues.php:164
    573606msgid "No users found."
    574607msgstr ""
     
    617650#: includes/admin/metaboxes/class-up-metaboxes-clients.php:609
    618651#: includes/admin/metaboxes/class-up-metaboxes-clients.php:676
    619 #: includes/admin/metaboxes/class-up-metaboxes-clients.php:769
    620 #: includes/admin/metaboxes/class-up-metaboxes-clients.php:819
    621 #: includes/class-up-comments.php:289 includes/class-up-comments.php:402
    622 #: includes/class-up-comments.php:510 includes/class-up-comments.php:629
     652#: 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
    623656#: vendor/alledia/wordpress-plugin-framework/src/library/Module/Addons.php:338
    624657#: vendor/alledia/wordpress-plugin-framework/src/library/Module/Addons.php:346
     
    629662#: includes/admin/metaboxes/class-up-metaboxes-clients.php:613
    630663#: includes/admin/metaboxes/class-up-metaboxes-clients.php:680
    631 #: includes/admin/metaboxes/class-up-metaboxes-clients.php:773
    632 #: includes/admin/metaboxes/class-up-metaboxes-clients.php:823
     664#: includes/admin/metaboxes/class-up-metaboxes-clients.php:781
     665#: includes/admin/metaboxes/class-up-metaboxes-clients.php:831
    633666#: includes/admin/metaboxes/class-up-metaboxes-projects.php:1905
    634 #: includes/class-up-comments.php:250 includes/class-up-comments.php:377
    635 #: includes/class-up-comments.php:394 includes/class-up-comments.php:476
    636 #: includes/class-up-comments.php:624 includes/class-up-comments.php:748
    637 #: includes/class-up-comments.php:765
     667#: 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
    638671#: vendor/alledia/wordpress-plugin-framework/src/library/Module/Addons.php:342
    639672msgid "Invalid request."
     
    643676#: includes/admin/metaboxes/class-up-metaboxes-clients.php:618
    644677#: includes/admin/metaboxes/class-up-metaboxes-clients.php:685
    645 #: includes/admin/metaboxes/class-up-metaboxes-clients.php:778
    646 #: includes/admin/metaboxes/class-up-metaboxes-clients.php:828
     678#: includes/admin/metaboxes/class-up-metaboxes-clients.php:786
     679#: includes/admin/metaboxes/class-up-metaboxes-clients.php:836
    647680msgid "Invalid Client ID."
    648681msgstr ""
    649682
    650683#: includes/admin/metaboxes/class-up-metaboxes-clients.php:562
    651 #: includes/admin/metaboxes/class-up-metaboxes-clients.php:783
    652 #: includes/admin/metaboxes/class-up-metaboxes-clients.php:833
     684#: includes/admin/metaboxes/class-up-metaboxes-clients.php:791
     685#: includes/admin/metaboxes/class-up-metaboxes-clients.php:841
    653686msgid "Invalid User ID."
    654687msgstr ""
     
    658691msgstr ""
    659692
    660 #: includes/admin/metaboxes/class-up-metaboxes-clients.php:787
    661 #: includes/admin/metaboxes/class-up-metaboxes-clients.php:837
     693#: includes/admin/metaboxes/class-up-metaboxes-clients.php:795
     694#: includes/admin/metaboxes/class-up-metaboxes-clients.php:845
    662695msgid "This Client User is not associated with this Client."
    663696msgstr ""
    664697
    665 #: includes/admin/metaboxes/class-up-metaboxes-clients.php:842
     698#: includes/admin/metaboxes/class-up-metaboxes-clients.php:850
    666699msgid "This user doesn't seem to be a valid Client User."
    667700msgstr ""
     
    700733#: includes/admin/metaboxes/class-up-metaboxes-projects.php:940
    701734#: includes/admin/metaboxes/class-up-metaboxes-projects.php:1465
    702 #: includes/class-up-milestones.php:337 includes/class-up-milestones.php:439
     735#: includes/class-up-milestones.php:337 includes/class-up-milestones.php:560
    703736#: includes/frontend/up-table-functions.php:61
    704737#: includes/frontend/up-table-functions.php:215
    705738#: includes/model/UpStream_Model_Milestone.php:271
    706 #: includes/model/UpStream_Model_Project.php:458
    707 #: includes/model/UpStream_Model_Task.php:295 templates/archive-project.php:459
     739#: includes/model/UpStream_Model_Project.php:469
     740#: includes/model/UpStream_Model_Task.php:295 templates/archive-project.php:464
    708741#: templates/single-project/details.php:16
    709742msgid "Start Date"
     
    766799#: includes/frontend/up-table-functions.php:375
    767800#: includes/frontend/up-table-functions.php:435
    768 #: includes/model/UpStream_Model_Object.php:67 templates/archive-project.php:72
     801#: includes/model/UpStream_Model_Object.php:67 templates/archive-project.php:75
    769802#: templates/global/sidebar.php:24 templates/single-project/bugs.php:65
    770803#: templates/single-project/files.php:45 templates/single-project/tasks.php:79
     
    776809#: includes/admin/metaboxes/class-up-metaboxes-projects.php:701
    777810#: includes/admin/metaboxes/class-up-metaboxes-projects.php:718
    778 #: includes/admin/metaboxes/class-up-metaboxes-projects.php:2197
    779 #: includes/class-up-milestones.php:336 includes/class-up-milestones.php:364
     811#: includes/admin/metaboxes/class-up-metaboxes-projects.php:2208
     812#: includes/class-up-milestones.php:336 includes/class-up-milestones.php:480
    780813#: includes/frontend/up-table-functions.php:1051
    781 #: templates/archive-project.php:83 templates/global/sidebar.php:35
     814#: templates/archive-project.php:86 templates/global/sidebar.php:35
    782815#: 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
    783818#: templates/single-project/tasks.php:253
    784819#: templates/single-project/tasks.php:280
     
    791826#: includes/admin/options/class-up-options-projects.php:99
    792827#: includes/admin/options/class-up-options-tasks.php:99
    793 #: templates/archive-project.php:80 templates/global/sidebar.php:32
     828#: templates/archive-project.php:83 templates/global/sidebar.php:32
    794829msgid "Statuses"
    795830msgstr ""
     
    851886#: includes/admin/metaboxes/class-up-metaboxes-projects.php:1805
    852887#: includes/admin/metaboxes/class-up-metaboxes-projects.php:1819
     888#: includes/admin/up-enqueues.php:118
     889msgid "Add new Comment"
     890msgstr ""
     891
     892#: includes/admin/metaboxes/class-up-metaboxes-projects.php:1811
    853893#: includes/admin/up-enqueues.php:117
    854 msgid "Add new Comment"
    855 msgstr ""
    856 
    857 #: includes/admin/metaboxes/class-up-metaboxes-projects.php:1811
    858 #: includes/admin/up-enqueues.php:116
    859894msgid "Add Comment"
    860895msgstr ""
     
    865900
    866901#: includes/admin/metaboxes/class-up-metaboxes-projects.php:1911
    867 #: includes/class-up-comments.php:279 includes/class-up-comments.php:385
    868 #: includes/class-up-comments.php:482 includes/class-up-comments.php:754
     902#: 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
    869904msgid "Invalid Project."
    870905msgstr ""
     
    872907#: includes/admin/metaboxes/class-up-metaboxes-projects.php:2009
    873908#: includes/admin/metaboxes/metabox-functions.php:598
    874 #: includes/class-up-comment.php:579 includes/class-up-comments.php:921
     909#: includes/class-up-comment.php:580 includes/class-up-comments.php:925
    875910#, php-format
    876911msgctxt "%s = human-readable time difference"
     
    890925#: includes/admin/options/class-up-options-projects.php:160
    891926#: 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
    895931msgid "Open"
    896932msgstr ""
     
    914950
    915951#: includes/admin/metaboxes/metabox-functions.php:715
    916 #: includes/admin/up-enqueues.php:123
     952#: includes/admin/up-enqueues.php:124
    917953msgid "Unapprove"
    918954msgstr ""
    919955
    920956#: includes/admin/metaboxes/metabox-functions.php:721
    921 #: includes/admin/up-enqueues.php:125
     957#: includes/admin/up-enqueues.php:126
    922958msgid "Approve"
    923959msgstr ""
    924960
    925961#: includes/admin/metaboxes/metabox-functions.php:730
    926 #: includes/admin/up-enqueues.php:115
     962#: includes/admin/up-enqueues.php:116
    927963msgid "Reply"
    928964msgstr ""
    929965
    930966#: includes/admin/metaboxes/metabox-functions.php:738
    931 #: includes/admin/up-enqueues.php:121
     967#: includes/admin/up-enqueues.php:122
    932968msgid "Delete"
    933969msgstr ""
     
    942978
    943979#: includes/admin/metaboxes/metabox-functions.php:1232
    944 #: includes/admin/up-enqueues.php:134
     980#: includes/admin/up-enqueues.php:135
    945981msgid "No client selected"
    946982msgstr ""
     
    10151051#: includes/admin/options/class-up-options-projects.php:161
    10161052#: includes/admin/options/class-up-options-tasks.php:161
    1017 #: templates/single-project/overview.php:212
    1018 #: templates/single-project/overview.php:244
     1053#: templates/single-project/overview.php:221
     1054#: templates/single-project/overview.php:253
    10191055msgid "Closed"
    10201056msgstr ""
     
    12891325
    12901326#: includes/admin/options/class-up-options-general.php:320
    1291 #: includes/up-general-functions.php:818
     1327#: includes/up-general-functions.php:839
    12921328msgid "Contact Admin"
    12931329msgstr ""
     
    13421378
    13431379#: includes/admin/options/class-up-options-general.php:394
     1380msgid "Collapse Project Progress box"
     1381msgstr ""
     1382
     1383#: includes/admin/options/class-up-options-general.php:398
     1384msgid "Choose whether to collapse the Project progress box automatically when a user opens a project page."
     1385msgstr ""
     1386
     1387#: includes/admin/options/class-up-options-general.php:408
    13441388msgid "Collapse Project Milestones box"
    13451389msgstr ""
    13461390
    1347 #: includes/admin/options/class-up-options-general.php:398
     1391#: includes/admin/options/class-up-options-general.php:412
    13481392msgid "Choose whether to collapse the Milestones box automatically when a user opens a project page."
    13491393msgstr ""
    13501394
    1351 #: includes/admin/options/class-up-options-general.php:408
     1395#: includes/admin/options/class-up-options-general.php:422
    13521396msgid "Collapse Project Tasks box"
    13531397msgstr ""
    13541398
    1355 #: includes/admin/options/class-up-options-general.php:412
     1399#: includes/admin/options/class-up-options-general.php:426
    13561400msgid "Choose whether to collapse the Tasks box automatically when a user opens a project page."
    13571401msgstr ""
    13581402
    1359 #: includes/admin/options/class-up-options-general.php:422
     1403#: includes/admin/options/class-up-options-general.php:436
    13601404msgid "Collapse Project Bugs box"
    13611405msgstr ""
    13621406
    1363 #: includes/admin/options/class-up-options-general.php:426
     1407#: includes/admin/options/class-up-options-general.php:440
    13641408msgid "Choose whether to collapse the Bugs box automatically when a user opens a project page."
    13651409msgstr ""
    13661410
    1367 #: includes/admin/options/class-up-options-general.php:436
     1411#: includes/admin/options/class-up-options-general.php:450
    13681412msgid "Collapse Project Files box"
    13691413msgstr ""
    13701414
    1371 #: includes/admin/options/class-up-options-general.php:440
     1415#: includes/admin/options/class-up-options-general.php:454
    13721416msgid "Choose whether to collapse the Files box automatically when a user opens a project page."
    13731417msgstr ""
    13741418
    1375 #: includes/admin/options/class-up-options-general.php:450
     1419#: includes/admin/options/class-up-options-general.php:464
    13761420msgid "Collapse Project Discussion box"
    13771421msgstr ""
    13781422
    1379 #: includes/admin/options/class-up-options-general.php:454
     1423#: includes/admin/options/class-up-options-general.php:468
    13801424msgid "Choose whether to collapse the Discussion box automatically when a user opens a project page."
    13811425msgstr ""
    13821426
    1383 #: includes/admin/options/class-up-options-general.php:468
     1427#: includes/admin/options/class-up-options-general.php:482
    13841428msgid "Toggle Features"
    13851429msgstr ""
    13861430
    1387 #: includes/admin/options/class-up-options-general.php:471
     1431#: includes/admin/options/class-up-options-general.php:485
    13881432msgid "Options to toggle different sections and features."
    13891433msgstr ""
    13901434
    1391 #: includes/admin/options/class-up-options-general.php:475
     1435#: includes/admin/options/class-up-options-general.php:489
     1436msgid "Disable Project Progress box"
     1437msgstr ""
     1438
     1439#: includes/admin/options/class-up-options-general.php:493
     1440msgid "Choose whether to disable the Project progress box on the front end."
     1441msgstr ""
     1442
     1443#: includes/admin/options/class-up-options-general.php:503
    13921444msgid "Disable Clients and Client Users"
    13931445msgstr ""
    13941446
    1395 #: includes/admin/options/class-up-options-general.php:479
     1447#: includes/admin/options/class-up-options-general.php:507
    13961448msgid "Choose whether if Clients and Client Users can be added and used on Projects."
    13971449msgstr ""
    13981450
    1399 #: includes/admin/options/class-up-options-general.php:489
     1451#: includes/admin/options/class-up-options-general.php:517
    14001452msgid "Select all client's users by default"
    14011453msgstr ""
    14021454
    1403 #: includes/admin/options/class-up-options-general.php:493
     1455#: includes/admin/options/class-up-options-general.php:521
    14041456msgid "Choose whether if all client's users should be checked by default after change or select the client."
    14051457msgstr ""
    14061458
    1407 #: includes/admin/options/class-up-options-general.php:503
     1459#: includes/admin/options/class-up-options-general.php:531
    14081460msgid "Disable Projects Categorization"
    14091461msgstr ""
    14101462
    1411 #: includes/admin/options/class-up-options-general.php:507
     1463#: includes/admin/options/class-up-options-general.php:535
    14121464msgid "Choose whether Projects can be sorted into categories by managers and users."
    14131465msgstr ""
    14141466
    1415 #: includes/admin/options/class-up-options-general.php:517
     1467#: includes/admin/options/class-up-options-general.php:545
    14161468msgid "Project Progress Icons"
    14171469msgstr ""
    14181470
    1419 #: includes/admin/options/class-up-options-general.php:521
     1471#: includes/admin/options/class-up-options-general.php:549
    14201472msgid "Choose whether to display the Project Progress Icons section on frontend."
    14211473msgstr ""
    14221474
    1423 #: includes/admin/options/class-up-options-general.php:526
     1475#: includes/admin/options/class-up-options-general.php:554
    14241476msgid "Do not show"
    14251477msgstr ""
    14261478
    1427 #: includes/admin/options/class-up-options-general.php:531
     1479#: includes/admin/options/class-up-options-general.php:559
    14281480msgid "Disable Project Details"
    14291481msgstr ""
    14301482
    1431 #: includes/admin/options/class-up-options-general.php:535
     1483#: includes/admin/options/class-up-options-general.php:563
    14321484msgid "Choose whether to display the Project Details section on frontend."
    14331485msgstr ""
    14341486
    1435 #: includes/admin/options/class-up-options-general.php:545
     1487#: includes/admin/options/class-up-options-general.php:573
    14361488msgid "Disable Bugs"
    14371489msgstr ""
    14381490
    1439 #: includes/admin/options/class-up-options-general.php:549
     1491#: includes/admin/options/class-up-options-general.php:577
    14401492msgid "Ticking this box will disable the Bugs section on both the frontend and the admin area."
    14411493msgstr ""
    14421494
    1443 #: includes/admin/options/class-up-options-general.php:554
     1495#: includes/admin/options/class-up-options-general.php:582
    14441496msgid "Disable the Bugs section?"
    14451497msgstr ""
    14461498
    1447 #: includes/admin/options/class-up-options-general.php:559
     1499#: includes/admin/options/class-up-options-general.php:587
    14481500msgid "Disable Tasks"
    14491501msgstr ""
    14501502
    1451 #: includes/admin/options/class-up-options-general.php:563
     1503#: includes/admin/options/class-up-options-general.php:591
    14521504msgid "Ticking this box will disable the Tasks section on both the frontend and the admin area."
    14531505msgstr ""
    14541506
    1455 #: includes/admin/options/class-up-options-general.php:568
     1507#: includes/admin/options/class-up-options-general.php:596
    14561508msgid "Disable the Tasks section?"
    14571509msgstr ""
    14581510
    1459 #: includes/admin/options/class-up-options-general.php:573
     1511#: includes/admin/options/class-up-options-general.php:601
    14601512msgid "Disable Milestones"
    14611513msgstr ""
    14621514
    1463 #: includes/admin/options/class-up-options-general.php:577
     1515#: includes/admin/options/class-up-options-general.php:605
    14641516msgid "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>"
    14651517msgstr ""
    14661518
    1467 #: includes/admin/options/class-up-options-general.php:582
     1519#: includes/admin/options/class-up-options-general.php:610
    14681520msgid "Disable the Milestones section?"
    14691521msgstr ""
    14701522
    1471 #: includes/admin/options/class-up-options-general.php:587
     1523#: includes/admin/options/class-up-options-general.php:615
    14721524msgid "Disable Milestone Categories"
    14731525msgstr ""
    14741526
    1475 #: includes/admin/options/class-up-options-general.php:591
     1527#: includes/admin/options/class-up-options-general.php:619
    14761528msgid "Ticking this box will disable the Milestone Categories section on both the frontend and the admin area."
    14771529msgstr ""
    14781530
    1479 #: includes/admin/options/class-up-options-general.php:602
     1531#: includes/admin/options/class-up-options-general.php:630
    14801532msgid "Disable Files"
    14811533msgstr ""
    14821534
    1483 #: includes/admin/options/class-up-options-general.php:606
     1535#: includes/admin/options/class-up-options-general.php:634
    14841536msgid "Ticking this box will disable the Files section on both the frontend and the admin area."
    14851537msgstr ""
    14861538
    1487 #: includes/admin/options/class-up-options-general.php:611
     1539#: includes/admin/options/class-up-options-general.php:639
    14881540msgid "Disable the Files section?"
    14891541msgstr ""
    14901542
    1491 #: includes/admin/options/class-up-options-general.php:616
    1492 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:620
     1543#: includes/admin/options/class-up-options-general.php:644
     1544msgid "File Upload Manager (NOTE: DO NOT change after you have added files)"
     1545msgstr ""
     1546
     1547#: includes/admin/options/class-up-options-general.php:648
    14961548msgid "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."
    14971549msgstr ""
    14981550
    1499 #: includes/admin/options/class-up-options-general.php:625
     1551#: includes/admin/options/class-up-options-general.php:653
    15001552msgid "Use WordPress built-in file uploads"
    15011553msgstr ""
    15021554
    1503 #: includes/admin/options/class-up-options-general.php:626
     1555#: includes/admin/options/class-up-options-general.php:654
    15041556msgid "Use UpStream secure file uploads"
    15051557msgstr ""
    15061558
    1507 #: includes/admin/options/class-up-options-general.php:630
     1559#: includes/admin/options/class-up-options-general.php:658
    15081560msgid "UpStream secure file upload location"
    15091561msgstr ""
    15101562
    1511 #: includes/admin/options/class-up-options-general.php:634
    1512 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:640
     1563#: includes/admin/options/class-up-options-general.php:662
     1564msgid "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."
     1565msgstr ""
     1566
     1567#: includes/admin/options/class-up-options-general.php:668
    15161568msgid "Disable Reports"
    15171569msgstr ""
    15181570
    1519 #: includes/admin/options/class-up-options-general.php:644
     1571#: includes/admin/options/class-up-options-general.php:672
    15201572msgid "Disable the reports section on the sidebar."
    15211573msgstr ""
    15221574
    1523 #: includes/admin/options/class-up-options-general.php:649
     1575#: includes/admin/options/class-up-options-general.php:677
    15241576msgid "Show reports section"
    15251577msgstr ""
    15261578
    1527 #: includes/admin/options/class-up-options-general.php:650
    1528 #: includes/admin/options/class-up-options-general.php:664
    15291579#: 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
     1586msgid "Disable section"
     1587msgstr ""
     1588
     1589#: includes/admin/options/class-up-options-general.php:682
     1590#: includes/admin/options/class-up-options-general.php:696
     1591msgid "Disable Discussion on Projects"
     1592msgstr ""
     1593
     1594#: includes/admin/options/class-up-options-general.php:686
     1595#: includes/admin/options/class-up-options-general.php:700
     1596msgid "Either allow comments on projects on both the frontend and the admin area or hide the section."
     1597msgstr ""
     1598
    15301599#: includes/admin/options/class-up-options-general.php:691
    15311600#: includes/admin/options/class-up-options-general.php:705
    1532 #: includes/admin/options/class-up-options-general.php:719
    1533 #: includes/admin/options/class-up-options-general.php:733
    1534 msgid "Disable section"
    1535 msgstr ""
    1536 
    1537 #: includes/admin/options/class-up-options-general.php:654
    1538 #: includes/admin/options/class-up-options-general.php:668
    1539 msgid "Disable Discussion on Projects"
    1540 msgstr ""
    1541 
    1542 #: includes/admin/options/class-up-options-general.php:658
    1543 #: includes/admin/options/class-up-options-general.php:672
    1544 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:663
    1548 #: includes/admin/options/class-up-options-general.php:677
    15491601msgid "Allow comments on projects"
    15501602msgstr ""
    15511603
    1552 #: includes/admin/options/class-up-options-general.php:681
     1604#: includes/admin/options/class-up-options-general.php:709
    15531605msgid "Disable Discussion on Milestones"
    15541606msgstr ""
    15551607
    1556 #: includes/admin/options/class-up-options-general.php:685
    1557 #: includes/admin/options/class-up-options-general.php:699
    15581608#: includes/admin/options/class-up-options-general.php:713
    15591609#: 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
    15601612#, php-format
    15611613msgid "Either allow comments on %s or hide the section."
    15621614msgstr ""
    15631615
    1564 #: includes/admin/options/class-up-options-general.php:686
     1616#: includes/admin/options/class-up-options-general.php:714
    15651617#: includes/up-labels.php:46
    15661618msgid "Milestones"
    15671619msgstr ""
    15681620
    1569 #: includes/admin/options/class-up-options-general.php:690
     1621#: includes/admin/options/class-up-options-general.php:718
    15701622msgid "Allow comments on Milestones"
    15711623msgstr ""
    15721624
    1573 #: includes/admin/options/class-up-options-general.php:695
     1625#: includes/admin/options/class-up-options-general.php:723
    15741626msgid "Disable Discussion on Tasks"
    15751627msgstr ""
    15761628
    1577 #: includes/admin/options/class-up-options-general.php:700
     1629#: includes/admin/options/class-up-options-general.php:728
    15781630#: includes/up-labels.php:62
    15791631msgid "Tasks"
    15801632msgstr ""
    15811633
    1582 #: includes/admin/options/class-up-options-general.php:704
     1634#: includes/admin/options/class-up-options-general.php:732
    15831635msgid "Allow comments on Tasks"
    15841636msgstr ""
    15851637
    1586 #: includes/admin/options/class-up-options-general.php:709
     1638#: includes/admin/options/class-up-options-general.php:737
    15871639msgid "Disable Discussion on Bugs"
    15881640msgstr ""
    15891641
    1590 #: includes/admin/options/class-up-options-general.php:714
     1642#: includes/admin/options/class-up-options-general.php:742
    15911643#: includes/up-labels.php:66
    15921644msgid "Bugs"
    15931645msgstr ""
    15941646
    1595 #: includes/admin/options/class-up-options-general.php:718
     1647#: includes/admin/options/class-up-options-general.php:746
    15961648msgid "Allow comments on Bugs"
    15971649msgstr ""
    15981650
    1599 #: includes/admin/options/class-up-options-general.php:723
     1651#: includes/admin/options/class-up-options-general.php:751
    16001652msgid "Disable Discussion on Files"
    16011653msgstr ""
    16021654
    1603 #: includes/admin/options/class-up-options-general.php:728
     1655#: includes/admin/options/class-up-options-general.php:756
    16041656#: includes/up-labels.php:70
    16051657msgid "Files"
    16061658msgstr ""
    16071659
    1608 #: includes/admin/options/class-up-options-general.php:732
     1660#: includes/admin/options/class-up-options-general.php:760
    16091661msgid "Allow comments on Files"
    16101662msgstr ""
    16111663
    1612 #: includes/admin/options/class-up-options-general.php:737
     1664#: includes/admin/options/class-up-options-general.php:765
    16131665msgid "Show all projects in the frontend sidebar"
    16141666msgstr ""
    16151667
    1616 #: includes/admin/options/class-up-options-general.php:740
     1668#: includes/admin/options/class-up-options-general.php:768
    16171669msgid "If enabled, all projects will be displayed in the sidebar on frontend."
    16181670msgstr ""
    16191671
    1620 #: includes/admin/options/class-up-options-general.php:744
     1672#: includes/admin/options/class-up-options-general.php:772
    16211673msgid "Show only the current project"
    16221674msgstr ""
    16231675
    1624 #: includes/admin/options/class-up-options-general.php:745
     1676#: includes/admin/options/class-up-options-general.php:773
    16251677msgid "Show all projects"
    16261678msgstr ""
    16271679
    1628 #: includes/admin/options/class-up-options-general.php:749
     1680#: includes/admin/options/class-up-options-general.php:777
     1681msgid "Override project locking on front end"
     1682msgstr ""
     1683
     1684#: includes/admin/options/class-up-options-general.php:780
     1685msgid "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."
     1686msgstr ""
     1687
     1688#: includes/admin/options/class-up-options-general.php:784
     1689msgid "Users cannot edit simultaneously (safe)"
     1690msgstr ""
     1691
     1692#: includes/admin/options/class-up-options-general.php:785
     1693msgid "Multiple users can edit a project simultaneously"
     1694msgstr ""
     1695
     1696#: includes/admin/options/class-up-options-general.php:789
    16291697msgid "Send Notifications for New Comments"
    16301698msgstr ""
    16311699
    1632 #: includes/admin/options/class-up-options-general.php:753
    1633 #: includes/admin/options/class-up-options-general.php:866
    1634 #: includes/admin/options/class-up-options-general.php:880
     1700#: 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
    16351703#: includes/admin/options/class-up-options-milestones.php:108
    16361704msgid "Enabled"
    16371705msgstr ""
    16381706
    1639 #: includes/admin/options/class-up-options-general.php:754
     1707#: includes/admin/options/class-up-options-general.php:794
    16401708#: includes/admin/options/class-up-options-milestones.php:109
    16411709msgid "Disabled"
    16421710msgstr ""
    16431711
    1644 #: includes/admin/options/class-up-options-general.php:757
     1712#: includes/admin/options/class-up-options-general.php:797
    16451713msgid "Check this to send a notification to the owner and creator of a milestone, task, or bug when someone comments on it."
    16461714msgstr ""
    16471715
    1648 #: includes/admin/options/class-up-options-general.php:763
     1716#: includes/admin/options/class-up-options-general.php:803
    16491717msgid "Localization"
    16501718msgstr ""
    16511719
    1652 #: includes/admin/options/class-up-options-general.php:767
     1720#: includes/admin/options/class-up-options-general.php:807
    16531721msgid "General options for localization, such as times."
    16541722msgstr ""
    16551723
    1656 #: includes/admin/options/class-up-options-general.php:771
     1724#: includes/admin/options/class-up-options-general.php:811
    16571725msgid "Work Hours Per Day"
    16581726msgstr ""
    16591727
    1660 #: includes/admin/options/class-up-options-general.php:774
     1728#: includes/admin/options/class-up-options-general.php:814
    16611729msgid "The number of work hours per day (used in determining days of work)."
    16621730msgstr ""
    16631731
    1664 #: includes/admin/options/class-up-options-general.php:778
     1732#: includes/admin/options/class-up-options-general.php:818
    16651733msgid "Currency Symbol"
    16661734msgstr ""
    16671735
    1668 #: includes/admin/options/class-up-options-general.php:781
     1736#: includes/admin/options/class-up-options-general.php:821
    16691737msgid "The local currency symbol."
    16701738msgstr ""
    16711739
    1672 #: includes/admin/options/class-up-options-general.php:789
     1740#: includes/admin/options/class-up-options-general.php:829
    16731741msgid "Maintenance"
    16741742msgstr ""
    16751743
    1676 #: includes/admin/options/class-up-options-general.php:793
     1744#: includes/admin/options/class-up-options-general.php:833
    16771745msgid "General options for maintenance only. Be careful enabling any of these options."
    16781746msgstr ""
    16791747
    1680 #: includes/admin/options/class-up-options-general.php:797
     1748#: includes/admin/options/class-up-options-general.php:837
    16811749msgid "Add default UpStream capabilities"
    16821750msgstr ""
    16831751
    1684 #: includes/admin/options/class-up-options-general.php:802
     1752#: includes/admin/options/class-up-options-general.php:842
    16851753msgid "Administrator"
    16861754msgstr ""
    16871755
    1688 #: includes/admin/options/class-up-options-general.php:803
     1756#: includes/admin/options/class-up-options-general.php:843
    16891757#: includes/class-up-roles.php:45
    16901758msgid "UpStream Manager"
    16911759msgstr ""
    16921760
    1693 #: includes/admin/options/class-up-options-general.php:804
    1694 #: includes/class-up-roles.php:80 upstream.php:616
     1761#: includes/admin/options/class-up-options-general.php:844
     1762#: includes/class-up-roles.php:80 upstream.php:549
    16951763msgid "UpStream User"
    16961764msgstr ""
    16971765
    1698 #: includes/admin/options/class-up-options-general.php:814
     1766#: includes/admin/options/class-up-options-general.php:854
    16991767msgid "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."
    17001768msgstr ""
    17011769
    1702 #: includes/admin/options/class-up-options-general.php:821
     1770#: includes/admin/options/class-up-options-general.php:861
    17031771msgid "Update Project Data"
    17041772msgstr ""
    17051773
    1706 #: includes/admin/options/class-up-options-general.php:824
     1774#: includes/admin/options/class-up-options-general.php:864
    17071775msgid "Update"
    17081776msgstr ""
    17091777
    1710 #: includes/admin/options/class-up-options-general.php:826
     1778#: includes/admin/options/class-up-options-general.php:866
    17111779msgid "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."
    17121780msgstr ""
    17131781
    1714 #: includes/admin/options/class-up-options-general.php:833
     1782#: includes/admin/options/class-up-options-general.php:873
    17151783msgid "Migrate Legacy Milestones"
    17161784msgstr ""
    17171785
    1718 #: includes/admin/options/class-up-options-general.php:836
     1786#: includes/admin/options/class-up-options-general.php:876
    17191787msgid "Start migration"
    17201788msgstr ""
    17211789
    1722 #: includes/admin/options/class-up-options-general.php:838
     1790#: includes/admin/options/class-up-options-general.php:878
    17231791msgid "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."
    17241792msgstr ""
    17251793
    1726 #: includes/admin/options/class-up-options-general.php:845
     1794#: includes/admin/options/class-up-options-general.php:885
    17271795msgid "Cleanup Plugin's Update Cache"
    17281796msgstr ""
    17291797
    1730 #: includes/admin/options/class-up-options-general.php:848
     1798#: includes/admin/options/class-up-options-general.php:888
    17311799msgid "Cleanup"
    17321800msgstr ""
    17331801
    1734 #: includes/admin/options/class-up-options-general.php:850
     1802#: includes/admin/options/class-up-options-general.php:890
    17351803msgid "If you’re having problems seeing UpStream extension updates, click this button and you see any new plugin releases."
    17361804msgstr ""
    17371805
    1738 #: includes/admin/options/class-up-options-general.php:857
     1806#: includes/admin/options/class-up-options-general.php:897
    17391807msgid "Debug"
    17401808msgstr ""
    17411809
    1742 #: includes/admin/options/class-up-options-general.php:861
     1810#: includes/admin/options/class-up-options-general.php:901
    17431811msgid "Ticking this box will enable special debug code and a new menu to inspect the debug information."
    17441812msgstr ""
    17451813
    1746 #: includes/admin/options/class-up-options-general.php:871
     1814#: includes/admin/options/class-up-options-general.php:911
    17471815msgid "Beta Features"
    17481816msgstr ""
    17491817
    1750 #: includes/admin/options/class-up-options-general.php:875
     1818#: includes/admin/options/class-up-options-general.php:915
    17511819msgid "Ticking this box will enable beta features."
    17521820msgstr ""
    17531821
    1754 #: includes/admin/options/class-up-options-general.php:885
     1822#: includes/admin/options/class-up-options-general.php:925
    17551823msgid "Remove Data"
    17561824msgstr ""
    17571825
    1758 #: includes/admin/options/class-up-options-general.php:889
     1826#: includes/admin/options/class-up-options-general.php:929
    17591827msgid "Ticking this box will delete all UpStream data when plugin is uninstalled."
    17601828msgstr ""
    17611829
    1762 #: includes/admin/options/class-up-options-general.php:894
     1830#: includes/admin/options/class-up-options-general.php:934
    17631831msgid "Remove all data on uninstall?"
    17641832msgstr ""
    17651833
    1766 #: includes/admin/options/class-up-options-general.php:948
    1767 #: includes/admin/options/class-up-options-general.php:952
    1768 #: includes/admin/options/class-up-options-general.php:966
    1769 #: includes/admin/options/class-up-options-general.php:970
    1770 #: includes/admin/options/class-up-options-general.php:1125
    1771 #: includes/admin/options/class-up-options-general.php:1129
    1772 #: includes/admin/options/class-up-options-general.php:1160
    1773 #: includes/admin/options/class-up-options-general.php:1164
     1834#: 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
    17741842msgid "Invalid Nonce"
    17751843msgstr ""
    17761844
    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
     1846msgid "Invalid File"
     1847msgstr ""
     1848
     1849#: includes/admin/options/class-up-options-general.php:1023
     1850#: includes/admin/options/class-up-options-general.php:1066
    17791851msgid "You must be an administrator to import data."
    17801852msgstr ""
    17811853
    1782 #: includes/admin/options/class-up-options-general.php:982
     1854#: includes/admin/options/class-up-options-general.php:1026
    17831855msgid "No file found."
    17841856msgstr ""
    17851857
    1786 #: includes/admin/options/class-up-options-general.php:1039
     1858#: includes/admin/options/class-up-options-general.php:1085
    17871859msgid "The file could not be found."
    17881860msgstr ""
    17891861
    1790 #: includes/admin/options/class-up-options-general.php:1044
     1862#: includes/admin/options/class-up-options-general.php:1090
    17911863msgid "A general error occurred."
    17921864msgstr ""
    17931865
    1794 #: includes/admin/options/class-up-options-general.php:1170
     1866#: includes/admin/options/class-up-options-general.php:1216
    17951867msgid "Invalid project id"
    17961868msgstr ""
     
    19422014msgstr ""
    19432015
    1944 #: includes/admin/up-enqueues.php:56
     2016#: includes/admin/up-enqueues.php:57
    19452017msgid "Resetting..."
    19462018msgstr ""
    19472019
    1948 #: includes/admin/up-enqueues.php:57
     2020#: includes/admin/up-enqueues.php:58
    19492021msgid "Refreshing..."
    19502022msgstr ""
    19512023
    1952 #: includes/admin/up-enqueues.php:58
     2024#: includes/admin/up-enqueues.php:59
    19532025msgid "Are you sure you want to reset the capabilities?"
    19542026msgstr ""
    19552027
    1956 #: includes/admin/up-enqueues.php:59
     2028#: includes/admin/up-enqueues.php:60
    19572029msgid "Are you sure you want to refresh the projects meta data?"
    19582030msgstr ""
    19592031
    1960 #: includes/admin/up-enqueues.php:61
     2032#: includes/admin/up-enqueues.php:62
    19612033msgid "Are you sure you want to cleanup the cached data about updates?"
    19622034msgstr ""
    19632035
    1964 #: includes/admin/up-enqueues.php:63
     2036#: includes/admin/up-enqueues.php:64
    19652037msgid "Are you sure you want to perform an import? MAKE SURE YOU HAVE BACKED UP YOUR DATA FIRST!"
    19662038msgstr ""
    19672039
    1968 #: includes/admin/up-enqueues.php:64 includes/admin/up-enqueues.php:66
     2040#: includes/admin/up-enqueues.php:65 includes/admin/up-enqueues.php:67
    19692041msgid "Success!"
    19702042msgstr ""
    19712043
    1972 #: includes/admin/up-enqueues.php:65 includes/admin/up-enqueues.php:67
     2044#: includes/admin/up-enqueues.php:66 includes/admin/up-enqueues.php:68
    19732045msgid "Error!"
    19742046msgstr ""
    19752047
    1976 #: includes/admin/up-enqueues.php:68
     2048#: includes/admin/up-enqueues.php:69
    19772049msgid "Error cleaning up the cached data!"
    19782050msgstr ""
    19792051
    1980 #: includes/admin/up-enqueues.php:69
     2052#: includes/admin/up-enqueues.php:70
    19812053msgid "Error importing data!"
    19822054msgstr ""
    19832055
    1984 #: includes/admin/up-enqueues.php:113
     2056#: includes/admin/up-enqueues.php:114
    19852057msgid "Cancel"
    19862058msgstr ""
    19872059
    1988 #: includes/admin/up-enqueues.php:114
     2060#: includes/admin/up-enqueues.php:115
    19892061msgid "Add Reply"
    19902062msgstr ""
    19912063
    1992 #: includes/admin/up-enqueues.php:118
     2064#: includes/admin/up-enqueues.php:119
    19932065msgid "Add Comment Reply"
    19942066msgstr ""
    19952067
    1996 #: includes/admin/up-enqueues.php:119 includes/admin/up-enqueues.php:164
     2068#: includes/admin/up-enqueues.php:120 includes/admin/up-enqueues.php:165
    19972069msgid "Adding..."
    19982070msgstr ""
    19992071
    2000 #: includes/admin/up-enqueues.php:120
     2072#: includes/admin/up-enqueues.php:121
    20012073msgid "Replying..."
    20022074msgstr ""
    20032075
    2004 #: includes/admin/up-enqueues.php:122
     2076#: includes/admin/up-enqueues.php:123
    20052077msgid "Deleting..."
    20062078msgstr ""
    20072079
    2008 #: includes/admin/up-enqueues.php:124
     2080#: includes/admin/up-enqueues.php:125
    20092081msgid "Unapproving..."
    20102082msgstr ""
    20112083
    2012 #: includes/admin/up-enqueues.php:126
     2084#: includes/admin/up-enqueues.php:127
    20132085msgid "Approving..."
    20142086msgstr ""
    20152087
    2016 #: includes/admin/up-enqueues.php:127 includes/admin/up-enqueues.php:165
     2088#: includes/admin/up-enqueues.php:128 includes/admin/up-enqueues.php:166
    20172089msgid "Are you sure? This action cannot be undone."
    20182090msgstr ""
    20192091
    2020 #: includes/admin/up-enqueues.php:129
     2092#: includes/admin/up-enqueues.php:130
    20212093msgid "This comment is not visible by regular users."
    20222094msgstr ""
    20232095
    2024 #: includes/admin/up-enqueues.php:132
     2096#: includes/admin/up-enqueues.php:133
    20252097msgid "Title can't be empty"
    20262098msgstr ""
    20272099
    2028 #: includes/admin/up-enqueues.php:133
     2100#: includes/admin/up-enqueues.php:134
    20292101msgid "Invalid interval between dates."
    20302102msgstr ""
    20312103
    2032 #: includes/admin/up-enqueues.php:135
     2104#: includes/admin/up-enqueues.php:136 includes/frontend/up-enqueues.php:286
    20332105msgid "No results"
    20342106msgstr ""
    20352107
    2036 #: includes/admin/up-enqueues.php:158
     2108#: includes/admin/up-enqueues.php:159
    20372109msgid "UpStream requires jQuery."
    20382110msgstr ""
    20392111
    2040 #: includes/admin/up-enqueues.php:159
     2112#: includes/admin/up-enqueues.php:160
    20412113msgid "There's no users assigned yet."
    20422114msgstr ""
    20432115
    2044 #: includes/admin/up-enqueues.php:160
     2116#: includes/admin/up-enqueues.php:161
    20452117msgid "Please, select at least one user"
    20462118msgstr ""
    20472119
    2048 #: includes/admin/up-enqueues.php:161
     2120#: includes/admin/up-enqueues.php:162
    20492121msgid "Add 1 User"
    20502122msgstr ""
    20512123
    2052 #: includes/admin/up-enqueues.php:162
     2124#: includes/admin/up-enqueues.php:163
    20532125#, php-format
    20542126msgid "Add %d Users"
    20552127msgstr ""
    20562128
    2057 #: includes/admin/up-enqueues.php:166
     2129#: includes/admin/up-enqueues.php:167
    20582130msgid "Fetching data..."
    20592131msgstr ""
    20602132
    2061 #: includes/admin/up-enqueues.php:167
     2133#: includes/admin/up-enqueues.php:168
    20622134msgid "No data found."
    20632135msgstr ""
    20642136
    2065 #: includes/admin/up-enqueues.php:168
     2137#: includes/admin/up-enqueues.php:169
    20662138#, php-format
    20672139msgid "Managing %s\\'s Permissions"
     
    20742146
    20752147#: includes/class-up-comment.php:295 includes/class-up-comment.php:305
    2076 #: includes/class-up-comments.php:650
     2148#: includes/class-up-comments.php:653
    20772149msgid "Unable to save the data into database."
    20782150msgstr ""
     
    20822154msgstr ""
    20832155
    2084 #: includes/class-up-comments.php:273 includes/class-up-comments.php:777
     2156#: includes/class-up-comments.php:274 includes/class-up-comments.php:781
    20852157msgid "Invalid nonce."
    20862158msgstr ""
    20872159
    2088 #: includes/class-up-comments.php:284 includes/class-up-comments.php:407
    2089 #: includes/class-up-comments.php:782
     2160#: includes/class-up-comments.php:285 includes/class-up-comments.php:409
     2161#: includes/class-up-comments.php:786
    20902162msgid "Commenting is disabled on this project."
    20912163msgstr ""
    20922164
    2093 #: includes/class-up-comments.php:487 includes/class-up-comments.php:640
     2165#: includes/class-up-comments.php:489 includes/class-up-comments.php:642
    20942166msgid "Comments are disabled for this project."
    20952167msgstr ""
    20962168
    2097 #: includes/class-up-comments.php:501
     2169#: includes/class-up-comments.php:503
    20982170msgctxt "Removing a comment in projects"
    20992171msgid "Comment not found."
    21002172msgstr ""
    21012173
    2102 #: includes/class-up-comments.php:515
     2174#: includes/class-up-comments.php:517
    21032175msgid "It wasn't possible to delete this comment."
    21042176msgstr ""
    21052177
    2106 #: includes/class-up-comments.php:635
     2178#: includes/class-up-comments.php:637
    21072179#, php-format
    21082180msgid "Invalid \"%s\" parameter."
    21092181msgstr ""
    21102182
    2111 #: includes/class-up-comments.php:645
     2183#: includes/class-up-comments.php:648
    21122184msgid "Comment not found."
    21132185msgstr ""
    21142186
    2115 #: includes/class-up-comments.php:1225
     2187#: includes/class-up-comments.php:1229
    21162188#, php-format
    21172189msgctxt "Comment notification subject"
     
    21192191msgstr ""
    21202192
    2121 #: includes/class-up-comments.php:1271
     2193#: includes/class-up-comments.php:1275
    21222194msgid "Item Title: "
    21232195msgstr ""
    21242196
    2125 #: includes/class-up-comments.php:1279
     2197#: includes/class-up-comments.php:1283
    21262198msgid "Item Type: "
    21272199msgstr ""
     
    21832255msgstr ""
    21842256
    2185 #: includes/class-up-debug.php:239
     2257#: includes/class-up-debug.php:263
    21862258msgid "Action nonce not found."
    21872259msgstr ""
    21882260
    2189 #: includes/class-up-debug.php:246
     2261#: includes/class-up-debug.php:270
    21902262msgid "Invalid action nonce."
    21912263msgstr ""
    21922264
    2193 #: includes/class-up-import.php:74 includes/class-up-import.php:102
     2265#: includes/class-up-import.php:76 includes/class-up-import.php:103
    21942266msgid "Error loading file: line "
    21952267msgstr ""
    21962268
    2197 #: includes/class-up-import.php:153
     2269#: includes/class-up-import.php:154
    21982270#, php-format
    21992271msgid "Project with ID %s does not exist."
    22002272msgstr ""
    22012273
    2202 #: includes/class-up-import.php:175
     2274#: includes/class-up-import.php:176
    22032275#, php-format
    22042276msgid "Milestone with ID %s does not exist."
    22052277msgstr ""
    22062278
    2207 #: includes/class-up-import.php:233
     2279#: includes/class-up-import.php:234
    22082280#, php-format
    22092281msgid "Item %s with ID %s does not exist."
    22102282msgstr ""
    22112283
    2212 #: includes/class-up-import.php:345
     2284#: includes/class-up-import.php:346
    22132285#, php-format
    22142286msgid "(column %s, field %s)"
    22152287msgstr ""
    22162288
    2217 #: includes/class-up-import.php:376
     2289#: includes/class-up-import.php:377
    22182290#, php-format
    22192291msgid "Header column %s must be of the form item.field (example: project.title)."
    22202292msgstr ""
    22212293
    2222 #: includes/class-up-import.php:384
    2223 #: includes/model/UpStream_Model_Manager.php:18
    2224 #: includes/model/UpStream_Model_Manager.php:159
    2225 #: includes/model/UpStream_Model_Manager.php:193
     2294#: 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
    22262298#, php-format
    22272299msgid "Item type %s is not valid."
     
    22382310msgstr ""
    22392311
    2240 #: includes/class-up-milestones.php:230 includes/up-post-types.php:220
     2312#: includes/class-up-milestones.php:230 includes/up-post-types.php:222
    22412313#, php-format
    22422314msgid "Edit %s"
     
    22532325msgstr ""
    22542326
    2255 #: includes/class-up-milestones.php:234 includes/up-post-types.php:214
     2327#: includes/class-up-milestones.php:234 includes/up-post-types.php:216
    22562328#, php-format
    22572329msgid "Search %s"
     
    22732345msgstr ""
    22742346
    2275 #: includes/class-up-milestones.php:238 includes/up-post-types.php:228
     2347#: includes/class-up-milestones.php:238 includes/up-post-types.php:230
    22762348#, php-format
    22772349msgid "%s"
     
    23142386msgstr ""
    23152387
    2316 #: includes/class-up-milestones.php:340 includes/class-up-milestones.php:437
     2388#: includes/class-up-milestones.php:340 includes/class-up-milestones.php:558
    23172389#: includes/up-labels.php:22
    23182390msgid "Project"
     
    23252397msgstr ""
    23262398
    2327 #: includes/class-up-project-activity.php:372
     2399#: includes/class-up-project-activity.php:394
    23282400#, php-format
    23292401msgid "New: %s"
    23302402msgstr ""
    23312403
    2332 #: includes/class-up-project-activity.php:378
     2404#: includes/class-up-project-activity.php:400
    23332405#, php-format
    23342406msgid "Edit: %s to %s"
    23352407msgstr ""
    23362408
    2337 #: includes/class-up-project-activity.php:415
     2409#: includes/class-up-project-activity.php:437
    23382410#, php-format
    23392411msgid "Deleted: %s"
    23402412msgstr ""
    23412413
    2342 #: includes/class-up-project-activity.php:449
     2414#: includes/class-up-project-activity.php:471
    23432415#, php-format
    23442416msgid "New Item: %s"
    23452417msgstr ""
    23462418
    2347 #: includes/class-up-project-activity.php:471
     2419#: includes/class-up-project-activity.php:493
    23482420#, php-format
    23492421msgid "New: %s - %s on %s"
    23502422msgstr ""
    23512423
    2352 #: includes/class-up-project-activity.php:487
     2424#: includes/class-up-project-activity.php:509
    23532425#, php-format
    23542426msgid "Edit: %s from %s to %s on %s"
    23552427msgstr ""
    23562428
    2357 #: includes/class-up-project.php:501
     2429#: includes/class-up-project.php:505
    23582430msgid "This project is being edited by "
    23592431msgstr ""
    23602432
    2361 #: includes/class-up-report.php:499
     2433#: includes/class-up-report.php:490
    23622434msgid "Project Table"
    23632435msgstr ""
    23642436
    23652437#: includes/frontend/class-up-login.php:92
    2366 msgid "Email address field cannot be empty."
     2438msgid "Email address/username field cannot be empty."
    23672439msgstr ""
    23682440
    23692441#: 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."
     2442msgid "Invalid email address/username."
    23762443msgstr ""
    23772444
     
    23802447msgstr ""
    23812448
    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
     2453msgid "Invalid email address and/or password."
     2454msgstr ""
     2455
     2456#: includes/frontend/class-up-login.php:150
     2457msgid "Invalid user/email address and/or password."
     2458msgstr ""
     2459
     2460#: includes/frontend/class-up-login.php:161
    23832461msgid "You don't have enough permissions to log in here."
    23842462msgstr ""
    23852463
    2386 #: includes/frontend/class-up-login.php:166
     2464#: includes/frontend/class-up-login.php:188
    23872465msgid "Sorry, you are not allowed to access this project."
    23882466msgstr ""
    23892467
    2390 #: includes/frontend/class-up-login.php:267
     2468#: includes/frontend/class-up-login.php:289
    23912469msgid "You were just logged out."
    23922470msgstr ""
    23932471
    2394 #: includes/frontend/up-enqueues.php:149 includes/frontend/up-enqueues.php:165
     2472#: includes/frontend/up-enqueues.php:215 includes/frontend/up-enqueues.php:231
    23952473#, php-format
    23962474msgctxt "%s: item name, ie Milestones, Tasks, Bugs, Files, Discussion"
     
    23982476msgstr ""
    23992477
    2400 #: includes/frontend/up-enqueues.php:161
     2478#: includes/frontend/up-enqueues.php:227
    24012479msgid "Copy"
    24022480msgstr ""
    24032481
    2404 #: includes/frontend/up-enqueues.php:162 templates/archive-project.php:76
     2482#: includes/frontend/up-enqueues.php:228 templates/archive-project.php:79
    24052483#: templates/global/sidebar.php:28 templates/single-project/bugs.php:144
    24062484#: templates/single-project/bugs.php:177 templates/single-project/files.php:118
     
    24132491msgstr ""
    24142492
    2415 #: includes/frontend/up-enqueues.php:163
     2493#: includes/frontend/up-enqueues.php:229
    24162494msgid "Search:"
    24172495msgstr ""
    24182496
    2419 #: includes/frontend/up-enqueues.php:174
     2497#: includes/frontend/up-enqueues.php:240
    24202498msgid "Sunday"
    24212499msgstr ""
    24222500
    2423 #: includes/frontend/up-enqueues.php:175
     2501#: includes/frontend/up-enqueues.php:241
    24242502msgid "Monday"
    24252503msgstr ""
    24262504
    2427 #: includes/frontend/up-enqueues.php:176
     2505#: includes/frontend/up-enqueues.php:242
    24282506msgid "Tuesday"
    24292507msgstr ""
    24302508
    2431 #: includes/frontend/up-enqueues.php:177
     2509#: includes/frontend/up-enqueues.php:243
    24322510msgid "Wednesday"
    24332511msgstr ""
    24342512
    2435 #: includes/frontend/up-enqueues.php:178
     2513#: includes/frontend/up-enqueues.php:244
    24362514msgid "Thursday"
    24372515msgstr ""
    24382516
    2439 #: includes/frontend/up-enqueues.php:179
     2517#: includes/frontend/up-enqueues.php:245
    24402518msgid "Friday"
    24412519msgstr ""
    24422520
    2443 #: includes/frontend/up-enqueues.php:180
     2521#: includes/frontend/up-enqueues.php:246
    24442522msgid "Saturday"
    24452523msgstr ""
    24462524
    2447 #: includes/frontend/up-enqueues.php:181
     2525#: includes/frontend/up-enqueues.php:247
    24482526msgid "Sun"
    24492527msgstr ""
    24502528
    2451 #: includes/frontend/up-enqueues.php:182
     2529#: includes/frontend/up-enqueues.php:248
    24522530msgid "Mon"
    24532531msgstr ""
    24542532
    2455 #: includes/frontend/up-enqueues.php:183
     2533#: includes/frontend/up-enqueues.php:249
    24562534msgid "Tue"
    24572535msgstr ""
    24582536
    2459 #: includes/frontend/up-enqueues.php:184
     2537#: includes/frontend/up-enqueues.php:250
    24602538msgid "Wed"
    24612539msgstr ""
    24622540
    2463 #: includes/frontend/up-enqueues.php:185
     2541#: includes/frontend/up-enqueues.php:251
    24642542msgid "Thu"
    24652543msgstr ""
    24662544
    2467 #: includes/frontend/up-enqueues.php:186
     2545#: includes/frontend/up-enqueues.php:252
    24682546msgid "Fri"
    24692547msgstr ""
    24702548
    2471 #: includes/frontend/up-enqueues.php:187
     2549#: includes/frontend/up-enqueues.php:253
    24722550msgid "Sat"
    24732551msgstr ""
    24742552
    2475 #: includes/frontend/up-enqueues.php:188
     2553#: includes/frontend/up-enqueues.php:254
    24762554msgid "Su"
    24772555msgstr ""
    24782556
    2479 #: includes/frontend/up-enqueues.php:189
     2557#: includes/frontend/up-enqueues.php:255
    24802558msgid "Mo"
    24812559msgstr ""
    24822560
    2483 #: includes/frontend/up-enqueues.php:190
     2561#: includes/frontend/up-enqueues.php:256
    24842562msgid "Tu"
    24852563msgstr ""
    24862564
    2487 #: includes/frontend/up-enqueues.php:191
     2565#: includes/frontend/up-enqueues.php:257
    24882566msgid "We"
    24892567msgstr ""
    24902568
    2491 #: includes/frontend/up-enqueues.php:192
     2569#: includes/frontend/up-enqueues.php:258
    24922570msgid "Th"
    24932571msgstr ""
    24942572
    2495 #: includes/frontend/up-enqueues.php:193
     2573#: includes/frontend/up-enqueues.php:259
    24962574msgid "Fr"
    24972575msgstr ""
    24982576
    2499 #: includes/frontend/up-enqueues.php:194
     2577#: includes/frontend/up-enqueues.php:260
    25002578msgid "Sa"
    25012579msgstr ""
    25022580
    2503 #: includes/frontend/up-enqueues.php:195
     2581#: includes/frontend/up-enqueues.php:261
    25042582msgid "January"
    25052583msgstr ""
    25062584
    2507 #: includes/frontend/up-enqueues.php:196
     2585#: includes/frontend/up-enqueues.php:262
    25082586msgid "February"
    25092587msgstr ""
    25102588
    2511 #: includes/frontend/up-enqueues.php:197
     2589#: includes/frontend/up-enqueues.php:263
    25122590msgid "March"
    25132591msgstr ""
    25142592
    2515 #: includes/frontend/up-enqueues.php:198
     2593#: includes/frontend/up-enqueues.php:264
    25162594msgid "April"
    25172595msgstr ""
    25182596
    2519 #: includes/frontend/up-enqueues.php:199
     2597#: includes/frontend/up-enqueues.php:265
    25202598msgid "May"
    25212599msgstr ""
    25222600
    2523 #: includes/frontend/up-enqueues.php:200
     2601#: includes/frontend/up-enqueues.php:266
    25242602msgid "June"
    25252603msgstr ""
    25262604
    2527 #: includes/frontend/up-enqueues.php:201
     2605#: includes/frontend/up-enqueues.php:267
    25282606msgid "July"
    25292607msgstr ""
    25302608
    2531 #: includes/frontend/up-enqueues.php:202
     2609#: includes/frontend/up-enqueues.php:268
    25322610msgid "August"
    25332611msgstr ""
    25342612
    2535 #: includes/frontend/up-enqueues.php:203
     2613#: includes/frontend/up-enqueues.php:269
    25362614msgid "September"
    25372615msgstr ""
    25382616
    2539 #: includes/frontend/up-enqueues.php:204
     2617#: includes/frontend/up-enqueues.php:270
    25402618msgid "October"
    25412619msgstr ""
    25422620
    2543 #: includes/frontend/up-enqueues.php:205
     2621#: includes/frontend/up-enqueues.php:271
    25442622msgid "November"
    25452623msgstr ""
    25462624
    2547 #: includes/frontend/up-enqueues.php:206
     2625#: includes/frontend/up-enqueues.php:272
    25482626msgid "December"
    25492627msgstr ""
    25502628
    2551 #: includes/frontend/up-enqueues.php:207
     2629#: includes/frontend/up-enqueues.php:273
    25522630msgid "Jan"
    25532631msgstr ""
    25542632
    2555 #: includes/frontend/up-enqueues.php:208
     2633#: includes/frontend/up-enqueues.php:274
    25562634msgid "Feb"
    25572635msgstr ""
    25582636
    2559 #: includes/frontend/up-enqueues.php:209
     2637#: includes/frontend/up-enqueues.php:275
    25602638msgid "Mar"
    25612639msgstr ""
    25622640
    2563 #: includes/frontend/up-enqueues.php:210
     2641#: includes/frontend/up-enqueues.php:276
    25642642msgid "Apr"
    25652643msgstr ""
    25662644
    2567 #: includes/frontend/up-enqueues.php:211
     2645#: includes/frontend/up-enqueues.php:277
    25682646msgid "Jun"
    25692647msgstr ""
    25702648
    2571 #: includes/frontend/up-enqueues.php:212
     2649#: includes/frontend/up-enqueues.php:278
    25722650msgid "Jul"
    25732651msgstr ""
    25742652
    2575 #: includes/frontend/up-enqueues.php:213
     2653#: includes/frontend/up-enqueues.php:279
    25762654msgid "Aug"
    25772655msgstr ""
    25782656
    2579 #: includes/frontend/up-enqueues.php:214
     2657#: includes/frontend/up-enqueues.php:280
    25802658msgid "Sep"
    25812659msgstr ""
    25822660
    2583 #: includes/frontend/up-enqueues.php:215
     2661#: includes/frontend/up-enqueues.php:281
    25842662msgid "Oct"
    25852663msgstr ""
    25862664
    2587 #: includes/frontend/up-enqueues.php:216
     2665#: includes/frontend/up-enqueues.php:282
    25882666msgid "Nov"
    25892667msgstr ""
    25902668
    2591 #: includes/frontend/up-enqueues.php:217
     2669#: includes/frontend/up-enqueues.php:283
    25922670msgid "Dec"
    25932671msgstr ""
    25942672
    2595 #: includes/frontend/up-enqueues.php:218
     2673#: includes/frontend/up-enqueues.php:284
    25962674msgid "Today"
    25972675msgstr ""
    25982676
    2599 #: includes/frontend/up-enqueues.php:219
     2677#: includes/frontend/up-enqueues.php:285
    26002678msgid "Clear"
    26012679msgstr ""
     
    26282706#: includes/frontend/up-table-functions.php:343
    26292707#: includes/frontend/up-table-functions.php:397
    2630 #: includes/model/UpStream_Model_File.php:159 includes/up-labels.php:69
     2708#: includes/model/UpStream_Model_File.php:175 includes/up-labels.php:69
    26312709#: templates/single-project/files.php:49
    26322710msgid "File"
     
    26342712
    26352713#: includes/frontend/up-table-functions.php:386
     2714#: includes/model/UpStream_Model_File.php:176
    26362715#: templates/single-project/files.php:50
    26372716msgid "Upload Date"
     
    26482727#: includes/frontend/up-table-functions.php:986
    26492728#, php-format
    2650 msgctxt "upstream"
    26512729msgid " %s found"
    26522730msgstr ""
    26532731
    2654 #: includes/frontend/up-template-functions.php:216
     2732#: includes/frontend/up-template-functions.php:247
    26552733msgid "Currently no files"
    26562734msgstr ""
    26572735
    2658 #: includes/frontend/up-template-functions.php:237
     2736#: includes/frontend/up-template-functions.php:268
    26592737msgid "In reply to"
    26602738msgstr ""
    26612739
    26622740#: includes/model/UpStream_Model_Bug.php:199
    2663 #: includes/model/UpStream_Model_File.php:142
     2741#: includes/model/UpStream_Model_File.php:158
    26642742#, php-format
    26652743msgid "File ID %s is invalid."
     
    26772755
    26782756#: includes/model/UpStream_Model_Bug.php:250
    2679 #: includes/model/UpStream_Model_Project.php:379
     2757#: includes/model/UpStream_Model_Project.php:388
    26802758#: includes/model/UpStream_Model_Task.php:223
    26812759#, php-format
     
    26842762
    26852763#: includes/model/UpStream_Model_Bug.php:268
    2686 #: includes/model/UpStream_Model_Project.php:397
     2764#: includes/model/UpStream_Model_Project.php:406
    26872765#: includes/model/UpStream_Model_Task.php:241
    26882766#, php-format
     
    26922770#: includes/model/UpStream_Model_Bug.php:275
    26932771#: includes/model/UpStream_Model_Milestone.php:211
    2694 #: includes/model/UpStream_Model_Project.php:440
     2772#: includes/model/UpStream_Model_Project.php:449
    26952773#: includes/model/UpStream_Model_Task.php:266
    26962774msgid "Argument is not a valid date of the form YYYY-MM-DD."
     
    27232801#: includes/model/UpStream_Model_Client.php:205
    27242802#: includes/model/UpStream_Model_Milestone.php:284
    2725 #: includes/model/UpStream_Model_Project.php:524
     2803#: includes/model/UpStream_Model_Project.php:535
    27262804#: includes/model/UpStream_Model_Task.php:325
    27272805msgid "User ID does not exist."
    27282806msgstr ""
    27292807
    2730 #: includes/model/UpStream_Model_File.php:138
     2808#: includes/model/UpStream_Model_File.php:154
    27312809msgid "Set not implemented for Upfs."
    27322810msgstr ""
    27332811
    2734 #: includes/model/UpStream_Model_Manager.php:28
     2812#: includes/model/UpStream_Model_Manager.php:33
    27352813#, php-format
    27362814msgid "This (ID = %s, TYPE = %s, PARENT ID = %s, PARENT TYPE = %s) is not a valid object"
     
    27462824
    27472825#: includes/model/UpStream_Model_Milestone.php:200
    2748 #: includes/model/UpStream_Model_Project.php:359
     2826#: includes/model/UpStream_Model_Project.php:368
    27492827#, php-format
    27502828msgid "Term ID %s is invalid."
     
    27572835
    27582836#: includes/model/UpStream_Model_Milestone.php:273
    2759 #: includes/model/UpStream_Model_Project.php:457 includes/up-post-types.php:146
    2760 #: templates/archive-project.php:81 templates/global/sidebar.php:33
     2837#: includes/model/UpStream_Model_Project.php:466 includes/up-post-types.php:144
     2838#: templates/archive-project.php:84 templates/global/sidebar.php:33
    27612839msgid "Categories"
    27622840msgstr ""
    27632841
    27642842#: includes/model/UpStream_Model_Milestone.php:274
    2765 #: includes/model/UpStream_Model_Project.php:460
     2843#: includes/model/UpStream_Model_Project.php:471
    27662844#: includes/model/UpStream_Model_Task.php:298
    27672845msgid "Progress (%)"
     
    28262904msgstr ""
    28272905
    2828 #: includes/model/UpStream_Model_Project.php:227
     2906#: includes/model/UpStream_Model_Project.php:235
    28292907msgid "Argument must be of type UpStream_Model_Meta_Object"
    28302908msgstr ""
    28312909
    2832 #: includes/model/UpStream_Model_Project.php:253
     2910#: includes/model/UpStream_Model_Project.php:261
    28332911msgid "Can only add objects of type UpStream_Model_Meta_Object"
    28342912msgstr ""
    28352913
    2836 #: includes/model/UpStream_Model_Project.php:340
     2914#: includes/model/UpStream_Model_Project.php:349
    28372915msgid "Not implemented. Use &tasks(), &files(), or &bugs()."
    28382916msgstr ""
    28392917
    2840 #: includes/model/UpStream_Model_Project.php:407
     2918#: includes/model/UpStream_Model_Project.php:416
    28412919msgid "For projects, assignedTo must be an array of length 1."
    28422920msgstr ""
    28432921
    2844 #: includes/model/UpStream_Model_Project.php:420
     2922#: includes/model/UpStream_Model_Project.php:429
    28452923msgid "Cannot assign client users if the project has no client."
    28462924msgstr ""
    28472925
    2848 #: includes/model/UpStream_Model_Project.php:423
     2926#: includes/model/UpStream_Model_Project.php:432
    28492927msgid "Client user IDs must be an array."
    28502928msgstr ""
    28512929
    2852 #: includes/model/UpStream_Model_Project.php:426
     2930#: includes/model/UpStream_Model_Project.php:435
    28532931msgid "Input cannot contain duplicates."
    28542932msgstr ""
    28552933
    2856 #: includes/model/UpStream_Model_Project.php:431
     2934#: includes/model/UpStream_Model_Project.php:440
    28572935#, php-format
    28582936msgid "User ID %s does not exist in this client."
     2937msgstr ""
     2938
     2939#: includes/model/UpStream_Model_Project.php:467
     2940msgid "Selected Client Users"
     2941msgstr ""
     2942
     2943#: includes/model/UpStream_Model_Project.php:468
     2944#: templates/single-project/details.php:125
     2945msgid "Members"
    28592946msgstr ""
    28602947
     
    28772964msgstr ""
    28782965
    2879 #: includes/up-general-functions.php:298
     2966#: includes/up-filesystem.php:105
     2967msgid "Unable to move file to target folder"
     2968msgstr ""
     2969
     2970#: includes/up-filesystem.php:109
     2971msgid "Unable to move file. The target folder does not exist."
     2972msgstr ""
     2973
     2974#: includes/up-filesystem.php:112 includes/up-filesystem.php:119
     2975msgid "File exceeds the maximum file size"
     2976msgstr ""
     2977
     2978#: includes/up-filesystem.php:116
     2979msgid "File is not an allowed type."
     2980msgstr ""
     2981
     2982#: includes/up-general-functions.php:307
    28802983#, php-format
    28812984msgid "%s User"
    28822985msgstr ""
    28832986
    2884 #: includes/up-general-functions.php:301
     2987#: includes/up-general-functions.php:310
    28852988#, php-format
    28862989msgid "%s Manager"
    28872990msgstr ""
    28882991
    2889 #: includes/up-general-functions.php:304
     2992#: includes/up-general-functions.php:313
    28902993#, php-format
    28912994msgid "%s Client User"
    28922995msgstr ""
    28932996
    2894 #: includes/up-general-functions.php:397
     2997#: includes/up-general-functions.php:406
    28952998msgid "Client User"
    28962999msgstr ""
     
    31783281msgstr ""
    31793282
    3180 #: includes/up-post-types.php:136
     3283#: includes/up-post-types.php:134
    31813284msgctxt "taxonomy general name"
    31823285msgid "Category"
    31833286msgstr ""
    31843287
    3185 #: includes/up-post-types.php:137
     3288#: includes/up-post-types.php:135
    31863289msgctxt "taxonomy singular name"
    31873290msgid "Category"
    31883291msgstr ""
    31893292
     3293#: includes/up-post-types.php:136
     3294#, php-format
     3295msgid "Search %s Categories"
     3296msgstr ""
     3297
     3298#: includes/up-post-types.php:137
     3299#, php-format
     3300msgid "All %s Categories"
     3301msgstr ""
     3302
    31903303#: includes/up-post-types.php:138
    31913304#, php-format
    3192 msgid "Search %s Categories"
     3305msgid "Parent %s Category"
    31933306msgstr ""
    31943307
    31953308#: includes/up-post-types.php:139
    31963309#, php-format
    3197 msgid "All %s Categories"
     3310msgid "Parent %s Category:"
    31983311msgstr ""
    31993312
    32003313#: includes/up-post-types.php:140
    32013314#, php-format
    3202 msgid "Parent %s Category"
     3315msgid "Edit %s Category"
    32033316msgstr ""
    32043317
    32053318#: includes/up-post-types.php:141
    32063319#, php-format
    3207 msgid "Parent %s Category:"
     3320msgid "Update %s Category"
    32083321msgstr ""
    32093322
    32103323#: includes/up-post-types.php:142
    32113324#, php-format
    3212 msgid "Edit %s Category"
     3325msgid "Add New %s Category"
    32133326msgstr ""
    32143327
    32153328#: includes/up-post-types.php:143
    32163329#, php-format
    3217 msgid "Update %s Category"
    3218 msgstr ""
    3219 
    3220 #: includes/up-post-types.php:144
    3221 #, php-format
    3222 msgid "Add New %s Category"
    3223 msgstr ""
    3224 
    3225 #: includes/up-post-types.php:145
    3226 #, php-format
    32273330msgid "New %s Category Name"
    32283331msgstr ""
    32293332
    3230 #: includes/up-post-types.php:171
     3333#: includes/up-post-types.php:170
    32313334msgctxt "taxonomy (tag) general name"
    32323335msgid "Tags"
    32333336msgstr ""
    32343337
    3235 #: includes/up-post-types.php:172
     3338#: includes/up-post-types.php:171
    32363339msgctxt "taxonomy (tag) singular name"
    32373340msgid "Tag"
    32383341msgstr ""
    32393342
     3343#: includes/up-post-types.php:172
     3344msgid "Search Tags"
     3345msgstr ""
     3346
    32403347#: includes/up-post-types.php:173
    3241 msgid "Search Tags"
     3348msgid "Popular Tags"
    32423349msgstr ""
    32433350
    32443351#: includes/up-post-types.php:174
    3245 msgid "Popular Tags"
    3246 msgstr ""
    3247 
    3248 #: includes/up-post-types.php:175
    32493352msgid "All Tags"
    32503353msgstr ""
    32513354
     3355#: includes/up-post-types.php:177
     3356msgid "Edit Tag"
     3357msgstr ""
     3358
    32523359#: includes/up-post-types.php:178
    3253 msgid "Edit Tag"
     3360msgid "Update Tag"
    32543361msgstr ""
    32553362
    32563363#: includes/up-post-types.php:179
    3257 msgid "Update Tag"
     3364msgid "Add New Tag"
    32583365msgstr ""
    32593366
    32603367#: includes/up-post-types.php:180
    3261 msgid "Add New Tag"
     3368msgid "New Tag Name"
    32623369msgstr ""
    32633370
    32643371#: includes/up-post-types.php:181
    3265 msgid "New Tag Name"
     3372msgid "Add or remove tags"
    32663373msgstr ""
    32673374
    32683375#: includes/up-post-types.php:182
    3269 msgid "Add or remove tags"
     3376msgid "Separate tags with commas"
    32703377msgstr ""
    32713378
    32723379#: includes/up-post-types.php:183
    3273 msgid "Separate tags with commas"
     3380msgid "Choose from the most used tags"
    32743381msgstr ""
    32753382
    32763383#: includes/up-post-types.php:184
    3277 msgid "Choose from the most used tags"
    3278 msgstr ""
    3279 
    3280 #: includes/up-post-types.php:185
    32813384msgid "Tags"
    32823385msgstr ""
    32833386
    3284 #: includes/up-post-types.php:216
     3387#: includes/up-post-types.php:218
    32853388#, php-format
    32863389msgid "Popular %s"
    32873390msgstr ""
    32883391
    3289 #: includes/up-post-types.php:217 templates/global/sidebar.php:95
     3392#: includes/up-post-types.php:219 templates/global/sidebar.php:95
    32903393#, php-format
    32913394msgid "All %s"
    32923395msgstr ""
    32933396
    3294 #: includes/up-post-types.php:221
     3397#: includes/up-post-types.php:223
    32953398#, php-format
    32963399msgid "Update %s"
    32973400msgstr ""
    32983401
    3299 #: includes/up-post-types.php:222
     3402#: includes/up-post-types.php:224
    33003403#, php-format
    33013404msgid "Add New %s"
    33023405msgstr ""
    33033406
    3304 #: includes/up-post-types.php:223
     3407#: includes/up-post-types.php:225
    33053408#, php-format
    33063409msgid "New %s Name"
    33073410msgstr ""
    33083411
    3309 #: includes/up-post-types.php:224
     3412#: includes/up-post-types.php:226
    33103413#, php-format
    33113414msgid "Add or remove %s"
    33123415msgstr ""
    33133416
    3314 #: includes/up-post-types.php:225
     3417#: includes/up-post-types.php:227
    33153418#, php-format
    33163419msgid "Separate %s with commas"
    33173420msgstr ""
    33183421
    3319 #: includes/up-post-types.php:226
     3422#: includes/up-post-types.php:228
    33203423#, php-format
    33213424msgid "Choose from the most used %s"
    33223425msgstr ""
    33233426
    3324 #: includes/up-post-types.php:270
     3427#: includes/up-post-types.php:273
    33253428msgid "Default color"
    33263429msgstr ""
    33273430
    3328 #: includes/up-project-functions.php:640 templates/archive-project.php:70
     3431#: includes/up-project-functions.php:656 templates/archive-project.php:73
    33293432#: templates/global/sidebar.php:22
    33303433msgid "Ends at"
    33313434msgstr ""
    33323435
    3333 #: templates/archive-project.php:69 templates/global/sidebar.php:21
     3436#: templates/archive-project.php:72 templates/global/sidebar.php:21
    33343437#: templates/global/top-nav.php:60
    33353438msgid "Log Out"
    33363439msgstr ""
    33373440
    3338 #: templates/archive-project.php:73 templates/global/sidebar.php:25
     3441#: templates/archive-project.php:76 templates/global/sidebar.php:25
    33393442#: templates/single-project/bugs.php:125 templates/single-project/bugs.php:157
    33403443#: templates/single-project/files.php:99 templates/single-project/files.php:131
     
    33463449msgstr ""
    33473450
    3348 #: templates/archive-project.php:74 templates/global/sidebar.php:26
     3451#: templates/archive-project.php:77 templates/global/sidebar.php:26
    33493452#: templates/single-project/bugs.php:129 templates/single-project/bugs.php:162
    33503453#: templates/single-project/files.php:103
     
    33573460msgstr ""
    33583461
    3359 #: templates/archive-project.php:75 templates/global/sidebar.php:27
     3462#: templates/archive-project.php:78 templates/global/sidebar.php:27
    33603463#: templates/single-project/bugs.php:136 templates/single-project/bugs.php:169
    33613464#: templates/single-project/files.php:110
     
    33683471msgstr ""
    33693472
    3370 #: templates/archive-project.php:85 templates/global/sidebar.php:37
     3473#: templates/archive-project.php:88 templates/global/sidebar.php:37
    33713474#, php-format
    33723475msgid "%s Complete"
    33733476msgstr ""
    33743477
    3375 #: templates/archive-project.php:483
     3478#: templates/archive-project.php:491
    33763479#, php-format
    33773480msgid "%s Members"
    33783481msgstr ""
    33793482
    3380 #: templates/archive-project.php:749
     3483#: templates/archive-project.php:760
    33813484msgid "It seems that you're not participating in any project right now."
    33823485msgstr ""
    33833486
    33843487#: 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
    33883492msgid "Assigned to me"
    33893493msgstr ""
     
    34143518msgstr ""
    34153519
    3416 #: templates/report-parameters/section.php:43
     3520#: templates/report-parameters/section.php:51
    34173521msgid " Filters"
    34183522msgstr ""
     
    34353539#: templates/single-project/details.php:93
    34363540msgid "complete"
    3437 msgstr ""
    3438 
    3439 #: templates/single-project/details.php:125
    3440 msgid "Members"
    34413541msgstr ""
    34423542
     
    34643564msgstr ""
    34653565
    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
    34693570msgid "Overdue"
    34703571msgstr ""
    34713572
    3472 #: templates/single-project/overview.php:180
     3573#: templates/single-project/overview.php:189
     3574#: templates/single-project/progress.php:56
    34733575msgid "Completed"
    34743576msgstr ""
    34753577
    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
    34793582msgid "Total"
    34803583msgstr ""
    34813584
    3482 #: templates/single-project/overview.php:191
    3483 #: templates/single-project/overview.php:223
    3484 #: templates/single-project/overview.php:255
     3585#: templates/single-project/overview.php:200
     3586#: templates/single-project/overview.php:232
     3587#: templates/single-project/overview.php:264
    34853588msgid "Overview"
    34863589msgstr ""
     
    34903593msgstr ""
    34913594
    3492 #: upstream.php:525
     3595#: upstream.php:458
    34933596msgid "View Documentation"
    34943597msgstr ""
    34953598
    3496 #: upstream.php:527
     3599#: upstream.php:460
    34973600msgid "Docs"
    34983601msgstr ""
    34993602
    3500 #: upstream.php:529
     3603#: upstream.php:462
    35013604msgid "View Quick Start Guide"
    35023605msgstr ""
    35033606
    3504 #: upstream.php:531
     3607#: upstream.php:464
    35053608msgid "Quick Start Guide"
    35063609msgstr ""
    35073610
    3508 #: upstream.php:555
     3611#: upstream.php:488
    35093612msgid "Open Settings Page"
    35103613msgstr ""
    35113614
    3512 #: upstream.php:556
     3615#: upstream.php:489
    35133616msgid "Settings"
    35143617msgstr ""
    35153618
    3516 #: upstream.php:603
     3619#: upstream.php:536
    35173620msgid "Update notice:"
    35183621msgstr ""
    35193622
    3520 #: upstream.php:610
     3623#: upstream.php:543
    35213624#, php-format
    35223625msgctxt "1st %s: plugin version, 2nd %s: capability name, 3rd: UpStream User role"
  • upstream/trunk/readme.txt

    r2459836 r2472697  
    55Tested up to: 5.6
    66Requires PHP: 5.6.20
    7 Stable tag: 1.39.1
     7Stable tag: 1.39.2
    88License: GPL-3
    99License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    142142The format is based on [Keep a Changelog](http://keepachangelog.com)
    143143and 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
    144148
    145149= [1.39.1] - 2021-01-20 =
  • upstream/trunk/templates/archive-project.php

    r2417454 r2472697  
    132132            $end = $project->get_meta('end');
    133133            if (!$end) $end = 0;
     134
    134135            $prog = $project->get_meta('progress');
    135136            if (!$prog) $prog = 0;
     
    175176            $data->startDate = (string)upstream_format_date($data->startDateTimestamp);
    176177            $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            }
    177190
    178191            if ($areClientsEnabled) {
     
    599612                                                <?php endif; ?>
    600613
    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]; ?>
    603617                                                </td>
    604618                                                <td data-column="members">
  • upstream/trunk/templates/assets/js/upstream.js

    r2376671 r2472697  
    689689            if (filteredRows.length === 0) {
    690690                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>');
    692692                var tBody = $('tbody', table);
    693693
  • upstream/trunk/templates/assets/libraries/chosen/chosen.jquery.js

    r2221927 r2472697  
    610610    };
    611611
    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 = "";
    615615
    616616    AbstractChosen.default_no_result_text = "No results match";
  • upstream/trunk/templates/single-project/details.php

    r2459836 r2472697  
    1212$projectDateEndIsNotEmpty = $project->dateEnd > 0;
    1313if ($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
    1421    if (!$projectDateEndIsNotEmpty) {
    1522        $projectTimeframe = '<i class="text-muted">' . __(
     
    2431    } else {
    2532        $projectTimeframe = esc_html(upstream_format_date($project->dateStart) . ' - ' . upstream_format_date($project->dateEnd));
     33
    2634    }
    2735}
  • upstream/trunk/upstream.php

    r2459836 r2472697  
    55 * Author: UpStream
    66 * Author URI: https://upstreamplugin.com
    7  * Version: 1.39.1
     7 * Version: 1.39.2
    88 * Text Domain: upstream
    99 * Domain Path: /languages
Note: See TracChangeset for help on using the changeset viewer.