Plugin Directory

Changeset 2831990


Ignore:
Timestamp:
12/11/2022 07:07:17 PM (3 years ago)
Author:
magicoli69
Message:

version 2.3.12

Location:
w4os-opensimulator-web-interface
Files:
252 added
26 edited

Legend:

Unmodified
Added
Removed
  • w4os-opensimulator-web-interface/trunk/admin/admin-init.php

    r2789725 r2831990  
    191191    'without_avatar' => __('Without Avatar', 'w4os'),
    192192  );
     193  $options_html = '';
    193194  foreach($options as $value => $label) {
     195    $param = 'filter_avatar_'. $position;
    194196    $options_html .= sprintf(
    195197      '<option value="%1$s" %3$s>%2$s</option>',
    196198      esc_attr($value),
    197199      esc_attr($label),
    198       esc_html(( $_GET['filter_avatar_'. $position ] == $value ) ? 'selected' : ''),
     200      esc_html( ( isset( $_GET[$param] ) && $_GET[$param] === $value ) ? 'selected' : '' ),
    199201    );
    200202  }
     
    220222  global $pagenow;
    221223  if (is_admin() && 'users.php' == $pagenow) {
    222     if( $_GET['filter_avatar_top'] ) $value = $_GET['filter_avatar_top'];
    223     else $value = $_GET['filter_avatar_bottom'] ? $_GET['filter_avatar_bottom'] : null;
     224    if( isset ( $_GET['filter_avatar_top'] ) ) $value = $_GET['filter_avatar_top'];
     225    else $value = isset ( $_GET['filter_avatar_bottom'] ) ? $_GET['filter_avatar_bottom'] : null;
    224226
    225227    if ( !empty($value) )
  • w4os-opensimulator-web-interface/trunk/includes/profile.php

    r2806611 r2831990  
    158158    else return $content;
    159159  }
    160 }
    161 
    162 function w4os_profile_dereference($user_or_id) {
    163   if(!W4OS_DB_CONNECTED) return;
    164   global $w4osdb;
    165 
    166   if(is_numeric($user_or_id)) $user = get_user_by('ID', $user_or_id);
    167   else $user = $user_or_id;
    168   if(!is_object($user)) return;
    169 
    170   delete_user_meta( $user->ID, 'w4os_uuid' );
    171   delete_user_meta( $user->ID, 'w4os_firstname' );
    172   delete_user_meta( $user->ID, 'w4os_lastname' );
    173   delete_user_meta( $user->ID, 'w4os_avatarname' );
    174   delete_user_meta( $user->ID, 'w4os_profileimage' );
    175   $roles = (array)$user->roles;
    176   if(count($roles)==1) $user->add_role(get_option('default_role'));
    177   $user->remove_role('grid_user');
    178 }
    179 
    180 /**
    181  * Sync avatar info from OpenSimulator
    182  * @param  object $user_or_id   user object or user id
    183  * @param  key    $uuid         if set, create link with avatar and update info
    184  *                              if not set, update avatar info if link exists
    185  * @return object       [description]
    186  */
    187 function w4os_profile_sync($user_or_id, $uuid = NULL) {
    188   if(!W4OS_DB_CONNECTED) return;
    189   global $w4osdb;
    190 
    191   if(is_numeric($user_or_id)) $user = get_user_by('ID', $user_or_id);
    192   else $user = $user_or_id;
    193   if(!is_object($user)) return;
    194 
    195   if(w4os_empty($uuid)) {
    196     $condition = "Email = '$user->user_email'";
    197   } else {
    198     $condition = "PrincipalID = '$uuid'";
    199   }
    200 
    201   $avatars=$w4osdb->get_results("SELECT * FROM UserAccounts
    202     LEFT JOIN userprofile ON PrincipalID = userUUID
    203     LEFT JOIN GridUser ON PrincipalID = UserID
    204     WHERE active = 1 AND $condition"
    205   );
    206   if(empty($avatars)) return false;
    207 
    208   $avatar_row = array_shift($avatars);
    209   if(w4os_empty($uuid)) $uuid = $avatar_row->PrincipalID;
    210 
    211   if(w4os_empty($uuid)) {
    212     w4os_profile_dereference($user);
    213     return false;
    214   }
    215 
    216   $user->add_role('grid_user');
    217 
    218   update_user_meta( $user->ID, 'w4os_uuid', $uuid );
    219   update_user_meta( $user->ID, 'w4os_firstname', $avatar_row->FirstName );
    220   update_user_meta( $user->ID, 'w4os_lastname', $avatar_row->LastName );
    221   update_user_meta( $user->ID, 'w4os_avatarname', trim($avatar_row->FirstName . ' ' . $avatar_row->LastName) );
    222   update_user_meta( $user->ID, 'w4os_created', $avatar_row->Created);
    223   update_user_meta( $user->ID, 'w4os_lastseen', $avatar_row->Login);
    224   update_user_meta( $user->ID, 'w4os_profileimage', $avatar_row->profileImage );
    225   return $uuid;
    226 }
    227 
    228 
    229 function w4os_profile_sync_all() {
    230   if(!W4OS_DB_CONNECTED) return;
    231   global $wpdb;
    232   global $w4osdb;
    233 
    234   $updated = array();
    235   $UserAccounts=$w4osdb->get_results("SELECT PrincipalID, FirstName, LastName, profileImage, profileAboutText, Email
    236     FROM UserAccounts LEFT JOIN userprofile ON PrincipalID = userUUID
    237     WHERE active = 1
    238     ");
    239   foreach($UserAccounts as $UserAccount) {
    240     $user = get_user_by( 'email', $UserAccount->Email );
    241     if(!$user) continue;
    242     $uuid = w4os_profile_sync($user);
    243     $updated[$UserAccount->Email] = $user->ID . ' ' . $uuid;
    244   }
    245   w4os_admin_notice(sprintf(__('%s local users updated with avatar data', 'w4os'), count($updated)), 'success');
    246   return;
    247160}
    248161
     
    871784function w4os_get_avatar_filter( $avatar, $user_id, $size, $default, $alt, $args=array() ) {
    872785  //If is email, try and find user ID
    873   if( ! is_numeric( $user_id ) && is_email( $user_id ) ){
     786  if( ! is_numeric( $user_id ) && is_string($user_id) && is_email( $user_id ) ){
    874787    $user  =  get_user_by( 'email', $user_id );
    875788    if( $user ){
  • w4os-opensimulator-web-interface/trunk/includes/users.php

    r2654340 r2831990  
    193193}
    194194
     195function w4os_profile_dereference($user_or_id) {
     196  if(!W4OS_DB_CONNECTED) return;
     197  global $w4osdb;
     198
     199  if(is_numeric($user_or_id)) $user = get_user_by('ID', $user_or_id);
     200  else $user = $user_or_id;
     201  if(!is_object($user)) return;
     202
     203  delete_user_meta( $user->ID, 'w4os_uuid' );
     204  delete_user_meta( $user->ID, 'w4os_firstname' );
     205  delete_user_meta( $user->ID, 'w4os_lastname' );
     206  delete_user_meta( $user->ID, 'w4os_avatarname' );
     207  delete_user_meta( $user->ID, 'w4os_profileimage' );
     208  $roles = (array)$user->roles;
     209  if(count($roles)==1) $user->add_role(get_option('default_role'));
     210  $user->remove_role('grid_user');
     211}
     212
     213/**
     214 * Sync avatar info from OpenSimulator
     215 * @param  object $user_or_id   user object or user id
     216 * @param  key    $uuid         if set, create link with avatar and update info
     217 *                              if not set, update avatar info if link exists
     218 * @return object       [description]
     219 */
     220function w4os_profile_sync($user_or_id, $uuid = NULL) {
     221  if(!W4OS_DB_CONNECTED) return;
     222    if( ! w4os_check_db_tables('userprofile' ) ) return; // profiles are not enabled on robust
     223
     224  global $w4osdb;
     225
     226  if(is_numeric($user_or_id)) $user = get_user_by('ID', $user_or_id);
     227  else $user = $user_or_id;
     228  if(!is_object($user)) return;
     229
     230  if(w4os_empty($uuid)) {
     231    $condition = "Email = '$user->user_email'";
     232  } else {
     233    $condition = "PrincipalID = '$uuid'";
     234  }
     235
     236  $avatars=$w4osdb->get_results("SELECT * FROM UserAccounts
     237    LEFT JOIN userprofile ON PrincipalID = userUUID
     238    LEFT JOIN GridUser ON PrincipalID = UserID
     239    WHERE active = 1 AND $condition"
     240  );
     241  if(empty($avatars)) return false;
     242
     243  $avatar_row = array_shift($avatars);
     244  if(w4os_empty($uuid)) $uuid = $avatar_row->PrincipalID;
     245
     246  if(w4os_empty($uuid)) {
     247    w4os_profile_dereference($user);
     248    return false;
     249  }
     250
     251  $user->add_role('grid_user');
     252
     253  update_user_meta( $user->ID, 'w4os_uuid', $uuid );
     254  update_user_meta( $user->ID, 'w4os_firstname', $avatar_row->FirstName );
     255  update_user_meta( $user->ID, 'w4os_lastname', $avatar_row->LastName );
     256  update_user_meta( $user->ID, 'w4os_avatarname', trim($avatar_row->FirstName . ' ' . $avatar_row->LastName) );
     257  update_user_meta( $user->ID, 'w4os_created', $avatar_row->Created);
     258  update_user_meta( $user->ID, 'w4os_lastseen', $avatar_row->Login);
     259  update_user_meta( $user->ID, 'w4os_profileimage', $avatar_row->profileImage );
     260  return $uuid;
     261}
     262
     263
     264function w4os_profile_sync_all() {
     265  if(!W4OS_DB_CONNECTED) return;
     266    if( ! w4os_check_db_tables('userprofile' ) ) return; // profiles are not enabled on robust
     267
     268  global $wpdb;
     269  global $w4osdb;
     270
     271  $updated = array();
     272  $UserAccounts=$w4osdb->get_results("SELECT PrincipalID, FirstName, LastName, profileImage, profileAboutText, Email
     273    FROM UserAccounts LEFT JOIN userprofile ON PrincipalID = userUUID
     274    WHERE active = 1
     275    ");
     276  foreach($UserAccounts as $UserAccount) {
     277    $user = get_user_by( 'email', $UserAccount->Email );
     278    if(!$user) continue;
     279    $uuid = w4os_profile_sync($user);
     280    $updated[$UserAccount->Email] = $user->ID . ' ' . $uuid;
     281  }
     282  w4os_admin_notice(sprintf(__('%s local users updated with avatar data', 'w4os'), count($updated)), 'success');
     283  return;
     284}
     285
    195286function register_w4os_sync_users_async_cron()
    196287{
  • w4os-opensimulator-web-interface/trunk/languages/w4os-cy_GB.po

    r2789725 r2831990  
    11msgid ""
    22msgstr ""
     3"Project-Id-Version: w4os\n"
     4"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/w4os-dev\n"
     5"POT-Creation-Date: 2022-12-11T14:43:43-04:00\n"
     6"PO-Revision-Date: \n"
     7"Last-Translator: \n"
     8"Language-Team: \n"
     9"Language: cy\n"
    310"MIME-Version: 1.0\n"
    411"Content-Type: text/plain; charset=UTF-8\n"
    512"Content-Transfer-Encoding: 8bit\n"
    6 "X-Generator: POEditor.com\n"
    7 "Project-Id-Version: w4os\n"
    8 "Language: cy\n"
    9 "Plural-Forms: nplurals=4; plural= (n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n"
    10 
    11 #. wpml-name: 89e15c20b6fff50f9caa1f171381251d
     13"Plural-Forms: nplurals=4; plural= (n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != "
     14"11) ? 2 : 3;\n"
     15"X-Generator: Poedit 3.0.1\n"
     16
    1217#. Plugin Name of the plugin
    13 #:
    14 msgid "w4os - OpenSimulator Web Interface (dev)"
    15 msgstr "w4os - Rhyngwyneb Gwe OpenSimulator (dev)"
    16 
    17 #. #-#-#-#-#  catalog.po (w4os)  #-#-#-#-#
    18 #. wpml-name: 8a556ddad981269d9764cbf640cfd337
    19 #. wpml-name: f279731266ee1b5ff0b7bd85e585dfef
     18msgid "w4os - OpenSimulator Web Interface"
     19msgstr "w4os - Rhyngwyneb Gwe OpenSimulator"
     20
    2021#. Plugin URI of the plugin
    21 #:
    2222msgid "https://w4os.org/"
    2323msgstr "https://w4os.org/"
    2424
    25 #. wpml-name: 374124f21084c34d958491bf98d72af4
    2625#. Description of the plugin
    27 #:
    2826msgid "WordPress interface for OpenSimulator (w4os)."
    2927msgstr "Rhyngwyneb WordPress ar gyfer OpenSimulator (w4os)."
    3028
    31 #. wpml-name: 6dfd7d212f1bf0f6121142f105f7c704
    3229#. Author of the plugin
    33 #:
    3430msgid "Speculoos World"
    3531msgstr "Speculoos Byd"
    3632
    37 #. #-#-#-#-#  catalog.po (w4os)  #-#-#-#-#
    38 #. wpml-name: 8a556ddad981269d9764cbf640cfd337
    39 #. wpml-name: f279731266ee1b5ff0b7bd85e585dfef
    4033#. Author URI of the plugin
    41 #:
    4234msgid "https://speculoos.world"
    4335msgstr "https://speculoos.world"
    4436
    45 #. wpml-name: 2e7502f81f2bff60e1170982af2e5ede
    4637#: admin/admin-init.php:26
    4738msgid "OpenSimulator Status"
     
    5243msgstr "Statws"
    5344
    54 #. wpml-name: 9c9ee66a189f06fb9e3cc58c0c352db8
    5545#: admin/admin-init.php:29
    5646msgid "OpenSimulator Settings"
     
    6151msgstr "Gosodiadau"
    6252
    63 #. wpml-name: d0f651f1495d346088ae49450c620e9b
    6453#: admin/admin-init.php:38 admin/admin-init.php:85
    6554msgid "OpenSimulator Helpers"
     
    7059msgstr "Cynorthwywyr"
    7160
    72 #. wpml-name: a2ac9ef42c9ebc25f8dbab799ac23565
    73 #: admin/admin-init.php:105 includes/profile.php:118 tmp/class-avatar.php:315
     61#: admin/admin-init.php:105 includes/profile.php:119 tmp/class-avatar.php:315
    7462msgid "Avatar Name"
    7563msgstr "Enw Avatar"
    7664
    77 #: admin/admin-init.php:111 admin/admin-init.php:117 includes/profile.php:124
     65#: admin/admin-init.php:111 admin/admin-init.php:117 includes/profile.php:125
    7866#: tmp/class-avatar.php:350
    7967msgid "Born"
     
    8472msgstr "Gwelwyd Diwethaf"
    8573
    86 #. wpml-name: 69675902f4d4a3da44638540557562af
    8774#: admin/admin-init.php:133 includes/shortcodes.php:104
    8875msgid "View profile"
     
    9380msgstr "Gyda Avatar"
    9481
    95 #. wpml-name: 847fcf17b5e3d8a6625d71c4dedd34a1
    9682#: admin/admin-init.php:191
    9783msgid "Without Avatar"
    9884msgstr "Heb Avatar"
    9985
    100 #: admin/admin-init.php:208
     86#: admin/admin-init.php:210
    10187msgid "Filter users..."
    10288msgstr "Hidlo defnyddwyr..."
    10389
    104 #: admin/admin-init.php:214
     90#: admin/admin-init.php:216
    10591msgid "Filter"
    10692msgstr "Hidlo"
    10793
    108 #. wpml-name: d0f651f1495d346088ae49450c620e9b
    109 #: admin/admin-init.php:260
     94#: admin/admin-init.php:262
    11095msgid "OpenSimulator Profile"
    11196msgstr "Proffil OpenSimulator"
    11297
    113 #. wpml-name: 2e7502f81f2bff60e1170982af2e5ede
    114 #: admin/admin-init.php:262
     98#: admin/admin-init.php:264
    11599msgid "OpenSimulator Splash"
    116100msgstr "OpenSimulator Sblash"
    117101
    118 #. wpml-name: 2e7502f81f2bff60e1170982af2e5ede
    119 #: admin/admin-init.php:264
     102#: admin/admin-init.php:266
    120103msgid "OpenSimulator Search"
    121104msgstr "Chwiliad OpenSimulator"
    122105
    123 #. wpml-name: d0f651f1495d346088ae49450c620e9b
    124 #: admin/admin-init.php:266
     106#: admin/admin-init.php:268
    125107msgid "OpenSimulator Economy"
    126108msgstr "Economi OpenSimulator"
    127109
    128 #. wpml-name: d0f651f1495d346088ae49450c620e9b
    129 #: admin/admin-init.php:268
     110#: admin/admin-init.php:270
    130111msgid "OpenSimulator About"
    131112msgstr "OpenSimulator Amdanom"
    132113
    133 #. wpml-name: 9c9ee66a189f06fb9e3cc58c0c352db8
    134 #: admin/admin-init.php:270
     114#: admin/admin-init.php:272
    135115msgid "OpenSimulator Register"
    136116msgstr "Cofrestr OpenSimulator"
    137117
    138 #. wpml-name: 2e7502f81f2bff60e1170982af2e5ede
    139 #: admin/admin-init.php:272
     118#: admin/admin-init.php:274
    140119msgid "OpenSimulator Password"
    141120msgstr "Cyfrinair OpenSimulator"
    142121
    143 #. wpml-name: 9c9ee66a189f06fb9e3cc58c0c352db8
    144 #: admin/admin-init.php:274
     122#: admin/admin-init.php:276
    145123msgid "OpenSimulator Offline Messages"
    146124msgstr "Negeseuon All-lein OpenSimulator"
    147125
    148 #: admin/admin-init.php:286 admin/admin-init.php:300
     126#: admin/admin-init.php:288 admin/admin-init.php:302
    149127msgid "The followed link has expired, please try again"
    150128msgstr "Mae'r ddolen ganlynol wedi dod i ben, ceisiwch eto"
    151129
    152 #: admin/admin-init.php:307
     130#: admin/admin-init.php:309
    153131msgid "Page %s already exists."
    154132msgstr "Mae tudalen %s yn bodoli yn barod."
    155133
    156 #: admin/admin-init.php:324
     134#: admin/admin-init.php:326
    157135msgid "New page %s created."
    158136msgstr "Tudalen newydd %s wedi'i chreu."
    159137
    160 #: admin/admin-init.php:328
     138#: admin/admin-init.php:330
    161139msgid "Error while creating page %s."
    162140msgstr "Gwall wrth greu tudalen %s."
    163141
    164 #. wpml-name: 317e8940a1b9f03b83ef85393bd49552
    165 #: admin/admin-init.php:340
     142#: admin/admin-init.php:342
    166143msgid "Avatar profile"
    167144msgstr "Proffil avatar"
    168145
    169 #: admin/admin-init.php:341
     146#: admin/admin-init.php:343
    170147msgid "The base URL for avatar web profiles."
    171148msgstr "Yr URL sylfaenol ar gyfer proffiliau gwe avatar."
    172149
    173 #: admin/admin-init.php:344
     150#: admin/admin-init.php:346
    174151msgid "Search Service"
    175152msgstr "Gwasanaeth Chwilio"
    176153
    177 #: admin/admin-init.php:345
    178 msgid "Search service used by the viewer. Search can be provided by the simulator core (limited), or by an external service for additional functionalities (like events). Requires OpenSimSearch.Modules.dll."
    179 msgstr "Gwasanaeth chwilio a ddefnyddir gan y gwyliwr. Gellir darparu chwiliad gan graidd yr efelychydd (cyfyngedig), neu gan wasanaeth allanol ar gyfer swyddogaethau ychwanegol (fel digwyddiadau). Angen OpenSimSearch.Modules.dll."
    180 
    181 #: admin/admin-init.php:355
     154#: admin/admin-init.php:347
     155msgid ""
     156"Search service used by the viewer. Search can be provided by the simulator "
     157"core (limited), or by an external service for additional functionalities "
     158"(like events). Requires OpenSimSearch.Modules.dll."
     159msgstr ""
     160"Gwasanaeth chwilio a ddefnyddir gan y gwyliwr. Gellir darparu chwiliad gan "
     161"graidd yr efelychydd (cyfyngedig), neu gan wasanaeth allanol ar gyfer "
     162"swyddogaethau ychwanegol (fel digwyddiadau). Angen OpenSimSearch.Modules.dll."
     163
     164#: admin/admin-init.php:357
    182165msgid "Web Search"
    183166msgstr "Chwiliad Gwe"
    184167
    185 #: admin/admin-init.php:356
    186 msgid "Web tab of viewer search windows. Relevant if you have a search page providing content from the grid."
    187 msgstr "Tab gwe o ffenestri chwilio gwyliwr. Yn berthnasol os oes gennych dudalen chwilio sy'n darparu cynnwys o'r grid."
    188 
    189 #: admin/admin-init.php:366 admin/settings.php:294
     168#: admin/admin-init.php:358
     169msgid ""
     170"Web tab of viewer search windows. Relevant if you have a search page "
     171"providing content from the grid."
     172msgstr ""
     173"Tab gwe o ffenestri chwilio gwyliwr. Yn berthnasol os oes gennych dudalen "
     174"chwilio sy'n darparu cynnwys o'r grid."
     175
     176#: admin/admin-init.php:368 admin/settings.php:294
    190177msgid "Offline messages"
    191178msgstr "Negeseuon all-lein"
    192179
    193 #: admin/admin-init.php:367
    194 msgid "Needed by viewers to keep messages while user is offline and deliver them when they come back online. Internal service, not accessed directly by the user."
    195 msgstr "Mae ei angen ar wylwyr i gadw negeseuon tra bod y defnyddiwr all-lein a'u cyflwyno pan fyddant yn dod yn ôl ar-lein. Gwasanaeth mewnol, na chaiff ei gyrchu'n uniongyrchol gan y defnyddiwr."
    196 
    197 #: admin/admin-init.php:372
     180#: admin/admin-init.php:369
     181msgid ""
     182"Needed by viewers to keep messages while user is offline and deliver them "
     183"when they come back online. Internal service, not accessed directly by the "
     184"user."
     185msgstr ""
     186"Mae ei angen ar wylwyr i gadw negeseuon tra bod y defnyddiwr all-lein a'u "
     187"cyflwyno pan fyddant yn dod yn ôl ar-lein. Gwasanaeth mewnol, na chaiff ei "
     188"gyrchu'n uniongyrchol gan y defnyddiwr."
     189
     190#: admin/admin-init.php:374
    198191msgid "Splash"
    199192msgstr "Sblash"
    200193
    201 #: admin/admin-init.php:373
    202 msgid "The welcome page displayed in the viewer with the login form. A short, no-scroll page, with only essential info. It is required, or at least highly recommended."
    203 msgstr "Y dudalen groeso a ddangosir yn y gwyliwr gyda'r ffurflen mewngofnodi. Tudalen fer, heb sgrolio, gyda dim ond gwybodaeth hanfodol. Mae'n ofynnol, neu o leiaf yn cael ei argymell yn fawr."
    204 
    205 #: admin/admin-init.php:398
     194#: admin/admin-init.php:375
     195msgid ""
     196"The welcome page displayed in the viewer with the login form. A short, no-"
     197"scroll page, with only essential info. It is required, or at least highly "
     198"recommended."
     199msgstr ""
     200"Y dudalen groeso a ddangosir yn y gwyliwr gyda'r ffurflen mewngofnodi. "
     201"Tudalen fer, heb sgrolio, gyda dim ond gwybodaeth hanfodol. Mae'n ofynnol, "
     202"neu o leiaf yn cael ei argymell yn fawr."
     203
     204#: admin/admin-init.php:400
    206205msgid "Registration page"
    207206msgstr "Tudalen gofrestru"
    208207
    209 #: admin/admin-init.php:399
     208#: admin/admin-init.php:401
    210209msgid "Link to the user registration."
    211210msgstr "Dolen i'r cofrestriad defnyddiwr."
    212211
    213 #. wpml-name: 8ffca1456a2308a5556a750be1ecbac0
    214 #: admin/admin-init.php:404
     212#: admin/admin-init.php:406
    215213msgid "Password revovery"
    216214msgstr "Dirymiad cyfrinair"
    217215
    218 #: admin/admin-init.php:405
     216#: admin/admin-init.php:407
    219217msgid "Link to lost password page."
    220218msgstr "Dolen i dudalen cyfrinair coll."
    221219
    222 #: admin/admin-init.php:410
     220#: admin/admin-init.php:412
    223221msgid "Economy"
    224222msgstr "Economi"
    225223
    226 #: admin/admin-init.php:411
    227 msgid "Currencies and some other services queried by the viewer. They are not accessed directly by the user."
    228 msgstr "Arian cyfred a rhai gwasanaethau eraill yn cael eu holi gan y gwyliwr. Nid yw'r defnyddiwr yn mynd atynt yn uniongyrchol."
    229 
    230 #: admin/admin-init.php:417
     224#: admin/admin-init.php:413
     225msgid ""
     226"Currencies and some other services queried by the viewer. They are not "
     227"accessed directly by the user."
     228msgstr ""
     229"Arian cyfred a rhai gwasanaethau eraill yn cael eu holi gan y gwyliwr. Nid "
     230"yw'r defnyddiwr yn mynd atynt yn uniongyrchol."
     231
     232#: admin/admin-init.php:419
    231233msgid "About this grid"
    232234msgstr "Am y grid hwn"
    233235
    234 #: admin/admin-init.php:418
    235 msgid "Detailed info page on your website, via a link displayed on the viewer login page."
    236 msgstr "Tudalen wybodaeth fanwl ar eich gwefan, trwy ddolen a ddangosir ar dudalen mewngofnodi'r gwyliwr."
    237 
    238 #: admin/admin-init.php:422
     236#: admin/admin-init.php:420
     237msgid ""
     238"Detailed info page on your website, via a link displayed on the viewer login "
     239"page."
     240msgstr ""
     241"Tudalen wybodaeth fanwl ar eich gwefan, trwy ddolen a ddangosir ar dudalen "
     242"mewngofnodi'r gwyliwr."
     243
     244#: admin/admin-init.php:424
    239245msgid "Help"
    240246msgstr "Help"
    241247
    242 #: admin/admin-init.php:423
     248#: admin/admin-init.php:425
    243249msgid "Link to a help page on your website."
    244250msgstr "Dolen i dudalen gymorth ar eich gwefan."
    245251
    246 #. wpml-name: 6b8467e13ae11c479efa8843f1b95826
    247252#: admin/dashboard.php:13 admin/settings.php:43 includes/shortcodes.php:125
    248253#: includes/widgets.php:47 blocks/w4os-gridinfo-block/index.js:27
     
    251256msgstr "Gwybodaeth grid"
    252257
    253 #. wpml-name: 17db1cfe008f83e7d0181762eda3daab
    254258#: admin/dashboard.php:20 includes/shortcodes.php:154 includes/widgets.php:79
    255259#: includes/widgets.php:115 blocks/w4os-gridstatus-block/index.js:27
     
    262266msgstr "Defnyddwyr diweddar"
    263267
    264 #. wpml-name: 46eb01f349dc6c317e78cd1830545358
    265268#: admin/settings.php:56 includes/shortcodes.php:130
    266269msgid "Grid name"
    267270msgstr "Enw grid"
    268271
    269 #. wpml-name: 193fe27dd7fcd662652841a7b7e6c912
    270272#: admin/settings.php:63
    271273msgid "Robust server database"
     
    276278msgstr "Enw gwesteiwr"
    277279
    278 #. wpml-name: a2ac9ef42c9ebc25f8dbab799ac23565
    279280#: admin/settings.php:69 admin/settings.php:229 admin/settings.php:386
    280281msgid "Database name"
     
    285286msgstr "Enw defnyddiwr"
    286287
    287 #. wpml-name: 8ffca1456a2308a5556a750be1ecbac0
    288288#: admin/settings.php:76 admin/settings.php:238 admin/settings.php:395
    289289#: tmp/class-avatar.php:277
     
    291291msgstr "Cyfrinair"
    292292
    293 #. wpml-name: a2ac9ef42c9ebc25f8dbab799ac23565
    294293#: admin/settings.php:83 admin/status-page.php:74
    295294msgid "Avatar models"
    296295msgstr "Modelau avatar"
    297296
    298 #. wpml-name: b2d0fb30e09bf39693f6183c33455748
    299297#: admin/settings.php:87
    300298msgid "First Name = "
    301299msgstr "Enw Cyntaf = "
    302300
    303 #. wpml-name: 14bcd8bac9d052de9f9aa0f685a6da73
    304301#: admin/settings.php:91
    305302msgid "OR Last Name = "
    306303msgstr "NEU Cyfenw = "
    307304
    308 #. wpml-name: 17db1cfe008f83e7d0181762eda3daab
    309305#: admin/settings.php:97
    310306msgid "Grid users"
     
    315311msgstr "Tudalen proffil"
    316312
    317 #. wpml-name: 69675902f4d4a3da44638540557562af
    318313#: admin/settings.php:103 admin/settings.php:119
    319314msgid "Provide web profile page for avatars"
     
    326321#: admin/settings.php:110 admin/settings.php:125
    327322msgid "The page %s must exist, as defined in %spermalinks settings%s."
    328 msgstr "Rhaid i'r dudalen %s fodoli, fel y'i diffinnir yng ngosodiadau %spermalinks%s."
     323msgstr ""
     324"Rhaid i'r dudalen %s fodoli, fel y'i diffinnir yng ngosodiadau "
     325"%spermalinks%s."
     326
     327#: admin/settings.php:129
     328msgid ""
     329"Table %s not found. User Profiles must be activated in Robust to enable "
     330"profile page."
     331msgstr ""
    329332
    330333#: admin/settings.php:136
     
    332335msgstr "Dangos cyfarwyddiadau ffurfweddu i ddefnyddwyr newydd."
    333336
    334 #. wpml-name: 751cfef8ad45902372601aeac58bdad7
    335337#: admin/settings.php:141
    336338msgid "Login page"
     
    370372
    371373#: admin/settings.php:163
    372 msgid "Accounts without email address are usually test accounts created from the console. Uncheck only if you have real avatars without email address."
    373 msgstr "Mae cyfrifon heb gyfeiriad e-bost fel arfer yn gyfrifon prawf sy'n cael eu creu o'r consol. Dad-diciwch dim ond os oes gennych avatars go iawn heb gyfeiriad e-bost."
     374msgid ""
     375"Accounts without email address are usually test accounts created from the "
     376"console. Uncheck only if you have real avatars without email address."
     377msgstr ""
     378"Mae cyfrifon heb gyfeiriad e-bost fel arfer yn gyfrifon prawf sy'n cael eu "
     379"creu o'r consol. Dad-diciwch dim ond os oes gennych avatars go iawn heb "
     380"gyfeiriad e-bost."
    374381
    375382#: admin/settings.php:182
     
    382389
    383390#: admin/settings.php:190
    384 msgid "A web assets server is required to display in-world assets (from the grid) on the website (e.g. profile pictures)."
    385 msgstr "Mae angen gweinydd asedau gwe i arddangos asedau yn y byd (o'r grid) ar y wefan (e.e. lluniau proffil)."
    386 
    387 #. Found in description list item.
     391msgid ""
     392"A web assets server is required to display in-world assets (from the grid) "
     393"on the website (e.g. profile pictures)."
     394msgstr ""
     395"Mae angen gweinydd asedau gwe i arddangos asedau yn y byd (o'r grid) ar y "
     396"wefan (e.e. lluniau proffil)."
     397
    388398#: admin/settings.php:193
    389399msgid "Web asset server"
     
    399409
    400410#: admin/settings.php:203
    401 msgid "If W4OS web assets service is disabled, you need a third-party web application."
    402 msgstr "Os yw gwasanaeth asedau gwe W4OS yn anabl, mae angen cymhwysiad gwe trydydd parti arnoch chi."
     411msgid ""
     412"If W4OS web assets service is disabled, you need a third-party web "
     413"application."
     414msgstr ""
     415"Os yw gwasanaeth asedau gwe W4OS yn anabl, mae angen cymhwysiad gwe trydydd "
     416"parti arnoch chi."
    403417
    404418#: admin/settings.php:209
     
    423437
    424438#: admin/settings.php:247
    425 msgid "URL of the search engine used internally by the viewer (without arguments)."
    426 msgstr "URL y peiriant chwilio a ddefnyddir yn fewnol gan y gwyliwr (heb ddadleuon)."
     439msgid ""
     440"URL of the search engine used internally by the viewer (without arguments)."
     441msgstr ""
     442"URL y peiriant chwilio a ddefnyddir yn fewnol gan y gwyliwr (heb ddadleuon)."
    427443
    428444#: admin/settings.php:256
    429 msgid "Please note that Search URL is different from Web search URL, which is not handled by W4OS currently. Web search is relevant if you have a web search page dedicated to grid content, providing results with in-world URLs (hop:// or secondlife://). It is optional and is referenced here only to disambiguate settings which unfortunately have similar names."
    430 msgstr "Sylwch fod URL Chwilio yn wahanol i URL chwilio Gwe, nad yw W4OS yn ei drin ar hyn o bryd. Mae chwiliad gwe yn berthnasol os oes gennych chi dudalen chwilio gwe sy'n ymroddedig i gynnwys grid, sy'n darparu canlyniadau gydag URLs yn y byd (hop: / neu secondlife://). Mae'n ddewisol a chyfeirir ato yma dim ond i ddadamwys gosodiadau sydd yn anffodus ag enwau tebyg."
     445msgid ""
     446"Please note that Search URL is different from Web search URL, which is not "
     447"handled by W4OS currently. Web search is relevant if you have a web search "
     448"page dedicated to grid content, providing results with in-world URLs (hop:// "
     449"or secondlife://). It is optional and is referenced here only to "
     450"disambiguate settings which unfortunately have similar names."
     451msgstr ""
     452"Sylwch fod URL Chwilio yn wahanol i URL chwilio Gwe, nad yw W4OS yn ei drin "
     453"ar hyn o bryd. Mae chwiliad gwe yn berthnasol os oes gennych chi dudalen "
     454"chwilio gwe sy'n ymroddedig i gynnwys grid, sy'n darparu canlyniadau gydag "
     455"URLs yn y byd (hop: / neu secondlife://). Mae'n ddewisol a chyfeirir ato yma "
     456"dim ond i ddadamwys gosodiadau sydd yn anffodus ag enwau tebyg."
    431457
    432458#: admin/settings.php:269
     
    436462#: admin/settings.php:272
    437463msgid "Data service, used to register regions, objects or land for sale."
    438 msgstr "Gwasanaeth data, a ddefnyddir i gofrestru rhanbarthau, gwrthrychau neu dir ar werth."
     464msgstr ""
     465"Gwasanaeth data, a ddefnyddir i gofrestru rhanbarthau, gwrthrychau neu dir "
     466"ar werth."
    439467
    440468#: admin/settings.php:285
     
    443471
    444472#: admin/settings.php:287
    445 msgid "HYPEvents server URL, used to fetch upcoming events and make them available in search."
    446 msgstr "URL gweinydd HYPEvents, a ddefnyddir i nôl digwyddiadau sydd ar ddod a sicrhau eu bod ar gael wrth chwilio."
     473msgid ""
     474"HYPEvents server URL, used to fetch upcoming events and make them available "
     475"in search."
     476msgstr ""
     477"URL gweinydd HYPEvents, a ddefnyddir i nôl digwyddiadau sydd ar ddod a "
     478"sicrhau eu bod ar gael wrth chwilio."
    447479
    448480#: admin/settings.php:288
    449 msgid "Leave blank to ignore events or if you have an other events implementation."
    450 msgstr "Gadewch yn wag i anwybyddu digwyddiadau neu os oes gennych weithrediad digwyddiadau eraill."
     481msgid ""
     482"Leave blank to ignore events or if you have an other events implementation."
     483msgstr ""
     484"Gadewch yn wag i anwybyddu digwyddiadau neu os oes gennych weithrediad "
     485"digwyddiadau eraill."
    451486
    452487#: admin/settings.php:298
     
    467502
    468503#: admin/settings.php:328
    469 msgid "A no-reply e-mail address used to forward messages for users enabling \"Email me IMs when I'm offline\" option."
    470 msgstr "Cyfeiriad e-bost dim ateb a ddefnyddir i anfon negeseuon ymlaen ar gyfer defnyddwyr sy'n galluogi opsiwn \"E-bostiwch IMs ataf pan fyddaf all-lein\"."
     504msgid ""
     505"A no-reply e-mail address used to forward messages for users enabling "
     506"\"Email me IMs when I'm offline\" option."
     507msgstr ""
     508"Cyfeiriad e-bost dim ateb a ddefnyddir i anfon negeseuon ymlaen ar gyfer "
     509"defnyddwyr sy'n galluogi opsiwn \"E-bostiwch IMs ataf pan fyddaf all-lein\"."
    471510
    472511#: admin/settings.php:337
     
    475514
    476515#: admin/settings.php:340
    477 msgid "Economy helpers are additional scripts needed if you implement economy on your grid (with real or fake currency)."
    478 msgstr "Mae cynorthwywyr economi yn sgriptiau ychwanegol sydd eu hangen os ydych chi'n gweithredu economi ar eich grid (gydag arian cyfred go iawn neu ffug)."
     516msgid ""
     517"Economy helpers are additional scripts needed if you implement economy on "
     518"your grid (with real or fake currency)."
     519msgstr ""
     520"Mae cynorthwywyr economi yn sgriptiau ychwanegol sydd eu hangen os ydych "
     521"chi'n gweithredu economi ar eich grid (gydag arian cyfred go iawn neu ffug)."
    479522
    480523#: admin/settings.php:341
    481 msgid "Helper scripts allow communication between the money server and the grid: current balance update, currency cost estimation, land and object sales, payments..."
    482 msgstr "Mae sgriptiau cynorthwywyr yn caniatáu cyfathrebu rhwng y gweinydd arian a'r grid: diweddariad balans cyfredol, amcangyfrif cost arian cyfred, gwerthu tir a gwrthrychau, taliadau ..."
     524msgid ""
     525"Helper scripts allow communication between the money server and the grid: "
     526"current balance update, currency cost estimation, land and object sales, "
     527"payments..."
     528msgstr ""
     529"Mae sgriptiau cynorthwywyr yn caniatáu cyfathrebu rhwng y gweinydd arian a'r "
     530"grid: diweddariad balans cyfredol, amcangyfrif cost arian cyfred, gwerthu "
     531"tir a gwrthrychau, taliadau ..."
    483532
    484533#: admin/settings.php:343
    485 msgid "Money server is not included in OpenSimulator distribution and require a separate installation, e.g. from %s."
    486 msgstr "Nid yw gweinydd arian wedi'i gynnwys yn nosbarthiad OpenSimulator ac mae angen gosodiad ar wahân, e.e. o %s."
     534msgid ""
     535"Money server is not included in OpenSimulator distribution and require a "
     536"separate installation, e.g. from %s."
     537msgstr ""
     538"Nid yw gweinydd arian wedi'i gynnwys yn nosbarthiad OpenSimulator ac mae "
     539"angen gosodiad ar wahân, e.e. o %s."
    487540
    488541#: admin/settings.php:351
     
    511564
    512565#: admin/settings.php:413
    513 msgid "Amount to pay in US$ for 1000 in-world money units. Used for cost estimation. If not set, the rate will be 10/1000 (1 cent per money unit)"
    514 msgstr "Swm i'w dalu mewn US$ am 1000 o unedau arian yn y byd. Defnyddir ar gyfer amcangyfrif cost. Os na chaiff ei gosod, y gyfradd fydd 10/1000 (1 cant fesul uned arian)"
     566msgid ""
     567"Amount to pay in US$ for 1000 in-world money units. Used for cost "
     568"estimation. If not set, the rate will be 10/1000 (1 cent per money unit)"
     569msgstr ""
     570"Swm i'w dalu mewn US$ am 1000 o unedau arian yn y byd. Defnyddir ar gyfer "
     571"amcangyfrif cost. Os na chaiff ei gosod, y gyfradd fydd 10/1000 (1 cant "
     572"fesul uned arian)"
    515573
    516574#: admin/settings.php:416
     
    519577
    520578#: admin/settings.php:417
    521 msgid "Please use our terminals in-world to proceed. Click OK to teleport to terminals region."
    522 msgstr "Defnyddiwch ein terfynellau yn y byd i symud ymlaen. Cliciwch OK i deleportio i ranbarth terfynellau."
     579msgid ""
     580"Please use our terminals in-world to proceed. Click OK to teleport to "
     581"terminals region."
     582msgstr ""
     583"Defnyddiwch ein terfynellau yn y byd i symud ymlaen. Cliciwch OK i "
     584"deleportio i ranbarth terfynellau."
    523585
    524586#: admin/settings.php:420
     
    532594#: admin/settings.php:585
    533595msgid "Values must match Robust.HG.ini (or Robust.HG.ini) config file."
    534 msgstr "Rhaid i werthoedd gyd-fynd â ffeil ffurfweddu Robust.HG.ini (neu Robust.HG.ini)."
     596msgstr ""
     597"Rhaid i werthoedd gyd-fynd â ffeil ffurfweddu Robust.HG.ini (neu Robust.HG."
     598"ini)."
    535599
    536600#: admin/settings.php:586
    537 msgid "Robust server must be running. Values entered here will be checked against your Robust server and updated if needed."
    538 msgstr "Rhaid i weinydd cadarn fod yn rhedeg. Bydd y gwerthoedd a nodir yma yn cael eu gwirio yn erbyn eich gweinydd Cadarn a'u diweddaru os oes angen."
     601msgid ""
     602"Robust server must be running. Values entered here will be checked against "
     603"your Robust server and updated if needed."
     604msgstr ""
     605"Rhaid i weinydd cadarn fod yn rhedeg. Bydd y gwerthoedd a nodir yma yn cael "
     606"eu gwirio yn erbyn eich gweinydd Cadarn a'u diweddaru os oes angen."
    539607
    540608#: admin/settings.php:591
    541 msgid "Grid accounts matching first name or last name set below are considered as avatar models. They will appear on the avatar registration form, with their in-world profile picture."
    542 msgstr "Mae cyfrifon grid sy'n cyfateb i'r enw cyntaf neu'r enw olaf a osodwyd isod yn cael eu hystyried fel modelau avatar. Byddant yn ymddangos ar y ffurflen gofrestru avatar, gyda'u llun proffil yn y byd."
    543 
    544 #. wpml-name: 6bdda8124d6ca549428567dfc1c0532d
     609msgid ""
     610"Grid accounts matching first name or last name set below are considered as "
     611"avatar models. They will appear on the avatar registration form, with their "
     612"in-world profile picture."
     613msgstr ""
     614"Mae cyfrifon grid sy'n cyfateb i'r enw cyntaf neu'r enw olaf a osodwyd isod "
     615"yn cael eu hystyried fel modelau avatar. Byddant yn ymddangos ar y ffurflen "
     616"gofrestru avatar, gyda'u llun proffil yn y byd."
     617
     618#: admin/status-page.php:15
     619msgid "PHP xml-rpc is required but is not installed."
     620msgstr ""
     621
    545622#: admin/status-page.php:22
    546623msgid "Available shortcodes"
    547624msgstr "Codau byr sydd ar gael"
    548625
    549 #. wpml-name: 119154a6f7028c6f8ebe3e470e626296
    550626#: admin/status-page.php:27
    551627msgid "General information (grid name and login uri)"
    552628msgstr "Gwybodaeth gyffredinol (enw grid a uri mewngofnodi)"
    553629
    554 #. wpml-name: 9dd1ee1a9ac16e90a05dc54134ea1796
    555630#: admin/status-page.php:33
    556631msgid "Online users, regions, etc."
     
    558633
    559634#: admin/status-page.php:39
    560 msgid "Grid profile if user is connected and has an avatar, avatar registration form otherwise"
    561 msgstr "Proffil grid os yw'r defnyddiwr wedi'i gysylltu a bod ganddo avatar, ffurflen gofrestru avatar fel arall"
     635msgid ""
     636"Grid profile if user is connected and has an avatar, avatar registration "
     637"form otherwise"
     638msgstr ""
     639"Proffil grid os yw'r defnyddiwr wedi'i gysylltu a bod ganddo avatar, "
     640"ffurflen gofrestru avatar fel arall"
    562641
    563642#: admin/status-page.php:40
     
    569648msgstr "Defnyddwyr"
    570649
    571 #. wpml-name: 6834699b2d08455d0475c76d54356191
    572650#: admin/status-page.php:55
    573651msgid "Total"
     
    582660msgstr "Cysoni"
    583661
    584 #. wpml-name: 69675902f4d4a3da44638540557562af
    585662#: admin/status-page.php:58
    586663msgid "Grid only"
    587664msgstr "Grid yn unig"
    588665
    589 #. wpml-name: 17db1cfe008f83e7d0181762eda3daab
    590666#: admin/status-page.php:62
    591667msgid "Grid accounts"
     
    601677
    602678#: admin/status-page.php:95
    603 msgid "%d grid account has no linked WP account. Syncing will create a new WP account."
    604 msgid_plural "%d grid accounts have no linked WP account. Syncing will create new WP accounts."
    605 msgstr[0] "Does gan %d cyfrif grid ddim cyfrif WP cysylltiedig. Bydd cysoni yn creu cyfrif WP newydd."
    606 msgstr[1] "Does gan %d cyfrif grid ddim cyfrif WP cysylltiedig. Bydd cysoni yn creu cyfrif WP newydd."
    607 msgstr[2] "Does gan %d cyfrif grid ddim cyfrif WP cysylltiedig. Bydd cysoni yn creu cyfrif WP newydd."
    608 msgstr[3] "Does gan %d cyfrif grid ddim cyfrif WP cysylltiedig. Bydd cysoni yn creu cyfrif WP newydd."
     679msgid ""
     680"%d grid account has no linked WP account. Syncing will create a new WP "
     681"account."
     682msgid_plural ""
     683"%d grid accounts have no linked WP account. Syncing will create new WP "
     684"accounts."
     685msgstr[0] ""
     686"Does gan %d cyfrif grid ddim cyfrif WP cysylltiedig. Bydd cysoni yn creu "
     687"cyfrif WP newydd."
     688msgstr[1] ""
     689"Does gan %d cyfrif grid ddim cyfrif WP cysylltiedig. Bydd cysoni yn creu "
     690"cyfrif WP newydd."
     691msgstr[2] ""
     692"Does gan %d cyfrif grid ddim cyfrif WP cysylltiedig. Bydd cysoni yn creu "
     693"cyfrif WP newydd."
     694msgstr[3] ""
     695"Does gan %d cyfrif grid ddim cyfrif WP cysylltiedig. Bydd cysoni yn creu "
     696"cyfrif WP newydd."
    609697
    610698#: admin/status-page.php:103
    611 msgid "%d WordPress account is linked to an unexisting avatar (wrong UUID). Syncing accounts will keep this WP account but remove the broken reference."
    612 msgid_plural "%d WordPress accounts are linked to unexisting avatars (wrong UUID). Syncing accounts will keep these WP accounts but remove the broken reference."
    613 msgstr[0] "Mae %d cyfrif WordPress wedi'i gysylltu ag avatar nad yw'n bodoli (UUID anghywir). Bydd cysoni cyfrifon yn cadw'r cyfrif WP hwn ond yn dileu'r cyfeirnod sydd wedi torri."
    614 msgstr[1] "Mae %d cyfrif WordPress wedi'i gysylltu ag avatar nad yw'n bodoli (UUID anghywir). Bydd cysoni cyfrifon yn cadw'r cyfrif WP hwn ond yn dileu'r cyfeirnod sydd wedi torri."
    615 msgstr[2] "Mae %d cyfrif WordPress wedi'i gysylltu ag avatar nad yw'n bodoli (UUID anghywir). Bydd cysoni cyfrifon yn cadw'r cyfrif WP hwn ond yn dileu'r cyfeirnod sydd wedi torri."
    616 msgstr[3] "Mae %d cyfrif WordPress wedi'i gysylltu ag avatar nad yw'n bodoli (UUID anghywir). Bydd cysoni cyfrifon yn cadw'r cyfrif WP hwn ond yn dileu'r cyfeirnod sydd wedi torri."
     699msgid ""
     700"%d WordPress account is linked to an unexisting avatar (wrong UUID). Syncing "
     701"accounts will keep this WP account but remove the broken reference."
     702msgid_plural ""
     703"%d WordPress accounts are linked to unexisting avatars (wrong UUID). Syncing "
     704"accounts will keep these WP accounts but remove the broken reference."
     705msgstr[0] ""
     706"Mae %d cyfrif WordPress wedi'i gysylltu ag avatar nad yw'n bodoli (UUID "
     707"anghywir). Bydd cysoni cyfrifon yn cadw'r cyfrif WP hwn ond yn dileu'r "
     708"cyfeirnod sydd wedi torri."
     709msgstr[1] ""
     710"Mae %d cyfrif WordPress wedi'i gysylltu ag avatar nad yw'n bodoli (UUID "
     711"anghywir). Bydd cysoni cyfrifon yn cadw'r cyfrif WP hwn ond yn dileu'r "
     712"cyfeirnod sydd wedi torri."
     713msgstr[2] ""
     714"Mae %d cyfrif WordPress wedi'i gysylltu ag avatar nad yw'n bodoli (UUID "
     715"anghywir). Bydd cysoni cyfrifon yn cadw'r cyfrif WP hwn ond yn dileu'r "
     716"cyfeirnod sydd wedi torri."
     717msgstr[3] ""
     718"Mae %d cyfrif WordPress wedi'i gysylltu ag avatar nad yw'n bodoli (UUID "
     719"anghywir). Bydd cysoni cyfrifon yn cadw'r cyfrif WP hwn ond yn dileu'r "
     720"cyfeirnod sydd wedi torri."
    617721
    618722#: admin/status-page.php:111
    619 msgid "%d grid account (other than models) has no email address, which is fine as long as it is used only for maintenance or service tasks."
    620 msgid_plural "%d grid accounts (other than models) have no email address, which is fine as long as they are used only for maintenance or service tasks."
    621 msgstr[0] "Nid oes gan %d cyfrif grid (ac eithrio modelau) gyfeiriad e-bost, sy'n iawn cyn belled ei fod yn cael ei ddefnyddio ar gyfer tasgau cynnal a chadw neu wasanaeth yn unig."
    622 msgstr[1] "Nid oes gan %d cyfrif grid (ac eithrio modelau) gyfeiriad e-bost, sy'n iawn cyn belled ei fod yn cael ei ddefnyddio ar gyfer tasgau cynnal a chadw neu wasanaeth yn unig."
    623 msgstr[2] "Nid oes gan %d cyfrif grid (ac eithrio modelau) gyfeiriad e-bost, sy'n iawn cyn belled ei fod yn cael ei ddefnyddio ar gyfer tasgau cynnal a chadw neu wasanaeth yn unig."
    624 msgstr[3] "Nid oes gan %d cyfrif grid (ac eithrio modelau) gyfeiriad e-bost, sy'n iawn cyn belled ei fod yn cael ei ddefnyddio ar gyfer tasgau cynnal a chadw neu wasanaeth yn unig."
     723msgid ""
     724"%d grid account (other than models) has no email address, which is fine as "
     725"long as it is used only for maintenance or service tasks."
     726msgid_plural ""
     727"%d grid accounts (other than models) have no email address, which is fine as "
     728"long as they are used only for maintenance or service tasks."
     729msgstr[0] ""
     730"Nid oes gan %d cyfrif grid (ac eithrio modelau) gyfeiriad e-bost, sy'n iawn "
     731"cyn belled ei fod yn cael ei ddefnyddio ar gyfer tasgau cynnal a chadw neu "
     732"wasanaeth yn unig."
     733msgstr[1] ""
     734"Nid oes gan %d cyfrif grid (ac eithrio modelau) gyfeiriad e-bost, sy'n iawn "
     735"cyn belled ei fod yn cael ei ddefnyddio ar gyfer tasgau cynnal a chadw neu "
     736"wasanaeth yn unig."
     737msgstr[2] ""
     738"Nid oes gan %d cyfrif grid (ac eithrio modelau) gyfeiriad e-bost, sy'n iawn "
     739"cyn belled ei fod yn cael ei ddefnyddio ar gyfer tasgau cynnal a chadw neu "
     740"wasanaeth yn unig."
     741msgstr[3] ""
     742"Nid oes gan %d cyfrif grid (ac eithrio modelau) gyfeiriad e-bost, sy'n iawn "
     743"cyn belled ei fod yn cael ei ddefnyddio ar gyfer tasgau cynnal a chadw neu "
     744"wasanaeth yn unig."
    625745
    626746#: admin/status-page.php:116
    627 msgid "Real accounts need a unique email address for W4OS to function properly."
    628 msgstr "Mae cyfrifon go iawn angen cyfeiriad e-bost unigryw er mwyn i W4OS weithredu'n iawn."
     747msgid ""
     748"Real accounts need a unique email address for W4OS to function properly."
     749msgstr ""
     750"Mae cyfrifon go iawn angen cyfeiriad e-bost unigryw er mwyn i W4OS "
     751"weithredu'n iawn."
    629752
    630753#: admin/status-page.php:124
     
    633756
    634757#: admin/status-page.php:126
    635 msgid "Synchronization is made at plugin activation and is handled automatically afterwards, but in certain circumstances it may be necessary to initiate it manually to get an immediate result, especially if users have been added or deleted directly from the grid administration console."
    636 msgstr "Gwneir cydamseru wrth actifadu ategyn a chaiff ei drin yn awtomatig wedyn, ond mewn rhai amgylchiadau efallai y bydd angen ei gychwyn â llaw i gael canlyniad ar unwaith, yn enwedig os yw defnyddwyr wedi'u hychwanegu neu eu dileu yn uniongyrchol o'r consol gweinyddu grid."
     758msgid ""
     759"Synchronization is made at plugin activation and is handled automatically "
     760"afterwards, but in certain circumstances it may be necessary to initiate it "
     761"manually to get an immediate result, especially if users have been added or "
     762"deleted directly from the grid administration console."
     763msgstr ""
     764"Gwneir cydamseru wrth actifadu ategyn a chaiff ei drin yn awtomatig wedyn, "
     765"ond mewn rhai amgylchiadau efallai y bydd angen ei gychwyn â llaw i gael "
     766"canlyniad ar unwaith, yn enwedig os yw defnyddwyr wedi'u hychwanegu neu eu "
     767"dileu yn uniongyrchol o'r consol gweinyddu grid."
    637768
    638769#: admin/status-page.php:144
     
    641772
    642773#: admin/status-page.php:146
    643 msgid "These modules were not found: %s. Install them to get the most of this plugin."
    644 msgstr "Ni ddaethpwyd o hyd i'r modiwlau hyn: %s. Gosodwch nhw i gael y gorau o'r ategyn hwn."
    645 
    646 #. wpml-name: 2e7502f81f2bff60e1170982af2e5ede
     774msgid ""
     775"These modules were not found: %s. Install them to get the most of this "
     776"plugin."
     777msgstr ""
     778"Ni ddaethpwyd o hyd i'r modiwlau hyn: %s. Gosodwch nhw i gael y gorau o'r "
     779"ategyn hwn."
     780
    647781#: admin/status-page.php:154
    648782msgid "OpenSimulator pages"
     
    650784
    651785#: admin/status-page.php:156
    652 msgid "The following page are needed by OpenSimulator and/or by W4OS plugin. Make sure they exist or adjust your simulator .ini file."
    653 msgstr "Mae angen y dudalen ganlynol gan OpenSimulator a/neu drwy ategyn W4OS. Gwnewch yn siŵr eu bod yn bodoli neu addaswch eich ffeil .ini efelychydd."
     786msgid ""
     787"The following page are needed by OpenSimulator and/or by W4OS plugin. Make "
     788"sure they exist or adjust your simulator .ini file."
     789msgstr ""
     790"Mae angen y dudalen ganlynol gan OpenSimulator a/neu drwy ategyn W4OS. "
     791"Gwnewch yn siŵr eu bod yn bodoli neu addaswch eich ffeil .ini efelychydd."
    654792
    655793#: admin/status-page.php:166
    656 msgid "Grid not running, start Robust server or %scheck OpenSimulator settings%s."
    657 msgstr "Grid ddim yn rhedeg, cychwyn gweinydd cadarn neu %scheck gosodiadau OpenSimulator%s."
     794msgid ""
     795"Grid not running, start Robust server or %scheck OpenSimulator settings%s."
     796msgstr ""
     797"Grid ddim yn rhedeg, cychwyn gweinydd cadarn neu %scheck gosodiadau "
     798"OpenSimulator%s."
    658799
    659800#: admin/status-page.php:186
     
    666807
    667808#: admin/status-page.php:191
    668 msgid "OpenSimulator pages are checked regularly in the background. Synchronize now only if you made changes and want an immediate status."
    669 msgstr "Mae tudalennau OpenSimulator yn cael eu gwirio'n rheolaidd yn y cefndir. Cydamserwch nawr dim ond os gwnaethoch newidiadau ac eisiau statws ar unwaith."
     809msgid ""
     810"OpenSimulator pages are checked regularly in the background. Synchronize now "
     811"only if you made changes and want an immediate status."
     812msgstr ""
     813"Mae tudalennau OpenSimulator yn cael eu gwirio'n rheolaidd yn y cefndir. "
     814"Cydamserwch nawr dim ond os gwnaethoch newidiadau ac eisiau statws ar "
     815"unwaith."
    670816
    671817#: admin/status-page.php:212
     
    674820
    675821#: admin/status-page.php:218
    676 msgid "This service requires a separate web application.<br>Try <a href=\"%1$s\" target=_blank>%1$s</a>."
    677 msgstr "Mae angen rhaglen we ar wahân ar gyfer y gwasanaeth hwn.<br>Ceisiwch <a href=\"%1$s\" target=_blank>%1$s</a>."
     822msgid ""
     823"This service requires a separate web application.<br>Try <a href=\"%1$s\" "
     824"target=_blank>%1$s</a>."
     825msgstr ""
     826"Mae angen rhaglen we ar wahân ar gyfer y gwasanaeth hwn.<br>Ceisiwch <a "
     827"href=\"%1$s\" target=_blank>%1$s</a>."
    678828
    679829#: blocks/popular-places.php:128
     
    694844
    695845#: includes/functions.php:149
    696 msgid "A local Robust server has been found. Please check Login URI and Grid name configuration."
    697 msgstr "Mae gweinydd cadarn lleol wedi'i ganfod. Gwiriwch URI Mewngofnodi a ffurfweddiad enw Grid."
    698 
    699 #. wpml-name: 9c9ee66a189f06fb9e3cc58c0c352db8
     846msgid ""
     847"A local Robust server has been found. Please check Login URI and Grid name "
     848"configuration."
     849msgstr ""
     850"Mae gweinydd cadarn lleol wedi'i ganfod. Gwiriwch URI Mewngofnodi a "
     851"ffurfweddiad enw Grid."
     852
    700853#: includes/functions.php:168
    701854msgid "OpenSimulator settings page"
     
    710863msgstr "All-lein"
    711864
    712 #. wpml-name: ef53538ae41a651c7f72ab6cb1135d8c
    713865#: includes/functions.php:228
    714866msgid "Members"
    715867msgstr "Aelodau"
    716868
    717 #. wpml-name: fd9754e08c4e5151b83bc2abbf21ffb0
    718869#: includes/functions.php:230
    719870msgid "Active members (30 days)"
    720871msgstr "Aelodau gweithredol (30 diwrnod)"
    721872
    722 #. wpml-name: 67ea4b3432b974a20b2c8ee6609e363c
    723873#: includes/functions.php:233
    724874msgid "Members in world"
    725875msgstr "Aelodau yn y byd"
    726876
    727 #. wpml-name: fd9754e08c4e5151b83bc2abbf21ffb0
    728877#: includes/functions.php:240
    729878msgid "Active users (30 days)"
    730879msgstr "Defnyddwyr gweithredol (30 diwrnod)"
    731880
    732 #. wpml-name: 9143e8053fefd25ce03ae81136931586
    733881#: includes/functions.php:242
    734882msgid "Total users in world"
    735883msgstr "Cyfanswm y defnyddwyr yn y byd"
    736884
    737 #. wpml-name: 5948f3347ebc02ebc690227c059661e1
    738885#: includes/functions.php:246
    739886msgid "Regions"
    740887msgstr "Rhanbarthau"
    741888
    742 #. wpml-name: 6834699b2d08455d0475c76d54356191
    743889#: includes/functions.php:248
    744890msgid "Total area"
     
    757903msgstr "%s diwrnod oed"
    758904
    759 #. wpml-name: 8ffca1456a2308a5556a750be1ecbac0
    760905#: includes/profile-page.php:51
    761906msgid "Lost Password"
    762907msgstr "Cyfrinair Coll"
    763908
    764 #. wpml-name: 5948f3347ebc02ebc690227c059661e1
    765909#: includes/profile-page.php:56
    766910msgid "Register"
     
    768912
    769913#: includes/profile-page.php:87
    770 msgid "Lost your password? Please enter your username or email address. You will receive a link to create a new password via email."
    771 msgstr "Wedi colli eich cyfrinair? Rhowch eich enw defnyddiwr neu gyfeiriad e-bost. Byddwch yn derbyn dolen i greu cyfrinair newydd trwy e-bost."
     914msgid ""
     915"Lost your password? Please enter your username or email address. You will "
     916"receive a link to create a new password via email."
     917msgstr ""
     918"Wedi colli eich cyfrinair? Rhowch eich enw defnyddiwr neu gyfeiriad e-bost. "
     919"Byddwch yn derbyn dolen i greu cyfrinair newydd trwy e-bost."
    772920
    773921#: includes/profile-page.php:89
     
    775923msgstr "Ebost"
    776924
    777 #. wpml-name: 8ffca1456a2308a5556a750be1ecbac0
    778925#: includes/profile-page.php:90
    779926msgid "Reset Password"
     
    787934#: includes/profile-page.php:96
    788935msgid "Log in to create your avatar, view your profile or set your options."
    789 msgstr "Mewngofnodwch i greu eich avatar, gweld eich proffil neu osod eich opsiynau."
    790 
    791 #. wpml-name: 69675902f4d4a3da44638540557562af
     936msgstr ""
     937"Mewngofnodwch i greu eich avatar, gweld eich proffil neu osod eich opsiynau."
     938
    792939#: includes/profile-page.php:147
    793940msgid "My Profile"
     
    798945msgstr "Creu Fy Avatar"
    799946
    800 #. wpml-name: 69675902f4d4a3da44638540557562af
    801947#: includes/profile-page.php:165 templates/content-page-profile.php:54
    802948msgid "%s's profile"
    803949msgstr "proffil %s"
    804950
    805 #. wpml-name: a2ac9ef42c9ebc25f8dbab799ac23565
    806951#: includes/profile-page.php:168
    807952msgid "Avatar not found"
    808953msgstr "Avatar heb ei ddarganfod"
    809954
    810 #. wpml-name: 69675902f4d4a3da44638540557562af
    811955#: includes/profile-page.php:221
    812956msgid "Profile base"
     
    8731017msgstr "Cymeriadau Personol"
    8741018
    875 #: includes/profile.php:122
     1019#: includes/profile.php:123
    8761020msgid "About"
    8771021msgstr "Ynghylch"
    8781022
    879 #: includes/profile.php:125
     1023#: includes/profile.php:126
    8801024msgid "Partner"
    8811025msgstr "Partner"
    8821026
    883 #: includes/profile.php:126
     1027#: includes/profile.php:127
    8841028msgid "Wants to"
    8851029msgstr "Eisiau"
    8861030
    887 #: includes/profile.php:127
     1031#: includes/profile.php:128
    8881032msgid "Skills"
    8891033msgstr "Sgiliau"
    8901034
    891 #: includes/profile.php:128
     1035#: includes/profile.php:129
    8921036msgid "Languages"
    8931037msgstr "Ieithoedd"
    8941038
    895 #: includes/profile.php:129
     1039#: includes/profile.php:130
    8961040msgid "Real Life"
    8971041msgstr "Bywyd go iawn"
    8981042
    899 #: includes/profile.php:244
    900 msgid "%s local users updated with avatar data"
    901 msgstr "Diweddarwyd %s defnyddiwr lleol gyda data avatar"
    902 
    903 #. wpml-name: d0f651f1495d346088ae49450c620e9b
    904 #: includes/profile.php:258 includes/profile.php:977
     1043#: includes/profile.php:133 tmp/class-avatar.php:277
     1044msgid "Change password"
     1045msgstr ""
     1046
     1047#: includes/profile.php:133
     1048msgid "Password reset link"
     1049msgstr ""
     1050
     1051#: includes/profile.php:172 includes/profile.php:891
    9051052msgid "OpenSimulator"
    9061053msgstr "OpenSimulator"
    9071054
    908 #. wpml-name: 0d3e39fb622d9e6d7b389757aa651fff
    909 #: includes/profile.php:414
     1055#: includes/profile.php:328
    9101056msgid "This user already has an avatar."
    9111057msgstr "Mae gan y defnyddiwr hwn avatar yn barod."
    9121058
    913 #. wpml-name: b2d0fb30e09bf39693f6183c33455748
    914 #: includes/profile.php:425
     1059#: includes/profile.php:339
    9151060msgid "First name required"
    9161061msgstr "Angen enw cyntaf"
    9171062
    918 #. wpml-name: 14bcd8bac9d052de9f9aa0f685a6da73
    919 #: includes/profile.php:426
     1063#: includes/profile.php:340
    9201064msgid "Last name required"
    9211065msgstr "Angen enw olaf"
    9221066
    923 #. wpml-name: 8ffca1456a2308a5556a750be1ecbac0
    924 #: includes/profile.php:428
     1067#: includes/profile.php:342
    9251068msgid "Password required"
    9261069msgstr "Angen cyfrinair"
    9271070
    928 #: includes/profile.php:429
     1071#: includes/profile.php:343
    9291072msgid "The password does not match."
    9301073msgstr "Nid yw'r cyfrinair yn cyfateb."
    9311074
    932 #. wpml-name: 4eb86d524f30b9885871ed68c24b0f29
    933 #: includes/profile.php:438 includes/profile.php:442
     1075#: includes/profile.php:352 includes/profile.php:356
    9341076msgid "The name %s is not allowed"
    9351077msgstr "Ni chaniateir yr enw %s"
    9361078
    937 #: includes/profile.php:446
     1079#: includes/profile.php:360
    9381080msgid "Names can only contain alphanumeric characters"
    9391081msgstr "Dim ond nodau alffaniwmerig y gall enwau eu cynnwys"
    9401082
    941 #: includes/profile.php:452
     1083#: includes/profile.php:366
    9421084msgid "There is already a grid user named %s"
    9431085msgstr "Mae defnyddiwr grid o'r enw %s yn barod"
    9441086
    945 #: includes/profile.php:458
    946 msgid "This should never happen! Generated a random UUID that already existed. Sorry. Try again."
    947 msgstr "Ni ddylai hyn byth ddigwydd! Wedi creu UUID ar hap sy'n bodoli eisoes. Mae'n ddrwg gennyf. Ceisio eto."
    948 
    949 #: includes/profile.php:480
     1087#: includes/profile.php:372
     1088msgid ""
     1089"This should never happen! Generated a random UUID that already existed. "
     1090"Sorry. Try again."
     1091msgstr ""
     1092"Ni ddylai hyn byth ddigwydd! Wedi creu UUID ar hap sy'n bodoli eisoes. Mae'n "
     1093"ddrwg gennyf. Ceisio eto."
     1094
     1095#: includes/profile.php:394
    9501096msgid "Error while creating user"
    9511097msgstr "Gwall wrth greu defnyddiwr"
    9521098
    953 #. wpml-name: d9c2d86a66aa5a45326c3757f3a272cc
    954 #: includes/profile.php:489
     1099#: includes/profile.php:403
    9551100msgid "Error while setting password"
    9561101msgstr "Gwall wrth osod cyfrinair"
    9571102
    958 #: includes/profile.php:500
     1103#: includes/profile.php:414
    9591104msgid "Error while setting home region"
    9601105msgstr "Gwall wrth osod y rhanbarth cartref"
    9611106
    962 #: includes/profile.php:517
     1107#: includes/profile.php:431
    9631108msgid "Error while creating user inventory"
    9641109msgstr "Gwall wrth greu rhestr eiddo defnyddwyr"
    9651110
    966 #: includes/profile.php:639
     1111#: includes/profile.php:553
    9671112msgid "Error while adding inventory item"
    9681113msgstr "Gwall wrth ychwanegu eitem rhestr eiddo"
    9691114
    970 #: includes/profile.php:650
     1115#: includes/profile.php:564
    9711116msgid "Error while adding inventory outfit link"
    9721117msgstr "Gwall wrth ychwanegu dolen gwisg rhestr eiddo"
    9731118
    974 #: includes/profile.php:662
     1119#: includes/profile.php:576
    9751120msgid "Error while adding avatar"
    9761121msgstr "Gwall wrth ychwanegu avatar"
    9771122
    978 #: includes/profile.php:668
     1123#: includes/profile.php:582
    9791124msgid "Errors occurred while creating the user"
    9801125msgstr "Digwyddodd gwallau wrth greu'r defnyddiwr"
    9811126
    982 #. wpml-name: 02cb97a68e5137af44e882dbe2180485
    983 #: includes/profile.php:673
     1127#: includes/profile.php:587
    9841128msgid "Avatar %s created successfully."
    9851129msgstr "Crëwyd avatar %s yn llwyddiannus."
    9861130
    987 #: includes/profile.php:686
     1131#: includes/profile.php:600
    9881132msgid "You need an avatar to explore our virtual world."
    9891133msgstr "Mae angen avatar arnoch i archwilio ein byd rhithwir."
    9901134
    991 #. wpml-name: 1a87f41bc2db648685564cf6fa5b2903
    992 #: includes/profile.php:687
    993 msgid "Choose a name below. This is how people will see you in-world. Once set, your avatar name cannot be changed."
    994 msgstr "Dewiswch enw isod. Dyma sut bydd pobl yn eich gweld chi yn y byd. Ar ôl ei osod, ni ellir newid enw eich avatar."
    995 
    996 #. wpml-name: bfc045552fb736eb0e776baee784de42
    997 #: includes/profile.php:710
     1135#: includes/profile.php:601
     1136msgid ""
     1137"Choose a name below. This is how people will see you in-world. Once set, "
     1138"your avatar name cannot be changed."
     1139msgstr ""
     1140"Dewiswch enw isod. Dyma sut bydd pobl yn eich gweld chi yn y byd. Ar ôl ei "
     1141"osod, ni ellir newid enw eich avatar."
     1142
     1143#: includes/profile.php:624
    9981144msgid "Avatar first name"
    9991145msgstr "Enw cyntaf avatar"
    10001146
    1001 #. wpml-name: a2ac9ef42c9ebc25f8dbab799ac23565
    1002 #: includes/profile.php:714
     1147#: includes/profile.php:628
    10031148msgid "Avatar last name"
    10041149msgstr "Enw olaf avatar"
    10051150
    1006 #. wpml-name: d9c2d86a66aa5a45326c3757f3a272cc
    1007 #: includes/profile.php:719
     1151#: includes/profile.php:633
    10081152msgid "Confirm your password"
    10091153msgstr "Cadarnhewch eich cyfrinair"
    10101154
    1011 #: includes/profile.php:721
    1012 msgid "Your in-world Avatar password is the same as your password on this website."
    1013 msgstr "Mae eich cyfrinair Avatar yn y byd yr un peth â'ch cyfrinair ar y wefan hon."
    1014 
    1015 #: includes/profile.php:735
     1155#: includes/profile.php:635
     1156msgid ""
     1157"Your in-world Avatar password is the same as your password on this website."
     1158msgstr ""
     1159"Mae eich cyfrinair Avatar yn y byd yr un peth â'ch cyfrinair ar y wefan hon."
     1160
     1161#: includes/profile.php:649
    10161162msgid "Your initial appearance"
    10171163msgstr "Eich ymddangosiad cychwynnol"
    10181164
    1019 #. wpml-name: 90efd059f58183a99038e138b8fe17f0
    1020 #: includes/profile.php:736
     1165#: includes/profile.php:650
    10211166msgid "You can change it as often as you want in the virtual world."
    10221167msgstr "Gallwch ei newid mor aml ag y dymunwch yn y byd rhithwir."
    10231168
    1024 #: includes/profile.php:772
     1169#: includes/profile.php:686
    10251170msgid "Save"
    10261171msgstr "Arbed"
    10271172
    1028 #. wpml-name: 877a81d559efa8e5dac0cccac9f80a09
    1029 #: includes/profile.php:805
     1173#: includes/profile.php:719
    10301174msgid "leave blank to leave unchanged"
    10311175msgstr "gadael yn wag i adael heb ei newid"
    10321176
    1033 #: includes/profile.php:813
     1177#: includes/profile.php:727
    10341178msgid "Create an avatar"
    10351179msgstr "Creu avatar"
    10361180
    1037 #. wpml-name: 69675902f4d4a3da44638540557562af
    1038 #: includes/profile.php:899 blocks/w4os-gridprofile-block/index.js:27
     1181#: includes/profile.php:813 blocks/w4os-gridprofile-block/index.js:27
    10391182#: blocks/w4os-gridprofile-block/index.js:74
    10401183msgid "Grid profile"
    10411184msgstr "Proffil grid"
    10421185
    1043 #. wpml-name: bfc045552fb736eb0e776baee784de42
    1044 #: includes/profile.php:987
     1186#: includes/profile.php:901
    10451187msgid "Avatar First Name"
    10461188msgstr "Enw Cyntaf Avatar"
    10471189
    1048 #. wpml-name: a2ac9ef42c9ebc25f8dbab799ac23565
    1049 #: includes/profile.php:993
     1190#: includes/profile.php:907
    10501191msgid "Avatar Last Name"
    10511192msgstr "Enw olaf Avatar"
    10521193
    1053 #. wpml-name: 69675902f4d4a3da44638540557562af
    1054 #: includes/profile.php:999 tmp/class-avatar.php:361
     1194#: includes/profile.php:913 tmp/class-avatar.php:361
    10551195msgid "Profile Picture"
    10561196msgstr "Llun Proffil"
    10571197
    1058 #: includes/profile.php:1001
     1198#: includes/profile.php:915
    10591199msgid "Must be set in the viewer."
    10601200msgstr "Rhaid ei osod yn y gwyliwr."
    10611201
    1062 #: includes/profile.php:1006
     1202#: includes/profile.php:920
    10631203msgid "Web Profile URL"
    10641204msgstr "URL Proffil Gwe"
     
    10681208msgstr "Ffurfweddu cronfa ddata W4OS "
    10691209
    1070 #. wpml-name: 17db1cfe008f83e7d0181762eda3daab
    10711210#: includes/shortcodes.php:103
    10721211msgid "Edit user"
     
    10771216msgstr "Ffurfweddu W4OS: "
    10781217
    1079 #. wpml-name: 751cfef8ad45902372601aeac58bdad7
    10801218#: includes/shortcodes.php:131
    10811219msgid "Login URI"
    10821220msgstr "Mewngofnodi URI"
    10831221
    1084 #. wpml-name: 9c9ee66a189f06fb9e3cc58c0c352db8
    10851222#: includes/shortcodes.php:136
    10861223msgid "OpenSimulator not configured"
     
    10951232msgstr "Diweddariad %s wedi'i gymhwyso"
    10961233
    1097 #. wpml-name: 02cb97a68e5137af44e882dbe2180485
    10981234#: includes/updates.php:36
    10991235msgid "Update %s applied sucessfully"
     
    11121248msgstr "W4OS wedi'i ddiweddaru"
    11131249
    1114 #. wpml-name: 17db1cfe008f83e7d0181762eda3daab
    11151250#: includes/updates.php:71
    11161251msgid "Grid user"
     
    11181253
    11191254#: includes/updates.php:92
    1120 msgid "Profiles service is not configured on your Robust server. It is required for full functionalities."
    1121 msgstr "Nid yw gwasanaeth proffiliau wedi'i ffurfweddu ar eich gweinydd Cadarn. Mae'n ofynnol ar gyfer swyddogaethau llawn."
     1255msgid ""
     1256"Profiles service is not configured on your Robust server. It is required for "
     1257"full functionalities."
     1258msgstr ""
     1259"Nid yw gwasanaeth proffiliau wedi'i ffurfweddu ar eich gweinydd Cadarn. "
     1260"Mae'n ofynnol ar gyfer swyddogaethau llawn."
    11221261
    11231262#: includes/updates.php:111
     
    11351274#: includes/users.php:155
    11361275msgid "Error while updating newly created user %s for %s %s (%s) %s"
    1137 msgstr "Gwall wrth ddiweddaru defnyddiwr newydd ei greu %s ar gyfer %s %s (%s) %s"
     1276msgstr ""
     1277"Gwall wrth ddiweddaru defnyddiwr newydd ei greu %s ar gyfer %s %s (%s) %s"
    11381278
    11391279#: includes/users.php:167
     
    11611301msgstr[3] "%d cyfeirnod toredig wedi'i dynnu"
    11621302
     1303#: includes/users.php:282
     1304msgid "%s local users updated with avatar data"
     1305msgstr "Diweddarwyd %s defnyddiwr lleol gyda data avatar"
     1306
    11631307#: includes/w4osdb.php:12
    11641308msgid "ROBUST database is not configured. To finish configuration, go to "
    1165 msgstr "Nid yw cronfa ddata ROBUST wedi'i ffurfweddu. I orffen cyfluniad, ewch i "
     1309msgstr ""
     1310"Nid yw cronfa ddata ROBUST wedi'i ffurfweddu. I orffen cyfluniad, ewch i "
    11661311
    11671312#: includes/w4osdb.php:23
    1168 msgid "Could not connect to the database server, please verify your credentials on "
    1169 msgstr "Methu cysylltu â gweinydd y gronfa ddata, gwiriwch eich manylion adnabod ymlaen "
     1313msgid ""
     1314"Could not connect to the database server, please verify your credentials on "
     1315msgstr ""
     1316"Methu cysylltu â gweinydd y gronfa ddata, gwiriwch eich manylion adnabod "
     1317"ymlaen "
    11701318
    11711319#: includes/w4osdb.php:30
    1172 msgid "Could not connect to the ROBUST database, please verify database name and/or credentials on "
    1173 msgstr "Methu cysylltu â chronfa ddata ROBUST, gwiriwch enw'r gronfa ddata a/neu'r manylion adnabod ymlaen "
    1174 
    1175 #: includes/w4osdb.php:69
    1176 msgid "Missing tables: %s. The ROBUST database is connected, but it does not seem valid. "
    1177 msgstr "Tablau coll: %s. Mae cronfa ddata ROBUST wedi'i chysylltu, ond nid yw'n ymddangos yn ddilys. "
    1178 
    1179 #. wpml-name: 6b8467e13ae11c479efa8843f1b95826
     1320msgid ""
     1321"Could not connect to the ROBUST database, please verify database name and/or "
     1322"credentials on "
     1323msgstr ""
     1324"Methu cysylltu â chronfa ddata ROBUST, gwiriwch enw'r gronfa ddata a/neu'r "
     1325"manylion adnabod ymlaen "
     1326
     1327#: includes/w4osdb.php:88
     1328msgid ""
     1329"Missing tables: %s. The ROBUST database is connected, but some required "
     1330"tables are missing. "
     1331msgstr ""
     1332
    11801333#: includes/widgets.php:10
    11811334msgid "Grid info Widget"
     
    11991352
    12001353#: templates/content-configuration.php:24
    1201 msgid "You can use <a href=\"%1$s\" target=_blank>any compatible viewer</a> to access %2$s."
    1202 msgstr "Gallwch ddefnyddio <a href=\"%1$s\" target=_blank>unrhyw wyliwr cydnaws</a> i gael mynediad i %2$s."
     1354msgid ""
     1355"You can use <a href=\"%1$s\" target=_blank>any compatible viewer</a> to "
     1356"access %2$s."
     1357msgstr ""
     1358"Gallwch ddefnyddio <a href=\"%1$s\" target=_blank>unrhyw wyliwr cydnaws</a> "
     1359"i gael mynediad i %2$s."
    12031360
    12041361#: templates/content-configuration.php:30
     
    12121369#: templates/content-configuration.php:33
    12131370msgid "Select \"Preferences\" under the \"Viewer\" menu (or type Ctrl-P)"
    1214 msgstr "Dewiswch \"Preferences\" o dan y ddewislen \"Viewer\" (neu teipiwch Ctrl-P)"
     1371msgstr ""
     1372"Dewiswch \"Preferences\" o dan y ddewislen \"Viewer\" (neu teipiwch Ctrl-P)"
    12151373
    12161374#: templates/content-configuration.php:34
     
    12311389
    12321390#: templates/content-configuration.php:43
    1233 msgid "Enter your avatar’s first and last name in the \"Username\" box and your password in the \"Password\" box"
    1234 msgstr "Rhowch enw cyntaf ac olaf eich avatar yn y blwch \"Enw Defnyddiwr\" a'ch cyfrinair yn y blwch \"Cyfrinair\""
     1391msgid ""
     1392"Enter your avatar’s first and last name in the \"Username\" box and your "
     1393"password in the \"Password\" box"
     1394msgstr ""
     1395"Rhowch enw cyntaf ac olaf eich avatar yn y blwch \"Enw Defnyddiwr\" a'ch "
     1396"cyfrinair yn y blwch \"Cyfrinair\""
    12351397
    12361398#: templates/content-configuration.php:44
     
    12421404msgstr "Fy Avatar"
    12431405
    1244 #: w4os.php:44
    1245 msgid "You already installed the official release of <strong>W4OS - OpenSimulator Web Interface</strong> from WordPress plugins directory. The developer version has been deactivated and should be uninstalled."
    1246 msgstr "Rydych chi eisoes wedi gosod datganiad swyddogol <strong>W4OS - OpenSimulator Web Interface</strong> o gyfeiriadur ategion WordPress. Mae fersiwn y datblygwr wedi'i dadactifadu a dylid ei ddadosod."
    1247 
    1248 #: w4os.php:53
    1249 msgid "Another version of <strong>W4OS - OpenSimulator Web Interface</strong> is installed and active. Duplicate disabled."
    1250 msgstr "Mae fersiwn arall o <strong>W4OS - OpenSimulator Web Interface</strong> wedi'i osod ac yn weithredol. Analluogwyd dyblyg."
    1251 
    1252 #. Plugin Name of the plugin
    1253 #:
    1254 msgid "w4os - OpenSimulator Web Interface"
    1255 msgstr "w4os - Rhyngwyneb Gwe OpenSimulator"
    1256 
    1257 #. Short description.
    1258 #:
    1259 msgid "WordPress interface for OpenSimulator (w4os)"
    1260 msgstr ""
    1261 
    1262 #. Found in description list item.
    1263 #:
    1264 msgid "<strong>Helpers</strong>: currency, search, offline messages"
    1265 msgstr ""
    1266 
    1267 #. Found in faq paragraph.
    1268 #:
    1269 msgid "This is an OpenSimulator design limitation. Regions rely on cached data to display avatar information, and once fetched, these are never updated. As a result, if an avatar's name (or grid URI btw) is changed, the change will not be reflected on regions already visited by this avatar (which will still show the old name), but new visited region will display the new one. This could be somewhat handled for a small standalone grid, but never in hypergrid context. There is no process to force a foreign grid to update its cache, and probably never will."
    1270 msgstr ""
    1271 
    1272 #. Found in faq paragraph.
    1273 #:
    1274 msgid "Yes, it works too. Use OpenSim database credentials when requested for Robust credentials."
    1275 msgstr ""
    1276 
    1277 #. Found in faq paragraph.
    1278 #:
    1279 msgid "No, if your web server has access to your OpenSimulator database."
    1280 msgstr ""
    1281 
    1282 #. Found in faq header.
    1283 #:
    1284 msgid "Why can't I change my avatar name?"
    1285 msgstr ""
    1286 
    1287 #. Found in faq header.
    1288 #:
    1289 msgid "Do I need to run the website on the same server?"
    1290 msgstr ""
    1291 
    1292 #. Found in installation paragraph.
    1293 #:
    1294 msgid "<strong>PHP Modules</strong>: w4os requires php imagemagick module. Also, while they are not required, WordPress recommends activating PHP <strong>curl</strong> and <strong>xml</strong> modules. They are also recommended by W4OS for full functionalties."
    1295 msgstr ""
    1296 
    1297 #. Found in installation paragraph.
    1298 #:
    1299 msgid "<strong>Web Asset Server</strong>: the project requires a web asset server to convert simulator assets (profile pictures, model avatars...) and display them on the website. W4OS provides a web assets service, or you can specify an external web assets service URL instead."
    1300 msgstr ""
    1301 
    1302 #. Found in installation paragraph.
    1303 #:
    1304 msgid "These accounts will be excluded from grid statistics."
    1305 msgstr ""
    1306 
    1307 #. Found in installation paragraph.
    1308 #:
    1309 msgid "The model will now appear in new avatar registration form, with its profile picture."
    1310 msgstr ""
    1311 
    1312 #. Found in installation paragraph.
    1313 #:
    1314 msgid "Avatar models are displayed on new avatar registration and allow new users to start with another appearance than Ruth."
    1315 msgstr ""
    1316 
    1317 #. Found in installation list item.
    1318 #:
    1319 msgid "Make a snapshot and attach it to this account profile"
    1320 msgstr ""
    1321 
    1322 #. Found in installation list item.
    1323 #:
    1324 msgid "Connect in-world as this avatar and change outfit. Any worn clothing or attachment will be passed to the new avatars. Be sure to wear only transfer/copy items."
    1325 msgstr ""
    1326 
    1327 #. Found in installation list item.
    1328 #:
    1329 msgid "Leave \"Model Name\" blank, you are creating a model, not using an existing model to create a user"
    1330 msgstr ""
    1331 
    1332 #. Found in installation list item.
    1333 #:
    1334 msgid "You can leave \"Email\" and \"User ID\" blank"
    1335 msgstr ""
    1336 
    1337 #. Found in installation list item.
    1338 #:
    1339 msgid "The rest of the name will be displayed in the form, so make it relevant"
    1340 msgstr ""
    1341 
    1342 #. Found in installation list item.
    1343 #:
    1344 msgid "FirstName or LastName has to match your W4OS Avatar models settings"
    1345 msgstr ""
    1346 
    1347 #. Found in installation list item.
    1348 #:
    1349 msgid "From robust console, create a user named accordingly (for example, \"Female Default\", Default John\", ...).\n"
    1350 "    <code>R.O.B.U.S.T. # create user Default John\n"
    1351 "Password: ************************\n"
    1352 "Email []: (leave empty)\n"
    1353 "User ID (enter for random) []:  (leave empty)\n"
    1354 "Model name []: (leave empty)\n"
    1355 "15:27:58 - [USER ACCOUNT SERVICE]: Account Default John xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx created successfully</code>\n"
    1356 "\n"
    1357 "<ul>\n"
    1358 "<li>A password is needed as you need connect in-world to configure it.\n"
    1359 "Choose a strong password, any hack could affect all new users."
    1360 msgstr ""
    1361 
    1362 #. Found in installation list item.
    1363 #:
    1364 msgid "Check (or change) their naming convention in Admin &gt; OpenSimulator &gt; Settings &gt; Avatar models"
    1365 msgstr ""
    1366 
    1367 #. Found in installation list item.
    1368 #:
    1369 msgid "Create a page with the same slug as Profile permalink.\n"
    1370 "(This will be handled in a more convenient way in the future)"
    1371 msgstr ""
    1372 
    1373 #. Found in installation list item.
    1374 #:
    1375 msgid "Set permalinks and profile page\n"
    1376 "\n"
    1377 "<ul>\n"
    1378 "<li>Visit Settings &gt; Permalinks, confirm W4OS slugs (profile and assets) and save."
    1379 msgstr ""
    1380 
    1381 #. Found in installation list item.
    1382 #:
    1383 msgid "Download and activate the latest stable release"
    1384 msgstr ""
    1385 
    1386 #. Found in installation list item.
    1387 #:
    1388 msgid "You should have a working assets server (see Dependencies section below)"
    1389 msgstr ""
    1390 
    1391 #. Found in installation header.
    1392 #:
    1393 msgid "Dependencies"
    1394 msgstr ""
    1395 
    1396 #. Found in installation header.
    1397 #:
    1398 msgid "Create avatar models"
    1399 msgstr ""
    1400 
    1401 #. Found in installation header.
    1402 #:
    1403 msgid "WordPress configuration"
    1404 msgstr ""
    1405 
    1406 #. Found in description paragraph.
    1407 #:
    1408 msgid "See (https://github.com/GuduleLapointe/w4os/) for complete status and changelog."
    1409 msgstr ""
    1410 
    1411 #. Found in description paragraph.
    1412 #:
    1413 msgid "The free version from WordPress plugins directory and the <a href=\"https://magiiic.com/wordpress/plugins/w4os/\">paid version</a> are technically the same. The only difference is the way you support this plugin developement: with the free version, you join the community experience (please rate and comment), while the paid version helps us to dedicate resources to this project."
    1414 msgstr ""
    1415 
    1416 #. Found in description paragraph.
    1417 #:
    1418 msgid "Ready to use WordPress interface for <a href=\"http://opensimulator.org/\">OpenSimulator</a>. Provides user registration, default avatar model choice, login info, statistics and a web assets server for grids or standalone simulators."
    1419 msgstr ""
    1420 
    1421 #. Found in description list item.
    1422 #:
    1423 msgid "separate OpenSimulator libraries and WordPress specific code, to allow easy integration in other CMS"
    1424 msgstr ""
    1425 
    1426 #. Found in description list item.
    1427 #:
    1428 msgid "Gudz Teleport Board project integration (based on user picks)"
    1429 msgstr ""
    1430 
    1431 #. Found in description list item.
    1432 #:
    1433 msgid "2do HYPEvents project integration <a href=\"https://2do.pm\">https://2do.pm</a>"
    1434 msgstr ""
    1435 
    1436 #. Found in description list item.
    1437 #:
    1438 msgid "Deactivate (recommended) or delete (experimental) grid user when deleting wp account"
    1439 msgstr ""
    1440 
    1441 #. Found in description list item.
    1442 #:
    1443 msgid "[x] Helpers (search, currency, map...)"
    1444 msgstr ""
    1445 
    1446 #. Found in description list item.
    1447 #:
    1448 msgid "Web edit profile"
    1449 msgstr ""
    1450 
    1451 #. Found in description list item.
    1452 #:
    1453 msgid "Better basic layout"
    1454 msgstr ""
    1455 
    1456 #. Found in description list item.
    1457 #:
    1458 msgid "Switch set in-world prefs for public profiles"
    1459 msgstr ""
    1460 
    1461 #. Found in description list item.
    1462 #:
    1463 msgid "Improve avatar profile\n"
    1464 "\n"
    1465 "<ul>\n"
    1466 "<li>Switch to allow web profile"
    1467 msgstr ""
    1468 
    1469 #. Found in description list item.
    1470 #:
    1471 msgid "[x] Web Assets server"
    1472 msgstr ""
    1473 
    1474 #. Found in description list item.
    1475 #:
    1476 msgid "Auth with avatar credentials (if no matching wp account, create one)"
    1477 msgstr ""
    1478 
    1479 #. Found in description list item.
    1480 #:
    1481 msgid "Manual and cron Grid/WP users sync"
    1482 msgstr ""
    1483 
    1484 #. Found in description list item.
    1485 #:
    1486 msgid "Login page / Widget"
    1487 msgstr ""
    1488 
    1489 #. Found in description list item.
    1490 #:
    1491 msgid "<strong>Web assets server</strong>: the needed bridge to display in-world images on a website"
    1492 msgstr ""
    1493 
    1494 #. Found in description list item.
    1495 #:
    1496 msgid "<strong>Web profiles</strong>: excerpt of the avatar's profile"
    1497 msgstr ""
    1498 
    1499 #. Found in description header.
    1500 #:
    1501 msgid "Medium term"
    1502 msgstr ""
    1503 
    1504 #. Found in description header.
    1505 #:
    1506 msgid "Paid version"
    1507 msgstr ""
    1508 
    1509 #. Screenshot description.
    1510 #:
    1511 msgid "Web assets server settings"
    1512 msgstr ""
    1513 
    1514 #. Screenshot description.
    1515 #:
    1516 msgid "Settings page"
    1517 msgstr ""
    1518 
    1519 #. Screenshot description.
    1520 #:
    1521 msgid "Avatar registration form in WooCommerce My Account dashboard."
    1522 msgstr ""
    1523 
    1524 #. Screenshot description.
    1525 #:
    1526 msgid "Grid info and grid status examples"
    1527 msgstr ""
    1528 
    1529 #. Found in faq header.
    1530 #:
    1531 msgid "Can I use this plugin for my standalone simulator?"
    1532 msgstr ""
    1533 
    1534 #. Found in installation list item.
    1535 #:
    1536 msgid "Robust server must be installed before setting up W4OS."
    1537 msgstr ""
    1538 
    1539 #. Found in installation list item.
    1540 #:
    1541 msgid "insert <code>[gridinfo]</code> and <code>[gridstatus]</code> shortcodes in a page or in a sidebar widget"
    1542 msgstr ""
    1543 
    1544 #. Found in installation list item.
    1545 #:
    1546 msgid "Enter your robust database connection details and submit. If you get a\n"
    1547 "database connection error, it might come from a case-sensitivity issue (see\n"
    1548 "https://github.com/GuduleLapointe/w4os/issues/2#issuecomment-923299674)"
    1549 msgstr ""
    1550 
    1551 #. Found in installation list item.
    1552 #:
    1553 msgid "Visit OpenSim settings (admin menu &gt; \"Opensim\" &gt; \"Settings\")\n"
    1554 "\n"
    1555 "<ul>\n"
    1556 "<li>Enter your grid name and grid URI (like example.org:8002 without http://)"
    1557 msgstr ""
    1558 
    1559 #. Found in installation list item.
    1560 #:
    1561 msgid "To allow users to choose an avatar on registration, you must enable user\n"
    1562 "profiles in Robust.HG.ini (update [UserProfilesService], [ServiceList] and\n"
    1563 "[UserProfiles] sections)"
    1564 msgstr ""
    1565 
    1566 #. Found in description paragraph.
    1567 #:
    1568 msgid "See Features and Roadmap sections for current and upcoming functionalties."
    1569 msgstr ""
    1570 
    1571 #. Found in description list item.
    1572 #:
    1573 msgid "WooCommerce Subscriptions integration for user-owned Regions or other pay-for services"
    1574 msgstr ""
    1575 
    1576 #. Found in description list item.
    1577 #:
    1578 msgid "User's own regions control (create, start, stop, backup)"
    1579 msgstr ""
    1580 
    1581 #. Found in description list item.
    1582 #:
    1583 msgid "Choice between Robust console or database connection"
    1584 msgstr ""
    1585 
    1586 #. Found in description list item.
    1587 #:
    1588 msgid "Admin create models (from current appearance)"
    1589 msgstr ""
    1590 
    1591 #. Found in description list item.
    1592 #:
    1593 msgid "Admin create users"
    1594 msgstr ""
    1595 
    1596 #. Found in description list item.
    1597 #:
    1598 msgid "[x] get grid info from http://login.uri:8002/get_grid_info"
    1599 msgstr ""
    1600 
    1601 #. Found in description list item.
    1602 #:
    1603 msgid "Admin Use sim/grid configuration file to fetch settings if on the same host"
    1604 msgstr ""
    1605 
    1606 #. Found in description list item.
    1607 #:
    1608 msgid "Admin Create region"
    1609 msgstr ""
    1610 
    1611 #. Found in description list item.
    1612 #:
    1613 msgid "Admin Start / Stop regions"
    1614 msgstr ""
    1615 
    1616 #. Found in description list item.
    1617 #:
    1618 msgid "Public avatar profile"
    1619 msgstr ""
    1620 
    1621 #. Found in description list item.
    1622 #:
    1623 msgid "exclude models from grid stats"
    1624 msgstr ""
    1625 
    1626 #. Found in description list item.
    1627 #:
    1628 msgid "naming scheme of default models"
    1629 msgstr ""
    1630 
    1631 #. Found in description list item.
    1632 #:
    1633 msgid "<strong>OpenSimulator settings page</strong>:\n"
    1634 "\n"
    1635 "<ul>\n"
    1636 "<li>grid name, login uri and database connection settings"
    1637 msgstr ""
    1638 
    1639 #. Found in description list item.
    1640 #:
    1641 msgid "<strong>Reserved names</strong>: avatar whose first name or last name is \"Default\", \"Test\", \"Admin\" or the pattern used for appearance models are disallowed for public (such avatars must be created by admins from Robust console)"
    1642 msgstr ""
    1643 
    1644 #. Found in description list item.
    1645 #:
    1646 msgid "Avatar and website passwords are synchronized"
    1647 msgstr ""
    1648 
    1649 #. Found in description list item.
    1650 #:
    1651 msgid "Choose avatar look from default models"
    1652 msgstr ""
    1653 
    1654 #. Found in description list item.
    1655 #:
    1656 msgid "Avatar tab in account dashboard on WooCommerce websites"
    1657 msgstr ""
    1658 
    1659 #. Found in description list item.
    1660 #:
    1661 msgid "<code>[gridprofile]</code> shortcode can be inserted in any custom page"
    1662 msgstr ""
    1663 
    1664 #. Found in description list item.
    1665 #:
    1666 msgid "<strong>Avatar creation</strong>:\n"
    1667 "\n"
    1668 "<ul>\n"
    1669 "<li>Opensimulator section in standard wp account page"
    1670 msgstr ""
    1671 
    1672 #. Found in description list item.
    1673 #:
    1674 msgid "<strong>Grid status</strong>: <code>[gridstatus]</code> shortcode and admin dashboard widgets"
    1675 msgstr ""
    1676 
    1677 #. Found in description list item.
    1678 #:
    1679 msgid "<strong>Grid info</strong>: <code>[gridinfo]</code> shortcode and admin dashboard widgets"
    1680 msgstr ""
    1681 
    1682 #. Found in description header.
    1683 #:
    1684 msgid "Long term"
    1685 msgstr ""
    1686 
    1687 #. Found in description header.
    1688 #:
    1689 msgid "Roadmap"
    1690 msgstr ""
    1691 
    1692 #. Found in description header.
    1693 #:
    1694 msgid "Features"
    1695 msgstr ""
    1696 
    1697 #. Found in changelog list item.
    1698 #:
    1699 msgid "fix opensim db not loaded by helpers (not properly fixed in a6a3b5bbea1c9cfbd091a38b6ff33a79b2ddf9b3)"
    1700 msgstr ""
    1701 
    1702 #. Found in changelog list item.
    1703 #:
    1704 msgid "fix #57 password not updated on grid when using password recovery in WordPdress"
    1705 msgstr ""
    1706 
    1707 #. Found in changelog list item.
    1708 #:
    1709 msgid "fix fatal errors in helpers when database is not connected"
    1710 msgstr ""
    1711 
    1712 #. Found in changelog list item.
    1713 #:
    1714 msgid "fix fatal error in helpers for poorly encoded unicode text sources"
    1715 msgstr ""
    1716 
    1717 #. Found in changelog list item.
    1718 #:
    1719 msgid "added password reset link to profile page"
    1720 msgstr ""
    1721 
    1722 #. Found in changelog list item.
    1723 #:
    1724 msgid "fix profile picture aspect ratio (4/3, as in viewer)"
    1725 msgstr ""
    1726 
    1727 #. Found in changelog list item.
    1728 #:
    1729 msgid "avoid fatal error if php xml-rpc is not installed, show error notice instead"
    1730 msgstr ""
    1731 
    1732 #. Found in changelog list item.
    1733 #:
    1734 msgid "fix fatal error and warnings with popular-places shortcode"
    1735 msgstr ""
    1736 
    1737 #. Found in changelog list item.
    1738 #:
    1739 msgid "fix regression in 2.3.1"
    1740 msgstr ""
    1741 
    1742 #. Found in changelog list item.
    1743 #:
    1744 msgid "helpers migrated from old mysqli db connection method to PDO"
    1745 msgstr ""
    1746 
    1747 #. Found in changelog list item.
    1748 #:
    1749 msgid "separate helpers settings page"
    1750 msgstr ""
    1751 
    1752 #. Found in changelog list item.
    1753 #:
    1754 msgid "dropped aurora and OpenSim 0.6 support"
    1755 msgstr ""
    1756 
    1757 #. Found in changelog list item.
    1758 #:
    1759 msgid "added currency conversion rate setting"
    1760 msgstr ""
    1761 
    1762 #. Found in changelog list item.
    1763 #:
    1764 msgid "added prebuilt binaries for opensim 0.9.1 and 0.9.2"
    1765 msgstr ""
    1766 
    1767 #. Found in changelog list item.
    1768 #:
    1769 msgid "new events parser (fetch events from 2do.pm or another HYPEvents server)"
    1770 msgstr ""
    1771 
    1772 #. Found in changelog list item.
    1773 #:
    1774 msgid "new Popular Places block and [popular-places] shortcode"
    1775 msgstr ""
    1776 
    1777 #. Found in changelog list item.
    1778 #:
    1779 msgid "new currency helpers"
    1780 msgstr ""
    1781 
    1782 #. Found in changelog list item.
    1783 #:
    1784 msgid "new offline messages helper. Messages are stored in OfflineMessageModule V2 format, so one can switch between core and external service (fix #47)"
    1785 msgstr ""
    1786 
    1787 #. Found in changelog list item.
    1788 #:
    1789 msgid "new search helper"
    1790 msgstr ""
    1791 
    1792 #. Found in changelog list item.
    1793 #:
    1794 msgid "updated translations"
    1795 msgstr ""
    1796 
    1797 #. Found in changelog list item.
    1798 #:
    1799 msgid "tested up to wp 5.8.3"
    1800 msgstr ""
    1801 
    1802 #. Found in changelog paragraph.
    1803 #:
    1804 msgid "show a link to profile page instead of the form in profile shortcode"
    1805 msgstr ""
    1806 
    1807 #. Found in changelog paragraph.
    1808 #:
    1809 msgid "fix Fatal error Call to undefined function each()"
    1810 msgstr ""
    1811 
    1812 #. Found in changelog paragraph.
    1813 #:
    1814 msgid "removed Avatar section from WooCommerce account page until fixed"
    1815 msgstr ""
    1816 
    1817 #. Found in changelog paragraph.
    1818 #:
    1819 msgid "added Partner, Wants, Skills and RL to web profile"
    1820 msgstr ""
    1821 
    1822 #. Found in changelog paragraph.
    1823 #:
    1824 msgid "added option to replace name by avatar name in users list"
    1825 msgstr ""
    1826 
    1827 #. Found in changelog paragraph.
    1828 #:
    1829 msgid "new check grid info url validity (cron and manual)"
    1830 msgstr ""
    1831 
    1832 #. Found in changelog list item.
    1833 #:
    1834 msgid "For full change history see <a href=\"https://github.com/GuduleLapointe/w4os/commits/master\">GitHub repository</a>"
    1835 msgstr ""
    1836 
    1837 #. Found in changelog list item.
    1838 #:
    1839 msgid "Official git repository changed to GitHub"
    1840 msgstr ""
    1841 
    1842 #. Found in changelog list item.
    1843 #:
    1844 msgid "Now distributed via WordPress plugins directory"
    1845 msgstr ""
    1846 
    1847 #. Found in changelog list item.
    1848 #:
    1849 msgid "shorter \"Avatar\" label, removed uuid in gridprofile shortcode"
    1850 msgstr ""
    1851 
    1852 #. Found in changelog list item.
    1853 #:
    1854 msgid "More comprehensive database connection error reporting"
    1855 msgstr ""
    1856 
    1857 #. Found in changelog list item.
    1858 #:
    1859 msgid "use version provided by .version if present"
    1860 msgstr ""
    1861 
    1862 #. Found in changelog list item.
    1863 #:
    1864 msgid "replace wp avatar picture with in-world profile picture if set"
    1865 msgstr ""
    1866 
    1867 #. Found in changelog list item.
    1868 #:
    1869 msgid "guess new avatar name from user_login if first name and last name not provided"
    1870 msgstr ""
    1871 
    1872 #. Found in changelog list item.
    1873 #:
    1874 msgid "lighter template for profiles when loaded from the viewer"
    1875 msgstr ""
    1876 
    1877 #. Found in changelog list item.
    1878 #:
    1879 msgid "added imagick to the recommended php extensions"
    1880 msgstr ""
    1881 
    1882 #. Found in changelog list item.
    1883 #:
    1884 msgid "show image placeholder if profile picture not set"
    1885 msgstr ""
    1886 
    1887 #. Found in changelog list item.
    1888 #:
    1889 msgid "responsive profile display for smartphones"
    1890 msgstr ""
    1891 
    1892 #. Found in changelog list item.
    1893 #:
    1894 msgid "fix slow assets, store cached images in upload folder to serve them directly by the web server"
    1895 msgstr ""
    1896 
    1897 #. Found in changelog list item.
    1898 #:
    1899 msgid "fix a couple of fatal errors"
    1900 msgstr ""
    1901 
    1902 #. Found in changelog list item.
    1903 #:
    1904 msgid "fix user login broken if w4os_login_page is set to profile and OpenSim database is not connected"
    1905 msgstr ""
    1906 
    1907 #. Found in changelog list item.
    1908 #:
    1909 msgid "fix missing error messages on login page"
    1910 msgstr ""
    1911 
    1912 #. Found in changelog list item.
    1913 #:
    1914 msgid "fix avatar model not shown if default account never connected"
    1915 msgstr ""
    1916 
    1917 #. Found in changelog list item.
    1918 #:
    1919 msgid "fix errors not displayed on avatar creation page"
    1920 msgstr ""
    1921 
    1922 #. Found in changelog list item.
    1923 #:
    1924 msgid "fix inventory items not transferred to new avatars"
    1925 msgstr ""
    1926 
    1927 #. Found in changelog list item.
    1928 #:
    1929 msgid "fix avatar not created, or not created at first attempt"
    1930 msgstr ""
    1931 
    1932 #. Found in changelog list item.
    1933 #:
    1934 msgid "fix squished profile picture"
    1935 msgstr ""
    1936 
    1937 #. Found in changelog list item.
    1938 #:
    1939 msgid "fix duplicate admin notices"
    1940 msgstr ""
    1941 
    1942 #. Found in changelog list item.
    1943 #:
    1944 msgid "removed W4OS Grid Info and W4OS Grid Status widgets (now available as blocks)"
    1945 msgstr ""
    1946 
    1947 #. Found in changelog list item.
    1948 #:
    1949 msgid "added in-world profile link to profile page"
    1950 msgstr ""
    1951 
    1952 #. Found in changelog list item.
    1953 #:
    1954 msgid "added hop:// link to login uri"
    1955 msgstr ""
    1956 
    1957 #. Found in changelog list item.
    1958 #:
    1959 msgid "added Born and Last Seen columns to users list"
    1960 msgstr ""
    1961 
    1962 #. Found in changelog list item.
    1963 #:
    1964 msgid "added buttons to create missing pages on status dashboard"
    1965 msgstr ""
    1966 
    1967 #. Found in changelog list item.
    1968 #:
    1969 msgid "added lost password and register links on login page"
    1970 msgstr ""
    1971 
    1972 #. Found in changelog list item.
    1973 #:
    1974 msgid "added states in admin pages list for known urls (from grid_info)"
    1975 msgstr ""
    1976 
    1977 #. Found in changelog list item.
    1978 #:
    1979 msgid "added assets permalink settings"
    1980 msgstr ""
    1981 
    1982 #. Found in changelog list item.
    1983 #:
    1984 msgid "added profile image to gridprofile"
    1985 msgstr ""
    1986 
    1987 #. Found in changelog list item.
    1988 #:
    1989 msgid "new grid info settings are fetched from Robust server if set or localhost:8002"
    1990 msgstr ""
    1991 
    1992 #. Found in changelog list item.
    1993 #:
    1994 msgid "new admin can create avatars for existing users"
    1995 msgstr ""
    1996 
    1997 #. Found in changelog list item.
    1998 #:
    1999 msgid "new grid based authentication; if wp user exists, password is reset to grid password; if not, a new wp user is created"
    2000 msgstr ""
    2001 
    2002 #. Found in changelog list item.
    2003 #:
    2004 msgid "new grid and wordpress users sync"
    2005 msgstr ""
    2006 
    2007 #. Found in changelog list item.
    2008 #:
    2009 msgid "new blocks support"
    2010 msgstr ""
    2011 
    2012 #. Found in changelog list item.
    2013 #:
    2014 msgid "new config instructions for new grid users"
    2015 msgstr ""
    2016 
    2017 #. Found in changelog list item.
    2018 #:
    2019 msgid "new profile page"
    2020 msgstr ""
    2021 
    2022 #. Found in changelog list item.
    2023 #:
    2024 msgid "new web assets server"
    2025 msgstr ""
    2026 
    2027 #. Found in changelog list item.
    2028 #:
    2029 msgid "fix localisation not loading"
    2030 msgstr ""
    2031 
    2032 #. Found in changelog list item.
    2033 #:
    2034 msgid "fix fatal error when trying to display  WooCommerce Avatar tab form in My Account"
    2035 msgstr ""
    2036 
    2037 #. Found in changelog list item.
    2038 #:
    2039 msgid "added screenshots"
    2040 msgstr ""
    2041 
    2042 #. Found in changelog list item.
    2043 #:
    2044 msgid "added w4os-shortcode classes"
    2045 msgstr ""
    2046 
    2047 #. Found in changelog list item.
    2048 #:
    2049 msgid "added login form to gridprofile shortcode when not connected instead of login message"
    2050 msgstr ""
    2051 
    2052 #. Found in changelog list item.
    2053 #:
    2054 msgid "changed update server library to <a href=\"https://github.com/froger-me/wp-plugin-update-server\">frogerme's WP Plugin Update Server</a>"
    2055 msgstr ""
    2056 
    2057 #. Found in changelog list item.
    2058 #:
    2059 msgid "fixed conflict with other extensions settings pages"
    2060 msgstr ""
    2061 
    2062 #. Found in changelog list item.
    2063 #:
    2064 msgid "fix typo in banners and icons urls, can't believe I didn't see this before..."
    2065 msgstr ""
    2066 
    2067 #. Found in changelog list item.
    2068 #:
    2069 msgid "fix \"Yes\" and \"No\" translations"
    2070 msgstr ""
    2071 
    2072 #. Found in changelog list item.
    2073 #:
    2074 msgid "added changelog, banners and icons to view details"
    2075 msgstr ""
    2076 
    2077 #. Found in changelog list item.
    2078 #:
    2079 msgid "fix #2 Database check fails if mysql is case insensitive"
    2080 msgstr ""
    2081 
    2082 #. Found in changelog list item.
    2083 #:
    2084 msgid "fix #4  Database connection error triggered if userprofile table is absent"
    2085 msgstr ""
    2086 
    2087 #. Found in changelog list item.
    2088 #:
    2089 msgid "tested up to 6.0.1"
    2090 msgstr ""
    2091 
    2092 #. Found in changelog list item.
    2093 #:
    2094 msgid "only check once if w4os db is connected"
    2095 msgstr ""
    2096 
    2097 #. Found in changelog list item.
    2098 #:
    2099 msgid "fix #10 invalid JSON response when adding [w4os_profile] shortcode element"
    2100 msgstr ""
    2101 
    2102 #. Found in changelog list item.
    2103 #:
    2104 msgid "more detailed error messages for avatar creation"
    2105 msgstr ""
    2106 
    2107 #. Found in changelog list item.
    2108 #:
    2109 msgid "added login page link to message displayed when trying to see profile while not connected"
    2110 msgstr ""
    2111 
    2112 #. Found in changelog list item.
    2113 #:
    2114 msgid "fix wrong letter cases in auth table name"
    2115 msgstr ""
    2116 
    2117 #. Found in changelog list item.
    2118 #:
    2119 msgid "better css loading"
    2120 msgstr ""
    2121 
    2122 #. Found in changelog list item.
    2123 #:
    2124 msgid "fix only show profile form for current user"
    2125 msgstr ""
    2126 
    2127 #. Found in changelog list item.
    2128 #:
    2129 msgid "renamed [w4os_profile] shortcode as [gridprofile] for consistency. w4os_profile is kept for backwards compatibility"
    2130 msgstr ""
    2131 
    2132 #. Found in changelog list item.
    2133 #:
    2134 msgid "use plugin dir to detect slug instead of hardcoded value"
    2135 msgstr ""
    2136 
    2137 #. Found in changelog list item.
    2138 #:
    2139 msgid "fix regression, automatic updates restored. Users with version 2.0 to 2.0.3 will need to reinstall the plugin from source. Sorry."
    2140 msgstr ""
    2141 
    2142 #. Found in changelog list item.
    2143 #:
    2144 msgid "fix localizations not loading"
    2145 msgstr ""
    2146 
    2147 #. Found in changelog list item.
    2148 #:
    2149 msgid "renamed plugin as W4OS - OpenSimulator Web Interface"
    2150 msgstr ""
    2151 
    2152 #. Found in changelog list item.
    2153 #:
    2154 msgid "fix other WP plugins directory requirements"
    2155 msgstr ""
    2156 
    2157 #: admin/settings.php:129
    2158 msgid "Table %s not found. User Profiles must be activated in Robust to enable profile page."
    2159 msgstr ""
    2160 
    2161 #: admin/status-page.php:15
    2162 msgid "PHP xml-rpc is required but is not installed."
    2163 msgstr ""
    2164 
    2165 #: includes/profile.php:132 tmp/class-avatar.php:277
    2166 msgid "Change password"
    2167 msgstr ""
    2168 
    2169 #: includes/profile.php:132
    2170 msgid "Password reset link"
    2171 msgstr ""
    2172 
    2173 #: includes/w4osdb.php:88
    2174 msgid "Missing tables: %s. The ROBUST database is connected, but some required tables are missing. "
    2175 msgstr ""
    2176 
    21771406#: tmp/class-avatar.php:130 tmp/class-avatar.php:151 tmp/class-avatar.php:164
    21781407msgid "Avatars"
     
    23001529
    23011530#: tmp/class-avatar.php:221
    2302 msgid "Please provide first and last name, only letters and numbers, separated by a space."
     1531msgid ""
     1532"Please provide first and last name, only letters and numbers, separated by a "
     1533"space."
    23031534msgstr ""
    23041535
     
    23161547
    23171548#: tmp/class-avatar.php:259
    2318 msgid "Optional. If set, the avatar will be linked to any matching WP user account."
     1549msgid ""
     1550"Optional. If set, the avatar will be linked to any matching WP user account."
    23191551msgstr ""
    23201552
     
    23611593msgstr ""
    23621594
     1595#: w4os.php:44
     1596msgid ""
     1597"You already installed the official release of <strong>W4OS - OpenSimulator "
     1598"Web Interface</strong> from WordPress plugins directory. The developer "
     1599"version has been deactivated and should be uninstalled."
     1600msgstr ""
     1601"Rydych chi eisoes wedi gosod datganiad swyddogol <strong>W4OS - "
     1602"OpenSimulator Web Interface</strong> o gyfeiriadur ategion WordPress. Mae "
     1603"fersiwn y datblygwr wedi'i dadactifadu a dylid ei ddadosod."
     1604
     1605#: w4os.php:53
     1606msgid ""
     1607"Another version of <strong>W4OS - OpenSimulator Web Interface</strong> is "
     1608"installed and active. Duplicate disabled."
     1609msgstr ""
     1610"Mae fersiwn arall o <strong>W4OS - OpenSimulator Web Interface</strong> "
     1611"wedi'i osod ac yn weithredol. Analluogwyd dyblyg."
     1612
    23631613#: blocks/popular-places/index.js:27 blocks/popular-places/index.js:79
    23641614msgid "Popular Places"
    23651615msgstr ""
    23661616
     1617#~ msgid "w4os - OpenSimulator Web Interface (dev)"
     1618#~ msgstr "w4os - Rhyngwyneb Gwe OpenSimulator (dev)"
     1619
     1620#~ msgid ""
     1621#~ "Missing tables: %s. The ROBUST database is connected, but it does not "
     1622#~ "seem valid. "
     1623#~ msgstr ""
     1624#~ "Tablau coll: %s. Mae cronfa ddata ROBUST wedi'i chysylltu, ond nid yw'n "
     1625#~ "ymddangos yn ddilys. "
  • w4os-opensimulator-web-interface/trunk/languages/w4os-cy_GB.po-json-06df46ff2b3937e7001c361bd6cf1b6d.json

    r2789725 r2831990  
    1 {"translation-revision-date":"2022-09-24T15:05:40-04:00","generator":"WP-CLI\/2.6.0","source":"blocks\/w4os-gridprofile-block\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"cy","plural-forms":"nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;"},"Grid profile":["Proffil grid"]}}}
     1{"translation-revision-date":"","generator":"WP-CLI\/2.6.0","source":"blocks\/w4os-gridprofile-block\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"cy","plural-forms":"nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;"},"Grid profile":["Proffil grid"]}}}
  • w4os-opensimulator-web-interface/trunk/languages/w4os-cy_GB.po-json-273992b7d6f98b15a63a1776c2a41a65.json

    r2789725 r2831990  
    1 {"translation-revision-date":"2022-09-24T15:05:40-04:00","generator":"WP-CLI\/2.6.0","source":"blocks\/popular-places\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"cy","plural-forms":"nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;"},"Popular Places":[""]}}}
     1{"translation-revision-date":"","generator":"WP-CLI\/2.6.0","source":"blocks\/popular-places\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"cy","plural-forms":"nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;"},"Popular Places":[""]}}}
  • w4os-opensimulator-web-interface/trunk/languages/w4os-cy_GB.po-json-b7fa42b10b5a72ab058777ced84f24c3.json

    r2789725 r2831990  
    1 {"translation-revision-date":"2022-09-24T15:05:40-04:00","generator":"WP-CLI\/2.6.0","source":"blocks\/w4os-gridinfo-block\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"cy","plural-forms":"nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;"},"Grid info":["Gwybodaeth grid"]}}}
     1{"translation-revision-date":"","generator":"WP-CLI\/2.6.0","source":"blocks\/w4os-gridinfo-block\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"cy","plural-forms":"nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;"},"Grid info":["Gwybodaeth grid"]}}}
  • w4os-opensimulator-web-interface/trunk/languages/w4os-cy_GB.po-json-c8b0b80a28abe12f9f976e4a01981e7f.json

    r2789725 r2831990  
    1 {"translation-revision-date":"2022-09-24T15:05:40-04:00","generator":"WP-CLI\/2.6.0","source":"blocks\/w4os-gridstatus-block\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"cy","plural-forms":"nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;"},"Grid status":["Statws grid"]}}}
     1{"translation-revision-date":"","generator":"WP-CLI\/2.6.0","source":"blocks\/w4os-gridstatus-block\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"cy","plural-forms":"nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;"},"Grid status":["Statws grid"]}}}
  • w4os-opensimulator-web-interface/trunk/languages/w4os-de_DE.po

    r2789725 r2831990  
    11msgid ""
    22msgstr ""
     3"Project-Id-Version: w4os\n"
     4"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/w4os-dev\n"
     5"POT-Creation-Date: 2022-12-11T14:43:43-04:00\n"
     6"PO-Revision-Date: \n"
     7"Last-Translator: \n"
     8"Language-Team: \n"
     9"Language: de\n"
    310"MIME-Version: 1.0\n"
    411"Content-Type: text/plain; charset=UTF-8\n"
    512"Content-Transfer-Encoding: 8bit\n"
    6 "X-Generator: POEditor.com\n"
    7 "Project-Id-Version: w4os\n"
    8 "Language: de\n"
    913"Plural-Forms: nplurals=2; plural=(n != 1);\n"
    10 
    11 #. wpml-name: 89e15c20b6fff50f9caa1f171381251d
     14"X-Generator: Poedit 3.0.1\n"
     15
    1216#. Plugin Name of the plugin
    13 #:
    14 msgid "w4os - OpenSimulator Web Interface (dev)"
    15 msgstr "w4os - OpenSimulator Web-Schnittstelle (dev)"
    16 
    17 #. #-#-#-#-#  catalog.po (w4os)  #-#-#-#-#
    18 #. wpml-name: 8a556ddad981269d9764cbf640cfd337
    19 #. wpml-name: f279731266ee1b5ff0b7bd85e585dfef
     17msgid "w4os - OpenSimulator Web Interface"
     18msgstr "w4os - OpenSimulator Web-Schnittstelle"
     19
    2020#. Plugin URI of the plugin
    21 #:
    2221msgid "https://w4os.org/"
    2322msgstr "https://w4os.org/"
    2423
    25 #. wpml-name: 374124f21084c34d958491bf98d72af4
    2624#. Description of the plugin
    27 #:
    2825msgid "WordPress interface for OpenSimulator (w4os)."
    2926msgstr "WordPress-Schnittstelle für OpenSimulator (w4os)."
    3027
    31 #. wpml-name: 6dfd7d212f1bf0f6121142f105f7c704
    3228#. Author of the plugin
    33 #:
    3429msgid "Speculoos World"
    3530msgstr "Speculoos World"
    3631
    37 #. #-#-#-#-#  catalog.po (w4os)  #-#-#-#-#
    38 #. wpml-name: 8a556ddad981269d9764cbf640cfd337
    39 #. wpml-name: f279731266ee1b5ff0b7bd85e585dfef
    4032#. Author URI of the plugin
    41 #:
    4233msgid "https://speculoos.world"
    4334msgstr "https://speculoos.world"
    4435
    45 #. wpml-name: 2e7502f81f2bff60e1170982af2e5ede
    4636#: admin/admin-init.php:26
    4737msgid "OpenSimulator Status"
     
    5242msgstr "Status"
    5343
    54 #. wpml-name: 9c9ee66a189f06fb9e3cc58c0c352db8
    5544#: admin/admin-init.php:29
    5645msgid "OpenSimulator Settings"
     
    6150msgstr "Einstellungen"
    6251
    63 #. wpml-name: d0f651f1495d346088ae49450c620e9b
    6452#: admin/admin-init.php:38 admin/admin-init.php:85
    6553msgid "OpenSimulator Helpers"
     
    7058msgstr "Helfer"
    7159
    72 #. wpml-name: a2ac9ef42c9ebc25f8dbab799ac23565
    73 #: admin/admin-init.php:105 includes/profile.php:118 tmp/class-avatar.php:315
     60#: admin/admin-init.php:105 includes/profile.php:119 tmp/class-avatar.php:315
    7461msgid "Avatar Name"
    7562msgstr "Avatar Name"
    7663
    77 #: admin/admin-init.php:111 admin/admin-init.php:117 includes/profile.php:124
     64#: admin/admin-init.php:111 admin/admin-init.php:117 includes/profile.php:125
    7865#: tmp/class-avatar.php:350
    7966msgid "Born"
     
    8471msgstr "Zuletzt gesehen"
    8572
    86 #. wpml-name: 69675902f4d4a3da44638540557562af
    8773#: admin/admin-init.php:133 includes/shortcodes.php:104
    8874msgid "View profile"
     
    9379msgstr "Mit Avatar"
    9480
    95 #. wpml-name: 847fcf17b5e3d8a6625d71c4dedd34a1
    9681#: admin/admin-init.php:191
    9782msgid "Without Avatar"
    9883msgstr "Ohne Avatar"
    9984
    100 #: admin/admin-init.php:208
     85#: admin/admin-init.php:210
    10186msgid "Filter users..."
    10287msgstr "Benutzer filtern..."
    10388
    104 #: admin/admin-init.php:214
     89#: admin/admin-init.php:216
    10590msgid "Filter"
    10691msgstr "Filter"
    10792
    108 #. wpml-name: d0f651f1495d346088ae49450c620e9b
    109 #: admin/admin-init.php:260
     93#: admin/admin-init.php:262
    11094msgid "OpenSimulator Profile"
    11195msgstr "OpenSimulator-Profil"
    11296
    113 #. wpml-name: 2e7502f81f2bff60e1170982af2e5ede
    114 #: admin/admin-init.php:262
     97#: admin/admin-init.php:264
    11598msgid "OpenSimulator Splash"
    11699msgstr "OpenSimulator Splash"
    117100
    118 #. wpml-name: 2e7502f81f2bff60e1170982af2e5ede
    119 #: admin/admin-init.php:264
     101#: admin/admin-init.php:266
    120102msgid "OpenSimulator Search"
    121103msgstr "OpenSimulator Suche"
    122104
    123 #. wpml-name: d0f651f1495d346088ae49450c620e9b
    124 #: admin/admin-init.php:266
     105#: admin/admin-init.php:268
    125106msgid "OpenSimulator Economy"
    126107msgstr "OpenSimulator Wirtschaft"
    127108
    128 #. wpml-name: d0f651f1495d346088ae49450c620e9b
    129 #: admin/admin-init.php:268
     109#: admin/admin-init.php:270
    130110msgid "OpenSimulator About"
    131111msgstr "OpenSimulator Über"
    132112
    133 #. wpml-name: 9c9ee66a189f06fb9e3cc58c0c352db8
    134 #: admin/admin-init.php:270
     113#: admin/admin-init.php:272
    135114msgid "OpenSimulator Register"
    136115msgstr "OpenSimulator Registrierung"
    137116
    138 #. wpml-name: 2e7502f81f2bff60e1170982af2e5ede
    139 #: admin/admin-init.php:272
     117#: admin/admin-init.php:274
    140118msgid "OpenSimulator Password"
    141119msgstr "OpenSimulator Passwort"
    142120
    143 #. wpml-name: 9c9ee66a189f06fb9e3cc58c0c352db8
    144 #: admin/admin-init.php:274
     121#: admin/admin-init.php:276
    145122msgid "OpenSimulator Offline Messages"
    146123msgstr "OpenSimulator Offline-Benachrichtigungen"
    147124
    148 #: admin/admin-init.php:286 admin/admin-init.php:300
     125#: admin/admin-init.php:288 admin/admin-init.php:302
    149126msgid "The followed link has expired, please try again"
    150127msgstr "Der folgende Link ist abgelaufen, bitte versuchen Sie es erneut"
    151128
    152 #: admin/admin-init.php:307
     129#: admin/admin-init.php:309
    153130msgid "Page %s already exists."
    154131msgstr "Die Seite %s existiert bereits."
    155132
    156 #: admin/admin-init.php:324
     133#: admin/admin-init.php:326
    157134msgid "New page %s created."
    158135msgstr "Neue Seite %s erstellt."
    159136
    160 #: admin/admin-init.php:328
     137#: admin/admin-init.php:330
    161138msgid "Error while creating page %s."
    162139msgstr "Fehler beim Erstellen der Seite %s."
    163140
    164 #. wpml-name: 317e8940a1b9f03b83ef85393bd49552
    165 #: admin/admin-init.php:340
     141#: admin/admin-init.php:342
    166142msgid "Avatar profile"
    167143msgstr "Avatar-Profil"
    168144
    169 #: admin/admin-init.php:341
     145#: admin/admin-init.php:343
    170146msgid "The base URL for avatar web profiles."
    171147msgstr "Die Basis-URL für Avatar-Webprofile."
    172148
    173 #: admin/admin-init.php:344
     149#: admin/admin-init.php:346
    174150msgid "Search Service"
    175151msgstr "Suche"
    176152
    177 #: admin/admin-init.php:345
    178 msgid "Search service used by the viewer. Search can be provided by the simulator core (limited), or by an external service for additional functionalities (like events). Requires OpenSimSearch.Modules.dll."
    179 msgstr "Vom Viewer verwendeter Suchdienst. Die Suche kann vom Simulatorkern (eingeschränkt) oder von einem externen Dienst für zusätzliche Funktionalitäten (wie Ereignisse) bereitgestellt werden. Erfordert OpenSimSearch.Modules.dll."
    180 
    181 #: admin/admin-init.php:355
     153#: admin/admin-init.php:347
     154msgid ""
     155"Search service used by the viewer. Search can be provided by the simulator "
     156"core (limited), or by an external service for additional functionalities "
     157"(like events). Requires OpenSimSearch.Modules.dll."
     158msgstr ""
     159"Vom Viewer verwendeter Suchdienst. Die Suche kann vom Simulatorkern "
     160"(eingeschränkt) oder von einem externen Dienst für zusätzliche "
     161"Funktionalitäten (wie Ereignisse) bereitgestellt werden. Erfordert "
     162"OpenSimSearch.Modules.dll."
     163
     164#: admin/admin-init.php:357
    182165msgid "Web Search"
    183166msgstr "Web-Suche"
    184167
    185 #: admin/admin-init.php:356
    186 msgid "Web tab of viewer search windows. Relevant if you have a search page providing content from the grid."
    187 msgstr "Web-Registerkarte der Viewer-Suchfenster. Relevant, wenn Sie eine Suchseite haben, die Inhalte aus dem Raster bereitstellt."
    188 
    189 #: admin/admin-init.php:366 admin/settings.php:294
     168#: admin/admin-init.php:358
     169msgid ""
     170"Web tab of viewer search windows. Relevant if you have a search page "
     171"providing content from the grid."
     172msgstr ""
     173"Web-Registerkarte der Viewer-Suchfenster. Relevant, wenn Sie eine Suchseite "
     174"haben, die Inhalte aus dem Raster bereitstellt."
     175
     176#: admin/admin-init.php:368 admin/settings.php:294
    190177msgid "Offline messages"
    191178msgstr "Offline-Meldungen"
    192179
    193 #: admin/admin-init.php:367
    194 msgid "Needed by viewers to keep messages while user is offline and deliver them when they come back online. Internal service, not accessed directly by the user."
    195 msgstr "Wird von den Betrachtern benötigt, um Nachrichten aufzubewahren, während der Benutzer offline ist, und sie zuzustellen, wenn er wieder online ist. Interner Dienst, auf den der Benutzer nicht direkt zugreifen kann."
    196 
    197 #: admin/admin-init.php:372
     180#: admin/admin-init.php:369
     181msgid ""
     182"Needed by viewers to keep messages while user is offline and deliver them "
     183"when they come back online. Internal service, not accessed directly by the "
     184"user."
     185msgstr ""
     186"Wird von den Betrachtern benötigt, um Nachrichten aufzubewahren, während der "
     187"Benutzer offline ist, und sie zuzustellen, wenn er wieder online ist. "
     188"Interner Dienst, auf den der Benutzer nicht direkt zugreifen kann."
     189
     190#: admin/admin-init.php:374
    198191msgid "Splash"
    199192msgstr "Spash"
    200193
    201 #: admin/admin-init.php:373
    202 msgid "The welcome page displayed in the viewer with the login form. A short, no-scroll page, with only essential info. It is required, or at least highly recommended."
    203 msgstr "Die Willkommensseite, die im Viewer mit dem Anmeldeformular angezeigt wird. Eine kurze, nicht scrollbare Seite, die nur die wichtigsten Informationen enthält. Sie ist erforderlich oder zumindest sehr empfehlenswert."
    204 
    205 #: admin/admin-init.php:398
     194#: admin/admin-init.php:375
     195msgid ""
     196"The welcome page displayed in the viewer with the login form. A short, no-"
     197"scroll page, with only essential info. It is required, or at least highly "
     198"recommended."
     199msgstr ""
     200"Die Willkommensseite, die im Viewer mit dem Anmeldeformular angezeigt wird. "
     201"Eine kurze, nicht scrollbare Seite, die nur die wichtigsten Informationen "
     202"enthält. Sie ist erforderlich oder zumindest sehr empfehlenswert."
     203
     204#: admin/admin-init.php:400
    206205msgid "Registration page"
    207206msgstr "Registrierungseite"
    208207
    209 #: admin/admin-init.php:399
     208#: admin/admin-init.php:401
    210209msgid "Link to the user registration."
    211210msgstr "Link zur Benutzerregistrierung."
    212211
    213 #. wpml-name: 8ffca1456a2308a5556a750be1ecbac0
    214 #: admin/admin-init.php:404
     212#: admin/admin-init.php:406
    215213msgid "Password revovery"
    216214msgstr "Passwort wiederherstellen"
    217215
    218 #: admin/admin-init.php:405
     216#: admin/admin-init.php:407
    219217msgid "Link to lost password page."
    220218msgstr "Link zur Seite \"Passwort verloren\"."
    221219
    222 #: admin/admin-init.php:410
     220#: admin/admin-init.php:412
    223221msgid "Economy"
    224222msgstr "Wirtschaft"
    225223
    226 #: admin/admin-init.php:411
    227 msgid "Currencies and some other services queried by the viewer. They are not accessed directly by the user."
    228 msgstr "Währungen und einige andere Dienste, die vom Viewer abgefragt werden. Der Benutzer hat keinen direkten Zugriff auf sie."
    229 
    230 #: admin/admin-init.php:417
     224#: admin/admin-init.php:413
     225msgid ""
     226"Currencies and some other services queried by the viewer. They are not "
     227"accessed directly by the user."
     228msgstr ""
     229"Währungen und einige andere Dienste, die vom Viewer abgefragt werden. Der "
     230"Benutzer hat keinen direkten Zugriff auf sie."
     231
     232#: admin/admin-init.php:419
    231233msgid "About this grid"
    232234msgstr "Über dieses Grid"
    233235
    234 #: admin/admin-init.php:418
    235 msgid "Detailed info page on your website, via a link displayed on the viewer login page."
    236 msgstr "Detaillierte Informationsseite auf Ihrer Website, über einen Link auf der Anmeldeseite des Viewers."
    237 
    238 #: admin/admin-init.php:422
     236#: admin/admin-init.php:420
     237msgid ""
     238"Detailed info page on your website, via a link displayed on the viewer login "
     239"page."
     240msgstr ""
     241"Detaillierte Informationsseite auf Ihrer Website, über einen Link auf der "
     242"Anmeldeseite des Viewers."
     243
     244#: admin/admin-init.php:424
    239245msgid "Help"
    240246msgstr "Hilfe"
    241247
    242 #: admin/admin-init.php:423
     248#: admin/admin-init.php:425
    243249msgid "Link to a help page on your website."
    244250msgstr "Link zu einer Hilfeseite auf Ihrer Website."
    245251
    246 #. wpml-name: 6b8467e13ae11c479efa8843f1b95826
    247252#: admin/dashboard.php:13 admin/settings.php:43 includes/shortcodes.php:125
    248253#: includes/widgets.php:47 blocks/w4os-gridinfo-block/index.js:27
     
    251256msgstr "Grid info"
    252257
    253 #. wpml-name: 17db1cfe008f83e7d0181762eda3daab
    254258#: admin/dashboard.php:20 includes/shortcodes.php:154 includes/widgets.php:79
    255259#: includes/widgets.php:115 blocks/w4os-gridstatus-block/index.js:27
     
    262266msgstr "Neue Benutzer"
    263267
    264 #. wpml-name: 46eb01f349dc6c317e78cd1830545358
    265268#: admin/settings.php:56 includes/shortcodes.php:130
    266269msgid "Grid name"
    267270msgstr "Grid Name"
    268271
    269 #. wpml-name: 193fe27dd7fcd662652841a7b7e6c912
    270272#: admin/settings.php:63
    271273msgid "Robust server database"
     
    276278msgstr "Hostname"
    277279
    278 #. wpml-name: a2ac9ef42c9ebc25f8dbab799ac23565
    279280#: admin/settings.php:69 admin/settings.php:229 admin/settings.php:386
    280281msgid "Database name"
     
    285286msgstr "Benutzername"
    286287
    287 #. wpml-name: 8ffca1456a2308a5556a750be1ecbac0
    288288#: admin/settings.php:76 admin/settings.php:238 admin/settings.php:395
    289289#: tmp/class-avatar.php:277
     
    291291msgstr "Passwort"
    292292
    293 #. wpml-name: a2ac9ef42c9ebc25f8dbab799ac23565
    294293#: admin/settings.php:83 admin/status-page.php:74
    295294msgid "Avatar models"
    296295msgstr "Avatar-Modelle"
    297296
    298 #. wpml-name: b2d0fb30e09bf39693f6183c33455748
    299297#: admin/settings.php:87
    300298msgid "First Name = "
    301299msgstr "Vorname = "
    302300
    303 #. wpml-name: 14bcd8bac9d052de9f9aa0f685a6da73
    304301#: admin/settings.php:91
    305302msgid "OR Last Name = "
    306303msgstr "oder Nachname = "
    307304
    308 #. wpml-name: 17db1cfe008f83e7d0181762eda3daab
    309305#: admin/settings.php:97
    310306msgid "Grid users"
     
    315311msgstr "Profil-Seite"
    316312
    317 #. wpml-name: 69675902f4d4a3da44638540557562af
    318313#: admin/settings.php:103 admin/settings.php:119
    319314msgid "Provide web profile page for avatars"
     
    326321#: admin/settings.php:110 admin/settings.php:125
    327322msgid "The page %s must exist, as defined in %spermalinks settings%s."
    328 msgstr "Die Seite %s muss existieren, wie in %spermalinks settings%s definiert."
     323msgstr ""
     324"Die Seite %s muss existieren, wie in %spermalinks settings%s definiert."
     325
     326#: admin/settings.php:129
     327msgid ""
     328"Table %s not found. User Profiles must be activated in Robust to enable "
     329"profile page."
     330msgstr ""
    329331
    330332#: admin/settings.php:136
     
    332334msgstr "Konfigurationsanweisungen für neue Benutzer anzeigen."
    333335
    334 #. wpml-name: 751cfef8ad45902372601aeac58bdad7
    335336#: admin/settings.php:141
    336337msgid "Login page"
     
    351352#: admin/settings.php:153
    352353msgid "Show avatar name instead of user name in users list."
    353 msgstr "Anzeige des Avatarnamens anstelle des Benutzernamens in der Benutzerliste."
     354msgstr ""
     355"Anzeige des Avatarnamens anstelle des Benutzernamens in der Benutzerliste."
    354356
    355357#: admin/settings.php:157
     
    370372
    371373#: admin/settings.php:163
    372 msgid "Accounts without email address are usually test accounts created from the console. Uncheck only if you have real avatars without email address."
    373 msgstr "Konten ohne E-Mail-Adresse sind normalerweise Testkonten, die über die Konsole erstellt werden. Deaktivieren Sie diese Option nur, wenn Sie echte Avatare ohne E-Mail-Adresse haben."
     374msgid ""
     375"Accounts without email address are usually test accounts created from the "
     376"console. Uncheck only if you have real avatars without email address."
     377msgstr ""
     378"Konten ohne E-Mail-Adresse sind normalerweise Testkonten, die über die "
     379"Konsole erstellt werden. Deaktivieren Sie diese Option nur, wenn Sie echte "
     380"Avatare ohne E-Mail-Adresse haben."
    374381
    375382#: admin/settings.php:182
     
    382389
    383390#: admin/settings.php:190
    384 msgid "A web assets server is required to display in-world assets (from the grid) on the website (e.g. profile pictures)."
    385 msgstr "Ein Web-Assets-Server wird benötigt, um In-World-Assets (aus dem Grid) auf der Website anzuzeigen (z. B. Profilbilder)."
    386 
    387 #. Found in description list item.
     391msgid ""
     392"A web assets server is required to display in-world assets (from the grid) "
     393"on the website (e.g. profile pictures)."
     394msgstr ""
     395"Ein Web-Assets-Server wird benötigt, um In-World-Assets (aus dem Grid) auf "
     396"der Website anzuzeigen (z. B. Profilbilder)."
     397
    388398#: admin/settings.php:193
    389399msgid "Web asset server"
     
    399409
    400410#: admin/settings.php:203
    401 msgid "If W4OS web assets service is disabled, you need a third-party web application."
    402 msgstr "Wenn der W4OS-Web-Asset-Dienst deaktiviert ist, benötigen Sie eine Webanwendung eines Drittanbieters."
     411msgid ""
     412"If W4OS web assets service is disabled, you need a third-party web "
     413"application."
     414msgstr ""
     415"Wenn der W4OS-Web-Asset-Dienst deaktiviert ist, benötigen Sie eine "
     416"Webanwendung eines Drittanbieters."
    403417
    404418#: admin/settings.php:209
     
    423437
    424438#: admin/settings.php:247
    425 msgid "URL of the search engine used internally by the viewer (without arguments)."
     439msgid ""
     440"URL of the search engine used internally by the viewer (without arguments)."
    426441msgstr "URL der vom Viewer intern verwendeten Suchmaschine (ohne Argumente)."
    427442
    428443#: admin/settings.php:256
    429 msgid "Please note that Search URL is different from Web search URL, which is not handled by W4OS currently. Web search is relevant if you have a web search page dedicated to grid content, providing results with in-world URLs (hop:// or secondlife://). It is optional and is referenced here only to disambiguate settings which unfortunately have similar names."
    430 msgstr "Bitte beachten Sie, dass sich die Such-URL von der Web-Such-URL unterscheidet, die derzeit nicht von W4OS behandelt wird. Die Web-Suche ist relevant, wenn Sie eine Web-Suchseite für Grid-Inhalte haben, die Ergebnisse mit In-World-URLs liefert (hop:// oder secondlife://). Sie ist optional und wird hier nur erwähnt, um die Einstellungen, die leider ähnliche Namen haben, zu verdeutlichen."
     444msgid ""
     445"Please note that Search URL is different from Web search URL, which is not "
     446"handled by W4OS currently. Web search is relevant if you have a web search "
     447"page dedicated to grid content, providing results with in-world URLs (hop:// "
     448"or secondlife://). It is optional and is referenced here only to "
     449"disambiguate settings which unfortunately have similar names."
     450msgstr ""
     451"Bitte beachten Sie, dass sich die Such-URL von der Web-Such-URL "
     452"unterscheidet, die derzeit nicht von W4OS behandelt wird. Die Web-Suche ist "
     453"relevant, wenn Sie eine Web-Suchseite für Grid-Inhalte haben, die Ergebnisse "
     454"mit In-World-URLs liefert (hop:// oder secondlife://). Sie ist optional und "
     455"wird hier nur erwähnt, um die Einstellungen, die leider ähnliche Namen "
     456"haben, zu verdeutlichen."
    431457
    432458#: admin/settings.php:269
     
    436462#: admin/settings.php:272
    437463msgid "Data service, used to register regions, objects or land for sale."
    438 msgstr "Datendienst, der dazu dient, Regionen, Objekte oder Grundstücke zum Verkauf zu registrieren."
     464msgstr ""
     465"Datendienst, der dazu dient, Regionen, Objekte oder Grundstücke zum Verkauf "
     466"zu registrieren."
    439467
    440468#: admin/settings.php:285
     
    443471
    444472#: admin/settings.php:287
    445 msgid "HYPEvents server URL, used to fetch upcoming events and make them available in search."
    446 msgstr "HYPEvents-Server-URL, die verwendet wird, um bevorstehende Ereignisse abzurufen und sie in der Suche verfügbar zu machen."
     473msgid ""
     474"HYPEvents server URL, used to fetch upcoming events and make them available "
     475"in search."
     476msgstr ""
     477"HYPEvents-Server-URL, die verwendet wird, um bevorstehende Ereignisse "
     478"abzurufen und sie in der Suche verfügbar zu machen."
    447479
    448480#: admin/settings.php:288
    449 msgid "Leave blank to ignore events or if you have an other events implementation."
    450 msgstr "Lassen Sie diese Option leer, um Ereignisse zu ignorieren oder wenn Sie andere Ereignisse implementiert haben."
     481msgid ""
     482"Leave blank to ignore events or if you have an other events implementation."
     483msgstr ""
     484"Lassen Sie diese Option leer, um Ereignisse zu ignorieren oder wenn Sie "
     485"andere Ereignisse implementiert haben."
    451486
    452487#: admin/settings.php:298
     
    467502
    468503#: admin/settings.php:328
    469 msgid "A no-reply e-mail address used to forward messages for users enabling \"Email me IMs when I'm offline\" option."
    470 msgstr "Eine E-Mail-Adresse ohne Antwort, die zur Weiterleitung von Nachrichten für Benutzer verwendet wird, die die Option \"E-Mail an IMs senden, wenn ich offline bin\" aktivieren."
     504msgid ""
     505"A no-reply e-mail address used to forward messages for users enabling "
     506"\"Email me IMs when I'm offline\" option."
     507msgstr ""
     508"Eine E-Mail-Adresse ohne Antwort, die zur Weiterleitung von Nachrichten für "
     509"Benutzer verwendet wird, die die Option \"E-Mail an IMs senden, wenn ich "
     510"offline bin\" aktivieren."
    471511
    472512#: admin/settings.php:337
     
    475515
    476516#: admin/settings.php:340
    477 msgid "Economy helpers are additional scripts needed if you implement economy on your grid (with real or fake currency)."
    478 msgstr "Economy-Helfer sind zusätzliche Skripte, die benötigt werden, wenn Sie in Ihrem Grid Wirtschaft implementieren (mit echter oder gefälschter Währung)."
     517msgid ""
     518"Economy helpers are additional scripts needed if you implement economy on "
     519"your grid (with real or fake currency)."
     520msgstr ""
     521"Economy-Helfer sind zusätzliche Skripte, die benötigt werden, wenn Sie in "
     522"Ihrem Grid Wirtschaft implementieren (mit echter oder gefälschter Währung)."
    479523
    480524#: admin/settings.php:341
    481 msgid "Helper scripts allow communication between the money server and the grid: current balance update, currency cost estimation, land and object sales, payments..."
    482 msgstr "Hilfsskripte ermöglichen die Kommunikation zwischen dem Geldserver und dem Grid: Aktualisierung des aktuellen Kontostands, Schätzung der Währungskosten, Verkauf von Land und Objekten, Zahlungen..."
     525msgid ""
     526"Helper scripts allow communication between the money server and the grid: "
     527"current balance update, currency cost estimation, land and object sales, "
     528"payments..."
     529msgstr ""
     530"Hilfsskripte ermöglichen die Kommunikation zwischen dem Geldserver und dem "
     531"Grid: Aktualisierung des aktuellen Kontostands, Schätzung der "
     532"Währungskosten, Verkauf von Land und Objekten, Zahlungen..."
    483533
    484534#: admin/settings.php:343
    485 msgid "Money server is not included in OpenSimulator distribution and require a separate installation, e.g. from %s."
    486 msgstr "Der Geldserver ist nicht in der OpenSimulator-Distribution enthalten und erfordert eine separate Installation, z.B. von %s."
     535msgid ""
     536"Money server is not included in OpenSimulator distribution and require a "
     537"separate installation, e.g. from %s."
     538msgstr ""
     539"Der Geldserver ist nicht in der OpenSimulator-Distribution enthalten und "
     540"erfordert eine separate Installation, z.B. von %s."
    487541
    488542#: admin/settings.php:351
     
    511565
    512566#: admin/settings.php:413
    513 msgid "Amount to pay in US$ for 1000 in-world money units. Used for cost estimation. If not set, the rate will be 10/1000 (1 cent per money unit)"
    514 msgstr "Zu zahlender Betrag in US$ für 1000 in-world Geldeinheiten. Wird für Kostenschätzungen verwendet. Wenn nicht festgelegt, wird der Kurs 10/1000 (1 Cent pro Geldeinheit) sein."
     567msgid ""
     568"Amount to pay in US$ for 1000 in-world money units. Used for cost "
     569"estimation. If not set, the rate will be 10/1000 (1 cent per money unit)"
     570msgstr ""
     571"Zu zahlender Betrag in US$ für 1000 in-world Geldeinheiten. Wird für "
     572"Kostenschätzungen verwendet. Wenn nicht festgelegt, wird der Kurs 10/1000 (1 "
     573"Cent pro Geldeinheit) sein."
    515574
    516575#: admin/settings.php:416
     
    519578
    520579#: admin/settings.php:417
    521 msgid "Please use our terminals in-world to proceed. Click OK to teleport to terminals region."
    522 msgstr "Bitte benutzen Sie unsere Terminals in der Welt, um fortzufahren. Klicken Sie auf OK, um sich in die Region der Terminals zu teleportieren."
     580msgid ""
     581"Please use our terminals in-world to proceed. Click OK to teleport to "
     582"terminals region."
     583msgstr ""
     584"Bitte benutzen Sie unsere Terminals in der Welt, um fortzufahren. Klicken "
     585"Sie auf OK, um sich in die Region der Terminals zu teleportieren."
    523586
    524587#: admin/settings.php:420
     
    532595#: admin/settings.php:585
    533596msgid "Values must match Robust.HG.ini (or Robust.HG.ini) config file."
    534 msgstr "Die Werte müssen mit der Konfigurationsdatei Robust.HG.ini (oder Robust.HG.ini) übereinstimmen."
     597msgstr ""
     598"Die Werte müssen mit der Konfigurationsdatei Robust.HG.ini (oder Robust.HG."
     599"ini) übereinstimmen."
    535600
    536601#: admin/settings.php:586
    537 msgid "Robust server must be running. Values entered here will be checked against your Robust server and updated if needed."
    538 msgstr "Der Robust-Server muss laufen. Die hier eingegebenen Werte werden mit Ihrem Robust-Server abgeglichen und bei Bedarf aktualisiert."
     602msgid ""
     603"Robust server must be running. Values entered here will be checked against "
     604"your Robust server and updated if needed."
     605msgstr ""
     606"Der Robust-Server muss laufen. Die hier eingegebenen Werte werden mit Ihrem "
     607"Robust-Server abgeglichen und bei Bedarf aktualisiert."
    539608
    540609#: admin/settings.php:591
    541 msgid "Grid accounts matching first name or last name set below are considered as avatar models. They will appear on the avatar registration form, with their in-world profile picture."
    542 msgstr "Grid-Konten, die dem unten angegebenen Vor- oder Nachnamen entsprechen, gelten als Avatar-Modelle. Sie erscheinen auf dem Avatar-Registrierungsformular mit ihrem Profilbild in der Welt."
    543 
    544 #. wpml-name: 6bdda8124d6ca549428567dfc1c0532d
     610msgid ""
     611"Grid accounts matching first name or last name set below are considered as "
     612"avatar models. They will appear on the avatar registration form, with their "
     613"in-world profile picture."
     614msgstr ""
     615"Grid-Konten, die dem unten angegebenen Vor- oder Nachnamen entsprechen, "
     616"gelten als Avatar-Modelle. Sie erscheinen auf dem Avatar-"
     617"Registrierungsformular mit ihrem Profilbild in der Welt."
     618
     619#: admin/status-page.php:15
     620msgid "PHP xml-rpc is required but is not installed."
     621msgstr ""
     622
    545623#: admin/status-page.php:22
    546624msgid "Available shortcodes"
    547625msgstr "Verfügbare Shortcodes"
    548626
    549 #. wpml-name: 119154a6f7028c6f8ebe3e470e626296
    550627#: admin/status-page.php:27
    551628msgid "General information (grid name and login uri)"
    552629msgstr "Allgemeine Informationen (Gridname und Login-URI)"
    553630
    554 #. wpml-name: 9dd1ee1a9ac16e90a05dc54134ea1796
    555631#: admin/status-page.php:33
    556632msgid "Online users, regions, etc."
     
    558634
    559635#: admin/status-page.php:39
    560 msgid "Grid profile if user is connected and has an avatar, avatar registration form otherwise"
    561 msgstr "Rasterprofil, wenn der Benutzer verbunden ist und einen Avatar hat, ansonsten Avatar-Registrierungsformular"
     636msgid ""
     637"Grid profile if user is connected and has an avatar, avatar registration "
     638"form otherwise"
     639msgstr ""
     640"Rasterprofil, wenn der Benutzer verbunden ist und einen Avatar hat, "
     641"ansonsten Avatar-Registrierungsformular"
    562642
    563643#: admin/status-page.php:40
     
    569649msgstr "Benutzer"
    570650
    571 #. wpml-name: 6834699b2d08455d0475c76d54356191
    572651#: admin/status-page.php:55
    573652msgid "Total"
     
    582661msgstr "Sync"
    583662
    584 #. wpml-name: 69675902f4d4a3da44638540557562af
    585663#: admin/status-page.php:58
    586664msgid "Grid only"
    587665msgstr "Nur Grid"
    588666
    589 #. wpml-name: 17db1cfe008f83e7d0181762eda3daab
    590667#: admin/status-page.php:62
    591668msgid "Grid accounts"
     
    601678
    602679#: admin/status-page.php:95
    603 msgid "%d grid account has no linked WP account. Syncing will create a new WP account."
    604 msgid_plural "%d grid accounts have no linked WP account. Syncing will create new WP accounts."
    605 msgstr[0] "%d Grid-Konto hat kein verknüpftes WP-Konto. Bei der Synchronisierung wird ein neues WP-Konto erstellt."
    606 msgstr[1] "%d Grid-Konten haben kein verknüpftes WP-Konto. Durch die Synchronisierung werden neue WP-Konten erstellt."
     680msgid ""
     681"%d grid account has no linked WP account. Syncing will create a new WP "
     682"account."
     683msgid_plural ""
     684"%d grid accounts have no linked WP account. Syncing will create new WP "
     685"accounts."
     686msgstr[0] ""
     687"%d Grid-Konto hat kein verknüpftes WP-Konto. Bei der Synchronisierung wird "
     688"ein neues WP-Konto erstellt."
     689msgstr[1] ""
     690"%d Grid-Konten haben kein verknüpftes WP-Konto. Durch die Synchronisierung "
     691"werden neue WP-Konten erstellt."
    607692
    608693#: admin/status-page.php:103
    609 msgid "%d WordPress account is linked to an unexisting avatar (wrong UUID). Syncing accounts will keep this WP account but remove the broken reference."
    610 msgid_plural "%d WordPress accounts are linked to unexisting avatars (wrong UUID). Syncing accounts will keep these WP accounts but remove the broken reference."
    611 msgstr[0] "%d WordPress-Konto ist mit einem nicht existierenden Avatar verknüpft (falsche UUID). Bei der Kontensynchronisierung wird dieses WP-Konto beibehalten, aber der fehlerhafte Verweis wird entfernt."
    612 msgstr[1] "%d WordPress-Konten sind mit nicht existierenden Avataren verknüpft (falsche UUID). Durch das Synchronisieren von Konten werden diese WP-Konten beibehalten, aber die fehlerhafte Referenz entfernt."
     694msgid ""
     695"%d WordPress account is linked to an unexisting avatar (wrong UUID). Syncing "
     696"accounts will keep this WP account but remove the broken reference."
     697msgid_plural ""
     698"%d WordPress accounts are linked to unexisting avatars (wrong UUID). Syncing "
     699"accounts will keep these WP accounts but remove the broken reference."
     700msgstr[0] ""
     701"%d WordPress-Konto ist mit einem nicht existierenden Avatar verknüpft "
     702"(falsche UUID). Bei der Kontensynchronisierung wird dieses WP-Konto "
     703"beibehalten, aber der fehlerhafte Verweis wird entfernt."
     704msgstr[1] ""
     705"%d WordPress-Konten sind mit nicht existierenden Avataren verknüpft (falsche "
     706"UUID). Durch das Synchronisieren von Konten werden diese WP-Konten "
     707"beibehalten, aber die fehlerhafte Referenz entfernt."
    613708
    614709#: admin/status-page.php:111
    615 msgid "%d grid account (other than models) has no email address, which is fine as long as it is used only for maintenance or service tasks."
    616 msgid_plural "%d grid accounts (other than models) have no email address, which is fine as long as they are used only for maintenance or service tasks."
    617 msgstr[0] "%d Gridkonto (außer Modelle) hat keine E-Mail-Adresse, was in Ordnung ist, solange es nur für Wartungs- oder Serviceaufgaben verwendet wird."
    618 msgstr[1] "%d grid accounts (other than models) have no email address, which is fine as long as they are used only for maintenance or service tasks."
     710msgid ""
     711"%d grid account (other than models) has no email address, which is fine as "
     712"long as it is used only for maintenance or service tasks."
     713msgid_plural ""
     714"%d grid accounts (other than models) have no email address, which is fine as "
     715"long as they are used only for maintenance or service tasks."
     716msgstr[0] ""
     717"%d Gridkonto (außer Modelle) hat keine E-Mail-Adresse, was in Ordnung ist, "
     718"solange es nur für Wartungs- oder Serviceaufgaben verwendet wird."
     719msgstr[1] ""
     720"%d grid accounts (other than models) have no email address, which is fine as "
     721"long as they are used only for maintenance or service tasks."
    619722
    620723#: admin/status-page.php:116
    621 msgid "Real accounts need a unique email address for W4OS to function properly."
    622 msgstr "Echte Konten benötigen eine eindeutige E-Mail-Adresse, damit W4OS ordnungsgemäß funktioniert."
     724msgid ""
     725"Real accounts need a unique email address for W4OS to function properly."
     726msgstr ""
     727"Echte Konten benötigen eine eindeutige E-Mail-Adresse, damit W4OS "
     728"ordnungsgemäß funktioniert."
    623729
    624730#: admin/status-page.php:124
     
    627733
    628734#: admin/status-page.php:126
    629 msgid "Synchronization is made at plugin activation and is handled automatically afterwards, but in certain circumstances it may be necessary to initiate it manually to get an immediate result, especially if users have been added or deleted directly from the grid administration console."
    630 msgstr "Die Synchronisierung erfolgt bei der Aktivierung des Plugins und wird danach automatisch durchgeführt. Unter bestimmten Umständen kann es jedoch notwendig sein, die Synchronisierung manuell einzuleiten, um ein sofortiges Ergebnis zu erhalten, insbesondere wenn Benutzer direkt über die Grid-Administrationskonsole hinzugefügt oder gelöscht wurden."
     735msgid ""
     736"Synchronization is made at plugin activation and is handled automatically "
     737"afterwards, but in certain circumstances it may be necessary to initiate it "
     738"manually to get an immediate result, especially if users have been added or "
     739"deleted directly from the grid administration console."
     740msgstr ""
     741"Die Synchronisierung erfolgt bei der Aktivierung des Plugins und wird danach "
     742"automatisch durchgeführt. Unter bestimmten Umständen kann es jedoch "
     743"notwendig sein, die Synchronisierung manuell einzuleiten, um ein sofortiges "
     744"Ergebnis zu erhalten, insbesondere wenn Benutzer direkt über die Grid-"
     745"Administrationskonsole hinzugefügt oder gelöscht wurden."
    631746
    632747#: admin/status-page.php:144
     
    635750
    636751#: admin/status-page.php:146
    637 msgid "These modules were not found: %s. Install them to get the most of this plugin."
    638 msgstr "Diese Module wurden nicht gefunden: %s. Installieren Sie sie, um dieses Plugin optimal nutzen zu können."
    639 
    640 #. wpml-name: 2e7502f81f2bff60e1170982af2e5ede
     752msgid ""
     753"These modules were not found: %s. Install them to get the most of this "
     754"plugin."
     755msgstr ""
     756"Diese Module wurden nicht gefunden: %s. Installieren Sie sie, um dieses "
     757"Plugin optimal nutzen zu können."
     758
    641759#: admin/status-page.php:154
    642760msgid "OpenSimulator pages"
     
    644762
    645763#: admin/status-page.php:156
    646 msgid "The following page are needed by OpenSimulator and/or by W4OS plugin. Make sure they exist or adjust your simulator .ini file."
    647 msgstr "Die folgenden Seiten werden von OpenSimulator und/oder dem W4OS-Plugin benötigt. Stellen Sie sicher, dass sie vorhanden sind, oder passen Sie Ihre Simulator-.ini-Datei an."
     764msgid ""
     765"The following page are needed by OpenSimulator and/or by W4OS plugin. Make "
     766"sure they exist or adjust your simulator .ini file."
     767msgstr ""
     768"Die folgenden Seiten werden von OpenSimulator und/oder dem W4OS-Plugin "
     769"benötigt. Stellen Sie sicher, dass sie vorhanden sind, oder passen Sie Ihre "
     770"Simulator-.ini-Datei an."
    648771
    649772#: admin/status-page.php:166
    650 msgid "Grid not running, start Robust server or %scheck OpenSimulator settings%s."
    651 msgstr "Grid läuft nicht, Robust Server starten oder %scheck OpenSimulator Einstellungen%s."
     773msgid ""
     774"Grid not running, start Robust server or %scheck OpenSimulator settings%s."
     775msgstr ""
     776"Grid läuft nicht, Robust Server starten oder %scheck OpenSimulator "
     777"Einstellungen%s."
    652778
    653779#: admin/status-page.php:186
     
    660786
    661787#: admin/status-page.php:191
    662 msgid "OpenSimulator pages are checked regularly in the background. Synchronize now only if you made changes and want an immediate status."
    663 msgstr "OpenSimulator-Seiten werden regelmäßig im Hintergrund überprüft. Synchronisieren Sie jetzt nur, wenn Sie Änderungen vorgenommen haben und einen sofortigen Status wünschen."
     788msgid ""
     789"OpenSimulator pages are checked regularly in the background. Synchronize now "
     790"only if you made changes and want an immediate status."
     791msgstr ""
     792"OpenSimulator-Seiten werden regelmäßig im Hintergrund überprüft. "
     793"Synchronisieren Sie jetzt nur, wenn Sie Änderungen vorgenommen haben und "
     794"einen sofortigen Status wünschen."
    664795
    665796#: admin/status-page.php:212
     
    668799
    669800#: admin/status-page.php:218
    670 msgid "This service requires a separate web application.<br>Try <a href=\"%1$s\" target=_blank>%1$s</a>."
    671 msgstr "Dieser Dienst erfordert eine separate Webanwendung.<br>Versuchen Sie <a href=\"%1$s\" target=_blank>%1$s</a>."
     801msgid ""
     802"This service requires a separate web application.<br>Try <a href=\"%1$s\" "
     803"target=_blank>%1$s</a>."
     804msgstr ""
     805"Dieser Dienst erfordert eine separate Webanwendung.<br>Versuchen Sie <a "
     806"href=\"%1$s\" target=_blank>%1$s</a>."
    672807
    673808#: blocks/popular-places.php:128
     
    688823
    689824#: includes/functions.php:149
    690 msgid "A local Robust server has been found. Please check Login URI and Grid name configuration."
    691 msgstr "Es wurde ein lokaler Robust-Server gefunden. Bitte überprüfen Sie die Konfiguration von Login URI und Grid-Name."
    692 
    693 #. wpml-name: 9c9ee66a189f06fb9e3cc58c0c352db8
     825msgid ""
     826"A local Robust server has been found. Please check Login URI and Grid name "
     827"configuration."
     828msgstr ""
     829"Es wurde ein lokaler Robust-Server gefunden. Bitte überprüfen Sie die "
     830"Konfiguration von Login URI und Grid-Name."
     831
    694832#: includes/functions.php:168
    695833msgid "OpenSimulator settings page"
     
    704842msgstr "Offline"
    705843
    706 #. wpml-name: ef53538ae41a651c7f72ab6cb1135d8c
    707844#: includes/functions.php:228
    708845msgid "Members"
    709846msgstr "Mitglieder"
    710847
    711 #. wpml-name: fd9754e08c4e5151b83bc2abbf21ffb0
    712848#: includes/functions.php:230
    713849msgid "Active members (30 days)"
    714850msgstr "Aktive Mitglieder (30 Tage)"
    715851
    716 #. wpml-name: 67ea4b3432b974a20b2c8ee6609e363c
    717852#: includes/functions.php:233
    718853msgid "Members in world"
    719854msgstr "Avatare im Grid Online"
    720855
    721 #. wpml-name: fd9754e08c4e5151b83bc2abbf21ffb0
    722856#: includes/functions.php:240
    723857msgid "Active users (30 days)"
    724858msgstr "Aktive Besucher (30 Tage)"
    725859
    726 #. wpml-name: 9143e8053fefd25ce03ae81136931586
    727860#: includes/functions.php:242
    728861msgid "Total users in world"
    729862msgstr "Zurzeit Online gesamt"
    730863
    731 #. wpml-name: 5948f3347ebc02ebc690227c059661e1
    732864#: includes/functions.php:246
    733865msgid "Regions"
    734866msgstr "Regionen"
    735867
    736 #. wpml-name: 6834699b2d08455d0475c76d54356191
    737868#: includes/functions.php:248
    738869msgid "Total area"
     
    751882msgstr "%s Tage alt"
    752883
    753 #. wpml-name: 8ffca1456a2308a5556a750be1ecbac0
    754884#: includes/profile-page.php:51
    755885msgid "Lost Password"
    756886msgstr "Verlorenes Passwort"
    757887
    758 #. wpml-name: 5948f3347ebc02ebc690227c059661e1
    759888#: includes/profile-page.php:56
    760889msgid "Register"
     
    762891
    763892#: includes/profile-page.php:87
    764 msgid "Lost your password? Please enter your username or email address. You will receive a link to create a new password via email."
    765 msgstr "Haben Sie Ihr Passwort vergessen? Bitte geben Sie Ihren Benutzernamen oder Ihre E-Mail-Adresse ein. Sie erhalten dann per E-Mail einen Link zur Erstellung eines neuen Passworts."
     893msgid ""
     894"Lost your password? Please enter your username or email address. You will "
     895"receive a link to create a new password via email."
     896msgstr ""
     897"Haben Sie Ihr Passwort vergessen? Bitte geben Sie Ihren Benutzernamen oder "
     898"Ihre E-Mail-Adresse ein. Sie erhalten dann per E-Mail einen Link zur "
     899"Erstellung eines neuen Passworts."
    766900
    767901#: includes/profile-page.php:89
     
    769903msgstr "E-Mail"
    770904
    771 #. wpml-name: 8ffca1456a2308a5556a750be1ecbac0
    772905#: includes/profile-page.php:90
    773906msgid "Reset Password"
     
    781914#: includes/profile-page.php:96
    782915msgid "Log in to create your avatar, view your profile or set your options."
    783 msgstr "Loggen Sie sich ein, um Ihren Avatar zu erstellen, Ihr Profil anzusehen oder Ihre Optionen einzustellen."
    784 
    785 #. wpml-name: 69675902f4d4a3da44638540557562af
     916msgstr ""
     917"Loggen Sie sich ein, um Ihren Avatar zu erstellen, Ihr Profil anzusehen oder "
     918"Ihre Optionen einzustellen."
     919
    786920#: includes/profile-page.php:147
    787921msgid "My Profile"
     
    792926msgstr "Meinen Avatar erstellen"
    793927
    794 #. wpml-name: 69675902f4d4a3da44638540557562af
    795928#: includes/profile-page.php:165 templates/content-page-profile.php:54
    796929msgid "%s's profile"
    797930msgstr "Profil von %s"
    798931
    799 #. wpml-name: a2ac9ef42c9ebc25f8dbab799ac23565
    800932#: includes/profile-page.php:168
    801933msgid "Avatar not found"
    802934msgstr "Avatar nicht gefunden"
    803935
    804 #. wpml-name: 69675902f4d4a3da44638540557562af
    805936#: includes/profile-page.php:221
    806937msgid "Profile base"
     
    867998msgstr "Benutzerdefinierte Zeichen"
    868999
    869 #: includes/profile.php:122
     1000#: includes/profile.php:123
    8701001msgid "About"
    8711002msgstr "Über"
    8721003
    873 #: includes/profile.php:125
     1004#: includes/profile.php:126
    8741005msgid "Partner"
    8751006msgstr "Partner"
    8761007
    877 #: includes/profile.php:126
     1008#: includes/profile.php:127
    8781009msgid "Wants to"
    8791010msgstr "Möchte"
    8801011
    881 #: includes/profile.php:127
     1012#: includes/profile.php:128
    8821013msgid "Skills"
    8831014msgstr "Fertigkeiten"
    8841015
    885 #: includes/profile.php:128
     1016#: includes/profile.php:129
    8861017msgid "Languages"
    8871018msgstr "Sprachen"
    8881019
    889 #: includes/profile.php:129
     1020#: includes/profile.php:130
    8901021msgid "Real Life"
    8911022msgstr "Reales Leben"
    8921023
    893 #: includes/profile.php:244
    894 msgid "%s local users updated with avatar data"
    895 msgstr "%s lokale Benutzer mit Avatar-Daten aktualisiert"
    896 
    897 #. wpml-name: d0f651f1495d346088ae49450c620e9b
    898 #: includes/profile.php:258 includes/profile.php:977
     1024#: includes/profile.php:133 tmp/class-avatar.php:277
     1025msgid "Change password"
     1026msgstr ""
     1027
     1028#: includes/profile.php:133
     1029msgid "Password reset link"
     1030msgstr ""
     1031
     1032#: includes/profile.php:172 includes/profile.php:891
    8991033msgid "OpenSimulator"
    9001034msgstr "OpenSimulator"
    9011035
    902 #. wpml-name: 0d3e39fb622d9e6d7b389757aa651fff
    903 #: includes/profile.php:414
     1036#: includes/profile.php:328
    9041037msgid "This user already has an avatar."
    9051038msgstr "Dieser Benutzer hat bereits einen Avatar."
    9061039
    907 #. wpml-name: b2d0fb30e09bf39693f6183c33455748
    908 #: includes/profile.php:425
     1040#: includes/profile.php:339
    9091041msgid "First name required"
    9101042msgstr "Vorname erforderlich"
    9111043
    912 #. wpml-name: 14bcd8bac9d052de9f9aa0f685a6da73
    913 #: includes/profile.php:426
     1044#: includes/profile.php:340
    9141045msgid "Last name required"
    9151046msgstr "Nachname erforderlich"
    9161047
    917 #. wpml-name: 8ffca1456a2308a5556a750be1ecbac0
    918 #: includes/profile.php:428
     1048#: includes/profile.php:342
    9191049msgid "Password required"
    9201050msgstr "Passwort erforderlich"
    9211051
    922 #: includes/profile.php:429
     1052#: includes/profile.php:343
    9231053msgid "The password does not match."
    9241054msgstr "Das Passwort stimmt nicht überein."
    9251055
    926 #. wpml-name: 4eb86d524f30b9885871ed68c24b0f29
    927 #: includes/profile.php:438 includes/profile.php:442
     1056#: includes/profile.php:352 includes/profile.php:356
    9281057msgid "The name %s is not allowed"
    9291058msgstr "Der Name %s ist nicht erlaubt"
    9301059
    931 #: includes/profile.php:446
     1060#: includes/profile.php:360
    9321061msgid "Names can only contain alphanumeric characters"
    9331062msgstr "Namen dürfen nur alphanumerische Zeichen enthalten"
    9341063
    935 #: includes/profile.php:452
     1064#: includes/profile.php:366
    9361065msgid "There is already a grid user named %s"
    9371066msgstr "Es gibt bereits einen Grid-Benutzer namens %s"
    9381067
    939 #: includes/profile.php:458
    940 msgid "This should never happen! Generated a random UUID that already existed. Sorry. Try again."
    941 msgstr "Dies sollte niemals passieren! Es wurde eine zufällige UUID erzeugt, die bereits existierte. Entschuldigung. Versuchen Sie es erneut."
    942 
    943 #: includes/profile.php:480
     1068#: includes/profile.php:372
     1069msgid ""
     1070"This should never happen! Generated a random UUID that already existed. "
     1071"Sorry. Try again."
     1072msgstr ""
     1073"Dies sollte niemals passieren! Es wurde eine zufällige UUID erzeugt, die "
     1074"bereits existierte. Entschuldigung. Versuchen Sie es erneut."
     1075
     1076#: includes/profile.php:394
    9441077msgid "Error while creating user"
    9451078msgstr "Fehler beim Anlegen eines Benutzers"
    9461079
    947 #. wpml-name: d9c2d86a66aa5a45326c3757f3a272cc
    948 #: includes/profile.php:489
     1080#: includes/profile.php:403
    9491081msgid "Error while setting password"
    9501082msgstr "Fehler beim Setzen des Passworts"
    9511083
    952 #: includes/profile.php:500
     1084#: includes/profile.php:414
    9531085msgid "Error while setting home region"
    9541086msgstr "Fehler beim Einstellen der Heimatregion"
    9551087
    956 #: includes/profile.php:517
     1088#: includes/profile.php:431
    9571089msgid "Error while creating user inventory"
    9581090msgstr "Fehler beim Erstellen des Benutzerinventars"
    9591091
    960 #: includes/profile.php:639
     1092#: includes/profile.php:553
    9611093msgid "Error while adding inventory item"
    9621094msgstr "Fehler beim Hinzufügen von Inventargegenständen"
    9631095
    964 #: includes/profile.php:650
     1096#: includes/profile.php:564
    9651097msgid "Error while adding inventory outfit link"
    9661098msgstr "Fehler beim Hinzufügen des Links für die Inventarausstattung"
    9671099
    968 #: includes/profile.php:662
     1100#: includes/profile.php:576
    9691101msgid "Error while adding avatar"
    9701102msgstr "Fehler beim Hinzufügen eines Avatars"
    9711103
    972 #: includes/profile.php:668
     1104#: includes/profile.php:582
    9731105msgid "Errors occurred while creating the user"
    9741106msgstr "Beim Anlegen des Benutzers sind Fehler aufgetreten"
    9751107
    976 #. wpml-name: 02cb97a68e5137af44e882dbe2180485
    977 #: includes/profile.php:673
     1108#: includes/profile.php:587
    9781109msgid "Avatar %s created successfully."
    9791110msgstr "Avatar %s erfolgreich erstellt."
    9801111
    981 #: includes/profile.php:686
     1112#: includes/profile.php:600
    9821113msgid "You need an avatar to explore our virtual world."
    9831114msgstr "Sie benötigen einen Avatar, um unsere virtuelle Welt zu erkunden."
    9841115
    985 #. wpml-name: 1a87f41bc2db648685564cf6fa5b2903
    986 #: includes/profile.php:687
    987 msgid "Choose a name below. This is how people will see you in-world. Once set, your avatar name cannot be changed."
    988 msgstr "Wählen Sie unten einen Namen. Unter diesem Namen wird man Sie in der Welt sehen. Einmal festgelegt, kann Ihr Avatar-Name nicht mehr geändert werden."
    989 
    990 #. wpml-name: bfc045552fb736eb0e776baee784de42
    991 #: includes/profile.php:710
     1116#: includes/profile.php:601
     1117msgid ""
     1118"Choose a name below. This is how people will see you in-world. Once set, "
     1119"your avatar name cannot be changed."
     1120msgstr ""
     1121"Wählen Sie unten einen Namen. Unter diesem Namen wird man Sie in der Welt "
     1122"sehen. Einmal festgelegt, kann Ihr Avatar-Name nicht mehr geändert werden."
     1123
     1124#: includes/profile.php:624
    9921125msgid "Avatar first name"
    9931126msgstr "Vorname des Avatars"
    9941127
    995 #. wpml-name: a2ac9ef42c9ebc25f8dbab799ac23565
    996 #: includes/profile.php:714
     1128#: includes/profile.php:628
    9971129msgid "Avatar last name"
    9981130msgstr "Nachname des Avatars"
    9991131
    1000 #. wpml-name: d9c2d86a66aa5a45326c3757f3a272cc
    1001 #: includes/profile.php:719
     1132#: includes/profile.php:633
    10021133msgid "Confirm your password"
    10031134msgstr "Bestätigen Sie Ihr Passwort"
    10041135
    1005 #: includes/profile.php:721
    1006 msgid "Your in-world Avatar password is the same as your password on this website."
    1007 msgstr "Ihr Avatar-Passwort in der Welt ist dasselbe wie Ihr Passwort auf dieser Website."
    1008 
    1009 #: includes/profile.php:735
     1136#: includes/profile.php:635
     1137msgid ""
     1138"Your in-world Avatar password is the same as your password on this website."
     1139msgstr ""
     1140"Ihr Avatar-Passwort in der Welt ist dasselbe wie Ihr Passwort auf dieser "
     1141"Website."
     1142
     1143#: includes/profile.php:649
    10101144msgid "Your initial appearance"
    10111145msgstr "Ihr erster Auftritt"
    10121146
    1013 #. wpml-name: 90efd059f58183a99038e138b8fe17f0
    1014 #: includes/profile.php:736
     1147#: includes/profile.php:650
    10151148msgid "You can change it as often as you want in the virtual world."
    10161149msgstr "Sie können ihn in der virtuellen Welt so oft ändern, wie Sie wollen."
    10171150
    1018 #: includes/profile.php:772
     1151#: includes/profile.php:686
    10191152msgid "Save"
    10201153msgstr "Speichern"
    10211154
    1022 #. wpml-name: 877a81d559efa8e5dac0cccac9f80a09
    1023 #: includes/profile.php:805
     1155#: includes/profile.php:719
    10241156msgid "leave blank to leave unchanged"
    10251157msgstr "leer lassen, um unverändert zu bleiben"
    10261158
    1027 #: includes/profile.php:813
     1159#: includes/profile.php:727
    10281160msgid "Create an avatar"
    10291161msgstr "Einen Avatar erstellen"
    10301162
    1031 #. wpml-name: 69675902f4d4a3da44638540557562af
    1032 #: includes/profile.php:899 blocks/w4os-gridprofile-block/index.js:27
     1163#: includes/profile.php:813 blocks/w4os-gridprofile-block/index.js:27
    10331164#: blocks/w4os-gridprofile-block/index.js:74
    10341165msgid "Grid profile"
    10351166msgstr "Grid Profil"
    10361167
    1037 #. wpml-name: bfc045552fb736eb0e776baee784de42
    1038 #: includes/profile.php:987
     1168#: includes/profile.php:901
    10391169msgid "Avatar First Name"
    10401170msgstr "Avatar Vorname"
    10411171
    1042 #. wpml-name: a2ac9ef42c9ebc25f8dbab799ac23565
    1043 #: includes/profile.php:993
     1172#: includes/profile.php:907
    10441173msgid "Avatar Last Name"
    10451174msgstr "Avatar Nachname"
    10461175
    1047 #. wpml-name: 69675902f4d4a3da44638540557562af
    1048 #: includes/profile.php:999 tmp/class-avatar.php:361
     1176#: includes/profile.php:913 tmp/class-avatar.php:361
    10491177msgid "Profile Picture"
    10501178msgstr "Profilbild"
    10511179
    1052 #: includes/profile.php:1001
     1180#: includes/profile.php:915
    10531181msgid "Must be set in the viewer."
    10541182msgstr "Muss im Viewer eingestellt werden."
    10551183
    1056 #: includes/profile.php:1006
     1184#: includes/profile.php:920
    10571185msgid "Web Profile URL"
    10581186msgstr "Webprofil-URL"
     
    10621190msgstr "W4OS-Datenbank konfigurieren "
    10631191
    1064 #. wpml-name: 17db1cfe008f83e7d0181762eda3daab
    10651192#: includes/shortcodes.php:103
    10661193msgid "Edit user"
     
    10711198msgstr "Konfigurieren Sie W4OS: "
    10721199
    1073 #. wpml-name: 751cfef8ad45902372601aeac58bdad7
    10741200#: includes/shortcodes.php:131
    10751201msgid "Login URI"
    10761202msgstr "Login URL"
    10771203
    1078 #. wpml-name: 9c9ee66a189f06fb9e3cc58c0c352db8
    10791204#: includes/shortcodes.php:136
    10801205msgid "OpenSimulator not configured"
     
    10891214msgstr "Aktualisierung %s angewendet"
    10901215
    1091 #. wpml-name: 02cb97a68e5137af44e882dbe2180485
    10921216#: includes/updates.php:36
    10931217msgid "Update %s applied sucessfully"
     
    11041228msgstr "W4OS aktualisiert"
    11051229
    1106 #. wpml-name: 17db1cfe008f83e7d0181762eda3daab
    11071230#: includes/updates.php:71
    11081231msgid "Grid user"
     
    11101233
    11111234#: includes/updates.php:92
    1112 msgid "Profiles service is not configured on your Robust server. It is required for full functionalities."
    1113 msgstr "Der Profildienst ist auf Ihrem Robust-Server nicht konfiguriert. Er ist für den vollen Funktionsumfang erforderlich."
     1235msgid ""
     1236"Profiles service is not configured on your Robust server. It is required for "
     1237"full functionalities."
     1238msgstr ""
     1239"Der Profildienst ist auf Ihrem Robust-Server nicht konfiguriert. Er ist für "
     1240"den vollen Funktionsumfang erforderlich."
    11141241
    11151242#: includes/updates.php:111
     
    11271254#: includes/users.php:155
    11281255msgid "Error while updating newly created user %s for %s %s (%s) %s"
    1129 msgstr "Fehler beim Aktualisieren des neu angelegten Benutzers %s für %s %s (%s) %s"
     1256msgstr ""
     1257"Fehler beim Aktualisieren des neu angelegten Benutzers %s für %s %s (%s) %s"
    11301258
    11311259#: includes/users.php:167
     
    11471275msgstr[1] "%d fehlerhafte Referenzen entfernt"
    11481276
     1277#: includes/users.php:282
     1278msgid "%s local users updated with avatar data"
     1279msgstr "%s lokale Benutzer mit Avatar-Daten aktualisiert"
     1280
    11491281#: includes/w4osdb.php:12
    11501282msgid "ROBUST database is not configured. To finish configuration, go to "
    1151 msgstr "Die ROBUST-Datenbank ist nicht konfiguriert. Um die Konfiguration abzuschließen, gehen Sie zu "
     1283msgstr ""
     1284"Die ROBUST-Datenbank ist nicht konfiguriert. Um die Konfiguration "
     1285"abzuschließen, gehen Sie zu "
    11521286
    11531287#: includes/w4osdb.php:23
    1154 msgid "Could not connect to the database server, please verify your credentials on "
    1155 msgstr "Es konnte keine Verbindung zum Datenbankserver hergestellt werden, bitte überprüfen Sie Ihre Anmeldedaten auf "
     1288msgid ""
     1289"Could not connect to the database server, please verify your credentials on "
     1290msgstr ""
     1291"Es konnte keine Verbindung zum Datenbankserver hergestellt werden, bitte "
     1292"überprüfen Sie Ihre Anmeldedaten auf "
    11561293
    11571294#: includes/w4osdb.php:30
    1158 msgid "Could not connect to the ROBUST database, please verify database name and/or credentials on "
    1159 msgstr "Es konnte keine Verbindung zur ROBUST-Datenbank hergestellt werden, bitte überprüfen Sie den Datenbanknamen und/oder die Anmeldedaten auf "
    1160 
    1161 #: includes/w4osdb.php:69
    1162 msgid "Missing tables: %s. The ROBUST database is connected, but it does not seem valid. "
    1163 msgstr "Fehlende Tabellen: %s. Die ROBUST-Datenbank ist verbunden, aber sie scheint nicht gültig zu sein. "
    1164 
    1165 #. wpml-name: 6b8467e13ae11c479efa8843f1b95826
     1295msgid ""
     1296"Could not connect to the ROBUST database, please verify database name and/or "
     1297"credentials on "
     1298msgstr ""
     1299"Es konnte keine Verbindung zur ROBUST-Datenbank hergestellt werden, bitte "
     1300"überprüfen Sie den Datenbanknamen und/oder die Anmeldedaten auf "
     1301
     1302#: includes/w4osdb.php:88
     1303msgid ""
     1304"Missing tables: %s. The ROBUST database is connected, but some required "
     1305"tables are missing. "
     1306msgstr ""
     1307
    11661308#: includes/widgets.php:10
    11671309msgid "Grid info Widget"
     
    11851327
    11861328#: templates/content-configuration.php:24
    1187 msgid "You can use <a href=\"%1$s\" target=_blank>any compatible viewer</a> to access %2$s."
    1188 msgstr "Sie können <a href=\"%1$s\" target=_blank>jeden kompatiblen Viewer</a> für den Zugriff auf %2$s verwenden."
     1329msgid ""
     1330"You can use <a href=\"%1$s\" target=_blank>any compatible viewer</a> to "
     1331"access %2$s."
     1332msgstr ""
     1333"Sie können <a href=\"%1$s\" target=_blank>jeden kompatiblen Viewer</a> für "
     1334"den Zugriff auf %2$s verwenden."
    11891335
    11901336#: templates/content-configuration.php:30
     
    11981344#: templates/content-configuration.php:33
    11991345msgid "Select \"Preferences\" under the \"Viewer\" menu (or type Ctrl-P)"
    1200 msgstr "Wählen Sie \"Einstellungen\" unter dem Menü \"Viewer\" (oder geben Sie Strg-P ein)"
     1346msgstr ""
     1347"Wählen Sie \"Einstellungen\" unter dem Menü \"Viewer\" (oder geben Sie Strg-"
     1348"P ein)"
    12011349
    12021350#: templates/content-configuration.php:34
     
    12171365
    12181366#: templates/content-configuration.php:43
    1219 msgid "Enter your avatar’s first and last name in the \"Username\" box and your password in the \"Password\" box"
    1220 msgstr "Geben Sie den Vor- und Nachnamen Ihres Avatars in das Feld \"Benutzername\" und Ihr Passwort in das Feld \"Passwort\" ein"
     1367msgid ""
     1368"Enter your avatar’s first and last name in the \"Username\" box and your "
     1369"password in the \"Password\" box"
     1370msgstr ""
     1371"Geben Sie den Vor- und Nachnamen Ihres Avatars in das Feld \"Benutzername\" "
     1372"und Ihr Passwort in das Feld \"Passwort\" ein"
    12211373
    12221374#: templates/content-configuration.php:44
     
    12281380msgstr "Mein Avatar"
    12291381
    1230 #: w4os.php:44
    1231 msgid "You already installed the official release of <strong>W4OS - OpenSimulator Web Interface</strong> from WordPress plugins directory. The developer version has been deactivated and should be uninstalled."
    1232 msgstr "Sie haben bereits die offizielle Version von <strong>W4OS - OpenSimulator Web Interface</strong> aus dem WordPress Plugins Verzeichnis installiert. Die Entwicklerversion ist deaktiviert worden und sollte deinstalliert werden."
    1233 
    1234 #: w4os.php:53
    1235 msgid "Another version of <strong>W4OS - OpenSimulator Web Interface</strong> is installed and active. Duplicate disabled."
    1236 msgstr "Eine andere Version von <strong>W4OS - OpenSimulator Web Interface</strong> ist installiert und aktiv. Duplikat deaktiviert."
    1237 
    1238 #. Plugin Name of the plugin
    1239 #:
    1240 msgid "w4os - OpenSimulator Web Interface"
    1241 msgstr "w4os - OpenSimulator Web-Schnittstelle"
    1242 
    1243 #. Short description.
    1244 #:
    1245 msgid "WordPress interface for OpenSimulator (w4os)"
    1246 msgstr ""
    1247 
    1248 #. Found in description list item.
    1249 #:
    1250 msgid "<strong>Helpers</strong>: currency, search, offline messages"
    1251 msgstr ""
    1252 
    1253 #. Found in faq paragraph.
    1254 #:
    1255 msgid "This is an OpenSimulator design limitation. Regions rely on cached data to display avatar information, and once fetched, these are never updated. As a result, if an avatar's name (or grid URI btw) is changed, the change will not be reflected on regions already visited by this avatar (which will still show the old name), but new visited region will display the new one. This could be somewhat handled for a small standalone grid, but never in hypergrid context. There is no process to force a foreign grid to update its cache, and probably never will."
    1256 msgstr ""
    1257 
    1258 #. Found in faq paragraph.
    1259 #:
    1260 msgid "Yes, it works too. Use OpenSim database credentials when requested for Robust credentials."
    1261 msgstr ""
    1262 
    1263 #. Found in faq paragraph.
    1264 #:
    1265 msgid "No, if your web server has access to your OpenSimulator database."
    1266 msgstr ""
    1267 
    1268 #. Found in faq header.
    1269 #:
    1270 msgid "Why can't I change my avatar name?"
    1271 msgstr ""
    1272 
    1273 #. Found in faq header.
    1274 #:
    1275 msgid "Do I need to run the website on the same server?"
    1276 msgstr ""
    1277 
    1278 #. Found in installation paragraph.
    1279 #:
    1280 msgid "<strong>PHP Modules</strong>: w4os requires php imagemagick module. Also, while they are not required, WordPress recommends activating PHP <strong>curl</strong> and <strong>xml</strong> modules. They are also recommended by W4OS for full functionalties."
    1281 msgstr ""
    1282 
    1283 #. Found in installation paragraph.
    1284 #:
    1285 msgid "<strong>Web Asset Server</strong>: the project requires a web asset server to convert simulator assets (profile pictures, model avatars...) and display them on the website. W4OS provides a web assets service, or you can specify an external web assets service URL instead."
    1286 msgstr ""
    1287 
    1288 #. Found in installation paragraph.
    1289 #:
    1290 msgid "These accounts will be excluded from grid statistics."
    1291 msgstr ""
    1292 
    1293 #. Found in installation paragraph.
    1294 #:
    1295 msgid "The model will now appear in new avatar registration form, with its profile picture."
    1296 msgstr ""
    1297 
    1298 #. Found in installation paragraph.
    1299 #:
    1300 msgid "Avatar models are displayed on new avatar registration and allow new users to start with another appearance than Ruth."
    1301 msgstr ""
    1302 
    1303 #. Found in installation list item.
    1304 #:
    1305 msgid "Make a snapshot and attach it to this account profile"
    1306 msgstr ""
    1307 
    1308 #. Found in installation list item.
    1309 #:
    1310 msgid "Connect in-world as this avatar and change outfit. Any worn clothing or attachment will be passed to the new avatars. Be sure to wear only transfer/copy items."
    1311 msgstr ""
    1312 
    1313 #. Found in installation list item.
    1314 #:
    1315 msgid "Leave \"Model Name\" blank, you are creating a model, not using an existing model to create a user"
    1316 msgstr ""
    1317 
    1318 #. Found in installation list item.
    1319 #:
    1320 msgid "You can leave \"Email\" and \"User ID\" blank"
    1321 msgstr ""
    1322 
    1323 #. Found in installation list item.
    1324 #:
    1325 msgid "The rest of the name will be displayed in the form, so make it relevant"
    1326 msgstr ""
    1327 
    1328 #. Found in installation list item.
    1329 #:
    1330 msgid "FirstName or LastName has to match your W4OS Avatar models settings"
    1331 msgstr ""
    1332 
    1333 #. Found in installation list item.
    1334 #:
    1335 msgid "From robust console, create a user named accordingly (for example, \"Female Default\", Default John\", ...).\n"
    1336 "    <code>R.O.B.U.S.T. # create user Default John\n"
    1337 "Password: ************************\n"
    1338 "Email []: (leave empty)\n"
    1339 "User ID (enter for random) []:  (leave empty)\n"
    1340 "Model name []: (leave empty)\n"
    1341 "15:27:58 - [USER ACCOUNT SERVICE]: Account Default John xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx created successfully</code>\n"
    1342 "\n"
    1343 "<ul>\n"
    1344 "<li>A password is needed as you need connect in-world to configure it.\n"
    1345 "Choose a strong password, any hack could affect all new users."
    1346 msgstr ""
    1347 
    1348 #. Found in installation list item.
    1349 #:
    1350 msgid "Check (or change) their naming convention in Admin &gt; OpenSimulator &gt; Settings &gt; Avatar models"
    1351 msgstr ""
    1352 
    1353 #. Found in installation list item.
    1354 #:
    1355 msgid "Create a page with the same slug as Profile permalink.\n"
    1356 "(This will be handled in a more convenient way in the future)"
    1357 msgstr ""
    1358 
    1359 #. Found in installation list item.
    1360 #:
    1361 msgid "Set permalinks and profile page\n"
    1362 "\n"
    1363 "<ul>\n"
    1364 "<li>Visit Settings &gt; Permalinks, confirm W4OS slugs (profile and assets) and save."
    1365 msgstr ""
    1366 
    1367 #. Found in installation list item.
    1368 #:
    1369 msgid "Download and activate the latest stable release"
    1370 msgstr ""
    1371 
    1372 #. Found in installation list item.
    1373 #:
    1374 msgid "You should have a working assets server (see Dependencies section below)"
    1375 msgstr ""
    1376 
    1377 #. Found in installation header.
    1378 #:
    1379 msgid "Dependencies"
    1380 msgstr ""
    1381 
    1382 #. Found in installation header.
    1383 #:
    1384 msgid "Create avatar models"
    1385 msgstr ""
    1386 
    1387 #. Found in installation header.
    1388 #:
    1389 msgid "WordPress configuration"
    1390 msgstr ""
    1391 
    1392 #. Found in description paragraph.
    1393 #:
    1394 msgid "See (https://github.com/GuduleLapointe/w4os/) for complete status and changelog."
    1395 msgstr ""
    1396 
    1397 #. Found in description paragraph.
    1398 #:
    1399 msgid "The free version from WordPress plugins directory and the <a href=\"https://magiiic.com/wordpress/plugins/w4os/\">paid version</a> are technically the same. The only difference is the way you support this plugin developement: with the free version, you join the community experience (please rate and comment), while the paid version helps us to dedicate resources to this project."
    1400 msgstr ""
    1401 
    1402 #. Found in description paragraph.
    1403 #:
    1404 msgid "Ready to use WordPress interface for <a href=\"http://opensimulator.org/\">OpenSimulator</a>. Provides user registration, default avatar model choice, login info, statistics and a web assets server for grids or standalone simulators."
    1405 msgstr ""
    1406 
    1407 #. Found in description list item.
    1408 #:
    1409 msgid "separate OpenSimulator libraries and WordPress specific code, to allow easy integration in other CMS"
    1410 msgstr ""
    1411 
    1412 #. Found in description list item.
    1413 #:
    1414 msgid "Gudz Teleport Board project integration (based on user picks)"
    1415 msgstr ""
    1416 
    1417 #. Found in description list item.
    1418 #:
    1419 msgid "2do HYPEvents project integration <a href=\"https://2do.pm\">https://2do.pm</a>"
    1420 msgstr ""
    1421 
    1422 #. Found in description list item.
    1423 #:
    1424 msgid "Deactivate (recommended) or delete (experimental) grid user when deleting wp account"
    1425 msgstr ""
    1426 
    1427 #. Found in description list item.
    1428 #:
    1429 msgid "[x] Helpers (search, currency, map...)"
    1430 msgstr ""
    1431 
    1432 #. Found in description list item.
    1433 #:
    1434 msgid "Web edit profile"
    1435 msgstr ""
    1436 
    1437 #. Found in description list item.
    1438 #:
    1439 msgid "Better basic layout"
    1440 msgstr ""
    1441 
    1442 #. Found in description list item.
    1443 #:
    1444 msgid "Switch set in-world prefs for public profiles"
    1445 msgstr ""
    1446 
    1447 #. Found in description list item.
    1448 #:
    1449 msgid "Improve avatar profile\n"
    1450 "\n"
    1451 "<ul>\n"
    1452 "<li>Switch to allow web profile"
    1453 msgstr ""
    1454 
    1455 #. Found in description list item.
    1456 #:
    1457 msgid "[x] Web Assets server"
    1458 msgstr ""
    1459 
    1460 #. Found in description list item.
    1461 #:
    1462 msgid "Auth with avatar credentials (if no matching wp account, create one)"
    1463 msgstr ""
    1464 
    1465 #. Found in description list item.
    1466 #:
    1467 msgid "Manual and cron Grid/WP users sync"
    1468 msgstr ""
    1469 
    1470 #. Found in description list item.
    1471 #:
    1472 msgid "Login page / Widget"
    1473 msgstr ""
    1474 
    1475 #. Found in description list item.
    1476 #:
    1477 msgid "<strong>Web assets server</strong>: the needed bridge to display in-world images on a website"
    1478 msgstr ""
    1479 
    1480 #. Found in description list item.
    1481 #:
    1482 msgid "<strong>Web profiles</strong>: excerpt of the avatar's profile"
    1483 msgstr ""
    1484 
    1485 #. Found in description header.
    1486 #:
    1487 msgid "Medium term"
    1488 msgstr ""
    1489 
    1490 #. Found in description header.
    1491 #:
    1492 msgid "Paid version"
    1493 msgstr ""
    1494 
    1495 #. Screenshot description.
    1496 #:
    1497 msgid "Web assets server settings"
    1498 msgstr ""
    1499 
    1500 #. Screenshot description.
    1501 #:
    1502 msgid "Settings page"
    1503 msgstr ""
    1504 
    1505 #. Screenshot description.
    1506 #:
    1507 msgid "Avatar registration form in WooCommerce My Account dashboard."
    1508 msgstr ""
    1509 
    1510 #. Screenshot description.
    1511 #:
    1512 msgid "Grid info and grid status examples"
    1513 msgstr ""
    1514 
    1515 #. Found in faq header.
    1516 #:
    1517 msgid "Can I use this plugin for my standalone simulator?"
    1518 msgstr ""
    1519 
    1520 #. Found in installation list item.
    1521 #:
    1522 msgid "Robust server must be installed before setting up W4OS."
    1523 msgstr ""
    1524 
    1525 #. Found in installation list item.
    1526 #:
    1527 msgid "insert <code>[gridinfo]</code> and <code>[gridstatus]</code> shortcodes in a page or in a sidebar widget"
    1528 msgstr ""
    1529 
    1530 #. Found in installation list item.
    1531 #:
    1532 msgid "Enter your robust database connection details and submit. If you get a\n"
    1533 "database connection error, it might come from a case-sensitivity issue (see\n"
    1534 "https://github.com/GuduleLapointe/w4os/issues/2#issuecomment-923299674)"
    1535 msgstr ""
    1536 
    1537 #. Found in installation list item.
    1538 #:
    1539 msgid "Visit OpenSim settings (admin menu &gt; \"Opensim\" &gt; \"Settings\")\n"
    1540 "\n"
    1541 "<ul>\n"
    1542 "<li>Enter your grid name and grid URI (like example.org:8002 without http://)"
    1543 msgstr ""
    1544 
    1545 #. Found in installation list item.
    1546 #:
    1547 msgid "To allow users to choose an avatar on registration, you must enable user\n"
    1548 "profiles in Robust.HG.ini (update [UserProfilesService], [ServiceList] and\n"
    1549 "[UserProfiles] sections)"
    1550 msgstr ""
    1551 
    1552 #. Found in description paragraph.
    1553 #:
    1554 msgid "See Features and Roadmap sections for current and upcoming functionalties."
    1555 msgstr ""
    1556 
    1557 #. Found in description list item.
    1558 #:
    1559 msgid "WooCommerce Subscriptions integration for user-owned Regions or other pay-for services"
    1560 msgstr ""
    1561 
    1562 #. Found in description list item.
    1563 #:
    1564 msgid "User's own regions control (create, start, stop, backup)"
    1565 msgstr ""
    1566 
    1567 #. Found in description list item.
    1568 #:
    1569 msgid "Choice between Robust console or database connection"
    1570 msgstr ""
    1571 
    1572 #. Found in description list item.
    1573 #:
    1574 msgid "Admin create models (from current appearance)"
    1575 msgstr ""
    1576 
    1577 #. Found in description list item.
    1578 #:
    1579 msgid "Admin create users"
    1580 msgstr ""
    1581 
    1582 #. Found in description list item.
    1583 #:
    1584 msgid "[x] get grid info from http://login.uri:8002/get_grid_info"
    1585 msgstr ""
    1586 
    1587 #. Found in description list item.
    1588 #:
    1589 msgid "Admin Use sim/grid configuration file to fetch settings if on the same host"
    1590 msgstr ""
    1591 
    1592 #. Found in description list item.
    1593 #:
    1594 msgid "Admin Create region"
    1595 msgstr ""
    1596 
    1597 #. Found in description list item.
    1598 #:
    1599 msgid "Admin Start / Stop regions"
    1600 msgstr ""
    1601 
    1602 #. Found in description list item.
    1603 #:
    1604 msgid "Public avatar profile"
    1605 msgstr ""
    1606 
    1607 #. Found in description list item.
    1608 #:
    1609 msgid "exclude models from grid stats"
    1610 msgstr ""
    1611 
    1612 #. Found in description list item.
    1613 #:
    1614 msgid "naming scheme of default models"
    1615 msgstr ""
    1616 
    1617 #. Found in description list item.
    1618 #:
    1619 msgid "<strong>OpenSimulator settings page</strong>:\n"
    1620 "\n"
    1621 "<ul>\n"
    1622 "<li>grid name, login uri and database connection settings"
    1623 msgstr ""
    1624 
    1625 #. Found in description list item.
    1626 #:
    1627 msgid "<strong>Reserved names</strong>: avatar whose first name or last name is \"Default\", \"Test\", \"Admin\" or the pattern used for appearance models are disallowed for public (such avatars must be created by admins from Robust console)"
    1628 msgstr ""
    1629 
    1630 #. Found in description list item.
    1631 #:
    1632 msgid "Avatar and website passwords are synchronized"
    1633 msgstr ""
    1634 
    1635 #. Found in description list item.
    1636 #:
    1637 msgid "Choose avatar look from default models"
    1638 msgstr ""
    1639 
    1640 #. Found in description list item.
    1641 #:
    1642 msgid "Avatar tab in account dashboard on WooCommerce websites"
    1643 msgstr ""
    1644 
    1645 #. Found in description list item.
    1646 #:
    1647 msgid "<code>[gridprofile]</code> shortcode can be inserted in any custom page"
    1648 msgstr ""
    1649 
    1650 #. Found in description list item.
    1651 #:
    1652 msgid "<strong>Avatar creation</strong>:\n"
    1653 "\n"
    1654 "<ul>\n"
    1655 "<li>Opensimulator section in standard wp account page"
    1656 msgstr ""
    1657 
    1658 #. Found in description list item.
    1659 #:
    1660 msgid "<strong>Grid status</strong>: <code>[gridstatus]</code> shortcode and admin dashboard widgets"
    1661 msgstr ""
    1662 
    1663 #. Found in description list item.
    1664 #:
    1665 msgid "<strong>Grid info</strong>: <code>[gridinfo]</code> shortcode and admin dashboard widgets"
    1666 msgstr ""
    1667 
    1668 #. Found in description header.
    1669 #:
    1670 msgid "Long term"
    1671 msgstr ""
    1672 
    1673 #. Found in description header.
    1674 #:
    1675 msgid "Roadmap"
    1676 msgstr ""
    1677 
    1678 #. Found in description header.
    1679 #:
    1680 msgid "Features"
    1681 msgstr ""
    1682 
    1683 #. Found in changelog list item.
    1684 #:
    1685 msgid "fix opensim db not loaded by helpers (not properly fixed in a6a3b5bbea1c9cfbd091a38b6ff33a79b2ddf9b3)"
    1686 msgstr ""
    1687 
    1688 #. Found in changelog list item.
    1689 #:
    1690 msgid "fix #57 password not updated on grid when using password recovery in WordPdress"
    1691 msgstr ""
    1692 
    1693 #. Found in changelog list item.
    1694 #:
    1695 msgid "fix fatal errors in helpers when database is not connected"
    1696 msgstr ""
    1697 
    1698 #. Found in changelog list item.
    1699 #:
    1700 msgid "fix fatal error in helpers for poorly encoded unicode text sources"
    1701 msgstr ""
    1702 
    1703 #. Found in changelog list item.
    1704 #:
    1705 msgid "added password reset link to profile page"
    1706 msgstr ""
    1707 
    1708 #. Found in changelog list item.
    1709 #:
    1710 msgid "fix profile picture aspect ratio (4/3, as in viewer)"
    1711 msgstr ""
    1712 
    1713 #. Found in changelog list item.
    1714 #:
    1715 msgid "avoid fatal error if php xml-rpc is not installed, show error notice instead"
    1716 msgstr ""
    1717 
    1718 #. Found in changelog list item.
    1719 #:
    1720 msgid "fix fatal error and warnings with popular-places shortcode"
    1721 msgstr ""
    1722 
    1723 #. Found in changelog list item.
    1724 #:
    1725 msgid "fix regression in 2.3.1"
    1726 msgstr ""
    1727 
    1728 #. Found in changelog list item.
    1729 #:
    1730 msgid "helpers migrated from old mysqli db connection method to PDO"
    1731 msgstr ""
    1732 
    1733 #. Found in changelog list item.
    1734 #:
    1735 msgid "separate helpers settings page"
    1736 msgstr ""
    1737 
    1738 #. Found in changelog list item.
    1739 #:
    1740 msgid "dropped aurora and OpenSim 0.6 support"
    1741 msgstr ""
    1742 
    1743 #. Found in changelog list item.
    1744 #:
    1745 msgid "added currency conversion rate setting"
    1746 msgstr ""
    1747 
    1748 #. Found in changelog list item.
    1749 #:
    1750 msgid "added prebuilt binaries for opensim 0.9.1 and 0.9.2"
    1751 msgstr ""
    1752 
    1753 #. Found in changelog list item.
    1754 #:
    1755 msgid "new events parser (fetch events from 2do.pm or another HYPEvents server)"
    1756 msgstr ""
    1757 
    1758 #. Found in changelog list item.
    1759 #:
    1760 msgid "new Popular Places block and [popular-places] shortcode"
    1761 msgstr ""
    1762 
    1763 #. Found in changelog list item.
    1764 #:
    1765 msgid "new currency helpers"
    1766 msgstr ""
    1767 
    1768 #. Found in changelog list item.
    1769 #:
    1770 msgid "new offline messages helper. Messages are stored in OfflineMessageModule V2 format, so one can switch between core and external service (fix #47)"
    1771 msgstr ""
    1772 
    1773 #. Found in changelog list item.
    1774 #:
    1775 msgid "new search helper"
    1776 msgstr ""
    1777 
    1778 #. Found in changelog list item.
    1779 #:
    1780 msgid "updated translations"
    1781 msgstr ""
    1782 
    1783 #. Found in changelog list item.
    1784 #:
    1785 msgid "tested up to wp 5.8.3"
    1786 msgstr ""
    1787 
    1788 #. Found in changelog paragraph.
    1789 #:
    1790 msgid "show a link to profile page instead of the form in profile shortcode"
    1791 msgstr ""
    1792 
    1793 #. Found in changelog paragraph.
    1794 #:
    1795 msgid "fix Fatal error Call to undefined function each()"
    1796 msgstr ""
    1797 
    1798 #. Found in changelog paragraph.
    1799 #:
    1800 msgid "removed Avatar section from WooCommerce account page until fixed"
    1801 msgstr ""
    1802 
    1803 #. Found in changelog paragraph.
    1804 #:
    1805 msgid "added Partner, Wants, Skills and RL to web profile"
    1806 msgstr ""
    1807 
    1808 #. Found in changelog paragraph.
    1809 #:
    1810 msgid "added option to replace name by avatar name in users list"
    1811 msgstr ""
    1812 
    1813 #. Found in changelog paragraph.
    1814 #:
    1815 msgid "new check grid info url validity (cron and manual)"
    1816 msgstr ""
    1817 
    1818 #. Found in changelog list item.
    1819 #:
    1820 msgid "For full change history see <a href=\"https://github.com/GuduleLapointe/w4os/commits/master\">GitHub repository</a>"
    1821 msgstr ""
    1822 
    1823 #. Found in changelog list item.
    1824 #:
    1825 msgid "Official git repository changed to GitHub"
    1826 msgstr ""
    1827 
    1828 #. Found in changelog list item.
    1829 #:
    1830 msgid "Now distributed via WordPress plugins directory"
    1831 msgstr ""
    1832 
    1833 #. Found in changelog list item.
    1834 #:
    1835 msgid "shorter \"Avatar\" label, removed uuid in gridprofile shortcode"
    1836 msgstr ""
    1837 
    1838 #. Found in changelog list item.
    1839 #:
    1840 msgid "More comprehensive database connection error reporting"
    1841 msgstr ""
    1842 
    1843 #. Found in changelog list item.
    1844 #:
    1845 msgid "use version provided by .version if present"
    1846 msgstr ""
    1847 
    1848 #. Found in changelog list item.
    1849 #:
    1850 msgid "replace wp avatar picture with in-world profile picture if set"
    1851 msgstr ""
    1852 
    1853 #. Found in changelog list item.
    1854 #:
    1855 msgid "guess new avatar name from user_login if first name and last name not provided"
    1856 msgstr ""
    1857 
    1858 #. Found in changelog list item.
    1859 #:
    1860 msgid "lighter template for profiles when loaded from the viewer"
    1861 msgstr ""
    1862 
    1863 #. Found in changelog list item.
    1864 #:
    1865 msgid "added imagick to the recommended php extensions"
    1866 msgstr ""
    1867 
    1868 #. Found in changelog list item.
    1869 #:
    1870 msgid "show image placeholder if profile picture not set"
    1871 msgstr ""
    1872 
    1873 #. Found in changelog list item.
    1874 #:
    1875 msgid "responsive profile display for smartphones"
    1876 msgstr ""
    1877 
    1878 #. Found in changelog list item.
    1879 #:
    1880 msgid "fix slow assets, store cached images in upload folder to serve them directly by the web server"
    1881 msgstr ""
    1882 
    1883 #. Found in changelog list item.
    1884 #:
    1885 msgid "fix a couple of fatal errors"
    1886 msgstr ""
    1887 
    1888 #. Found in changelog list item.
    1889 #:
    1890 msgid "fix user login broken if w4os_login_page is set to profile and OpenSim database is not connected"
    1891 msgstr ""
    1892 
    1893 #. Found in changelog list item.
    1894 #:
    1895 msgid "fix missing error messages on login page"
    1896 msgstr ""
    1897 
    1898 #. Found in changelog list item.
    1899 #:
    1900 msgid "fix avatar model not shown if default account never connected"
    1901 msgstr ""
    1902 
    1903 #. Found in changelog list item.
    1904 #:
    1905 msgid "fix errors not displayed on avatar creation page"
    1906 msgstr ""
    1907 
    1908 #. Found in changelog list item.
    1909 #:
    1910 msgid "fix inventory items not transferred to new avatars"
    1911 msgstr ""
    1912 
    1913 #. Found in changelog list item.
    1914 #:
    1915 msgid "fix avatar not created, or not created at first attempt"
    1916 msgstr ""
    1917 
    1918 #. Found in changelog list item.
    1919 #:
    1920 msgid "fix squished profile picture"
    1921 msgstr ""
    1922 
    1923 #. Found in changelog list item.
    1924 #:
    1925 msgid "fix duplicate admin notices"
    1926 msgstr ""
    1927 
    1928 #. Found in changelog list item.
    1929 #:
    1930 msgid "removed W4OS Grid Info and W4OS Grid Status widgets (now available as blocks)"
    1931 msgstr ""
    1932 
    1933 #. Found in changelog list item.
    1934 #:
    1935 msgid "added in-world profile link to profile page"
    1936 msgstr ""
    1937 
    1938 #. Found in changelog list item.
    1939 #:
    1940 msgid "added hop:// link to login uri"
    1941 msgstr ""
    1942 
    1943 #. Found in changelog list item.
    1944 #:
    1945 msgid "added Born and Last Seen columns to users list"
    1946 msgstr ""
    1947 
    1948 #. Found in changelog list item.
    1949 #:
    1950 msgid "added buttons to create missing pages on status dashboard"
    1951 msgstr ""
    1952 
    1953 #. Found in changelog list item.
    1954 #:
    1955 msgid "added lost password and register links on login page"
    1956 msgstr ""
    1957 
    1958 #. Found in changelog list item.
    1959 #:
    1960 msgid "added states in admin pages list for known urls (from grid_info)"
    1961 msgstr ""
    1962 
    1963 #. Found in changelog list item.
    1964 #:
    1965 msgid "added assets permalink settings"
    1966 msgstr ""
    1967 
    1968 #. Found in changelog list item.
    1969 #:
    1970 msgid "added profile image to gridprofile"
    1971 msgstr ""
    1972 
    1973 #. Found in changelog list item.
    1974 #:
    1975 msgid "new grid info settings are fetched from Robust server if set or localhost:8002"
    1976 msgstr ""
    1977 
    1978 #. Found in changelog list item.
    1979 #:
    1980 msgid "new admin can create avatars for existing users"
    1981 msgstr ""
    1982 
    1983 #. Found in changelog list item.
    1984 #:
    1985 msgid "new grid based authentication; if wp user exists, password is reset to grid password; if not, a new wp user is created"
    1986 msgstr ""
    1987 
    1988 #. Found in changelog list item.
    1989 #:
    1990 msgid "new grid and wordpress users sync"
    1991 msgstr ""
    1992 
    1993 #. Found in changelog list item.
    1994 #:
    1995 msgid "new blocks support"
    1996 msgstr ""
    1997 
    1998 #. Found in changelog list item.
    1999 #:
    2000 msgid "new config instructions for new grid users"
    2001 msgstr ""
    2002 
    2003 #. Found in changelog list item.
    2004 #:
    2005 msgid "new profile page"
    2006 msgstr ""
    2007 
    2008 #. Found in changelog list item.
    2009 #:
    2010 msgid "new web assets server"
    2011 msgstr ""
    2012 
    2013 #. Found in changelog list item.
    2014 #:
    2015 msgid "fix localisation not loading"
    2016 msgstr ""
    2017 
    2018 #. Found in changelog list item.
    2019 #:
    2020 msgid "fix fatal error when trying to display  WooCommerce Avatar tab form in My Account"
    2021 msgstr ""
    2022 
    2023 #. Found in changelog list item.
    2024 #:
    2025 msgid "added screenshots"
    2026 msgstr ""
    2027 
    2028 #. Found in changelog list item.
    2029 #:
    2030 msgid "added w4os-shortcode classes"
    2031 msgstr ""
    2032 
    2033 #. Found in changelog list item.
    2034 #:
    2035 msgid "added login form to gridprofile shortcode when not connected instead of login message"
    2036 msgstr ""
    2037 
    2038 #. Found in changelog list item.
    2039 #:
    2040 msgid "changed update server library to <a href=\"https://github.com/froger-me/wp-plugin-update-server\">frogerme's WP Plugin Update Server</a>"
    2041 msgstr ""
    2042 
    2043 #. Found in changelog list item.
    2044 #:
    2045 msgid "fixed conflict with other extensions settings pages"
    2046 msgstr ""
    2047 
    2048 #. Found in changelog list item.
    2049 #:
    2050 msgid "fix typo in banners and icons urls, can't believe I didn't see this before..."
    2051 msgstr ""
    2052 
    2053 #. Found in changelog list item.
    2054 #:
    2055 msgid "fix \"Yes\" and \"No\" translations"
    2056 msgstr ""
    2057 
    2058 #. Found in changelog list item.
    2059 #:
    2060 msgid "added changelog, banners and icons to view details"
    2061 msgstr ""
    2062 
    2063 #. Found in changelog list item.
    2064 #:
    2065 msgid "fix #2 Database check fails if mysql is case insensitive"
    2066 msgstr ""
    2067 
    2068 #. Found in changelog list item.
    2069 #:
    2070 msgid "fix #4  Database connection error triggered if userprofile table is absent"
    2071 msgstr ""
    2072 
    2073 #. Found in changelog list item.
    2074 #:
    2075 msgid "tested up to 6.0.1"
    2076 msgstr ""
    2077 
    2078 #. Found in changelog list item.
    2079 #:
    2080 msgid "only check once if w4os db is connected"
    2081 msgstr ""
    2082 
    2083 #. Found in changelog list item.
    2084 #:
    2085 msgid "fix #10 invalid JSON response when adding [w4os_profile] shortcode element"
    2086 msgstr ""
    2087 
    2088 #. Found in changelog list item.
    2089 #:
    2090 msgid "more detailed error messages for avatar creation"
    2091 msgstr ""
    2092 
    2093 #. Found in changelog list item.
    2094 #:
    2095 msgid "added login page link to message displayed when trying to see profile while not connected"
    2096 msgstr ""
    2097 
    2098 #. Found in changelog list item.
    2099 #:
    2100 msgid "fix wrong letter cases in auth table name"
    2101 msgstr ""
    2102 
    2103 #. Found in changelog list item.
    2104 #:
    2105 msgid "better css loading"
    2106 msgstr ""
    2107 
    2108 #. Found in changelog list item.
    2109 #:
    2110 msgid "fix only show profile form for current user"
    2111 msgstr ""
    2112 
    2113 #. Found in changelog list item.
    2114 #:
    2115 msgid "renamed [w4os_profile] shortcode as [gridprofile] for consistency. w4os_profile is kept for backwards compatibility"
    2116 msgstr ""
    2117 
    2118 #. Found in changelog list item.
    2119 #:
    2120 msgid "use plugin dir to detect slug instead of hardcoded value"
    2121 msgstr ""
    2122 
    2123 #. Found in changelog list item.
    2124 #:
    2125 msgid "fix regression, automatic updates restored. Users with version 2.0 to 2.0.3 will need to reinstall the plugin from source. Sorry."
    2126 msgstr ""
    2127 
    2128 #. Found in changelog list item.
    2129 #:
    2130 msgid "fix localizations not loading"
    2131 msgstr ""
    2132 
    2133 #. Found in changelog list item.
    2134 #:
    2135 msgid "renamed plugin as W4OS - OpenSimulator Web Interface"
    2136 msgstr ""
    2137 
    2138 #. Found in changelog list item.
    2139 #:
    2140 msgid "fix other WP plugins directory requirements"
    2141 msgstr ""
    2142 
    2143 #: admin/settings.php:129
    2144 msgid "Table %s not found. User Profiles must be activated in Robust to enable profile page."
    2145 msgstr ""
    2146 
    2147 #: admin/status-page.php:15
    2148 msgid "PHP xml-rpc is required but is not installed."
    2149 msgstr ""
    2150 
    2151 #: includes/profile.php:132 tmp/class-avatar.php:277
    2152 msgid "Change password"
    2153 msgstr ""
    2154 
    2155 #: includes/profile.php:132
    2156 msgid "Password reset link"
    2157 msgstr ""
    2158 
    2159 #: includes/w4osdb.php:88
    2160 msgid "Missing tables: %s. The ROBUST database is connected, but some required tables are missing. "
    2161 msgstr ""
    2162 
    21631382#: tmp/class-avatar.php:130 tmp/class-avatar.php:151 tmp/class-avatar.php:164
    21641383msgid "Avatars"
     
    22861505
    22871506#: tmp/class-avatar.php:221
    2288 msgid "Please provide first and last name, only letters and numbers, separated by a space."
     1507msgid ""
     1508"Please provide first and last name, only letters and numbers, separated by a "
     1509"space."
    22891510msgstr ""
    22901511
     
    23021523
    23031524#: tmp/class-avatar.php:259
    2304 msgid "Optional. If set, the avatar will be linked to any matching WP user account."
     1525msgid ""
     1526"Optional. If set, the avatar will be linked to any matching WP user account."
    23051527msgstr ""
    23061528
     
    23471569msgstr ""
    23481570
     1571#: w4os.php:44
     1572msgid ""
     1573"You already installed the official release of <strong>W4OS - OpenSimulator "
     1574"Web Interface</strong> from WordPress plugins directory. The developer "
     1575"version has been deactivated and should be uninstalled."
     1576msgstr ""
     1577"Sie haben bereits die offizielle Version von <strong>W4OS - OpenSimulator "
     1578"Web Interface</strong> aus dem WordPress Plugins Verzeichnis installiert. "
     1579"Die Entwicklerversion ist deaktiviert worden und sollte deinstalliert werden."
     1580
     1581#: w4os.php:53
     1582msgid ""
     1583"Another version of <strong>W4OS - OpenSimulator Web Interface</strong> is "
     1584"installed and active. Duplicate disabled."
     1585msgstr ""
     1586"Eine andere Version von <strong>W4OS - OpenSimulator Web Interface</strong> "
     1587"ist installiert und aktiv. Duplikat deaktiviert."
     1588
    23491589#: blocks/popular-places/index.js:27 blocks/popular-places/index.js:79
    23501590msgid "Popular Places"
    23511591msgstr ""
    23521592
     1593#~ msgid "w4os - OpenSimulator Web Interface (dev)"
     1594#~ msgstr "w4os - OpenSimulator Web-Schnittstelle (dev)"
     1595
     1596#~ msgid ""
     1597#~ "Missing tables: %s. The ROBUST database is connected, but it does not "
     1598#~ "seem valid. "
     1599#~ msgstr ""
     1600#~ "Fehlende Tabellen: %s. Die ROBUST-Datenbank ist verbunden, aber sie "
     1601#~ "scheint nicht gültig zu sein. "
  • w4os-opensimulator-web-interface/trunk/languages/w4os-de_DE.po-json-06df46ff2b3937e7001c361bd6cf1b6d.json

    r2789725 r2831990  
    1 {"translation-revision-date":"2022-09-24T15:05:42-04:00","generator":"WP-CLI\/2.6.0","source":"blocks\/w4os-gridprofile-block\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"de","plural-forms":"nplurals=2; plural=(n != 1);"},"Grid profile":["Grid Profil"]}}}
     1{"translation-revision-date":"","generator":"WP-CLI\/2.6.0","source":"blocks\/w4os-gridprofile-block\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"de","plural-forms":"nplurals=2; plural=(n != 1);"},"Grid profile":["Grid Profil"]}}}
  • w4os-opensimulator-web-interface/trunk/languages/w4os-de_DE.po-json-273992b7d6f98b15a63a1776c2a41a65.json

    r2789725 r2831990  
    1 {"translation-revision-date":"2022-09-24T15:05:42-04:00","generator":"WP-CLI\/2.6.0","source":"blocks\/popular-places\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"de","plural-forms":"nplurals=2; plural=(n != 1);"},"Popular Places":[""]}}}
     1{"translation-revision-date":"","generator":"WP-CLI\/2.6.0","source":"blocks\/popular-places\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"de","plural-forms":"nplurals=2; plural=(n != 1);"},"Popular Places":[""]}}}
  • w4os-opensimulator-web-interface/trunk/languages/w4os-de_DE.po-json-b7fa42b10b5a72ab058777ced84f24c3.json

    r2789725 r2831990  
    1 {"translation-revision-date":"2022-09-24T15:05:42-04:00","generator":"WP-CLI\/2.6.0","source":"blocks\/w4os-gridinfo-block\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"de","plural-forms":"nplurals=2; plural=(n != 1);"},"Grid info":["Grid info"]}}}
     1{"translation-revision-date":"","generator":"WP-CLI\/2.6.0","source":"blocks\/w4os-gridinfo-block\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"de","plural-forms":"nplurals=2; plural=(n != 1);"},"Grid info":["Grid info"]}}}
  • w4os-opensimulator-web-interface/trunk/languages/w4os-de_DE.po-json-c8b0b80a28abe12f9f976e4a01981e7f.json

    r2789725 r2831990  
    1 {"translation-revision-date":"2022-09-24T15:05:42-04:00","generator":"WP-CLI\/2.6.0","source":"blocks\/w4os-gridstatus-block\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"de","plural-forms":"nplurals=2; plural=(n != 1);"},"Grid status":["Grid status"]}}}
     1{"translation-revision-date":"","generator":"WP-CLI\/2.6.0","source":"blocks\/w4os-gridstatus-block\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"de","plural-forms":"nplurals=2; plural=(n != 1);"},"Grid status":["Grid status"]}}}
  • w4os-opensimulator-web-interface/trunk/languages/w4os-fr_FR.po

    r2789725 r2831990  
    33"Project-Id-Version: w4os\n"
    44"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/w4os-dev\n"
    5 "POT-Creation-Date: 2022-09-24T15:05:37-04:00\n"
     5"POT-Creation-Date: 2022-12-11T14:43:43-04:00\n"
    66"PO-Revision-Date: \n"
    77"Last-Translator: \n"
     
    5858msgstr "Assistants"
    5959
    60 #: admin/admin-init.php:105 includes/profile.php:118 tmp/class-avatar.php:315
     60#: admin/admin-init.php:105 includes/profile.php:119 tmp/class-avatar.php:315
    6161msgid "Avatar Name"
    6262msgstr "Nom de l'avatar"
    6363
    64 #: admin/admin-init.php:111 admin/admin-init.php:117 includes/profile.php:124
     64#: admin/admin-init.php:111 admin/admin-init.php:117 includes/profile.php:125
    6565#: tmp/class-avatar.php:350
    6666msgid "Born"
     
    8383msgstr "Sans avatar"
    8484
    85 #: admin/admin-init.php:208
     85#: admin/admin-init.php:210
    8686msgid "Filter users..."
    8787msgstr "Filtrer les utilisateurs..."
    8888
    89 #: admin/admin-init.php:214
     89#: admin/admin-init.php:216
    9090msgid "Filter"
    9191msgstr "Filtre"
    9292
    93 #: admin/admin-init.php:260
     93#: admin/admin-init.php:262
    9494msgid "OpenSimulator Profile"
    9595msgstr "OpenSimulator - Profil"
    9696
    97 #: admin/admin-init.php:262
     97#: admin/admin-init.php:264
    9898msgid "OpenSimulator Splash"
    9999msgstr "OpenSimulator - Splash"
    100100
    101 #: admin/admin-init.php:264
     101#: admin/admin-init.php:266
    102102msgid "OpenSimulator Search"
    103103msgstr "OpenSimulator - Recherche"
    104104
    105 #: admin/admin-init.php:266
     105#: admin/admin-init.php:268
    106106msgid "OpenSimulator Economy"
    107107msgstr "OpenSimulator - Économie"
    108108
    109 #: admin/admin-init.php:268
     109#: admin/admin-init.php:270
    110110msgid "OpenSimulator About"
    111111msgstr "OpenSimulator - À propos"
    112112
    113 #: admin/admin-init.php:270
     113#: admin/admin-init.php:272
    114114msgid "OpenSimulator Register"
    115115msgstr "OpenSimulator - Inscription"
    116116
    117 #: admin/admin-init.php:272
     117#: admin/admin-init.php:274
    118118msgid "OpenSimulator Password"
    119119msgstr "OpenSimulator - Mot de passe"
    120120
    121 #: admin/admin-init.php:274
     121#: admin/admin-init.php:276
    122122msgid "OpenSimulator Offline Messages"
    123123msgstr "OpenSimulator - Messages hors-ligne"
    124124
    125 #: admin/admin-init.php:286 admin/admin-init.php:300
     125#: admin/admin-init.php:288 admin/admin-init.php:302
    126126msgid "The followed link has expired, please try again"
    127127msgstr "Le lien suivi a expiré, merci de réessayer"
    128128
    129 #: admin/admin-init.php:307
     129#: admin/admin-init.php:309
    130130msgid "Page %s already exists."
    131131msgstr "La page %s existe déjà."
    132132
    133 #: admin/admin-init.php:324
     133#: admin/admin-init.php:326
    134134msgid "New page %s created."
    135135msgstr "Nouvelle page %s créée."
    136136
    137 #: admin/admin-init.php:328
     137#: admin/admin-init.php:330
    138138msgid "Error while creating page %s."
    139139msgstr "Erreur lors de la création de la page %s."
    140140
    141 #: admin/admin-init.php:340
     141#: admin/admin-init.php:342
    142142msgid "Avatar profile"
    143143msgstr "Profil d'avatar"
    144144
    145 #: admin/admin-init.php:341
     145#: admin/admin-init.php:343
    146146msgid "The base URL for avatar web profiles."
    147147msgstr "La base d'URL pour les profils d'avatars."
    148148
    149 #: admin/admin-init.php:344
     149#: admin/admin-init.php:346
    150150msgid "Search Service"
    151151msgstr "Service de recherche"
    152152
    153 #: admin/admin-init.php:345
     153#: admin/admin-init.php:347
    154154msgid ""
    155155"Search service used by the viewer. Search can be provided by the simulator "
     
    162162"OpenSimSearch.Modules.dll."
    163163
    164 #: admin/admin-init.php:355
     164#: admin/admin-init.php:357
    165165msgid "Web Search"
    166166msgstr "Recherche web"
    167167
    168 #: admin/admin-init.php:356
     168#: admin/admin-init.php:358
    169169msgid ""
    170170"Web tab of viewer search windows. Relevant if you have a search page "
     
    174174"recherche fournissant des résultats pour la grille."
    175175
    176 #: admin/admin-init.php:366 admin/settings.php:294
     176#: admin/admin-init.php:368 admin/settings.php:294
    177177msgid "Offline messages"
    178178msgstr "Messages hors-ligne"
    179179
    180 #: admin/admin-init.php:367
     180#: admin/admin-init.php:369
    181181msgid ""
    182182"Needed by viewers to keep messages while user is offline and deliver them "
     
    188188"ligne. Service interne, non accessible par l'utilisateur."
    189189
    190 #: admin/admin-init.php:372
     190#: admin/admin-init.php:374
    191191msgid "Splash"
    192192msgstr "Splash"
    193193
    194 #: admin/admin-init.php:373
     194#: admin/admin-init.php:375
    195195msgid ""
    196196"The welcome page displayed in the viewer with the login form. A short, no-"
     
    202202"essentiel. Requise, ou tout au moins hautement recommandée."
    203203
    204 #: admin/admin-init.php:398
     204#: admin/admin-init.php:400
    205205msgid "Registration page"
    206206msgstr "Page d'enregistrement"
    207207
    208 #: admin/admin-init.php:399
     208#: admin/admin-init.php:401
    209209msgid "Link to the user registration."
    210210msgstr "Lien vers l'inscription."
    211211
    212 #: admin/admin-init.php:404
     212#: admin/admin-init.php:406
    213213msgid "Password revovery"
    214214msgstr "Récupération du mot de passe"
    215215
    216 #: admin/admin-init.php:405
     216#: admin/admin-init.php:407
    217217msgid "Link to lost password page."
    218218msgstr "Lien vers la page de récupération de mot de passe."
    219219
    220 #: admin/admin-init.php:410
     220#: admin/admin-init.php:412
    221221msgid "Economy"
    222222msgstr "Économie"
    223223
    224 #: admin/admin-init.php:411
     224#: admin/admin-init.php:413
    225225msgid ""
    226226"Currencies and some other services queried by the viewer. They are not "
     
    230230"sont pas accessibles par l'utilisateur."
    231231
    232 #: admin/admin-init.php:417
     232#: admin/admin-init.php:419
    233233msgid "About this grid"
    234234msgstr "À propos de cette grille"
    235235
    236 #: admin/admin-init.php:418
     236#: admin/admin-init.php:420
    237237msgid ""
    238238"Detailed info page on your website, via a link displayed on the viewer login "
     
    242242"la page de connexion du visualiseur."
    243243
    244 #: admin/admin-init.php:422
     244#: admin/admin-init.php:424
    245245msgid "Help"
    246246msgstr "Aide"
    247247
    248 #: admin/admin-init.php:423
     248#: admin/admin-init.php:425
    249249msgid "Link to a help page on your website."
    250250msgstr "Lien vers une page d'aide sur votre site web."
     
    10051005msgstr "Personnaliser les avatars"
    10061006
    1007 #: includes/profile.php:122
     1007#: includes/profile.php:123
    10081008msgid "About"
    10091009msgstr "À propos"
    10101010
    1011 #: includes/profile.php:125
     1011#: includes/profile.php:126
    10121012msgid "Partner"
    10131013msgstr "Partenaire"
    10141014
    1015 #: includes/profile.php:126
     1015#: includes/profile.php:127
    10161016msgid "Wants to"
    10171017msgstr "J'aimerais"
    10181018
    1019 #: includes/profile.php:127
     1019#: includes/profile.php:128
    10201020msgid "Skills"
    10211021msgstr "Compétences"
    10221022
    1023 #: includes/profile.php:128
     1023#: includes/profile.php:129
    10241024msgid "Languages"
    10251025msgstr "Langues"
    10261026
    1027 #: includes/profile.php:129
     1027#: includes/profile.php:130
    10281028msgid "Real Life"
    10291029msgstr "Vie RL"
    10301030
    1031 #: includes/profile.php:132 tmp/class-avatar.php:277
     1031#: includes/profile.php:133 tmp/class-avatar.php:277
    10321032msgid "Change password"
    10331033msgstr "Changer le mot de passe"
    10341034
    1035 #: includes/profile.php:132
     1035#: includes/profile.php:133
    10361036msgid "Password reset link"
    10371037msgstr "Lien de réinitialisation du mot de passe"
    10381038
    1039 #: includes/profile.php:244
    1040 msgid "%s local users updated with avatar data"
    1041 msgstr "Données d'avatar mises à jour pour %s utilisateurs"
    1042 
    1043 #: includes/profile.php:258 includes/profile.php:977
     1039#: includes/profile.php:172 includes/profile.php:891
    10441040msgid "OpenSimulator"
    10451041msgstr "OpenSimulator"
    10461042
    1047 #: includes/profile.php:414
     1043#: includes/profile.php:328
    10481044msgid "This user already has an avatar."
    10491045msgstr "Cet utilisateur a déjà un avatar."
    10501046
    1051 #: includes/profile.php:425
     1047#: includes/profile.php:339
    10521048msgid "First name required"
    10531049msgstr "Prénom requis"
    10541050
    1055 #: includes/profile.php:426
     1051#: includes/profile.php:340
    10561052msgid "Last name required"
    10571053msgstr "Nom de famille requis"
    10581054
    1059 #: includes/profile.php:428
     1055#: includes/profile.php:342
    10601056msgid "Password required"
    10611057msgstr "Mot de passe requis"
    10621058
    1063 #: includes/profile.php:429
     1059#: includes/profile.php:343
    10641060msgid "The password does not match."
    10651061msgstr "Le mot de passe ne correspond pas."
    10661062
    1067 #: includes/profile.php:438 includes/profile.php:442
     1063#: includes/profile.php:352 includes/profile.php:356
    10681064msgid "The name %s is not allowed"
    10691065msgstr "Le nom %s n'est pas autorisé"
    10701066
    1071 #: includes/profile.php:446
     1067#: includes/profile.php:360
    10721068msgid "Names can only contain alphanumeric characters"
    10731069msgstr "Les noms ne peuvent contenir que des caractères alphanumériques"
    10741070
    1075 #: includes/profile.php:452
     1071#: includes/profile.php:366
    10761072msgid "There is already a grid user named %s"
    10771073msgstr "Il y a déjà un utilisateur appelé %s"
    10781074
    1079 #: includes/profile.php:458
     1075#: includes/profile.php:372
    10801076msgid ""
    10811077"This should never happen! Generated a random UUID that already existed. "
     
    10851081"encore."
    10861082
    1087 #: includes/profile.php:480
     1083#: includes/profile.php:394
    10881084msgid "Error while creating user"
    10891085msgstr "Erreur lors de la création de l'utilisateur"
    10901086
    1091 #: includes/profile.php:489
     1087#: includes/profile.php:403
    10921088msgid "Error while setting password"
    10931089msgstr "Erreur lors de l'enregistrement du mot de passe"
    10941090
    1095 #: includes/profile.php:500
     1091#: includes/profile.php:414
    10961092msgid "Error while setting home region"
    10971093msgstr "Erreur lors du réglage de la région domicile"
    10981094
    1099 #: includes/profile.php:517
     1095#: includes/profile.php:431
    11001096msgid "Error while creating user inventory"
    11011097msgstr "Erreur lors de la création de l'inventaire"
    11021098
    1103 #: includes/profile.php:639
     1099#: includes/profile.php:553
    11041100msgid "Error while adding inventory item"
    11051101msgstr "Erreur lors de l'ajout d'un élément d'inventaire"
    11061102
    1107 #: includes/profile.php:650
     1103#: includes/profile.php:564
    11081104msgid "Error while adding inventory outfit link"
    11091105msgstr "Erreur lors de l'ajout du lien d'apparence"
    11101106
    1111 #: includes/profile.php:662
     1107#: includes/profile.php:576
    11121108msgid "Error while adding avatar"
    11131109msgstr "Erreur lors de la création de l'avatar"
    11141110
    1115 #: includes/profile.php:668
     1111#: includes/profile.php:582
    11161112msgid "Errors occurred while creating the user"
    11171113msgstr "Des erreurs sont survenues lors de la création de l'utilisateur"
    11181114
    1119 #: includes/profile.php:673
     1115#: includes/profile.php:587
    11201116msgid "Avatar %s created successfully."
    11211117msgstr "L'avatar %s a été créé avec succès."
    11221118
    1123 #: includes/profile.php:686
     1119#: includes/profile.php:600
    11241120msgid "You need an avatar to explore our virtual world."
    11251121msgstr "Vous avez besoin d'un avatar pour explorer notre monde virtuel."
    11261122
    1127 #: includes/profile.php:687
     1123#: includes/profile.php:601
    11281124msgid ""
    11291125"Choose a name below. This is how people will see you in-world. Once set, "
     
    11341130"avatar."
    11351131
    1136 #: includes/profile.php:710
     1132#: includes/profile.php:624
    11371133msgid "Avatar first name"
    11381134msgstr "Prénom de l'avatar"
    11391135
    1140 #: includes/profile.php:714
     1136#: includes/profile.php:628
    11411137msgid "Avatar last name"
    11421138msgstr "Nom de famille de l'avatar"
    11431139
    1144 #: includes/profile.php:719
     1140#: includes/profile.php:633
    11451141msgid "Confirm your password"
    11461142msgstr "Confirmez votre mot de passe"
    11471143
    1148 #: includes/profile.php:721
     1144#: includes/profile.php:635
    11491145msgid ""
    11501146"Your in-world Avatar password is the same as your password on this website."
     
    11521148"Votre mot de passe d'avatar est le même que votre mot de passe sur ce site."
    11531149
    1154 #: includes/profile.php:735
     1150#: includes/profile.php:649
    11551151msgid "Your initial appearance"
    11561152msgstr "Votre apparence initiale"
    11571153
    1158 #: includes/profile.php:736
     1154#: includes/profile.php:650
    11591155msgid "You can change it as often as you want in the virtual world."
    11601156msgstr "Vous pourrez changer votre apparence à votre guise en ligne."
    11611157
    1162 #: includes/profile.php:772
     1158#: includes/profile.php:686
    11631159msgid "Save"
    11641160msgstr "Enregistrer"
    11651161
    1166 #: includes/profile.php:805
     1162#: includes/profile.php:719
    11671163msgid "leave blank to leave unchanged"
    11681164msgstr "laissez vide pour ne pas faire de modification"
    11691165
    1170 #: includes/profile.php:813
     1166#: includes/profile.php:727
    11711167msgid "Create an avatar"
    11721168msgstr "Créer un avatar"
    11731169
    1174 #: includes/profile.php:899 blocks/w4os-gridprofile-block/index.js:27
     1170#: includes/profile.php:813 blocks/w4os-gridprofile-block/index.js:27
    11751171#: blocks/w4os-gridprofile-block/index.js:74
    11761172msgid "Grid profile"
    11771173msgstr "Profil de grille"
    11781174
    1179 #: includes/profile.php:987
     1175#: includes/profile.php:901
    11801176msgid "Avatar First Name"
    11811177msgstr "Prénom de l'avatar"
    11821178
    1183 #: includes/profile.php:993
     1179#: includes/profile.php:907
    11841180msgid "Avatar Last Name"
    11851181msgstr "Nom de famille de l'avatar"
    11861182
    1187 #: includes/profile.php:999 tmp/class-avatar.php:361
     1183#: includes/profile.php:913 tmp/class-avatar.php:361
    11881184msgid "Profile Picture"
    11891185msgstr "Image de profil"
    11901186
    1191 #: includes/profile.php:1001
     1187#: includes/profile.php:915
    11921188msgid "Must be set in the viewer."
    11931189msgstr "Doit être réglé dans le visualiseur."
    11941190
    1195 #: includes/profile.php:1006
     1191#: includes/profile.php:920
    11961192msgid "Web Profile URL"
    11971193msgstr "URL du profil web"
     
    12851281msgstr[0] "%d référence obsolète supprimée"
    12861282msgstr[1] "%d références obsolètes supprimées"
     1283
     1284#: includes/users.php:282
     1285msgid "%s local users updated with avatar data"
     1286msgstr "Données d'avatar mises à jour pour %s utilisateurs"
    12871287
    12881288#: includes/w4osdb.php:12
  • w4os-opensimulator-web-interface/trunk/languages/w4os-nl_NL.po

    r2789725 r2831990  
    33"Project-Id-Version: w4os\n"
    44"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/w4os-dev\n"
    5 "POT-Creation-Date: 2022-09-24T15:05:37-04:00\n"
     5"POT-Creation-Date: 2022-12-11T14:43:43-04:00\n"
    66"PO-Revision-Date: \n"
    77"Last-Translator: \n"
     
    5858msgstr "Helpers"
    5959
    60 #: admin/admin-init.php:105 includes/profile.php:118 tmp/class-avatar.php:315
     60#: admin/admin-init.php:105 includes/profile.php:119 tmp/class-avatar.php:315
    6161msgid "Avatar Name"
    6262msgstr "Avatar naam"
    6363
    64 #: admin/admin-init.php:111 admin/admin-init.php:117 includes/profile.php:124
     64#: admin/admin-init.php:111 admin/admin-init.php:117 includes/profile.php:125
    6565#: tmp/class-avatar.php:350
    6666msgid "Born"
     
    8383msgstr "Zonder avatar"
    8484
    85 #: admin/admin-init.php:208
     85#: admin/admin-init.php:210
    8686msgid "Filter users..."
    8787msgstr "Filter gebruikers..."
    8888
    89 #: admin/admin-init.php:214
     89#: admin/admin-init.php:216
    9090msgid "Filter"
    9191msgstr "Filter"
    9292
    93 #: admin/admin-init.php:260
     93#: admin/admin-init.php:262
    9494msgid "OpenSimulator Profile"
    9595msgstr "OpenSimulator profiel"
    9696
    97 #: admin/admin-init.php:262
     97#: admin/admin-init.php:264
    9898msgid "OpenSimulator Splash"
    9999msgstr "OpenSimulator Splash"
    100100
    101 #: admin/admin-init.php:264
     101#: admin/admin-init.php:266
    102102msgid "OpenSimulator Search"
    103103msgstr "OpenSimulator Zoeken"
    104104
    105 #: admin/admin-init.php:266
     105#: admin/admin-init.php:268
    106106msgid "OpenSimulator Economy"
    107107msgstr "OpenSimulator economie"
    108108
    109 #: admin/admin-init.php:268
     109#: admin/admin-init.php:270
    110110msgid "OpenSimulator About"
    111111msgstr "OpenSimulator"
    112112
    113 #: admin/admin-init.php:270
     113#: admin/admin-init.php:272
    114114msgid "OpenSimulator Register"
    115115msgstr "OpenSimulator Register"
    116116
    117 #: admin/admin-init.php:272
     117#: admin/admin-init.php:274
    118118msgid "OpenSimulator Password"
    119119msgstr "OpenSimulator wachtwoord"
    120120
    121 #: admin/admin-init.php:274
     121#: admin/admin-init.php:276
    122122msgid "OpenSimulator Offline Messages"
    123123msgstr "OpenSimulator Offline Berichten"
    124124
    125 #: admin/admin-init.php:286 admin/admin-init.php:300
     125#: admin/admin-init.php:288 admin/admin-init.php:302
    126126msgid "The followed link has expired, please try again"
    127127msgstr "De gevolgde link is verlopen, probeer het opnieuw"
    128128
    129 #: admin/admin-init.php:307
     129#: admin/admin-init.php:309
    130130msgid "Page %s already exists."
    131131msgstr "Pagina %s bestaat al."
    132132
    133 #: admin/admin-init.php:324
     133#: admin/admin-init.php:326
    134134msgid "New page %s created."
    135135msgstr "Nieuwe pagina %s aangemaakt."
    136136
    137 #: admin/admin-init.php:328
     137#: admin/admin-init.php:330
    138138msgid "Error while creating page %s."
    139139msgstr "Fout bij het aanmaken van pagina %s."
    140140
    141 #: admin/admin-init.php:340
     141#: admin/admin-init.php:342
    142142msgid "Avatar profile"
    143143msgstr "Avatar profiel"
    144144
    145 #: admin/admin-init.php:341
     145#: admin/admin-init.php:343
    146146msgid "The base URL for avatar web profiles."
    147147msgstr "De basis URL voor avatar web profielen."
    148148
    149 #: admin/admin-init.php:344
     149#: admin/admin-init.php:346
    150150msgid "Search Service"
    151151msgstr "Zoekdienst"
    152152
    153 #: admin/admin-init.php:345
     153#: admin/admin-init.php:347
    154154msgid ""
    155155"Search service used by the viewer. Search can be provided by the simulator "
     
    161161"functionaliteiten (zoals gebeurtenissen). Vereist OpenSimSearch.Modules.dll."
    162162
    163 #: admin/admin-init.php:355
     163#: admin/admin-init.php:357
    164164msgid "Web Search"
    165165msgstr "Zoeken op het web"
    166166
    167 #: admin/admin-init.php:356
     167#: admin/admin-init.php:358
    168168msgid ""
    169169"Web tab of viewer search windows. Relevant if you have a search page "
     
    173173"inhoud uit het raster."
    174174
    175 #: admin/admin-init.php:366 admin/settings.php:294
     175#: admin/admin-init.php:368 admin/settings.php:294
    176176msgid "Offline messages"
    177177msgstr "Offline berichten"
    178178
    179 #: admin/admin-init.php:367
     179#: admin/admin-init.php:369
    180180msgid ""
    181181"Needed by viewers to keep messages while user is offline and deliver them "
     
    187187"rechtstreeks toegankelijk voor de gebruiker."
    188188
    189 #: admin/admin-init.php:372
     189#: admin/admin-init.php:374
    190190msgid "Splash"
    191191msgstr "Splash"
    192192
    193 #: admin/admin-init.php:373
     193#: admin/admin-init.php:375
    194194msgid ""
    195195"The welcome page displayed in the viewer with the login form. A short, no-"
     
    201201"of op zijn minst sterk aanbevolen."
    202202
    203 #: admin/admin-init.php:398
     203#: admin/admin-init.php:400
    204204msgid "Registration page"
    205205msgstr "Registratie pagina"
    206206
    207 #: admin/admin-init.php:399
     207#: admin/admin-init.php:401
    208208msgid "Link to the user registration."
    209209msgstr "Link naar de gebruikersregistratie."
    210210
    211 #: admin/admin-init.php:404
     211#: admin/admin-init.php:406
    212212msgid "Password revovery"
    213213msgstr "Wachtwoord herontdekking"
    214214
    215 #: admin/admin-init.php:405
     215#: admin/admin-init.php:407
    216216msgid "Link to lost password page."
    217217msgstr "Link naar de verloren wachtwoord pagina."
    218218
    219 #: admin/admin-init.php:410
     219#: admin/admin-init.php:412
    220220msgid "Economy"
    221221msgstr "Economie"
    222222
    223 #: admin/admin-init.php:411
     223#: admin/admin-init.php:413
    224224msgid ""
    225225"Currencies and some other services queried by the viewer. They are not "
     
    229229"zijn niet rechtstreeks toegankelijk voor de gebruiker."
    230230
    231 #: admin/admin-init.php:417
     231#: admin/admin-init.php:419
    232232msgid "About this grid"
    233233msgstr "Over dit rooster"
    234234
    235 #: admin/admin-init.php:418
     235#: admin/admin-init.php:420
    236236msgid ""
    237237"Detailed info page on your website, via a link displayed on the viewer login "
     
    241241"inlogpagina van de kijker."
    242242
    243 #: admin/admin-init.php:422
     243#: admin/admin-init.php:424
    244244msgid "Help"
    245245msgstr "Help"
    246246
    247 #: admin/admin-init.php:423
     247#: admin/admin-init.php:425
    248248msgid "Link to a help page on your website."
    249249msgstr "Link naar een hulppagina op uw website."
     
    993993msgstr "Aangepaste tekens"
    994994
    995 #: includes/profile.php:122
     995#: includes/profile.php:123
    996996msgid "About"
    997997msgstr "Over"
    998998
    999 #: includes/profile.php:125
     999#: includes/profile.php:126
    10001000msgid "Partner"
    10011001msgstr "Partner"
    10021002
    1003 #: includes/profile.php:126
     1003#: includes/profile.php:127
    10041004msgid "Wants to"
    10051005msgstr "Wil je"
    10061006
    1007 #: includes/profile.php:127
     1007#: includes/profile.php:128
    10081008msgid "Skills"
    10091009msgstr "Vaardigheden"
    10101010
    1011 #: includes/profile.php:128
     1011#: includes/profile.php:129
    10121012msgid "Languages"
    10131013msgstr "Talen"
    10141014
    1015 #: includes/profile.php:129
     1015#: includes/profile.php:130
    10161016msgid "Real Life"
    10171017msgstr "Het echte leven"
    10181018
    1019 #: includes/profile.php:132 tmp/class-avatar.php:277
     1019#: includes/profile.php:133 tmp/class-avatar.php:277
    10201020msgid "Change password"
    10211021msgstr ""
    10221022
    1023 #: includes/profile.php:132
     1023#: includes/profile.php:133
    10241024msgid "Password reset link"
    10251025msgstr ""
    10261026
    1027 #: includes/profile.php:244
    1028 msgid "%s local users updated with avatar data"
    1029 msgstr "%s lokale gebruikers bijgewerkt met avatar data"
    1030 
    1031 #: includes/profile.php:258 includes/profile.php:977
     1027#: includes/profile.php:172 includes/profile.php:891
    10321028msgid "OpenSimulator"
    10331029msgstr "OpenSimulator"
    10341030
    1035 #: includes/profile.php:414
     1031#: includes/profile.php:328
    10361032msgid "This user already has an avatar."
    10371033msgstr "Deze gebruiker heeft al een avatar."
    10381034
    1039 #: includes/profile.php:425
     1035#: includes/profile.php:339
    10401036msgid "First name required"
    10411037msgstr "Voornaam vereist"
    10421038
    1043 #: includes/profile.php:426
     1039#: includes/profile.php:340
    10441040msgid "Last name required"
    10451041msgstr "Achternaam vereist"
    10461042
    1047 #: includes/profile.php:428
     1043#: includes/profile.php:342
    10481044msgid "Password required"
    10491045msgstr "Wachtwoord vereist"
    10501046
    1051 #: includes/profile.php:429
     1047#: includes/profile.php:343
    10521048msgid "The password does not match."
    10531049msgstr "Het wachtwoord komt niet overeen."
    10541050
    1055 #: includes/profile.php:438 includes/profile.php:442
     1051#: includes/profile.php:352 includes/profile.php:356
    10561052msgid "The name %s is not allowed"
    10571053msgstr "Naam% s is niet toegestaan"
    10581054
    1059 #: includes/profile.php:446
     1055#: includes/profile.php:360
    10601056msgid "Names can only contain alphanumeric characters"
    10611057msgstr "Namen mogen alleen alfanumerieke tekens bevatten"
    10621058
    1063 #: includes/profile.php:452
     1059#: includes/profile.php:366
    10641060msgid "There is already a grid user named %s"
    10651061msgstr "Er is al een netgebruiker met de naam %s"
    10661062
    1067 #: includes/profile.php:458
     1063#: includes/profile.php:372
    10681064msgid ""
    10691065"This should never happen! Generated a random UUID that already existed. "
     
    10731069"Sorry. Probeer het opnieuw."
    10741070
    1075 #: includes/profile.php:480
     1071#: includes/profile.php:394
    10761072msgid "Error while creating user"
    10771073msgstr "Fout bij gebruiker aanmaken"
    10781074
    1079 #: includes/profile.php:489
     1075#: includes/profile.php:403
    10801076msgid "Error while setting password"
    10811077msgstr "Fout bij het instellen van het wachtwoord"
    10821078
    1083 #: includes/profile.php:500
     1079#: includes/profile.php:414
    10841080msgid "Error while setting home region"
    10851081msgstr "Fout bij instellen thuisregio"
    10861082
    1087 #: includes/profile.php:517
     1083#: includes/profile.php:431
    10881084msgid "Error while creating user inventory"
    10891085msgstr "Fout bij het maken van gebruikersinventaris"
    10901086
    1091 #: includes/profile.php:639
     1087#: includes/profile.php:553
    10921088msgid "Error while adding inventory item"
    10931089msgstr "Fout bij het toevoegen van voorraaditem"
    10941090
    1095 #: includes/profile.php:650
     1091#: includes/profile.php:564
    10961092msgid "Error while adding inventory outfit link"
    10971093msgstr "Fout bij het toevoegen van inventaris-outfit-link"
    10981094
    1099 #: includes/profile.php:662
     1095#: includes/profile.php:576
    11001096msgid "Error while adding avatar"
    11011097msgstr "Fout bij het toevoegen van avatar"
    11021098
    1103 #: includes/profile.php:668
     1099#: includes/profile.php:582
    11041100msgid "Errors occurred while creating the user"
    11051101msgstr "Fout bij gebruiker aanmaken"
    11061102
    1107 #: includes/profile.php:673
     1103#: includes/profile.php:587
    11081104msgid "Avatar %s created successfully."
    11091105msgstr "De avatar %s is succesvol aangemaakt."
    11101106
    1111 #: includes/profile.php:686
     1107#: includes/profile.php:600
    11121108msgid "You need an avatar to explore our virtual world."
    11131109msgstr "Je hebt een avatar nodig om onze virtuele wereld te verkennen."
    11141110
    1115 #: includes/profile.php:687
     1111#: includes/profile.php:601
    11161112msgid ""
    11171113"Choose a name below. This is how people will see you in-world. Once set, "
     
    11211117"zien. Zodra de avatar is gemaakt, kan deze niet meer worden gewijzigd."
    11221118
    1123 #: includes/profile.php:710
     1119#: includes/profile.php:624
    11241120msgid "Avatar first name"
    11251121msgstr "Avatar voornaam"
    11261122
    1127 #: includes/profile.php:714
     1123#: includes/profile.php:628
    11281124msgid "Avatar last name"
    11291125msgstr "Avatar achternaam"
    11301126
    1131 #: includes/profile.php:719
     1127#: includes/profile.php:633
    11321128msgid "Confirm your password"
    11331129msgstr "Bevestig uw wachtwoord"
    11341130
    1135 #: includes/profile.php:721
     1131#: includes/profile.php:635
    11361132msgid ""
    11371133"Your in-world Avatar password is the same as your password on this website."
     
    11391135"Uw in-world Avatar-wachtwoord is hetzelfde als uw wachtwoord op deze website."
    11401136
    1141 #: includes/profile.php:735
     1137#: includes/profile.php:649
    11421138msgid "Your initial appearance"
    11431139msgstr "Uw eerste verschijning"
    11441140
    1145 #: includes/profile.php:736
     1141#: includes/profile.php:650
    11461142msgid "You can change it as often as you want in the virtual world."
    11471143msgstr "Je kunt het wijzigen en aanpassen in de wereld, zo vaak als je wilt."
    11481144
    1149 #: includes/profile.php:772
     1145#: includes/profile.php:686
    11501146msgid "Save"
    11511147msgstr "Opslaan"
    11521148
    1153 #: includes/profile.php:805
     1149#: includes/profile.php:719
    11541150msgid "leave blank to leave unchanged"
    11551151msgstr "laat leeg om geen wijzigingen aan te brengen"
    11561152
    1157 #: includes/profile.php:813
     1153#: includes/profile.php:727
    11581154msgid "Create an avatar"
    11591155msgstr "Maak een avatar"
    11601156
    1161 #: includes/profile.php:899 blocks/w4os-gridprofile-block/index.js:27
     1157#: includes/profile.php:813 blocks/w4os-gridprofile-block/index.js:27
    11621158#: blocks/w4os-gridprofile-block/index.js:74
    11631159msgid "Grid profile"
    11641160msgstr "Rooster profiel"
    11651161
    1166 #: includes/profile.php:987
     1162#: includes/profile.php:901
    11671163msgid "Avatar First Name"
    11681164msgstr "Avatar voornaam"
    11691165
    1170 #: includes/profile.php:993
     1166#: includes/profile.php:907
    11711167msgid "Avatar Last Name"
    11721168msgstr "Avatar achternaam"
    11731169
    1174 #: includes/profile.php:999 tmp/class-avatar.php:361
     1170#: includes/profile.php:913 tmp/class-avatar.php:361
    11751171msgid "Profile Picture"
    11761172msgstr "Profiel foto"
    11771173
    1178 #: includes/profile.php:1001
     1174#: includes/profile.php:915
    11791175msgid "Must be set in the viewer."
    11801176msgstr "Moet worden ingesteld in de viewer."
    11811177
    1182 #: includes/profile.php:1006
     1178#: includes/profile.php:920
    11831179msgid "Web Profile URL"
    11841180msgstr "Web profiel URL"
     
    12721268msgstr[0] "%d gebroken referentie verwijderd"
    12731269msgstr[1] "%d gebroken referenties verwijderd"
     1270
     1271#: includes/users.php:282
     1272msgid "%s local users updated with avatar data"
     1273msgstr "%s lokale gebruikers bijgewerkt met avatar data"
    12741274
    12751275#: includes/w4osdb.php:12
  • w4os-opensimulator-web-interface/trunk/languages/w4os.pot

    r2789725 r2831990  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: w4os - OpenSimulator Web Interface 2.3.8\n"
     5"Project-Id-Version: w4os - OpenSimulator Web Interface 2.3.12\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/w4os-dev\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "POT-Creation-Date: 2022-09-24T15:05:37-04:00\n"
     12"POT-Creation-Date: 2022-12-11T14:43:43-04:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1414"X-Generator: WP-CLI 2.6.0\n"
     
    6262
    6363#: admin/admin-init.php:105
    64 #: includes/profile.php:118
     64#: includes/profile.php:119
    6565#: tmp/class-avatar.php:315
    6666msgid "Avatar Name"
     
    6969#: admin/admin-init.php:111
    7070#: admin/admin-init.php:117
    71 #: includes/profile.php:124
     71#: includes/profile.php:125
    7272#: tmp/class-avatar.php:350
    7373msgid "Born"
     
    9292msgstr ""
    9393
    94 #: admin/admin-init.php:208
     94#: admin/admin-init.php:210
    9595msgid "Filter users..."
    9696msgstr ""
    9797
    98 #: admin/admin-init.php:214
     98#: admin/admin-init.php:216
    9999msgid "Filter"
    100100msgstr ""
    101101
    102 #: admin/admin-init.php:260
     102#: admin/admin-init.php:262
    103103msgid "OpenSimulator Profile"
    104104msgstr ""
    105105
    106 #: admin/admin-init.php:262
     106#: admin/admin-init.php:264
    107107msgid "OpenSimulator Splash"
    108108msgstr ""
    109109
    110 #: admin/admin-init.php:264
     110#: admin/admin-init.php:266
    111111msgid "OpenSimulator Search"
    112112msgstr ""
    113113
    114 #: admin/admin-init.php:266
     114#: admin/admin-init.php:268
    115115msgid "OpenSimulator Economy"
    116116msgstr ""
    117117
    118 #: admin/admin-init.php:268
     118#: admin/admin-init.php:270
    119119msgid "OpenSimulator About"
    120120msgstr ""
    121121
    122 #: admin/admin-init.php:270
     122#: admin/admin-init.php:272
    123123msgid "OpenSimulator Register"
    124124msgstr ""
    125125
    126 #: admin/admin-init.php:272
     126#: admin/admin-init.php:274
    127127msgid "OpenSimulator Password"
    128128msgstr ""
    129129
    130 #: admin/admin-init.php:274
     130#: admin/admin-init.php:276
    131131msgid "OpenSimulator Offline Messages"
    132132msgstr ""
    133133
    134 #: admin/admin-init.php:286
    135 #: admin/admin-init.php:300
     134#: admin/admin-init.php:288
     135#: admin/admin-init.php:302
    136136msgid "The followed link has expired, please try again"
    137137msgstr ""
    138138
    139 #: admin/admin-init.php:307
     139#: admin/admin-init.php:309
    140140msgid "Page %s already exists."
    141141msgstr ""
    142142
    143 #: admin/admin-init.php:324
     143#: admin/admin-init.php:326
    144144msgid "New page %s created."
    145145msgstr ""
    146146
    147 #: admin/admin-init.php:328
     147#: admin/admin-init.php:330
    148148msgid "Error while creating page %s."
    149149msgstr ""
    150150
    151 #: admin/admin-init.php:340
     151#: admin/admin-init.php:342
    152152msgid "Avatar profile"
    153153msgstr ""
    154154
    155 #: admin/admin-init.php:341
     155#: admin/admin-init.php:343
    156156msgid "The base URL for avatar web profiles."
    157157msgstr ""
    158158
    159 #: admin/admin-init.php:344
     159#: admin/admin-init.php:346
    160160msgid "Search Service"
    161161msgstr ""
    162162
    163 #: admin/admin-init.php:345
     163#: admin/admin-init.php:347
    164164msgid "Search service used by the viewer. Search can be provided by the simulator core (limited), or by an external service for additional functionalities (like events). Requires OpenSimSearch.Modules.dll."
    165165msgstr ""
    166166
    167 #: admin/admin-init.php:355
     167#: admin/admin-init.php:357
    168168msgid "Web Search"
    169169msgstr ""
    170170
    171 #: admin/admin-init.php:356
     171#: admin/admin-init.php:358
    172172msgid "Web tab of viewer search windows. Relevant if you have a search page providing content from the grid."
    173173msgstr ""
    174174
    175 #: admin/admin-init.php:366
     175#: admin/admin-init.php:368
    176176#: admin/settings.php:294
    177177msgid "Offline messages"
    178178msgstr ""
    179179
    180 #: admin/admin-init.php:367
     180#: admin/admin-init.php:369
    181181msgid "Needed by viewers to keep messages while user is offline and deliver them when they come back online. Internal service, not accessed directly by the user."
    182182msgstr ""
    183183
    184 #: admin/admin-init.php:372
     184#: admin/admin-init.php:374
    185185msgid "Splash"
    186186msgstr ""
    187187
    188 #: admin/admin-init.php:373
     188#: admin/admin-init.php:375
    189189msgid "The welcome page displayed in the viewer with the login form. A short, no-scroll page, with only essential info. It is required, or at least highly recommended."
    190190msgstr ""
    191191
    192 #: admin/admin-init.php:398
     192#: admin/admin-init.php:400
    193193msgid "Registration page"
    194194msgstr ""
    195195
    196 #: admin/admin-init.php:399
     196#: admin/admin-init.php:401
    197197msgid "Link to the user registration."
    198198msgstr ""
    199199
    200 #: admin/admin-init.php:404
     200#: admin/admin-init.php:406
    201201msgid "Password revovery"
    202202msgstr ""
    203203
    204 #: admin/admin-init.php:405
     204#: admin/admin-init.php:407
    205205msgid "Link to lost password page."
    206206msgstr ""
    207207
    208 #: admin/admin-init.php:410
     208#: admin/admin-init.php:412
    209209msgid "Economy"
    210210msgstr ""
    211211
    212 #: admin/admin-init.php:411
     212#: admin/admin-init.php:413
    213213msgid "Currencies and some other services queried by the viewer. They are not accessed directly by the user."
    214214msgstr ""
    215215
    216 #: admin/admin-init.php:417
     216#: admin/admin-init.php:419
    217217msgid "About this grid"
    218218msgstr ""
    219219
    220 #: admin/admin-init.php:418
     220#: admin/admin-init.php:420
    221221msgid "Detailed info page on your website, via a link displayed on the viewer login page."
    222222msgstr ""
    223223
    224 #: admin/admin-init.php:422
     224#: admin/admin-init.php:424
    225225msgid "Help"
    226226msgstr ""
    227227
    228 #: admin/admin-init.php:423
     228#: admin/admin-init.php:425
    229229msgid "Link to a help page on your website."
    230230msgstr ""
     
    851851msgstr ""
    852852
    853 #: includes/profile.php:122
     853#: includes/profile.php:123
    854854msgid "About"
    855855msgstr ""
    856856
    857 #: includes/profile.php:125
     857#: includes/profile.php:126
    858858msgid "Partner"
    859859msgstr ""
    860860
    861 #: includes/profile.php:126
     861#: includes/profile.php:127
    862862msgid "Wants to"
    863863msgstr ""
    864864
    865 #: includes/profile.php:127
     865#: includes/profile.php:128
    866866msgid "Skills"
    867867msgstr ""
    868868
    869 #: includes/profile.php:128
     869#: includes/profile.php:129
    870870msgid "Languages"
    871871msgstr ""
    872872
    873 #: includes/profile.php:129
     873#: includes/profile.php:130
    874874msgid "Real Life"
    875875msgstr ""
    876876
    877 #: includes/profile.php:132
     877#: includes/profile.php:133
    878878#: tmp/class-avatar.php:277
    879879msgid "Change password"
    880880msgstr ""
    881881
    882 #: includes/profile.php:132
     882#: includes/profile.php:133
    883883msgid "Password reset link"
    884884msgstr ""
    885885
    886 #: includes/profile.php:244
    887 msgid "%s local users updated with avatar data"
    888 msgstr ""
    889 
    890 #: includes/profile.php:258
    891 #: includes/profile.php:977
     886#: includes/profile.php:172
     887#: includes/profile.php:891
    892888msgid "OpenSimulator"
    893889msgstr ""
    894890
     891#: includes/profile.php:328
     892msgid "This user already has an avatar."
     893msgstr ""
     894
     895#: includes/profile.php:339
     896msgid "First name required"
     897msgstr ""
     898
     899#: includes/profile.php:340
     900msgid "Last name required"
     901msgstr ""
     902
     903#: includes/profile.php:342
     904msgid "Password required"
     905msgstr ""
     906
     907#: includes/profile.php:343
     908msgid "The password does not match."
     909msgstr ""
     910
     911#: includes/profile.php:352
     912#: includes/profile.php:356
     913msgid "The name %s is not allowed"
     914msgstr ""
     915
     916#: includes/profile.php:360
     917msgid "Names can only contain alphanumeric characters"
     918msgstr ""
     919
     920#: includes/profile.php:366
     921msgid "There is already a grid user named %s"
     922msgstr ""
     923
     924#: includes/profile.php:372
     925msgid "This should never happen! Generated a random UUID that already existed. Sorry. Try again."
     926msgstr ""
     927
     928#: includes/profile.php:394
     929msgid "Error while creating user"
     930msgstr ""
     931
     932#: includes/profile.php:403
     933msgid "Error while setting password"
     934msgstr ""
     935
    895936#: includes/profile.php:414
    896 msgid "This user already has an avatar."
    897 msgstr ""
    898 
    899 #: includes/profile.php:425
    900 msgid "First name required"
    901 msgstr ""
    902 
    903 #: includes/profile.php:426
    904 msgid "Last name required"
    905 msgstr ""
    906 
    907 #: includes/profile.php:428
    908 msgid "Password required"
    909 msgstr ""
    910 
    911 #: includes/profile.php:429
    912 msgid "The password does not match."
    913 msgstr ""
    914 
    915 #: includes/profile.php:438
    916 #: includes/profile.php:442
    917 msgid "The name %s is not allowed"
    918 msgstr ""
    919 
    920 #: includes/profile.php:446
    921 msgid "Names can only contain alphanumeric characters"
    922 msgstr ""
    923 
    924 #: includes/profile.php:452
    925 msgid "There is already a grid user named %s"
    926 msgstr ""
    927 
    928 #: includes/profile.php:458
    929 msgid "This should never happen! Generated a random UUID that already existed. Sorry. Try again."
    930 msgstr ""
    931 
    932 #: includes/profile.php:480
    933 msgid "Error while creating user"
    934 msgstr ""
    935 
    936 #: includes/profile.php:489
    937 msgid "Error while setting password"
    938 msgstr ""
    939 
    940 #: includes/profile.php:500
    941937msgid "Error while setting home region"
    942938msgstr ""
    943939
    944 #: includes/profile.php:517
     940#: includes/profile.php:431
    945941msgid "Error while creating user inventory"
    946942msgstr ""
    947943
    948 #: includes/profile.php:639
     944#: includes/profile.php:553
    949945msgid "Error while adding inventory item"
    950946msgstr ""
    951947
     948#: includes/profile.php:564
     949msgid "Error while adding inventory outfit link"
     950msgstr ""
     951
     952#: includes/profile.php:576
     953msgid "Error while adding avatar"
     954msgstr ""
     955
     956#: includes/profile.php:582
     957msgid "Errors occurred while creating the user"
     958msgstr ""
     959
     960#: includes/profile.php:587
     961msgid "Avatar %s created successfully."
     962msgstr ""
     963
     964#: includes/profile.php:600
     965msgid "You need an avatar to explore our virtual world."
     966msgstr ""
     967
     968#: includes/profile.php:601
     969msgid "Choose a name below. This is how people will see you in-world. Once set, your avatar name cannot be changed."
     970msgstr ""
     971
     972#: includes/profile.php:624
     973msgid "Avatar first name"
     974msgstr ""
     975
     976#: includes/profile.php:628
     977msgid "Avatar last name"
     978msgstr ""
     979
     980#: includes/profile.php:633
     981msgid "Confirm your password"
     982msgstr ""
     983
     984#: includes/profile.php:635
     985msgid "Your in-world Avatar password is the same as your password on this website."
     986msgstr ""
     987
     988#: includes/profile.php:649
     989msgid "Your initial appearance"
     990msgstr ""
     991
    952992#: includes/profile.php:650
    953 msgid "Error while adding inventory outfit link"
    954 msgstr ""
    955 
    956 #: includes/profile.php:662
    957 msgid "Error while adding avatar"
    958 msgstr ""
    959 
    960 #: includes/profile.php:668
    961 msgid "Errors occurred while creating the user"
    962 msgstr ""
    963 
    964 #: includes/profile.php:673
    965 msgid "Avatar %s created successfully."
     993msgid "You can change it as often as you want in the virtual world."
    966994msgstr ""
    967995
    968996#: includes/profile.php:686
    969 msgid "You need an avatar to explore our virtual world."
    970 msgstr ""
    971 
    972 #: includes/profile.php:687
    973 msgid "Choose a name below. This is how people will see you in-world. Once set, your avatar name cannot be changed."
    974 msgstr ""
    975 
    976 #: includes/profile.php:710
    977 msgid "Avatar first name"
    978 msgstr ""
    979 
    980 #: includes/profile.php:714
    981 msgid "Avatar last name"
     997msgid "Save"
    982998msgstr ""
    983999
    9841000#: includes/profile.php:719
    985 msgid "Confirm your password"
    986 msgstr ""
    987 
    988 #: includes/profile.php:721
    989 msgid "Your in-world Avatar password is the same as your password on this website."
    990 msgstr ""
    991 
    992 #: includes/profile.php:735
    993 msgid "Your initial appearance"
    994 msgstr ""
    995 
    996 #: includes/profile.php:736
    997 msgid "You can change it as often as you want in the virtual world."
    998 msgstr ""
    999 
    1000 #: includes/profile.php:772
    1001 msgid "Save"
    1002 msgstr ""
    1003 
    1004 #: includes/profile.php:805
    10051001msgid "leave blank to leave unchanged"
    10061002msgstr ""
    10071003
     1004#: includes/profile.php:727
     1005msgid "Create an avatar"
     1006msgstr ""
     1007
    10081008#: includes/profile.php:813
    1009 msgid "Create an avatar"
    1010 msgstr ""
    1011 
    1012 #: includes/profile.php:899
    10131009#: blocks/w4os-gridprofile-block/index.js:27
    10141010#: blocks/w4os-gridprofile-block/index.js:74
     
    10161012msgstr ""
    10171013
    1018 #: includes/profile.php:987
     1014#: includes/profile.php:901
    10191015msgid "Avatar First Name"
    10201016msgstr ""
    10211017
    1022 #: includes/profile.php:993
     1018#: includes/profile.php:907
    10231019msgid "Avatar Last Name"
    10241020msgstr ""
    10251021
    1026 #: includes/profile.php:999
     1022#: includes/profile.php:913
    10271023#: tmp/class-avatar.php:361
    10281024msgid "Profile Picture"
    10291025msgstr ""
    10301026
    1031 #: includes/profile.php:1001
     1027#: includes/profile.php:915
    10321028msgid "Must be set in the viewer."
    10331029msgstr ""
    10341030
    1035 #: includes/profile.php:1006
     1031#: includes/profile.php:920
    10361032msgid "Web Profile URL"
    10371033msgstr ""
     
    11211117msgstr[1] ""
    11221118
     1119#: includes/users.php:282
     1120msgid "%s local users updated with avatar data"
     1121msgstr ""
     1122
    11231123#: includes/w4osdb.php:12
    11241124msgid "ROBUST database is not configured. To finish configuration, go to "
  • w4os-opensimulator-web-interface/trunk/readme.txt

    r2806611 r2831990  
    55Requires at least: 5.3.0
    66Requires PHP: 7.3
    7 Tested up to: 6.1
    8 Stable tag: 2.3.10
     7Tested up to: 6.1.1
     8Stable tag: 2.3.12
    99License: AGPLv3
    1010License URI: https://www.gnu.org/licenses/agpl-3.0.txt
     
    154154== Changelog ==
    155155
     156= 2.3.12 =
     157* fix w4os_profile_sync() fatal error when profiles are disabled
     158* fix minor PHP8 warnings
     159* fix fatal error when wp object is passed as user_id
     160
    156161= 2.3.10 =
    157162- minor fixes (profile page title, profile image, profile text display)
  • w4os-opensimulator-web-interface/trunk/w4os.php

    r2806611 r2831990  
    33 * Plugin Name:       w4os - OpenSimulator Web Interface
    44 * Description:       WordPress interface for OpenSimulator (w4os).
    5  * Version:           2.3.10
     5 * Version:           2.3.12
    66 * Author:            Speculoos World
    77 * Author URI:        https://speculoos.world
Note: See TracChangeset for help on using the changeset viewer.