mirror of
https://github.com/humhub/humhub.git
synced 2025-01-17 22:28:51 +01:00
Merge branch 'develop' of github.com:humhub/humhub into develop
This commit is contained in:
commit
da2f10587d
@ -46,3 +46,4 @@ At least version 7.3 is now required as the PHP version!
|
||||
- Enh #123: New sorting option "Default" for people directory page
|
||||
- Fix #122: Fix button "Load more" initialization on Pjax loading
|
||||
- Enh #5114: Added `EVENT_BEFORE_CHECKING_USER_STATUS` in `AuthController.php` to give the possibility to add an event before checking the user status
|
||||
- Fix #5122: RichText::output produces "p" element instead of "div" element
|
||||
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -1,33 +1,32 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'A TLS/SSL is strongly favored in production environments to prevent passwords from be transmitted in clear text.' => 'パスワードは平文で送信されることから情報漏洩を防止するために、運用環境ではTLS / SSL化する事が強く推奨されます。',
|
||||
'Base DN' => 'ベース識別名(DN)',
|
||||
'Defines the filter to apply, when login is attempted. %s replaces the username in the login action. Example: "(sAMAccountName=%s)" or "(uid=%s)"' => 'ログインした時に適用するフィルタを定義します。 %s はログインアクションにユーザ名を置き換えます。例:"(sAMAccountName=%s)" または "(uid=%s)"',
|
||||
'E-Mail Address Attribute' => '電子メールアドレス属性',
|
||||
'Enable LDAP Support' => 'LDAPサポートを有効にする',
|
||||
'Encryption' => '暗号化',
|
||||
'Fetch/Update Users Automatically' => 'ユーザーを自動的に取得/更新する',
|
||||
'Hostname' => 'ホスト名',
|
||||
'ID Attribute' => 'ID属性',
|
||||
'LDAP' => 'LDAP',
|
||||
'LDAP Attribute for E-Mail Address. Default: "mail"' => '電子メールアドレスのLDAP属性。デフォルト:「メール」',
|
||||
'LDAP Attribute for Username. Example: "uid" or "sAMAccountName"' => 'ユーザー名のLDAP属性。例:「uid」または「sAMAccountName」',
|
||||
'Limit access to users meeting this criteria. Example: "(objectClass=posixAccount)" or "(&(objectClass=person)(memberOf=CN=Workers,CN=Users,DC=myDomain,DC=com))"' => 'この基準を満たすユーザーへのアクセスを制限します。例:「(objectClass = posixAccount)」または「(&(objectClass = person)(memberOf = CN = Workers、CN = Users、DC = myDomain、DC = com))」',
|
||||
'Login Filter' => 'ログインフィルター',
|
||||
'Not changeable LDAP attribute to unambiguously identify the user in the directory. If empty the user will be determined automatically by e-mail address or username. Examples: objectguid (ActiveDirectory) or uidNumber (OpenLDAP)' => 'ディレクトリ内のユーザーを明確に識別するための変更不可能なLDAP属性。空の場合、ユーザーは電子メールアドレスまたはユーザー名によって自動的に決定されます。例:objectguid(ActiveDirectory)またはuidNumber(OpenLDAP)',
|
||||
'Password' => 'パスワード',
|
||||
'Port' => 'ポート',
|
||||
'Specify your LDAP-backend used to fetch user accounts.' => 'ユーザーアカウントを取得するためのLDAPバックエンドを指定します。',
|
||||
'Status: Error! (Message: {message})' => 'ステータス:エラー!(メッセージ:{message})',
|
||||
'Status: OK! ({userCount} Users)' => 'ステータス:OK!({userCount} ユーザー)',
|
||||
'Status: Warning! (No users found using the ldap user filter!)' => 'ステータス:警告! (LDAPユーザフィルタを使用しているユーザは見つかりませんでした)',
|
||||
'The default base DN used for searching for accounts.' => 'デフォルトのベース識別名(DN)を、アカウントの検索に使用。',
|
||||
'The default credentials password (used only with username above).' => 'デフォルトの資格のパスワード(上のユーザ名でのみ使用されます)。',
|
||||
'The default credentials username. Some servers require that this be in DN form. This must be given in DN form if the LDAP server requires a DN to bind and binding should be possible with simple usernames.' => 'デフォルトの認証情報はユーザー名。サーバによってはこれがDN形式であることを必要とする。 LDAPサーバがバインドする結合は、単純なユーザ名で可能であるべきで、DNを必要とする場合にはDN形式で指定する必要があります。',
|
||||
'Username' => 'ユーザー名',
|
||||
'Username Attribute' => 'ユーザー属性',
|
||||
'Ignored LDAP entries' => '',
|
||||
'One DN per line which should not be imported automatically.' => '',
|
||||
'User Filter' => '',
|
||||
];
|
||||
return array (
|
||||
'A TLS/SSL is strongly favored in production environments to prevent passwords from be transmitted in clear text.' => 'パスワードは平文で送信されることから情報漏洩を防止するために、運用環境ではTLS / SSL化する事が強く推奨されます。',
|
||||
'Base DN' => 'ベース識別名(DN)',
|
||||
'Defines the filter to apply, when login is attempted. %s replaces the username in the login action. Example: "(sAMAccountName=%s)" or "(uid=%s)"' => 'ログインした時に適用するフィルタを定義します。 %s はログインアクションにユーザ名を置き換えます。例:"(sAMAccountName=%s)" または "(uid=%s)"',
|
||||
'E-Mail Address Attribute' => '電子メールアドレス属性',
|
||||
'Enable LDAP Support' => 'LDAPサポートを有効にする',
|
||||
'Encryption' => '暗号化',
|
||||
'Fetch/Update Users Automatically' => 'ユーザーを自動的に取得/更新する',
|
||||
'Hostname' => 'ホスト名',
|
||||
'ID Attribute' => 'ID属性',
|
||||
'Ignored LDAP entries' => '無視されたLDAPエントリ',
|
||||
'LDAP' => 'LDAP',
|
||||
'LDAP Attribute for E-Mail Address. Default: "mail"' => '電子メールアドレスのLDAP属性。デフォルト:「メール」',
|
||||
'LDAP Attribute for Username. Example: "uid" or "sAMAccountName"' => 'ユーザー名のLDAP属性。例:「uid」または「sAMAccountName」',
|
||||
'Limit access to users meeting this criteria. Example: "(objectClass=posixAccount)" or "(&(objectClass=person)(memberOf=CN=Workers,CN=Users,DC=myDomain,DC=com))"' => 'この基準を満たすユーザーへのアクセスを制限します。例:「(objectClass = posixAccount)」または「(&(objectClass = person)(memberOf = CN = Workers、CN = Users、DC = myDomain、DC = com))」',
|
||||
'Login Filter' => 'ログインフィルター',
|
||||
'Not changeable LDAP attribute to unambiguously identify the user in the directory. If empty the user will be determined automatically by e-mail address or username. Examples: objectguid (ActiveDirectory) or uidNumber (OpenLDAP)' => 'ディレクトリ内のユーザーを明確に識別するための変更不可能なLDAP属性。空の場合、ユーザーは電子メールアドレスまたはユーザー名によって自動的に決定されます。例:objectguid(ActiveDirectory)またはuidNumber(OpenLDAP)',
|
||||
'One DN per line which should not be imported automatically.' => '自動的にインポートされるべきではない行ごとに1つのDN。',
|
||||
'Password' => 'パスワード',
|
||||
'Port' => 'ポート',
|
||||
'Specify your LDAP-backend used to fetch user accounts.' => 'ユーザーアカウントを取得するためのLDAPバックエンドを指定します。',
|
||||
'Status: Error! (Message: {message})' => 'ステータス:エラー!(メッセージ:{message})',
|
||||
'Status: OK! ({userCount} Users)' => 'ステータス:OK!({userCount} ユーザー)',
|
||||
'Status: Warning! (No users found using the ldap user filter!)' => 'ステータス:警告! (LDAPユーザフィルタを使用しているユーザは見つかりませんでした)',
|
||||
'The default base DN used for searching for accounts.' => 'デフォルトのベース識別名(DN)を、アカウントの検索に使用。',
|
||||
'The default credentials password (used only with username above).' => 'デフォルトの資格のパスワード(上のユーザ名でのみ使用されます)。',
|
||||
'The default credentials username. Some servers require that this be in DN form. This must be given in DN form if the LDAP server requires a DN to bind and binding should be possible with simple usernames.' => 'デフォルトの認証情報はユーザー名。サーバによってはこれがDN形式であることを必要とする。 LDAPサーバがバインドする結合は、単純なユーザ名で可能であるべきで、DNを必要とする場合にはDN形式で指定する必要があります。',
|
||||
'User Filter' => 'ユーザーフィルター',
|
||||
'Username' => 'ユーザー名',
|
||||
'Username Attribute' => 'ユーザー属性',
|
||||
);
|
||||
|
@ -1,100 +1,99 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'
|
||||
return array (
|
||||
'
|
||||
Module successfully disabled!
|
||||
' => 'Module succesvol uitgeschakeld!',
|
||||
'
|
||||
'
|
||||
Module successfully enabled!
|
||||
' => 'Module succesvol ingeschakeld!',
|
||||
'
|
||||
'
|
||||
No active Professional Edition license found!
|
||||
' => 'Geen actieve Professional Edition-licentie gevonden!',
|
||||
'
|
||||
'
|
||||
PROFESSIONAL EDITION
|
||||
' => 'PROFESSIONAL EDITION',
|
||||
'
|
||||
'
|
||||
The license could not be activated:
|
||||
' => 'De licentie kan niet worden geactiveerd:',
|
||||
'
|
||||
'
|
||||
The license was successfully activated!
|
||||
|
||||
' => 'De licentie is succesvol geactiveerd!',
|
||||
'
|
||||
'
|
||||
The license was successfully removed!
|
||||
|
||||
' => 'De licentie is succesvol verwijderd!',
|
||||
'--- Disable module: {moduleId} ---
|
||||
'--- Disable module: {moduleId} ---
|
||||
|
||||
' => '--- Schakel module: {moduleId} uit ---',
|
||||
'--- Enable module: {moduleId} ---
|
||||
'--- Enable module: {moduleId} ---
|
||||
|
||||
' => '--- Schakel module: {moduleId} in ---',
|
||||
'<strong>Activate</strong> your Professional Edition' => '<strong>Activeer</strong> uw Professional-editie',
|
||||
'Add purchased module by licence key' => 'Aangeschafte module toevoegen met de licentie code',
|
||||
'All modules are up to date!' => 'Alle modules zijn up-to-date!',
|
||||
'All {moduleId} module content will be deleted. Continue?' => 'Alle inhoud van de module {moduleId} wordt verwijderd. Wilt u doorgaan?',
|
||||
'Available updates' => 'Beschikbare updates',
|
||||
'Browse online' => 'Blader online',
|
||||
'Buy' => 'Kopen',
|
||||
'Buy (%price%)' => 'Koop (%price%)',
|
||||
'Could not connect to licence server!' => 'Kan geen verbinding maken met de licentieserver!',
|
||||
'Could not extract module!' => 'Kon module niet uitpakken!',
|
||||
'Could not remove old module path!' => 'Kan het oude modulepad niet verwijderen!',
|
||||
'Could not update licence. Error: ' => 'Kan de licentie niet updaten. Fout:',
|
||||
'Download of module failed!' => 'Download van module mislukt!',
|
||||
'Edit licence' => 'Licentie bewerken',
|
||||
'If this Module is additionally marked as <strong>"Community"</strong> it is neither tested nor monitored by the HumHub project team.' => 'Als deze module bovendien is gemarkeerd als <strong>"Community" </strong>, wordt deze niet getest of gecontroleerd door het HumHub-projectteam.',
|
||||
'Include Community Modules' => 'Inclusief communitymodules',
|
||||
'Include beta updates' => 'Beta-updates opnemen',
|
||||
'Install' => 'Installeren',
|
||||
'Installed' => 'Geïnstalleerd',
|
||||
'Installed version:' => 'Geïnstalleerde versie:',
|
||||
'Installing module...' => 'Module installeren...',
|
||||
'Latest compatible Version:' => 'Nieuwste compatibele versie:',
|
||||
'Latest compatible version:' => 'Nieuwste compatibele versie:',
|
||||
'Latest version:' => 'Nieuwste versie:',
|
||||
'Licence Key:' => 'Licentie code:',
|
||||
'Licence key' => 'Licentiesleutel',
|
||||
'Licenced for max. {number} users.' => 'Licentie voor maximaal {number} gebruikers.',
|
||||
'Licenced to:' => 'Licentie verleend aan:',
|
||||
'Marketplace' => 'Marktplein',
|
||||
'Max. users:' => 'Maximale aantal gebruikers:',
|
||||
'Module directory %modulePath% is not writeable!' => 'Modulemap %modulePath% is niet schrijfbaar!',
|
||||
'Module download failed! (%error%)' => 'Download van module mislukt! (%error%)',
|
||||
'Module not found or activated!
|
||||
'<strong>Activate</strong> your Professional Edition' => '<strong>Activeer</strong> uw Professional-editie',
|
||||
'Add purchased module by licence key' => 'Aangeschafte module toevoegen met de licentie code',
|
||||
'All modules are up to date!' => 'Alle modules zijn up-to-date!',
|
||||
'All {moduleId} module content will be deleted. Continue?' => 'Alle inhoud van de module {moduleId} wordt verwijderd. Wilt u doorgaan?',
|
||||
'Available updates' => 'Beschikbare updates',
|
||||
'Browse online' => 'Blader online',
|
||||
'Buy' => 'Kopen',
|
||||
'Buy (%price%)' => 'Koop (%price%)',
|
||||
'Could not connect to HumHub API!
|
||||
' => 'Kan geen verbinding maken met HumHub API!',
|
||||
'Could not connect to licence server!' => 'Kan geen verbinding maken met de licentieserver!',
|
||||
'Could not extract module!' => 'Kon module niet uitpakken!',
|
||||
'Could not remove old module path!' => 'Kan het oude modulepad niet verwijderen!',
|
||||
'Could not update licence. Error: ' => 'Kan de licentie niet updaten. Fout:',
|
||||
'Download of module failed!' => 'Download van module mislukt!',
|
||||
'Edit licence' => 'Licentie bewerken',
|
||||
'If this Module is additionally marked as <strong>"Community"</strong> it is neither tested nor monitored by the HumHub project team.' => 'Als deze module bovendien is gemarkeerd als <strong>"Community" </strong>, wordt deze niet getest of gecontroleerd door het HumHub-projectteam.',
|
||||
'Include Community Modules' => 'Inclusief communitymodules',
|
||||
'Include beta updates' => 'Beta-updates opnemen',
|
||||
'Install' => 'Installeren',
|
||||
'Installed' => 'Geïnstalleerd',
|
||||
'Installed version:' => 'Geïnstalleerde versie:',
|
||||
'Installing module...' => 'Module installeren...',
|
||||
'Invalid module licence key!
|
||||
' => 'Ongeldige modulelicentiesleutel!',
|
||||
'Latest compatible Version:' => 'Nieuwste compatibele versie:',
|
||||
'Latest compatible version:' => 'Nieuwste compatibele versie:',
|
||||
'Latest version:' => 'Nieuwste versie:',
|
||||
'Licence Key:' => 'Licentie code:',
|
||||
'Licence key' => 'Licentiesleutel',
|
||||
'Licenced for max. {number} users.' => 'Licentie voor maximaal {number} gebruikers.',
|
||||
'Licenced to:' => 'Licentie verleend aan:',
|
||||
'Marketplace' => 'Marktplein',
|
||||
'Max. users:' => 'Maximale aantal gebruikers:',
|
||||
'Module directory %modulePath% is not writeable!' => 'Modulemap %modulePath% is niet schrijfbaar!',
|
||||
'Module download failed! (%error%)' => 'Download van module mislukt! (%error%)',
|
||||
'Module licence added!
|
||||
' => 'Modulelicentie toegevoegd!',
|
||||
'Module licence key cannot be empty!
|
||||
' => 'Modulelicentiesleutel mag niet leeg zijn!',
|
||||
'Module not found or activated!
|
||||
' => 'Module niet gevonden of geactiveerd!',
|
||||
'Module not found!
|
||||
'Module not found!
|
||||
' => 'Module niet gevonden',
|
||||
'More info' => 'Meer info',
|
||||
'No compatible module version found!' => 'Geen compatibele moduleversie gevonden!',
|
||||
'No license key? Find out more about the {pro} or contact us.' => 'Geen licentiesleutel? Lees meer over de {pro} of neem contact met ons op.',
|
||||
'No modules found!' => 'Geen modules gevonden!',
|
||||
'No purchased modules found!' => 'Geen aangeschafte modules gevonden!',
|
||||
'Ok' => 'Ok',
|
||||
'Professional Edition is activated!' => 'Professional Edition is geactiveerd!',
|
||||
'Purchases' => 'Aankopen',
|
||||
'Register' => 'Registreren',
|
||||
'Remove licence key' => 'Licentiesleutel verwijderen',
|
||||
'Save and update' => 'Opslaan en bijwerken',
|
||||
'Search' => 'Zoek',
|
||||
'The HumHub project does not guarantee the functionality, quality or the continuous development of this Module.' => 'Het HumHub-project garandeert niet de functionaliteit, kwaliteit of de continue ontwikkeling van deze module.',
|
||||
'Third-party' => 'Derden',
|
||||
'Third-party Modules are not covered by Professional Edition agreements.' => 'Modules van derden vallen niet onder de Professional Edition-overeenkomsten.',
|
||||
'Third-party disclaimer' => 'Derde partij disclamer',
|
||||
'This Module was developed by a third-party.' => 'Deze module is ontwikkeld door een derde partij.',
|
||||
'Update' => 'Bijwerken',
|
||||
'Updating module...' => 'Module bijwerken...',
|
||||
'Upgrade to Professional Edition' => 'Upgrade naar Professional Edition',
|
||||
'Version:' => 'Versie:',
|
||||
'View Changelog' => 'Bekijk changelog',
|
||||
'search for available modules online' => 'Zoek online naar beschikbare modules',
|
||||
'Could not connect to HumHub API!
|
||||
' => '',
|
||||
'Invalid module licence key!
|
||||
' => '',
|
||||
'Module licence added!
|
||||
' => '',
|
||||
'Module licence key cannot be empty!
|
||||
' => '',
|
||||
];
|
||||
'More info' => 'Meer info',
|
||||
'No compatible module version found!' => 'Geen compatibele moduleversie gevonden!',
|
||||
'No license key? Find out more about the {pro} or contact us.' => 'Geen licentiesleutel? Lees meer over de {pro} of neem contact met ons op.',
|
||||
'No modules found!' => 'Geen modules gevonden!',
|
||||
'No purchased modules found!' => 'Geen aangeschafte modules gevonden!',
|
||||
'Ok' => 'Ok',
|
||||
'Professional Edition is activated!' => 'Professional Edition is geactiveerd!',
|
||||
'Purchases' => 'Aankopen',
|
||||
'Register' => 'Registreren',
|
||||
'Remove licence key' => 'Licentiesleutel verwijderen',
|
||||
'Save and update' => 'Opslaan en bijwerken',
|
||||
'Search' => 'Zoek',
|
||||
'The HumHub project does not guarantee the functionality, quality or the continuous development of this Module.' => 'Het HumHub-project garandeert niet de functionaliteit, kwaliteit of de continue ontwikkeling van deze module.',
|
||||
'Third-party' => 'Derden',
|
||||
'Third-party Modules are not covered by Professional Edition agreements.' => 'Modules van derden vallen niet onder de Professional Edition-overeenkomsten.',
|
||||
'Third-party disclaimer' => 'Derde partij disclamer',
|
||||
'This Module was developed by a third-party.' => 'Deze module is ontwikkeld door een derde partij.',
|
||||
'Update' => 'Bijwerken',
|
||||
'Updating module...' => 'Module bijwerken...',
|
||||
'Upgrade to Professional Edition' => 'Upgrade naar Professional Edition',
|
||||
'Version:' => 'Versie:',
|
||||
'View Changelog' => 'Bekijk changelog',
|
||||
'search for available modules online' => 'Zoek online naar beschikbare modules',
|
||||
);
|
||||
|
@ -5,11 +5,11 @@ return array (
|
||||
'<strong>Permissions</strong>' => '<strong>権限</strong>',
|
||||
'<strong>User</strong> modules' => '<strong>ユーザー</strong> モジュール',
|
||||
'<strong>User</strong> settings' => '<strong>ユーザー</strong> 設定',
|
||||
'<strong>Your</strong> profile' => '<strong>あなたの</ strong>プロフィール',
|
||||
'<strong>Your</strong> profile' => '<strong>あなたの</strong>プロフィール',
|
||||
'All your personal data will be irrevocably deleted.' => 'あなたのデータ全てが削除されます!',
|
||||
'Are you really sure? *ALL* module data for your profile will be deleted!' => '',
|
||||
'Are you really sure? *ALL* module data for your profile will be deleted!' => '本当によろしいですか? プロファイルの*すべて*のモジュールデータが削除されます!',
|
||||
'Are you sure that you want to delete your account?' => 'あなたのアカウントを削除しても良いのですか?',
|
||||
'Changing the username can make some links unusable, for example old links to the profile.' => '',
|
||||
'Changing the username can make some links unusable, for example old links to the profile.' => 'ユーザー名を変更すると,プロファイルへの古いリンクなど,一部のリンクが使用できなくなる可能性があります。',
|
||||
'Configure' => '設定',
|
||||
'Confirm' => '確認',
|
||||
'Current password' => '現在のパスワード',
|
||||
@ -20,47 +20,47 @@ return array (
|
||||
'E-Mail' => 'メールアドレス',
|
||||
'E-Mail change' => 'メールアドレスを変更する',
|
||||
'Enable' => '有効化',
|
||||
'Enhance your profile with modules.' => '',
|
||||
'Enhance your profile with modules.' => 'モジュールでプロファイルを強化します。',
|
||||
'Enter your password to continue' => '続けるにはパスワードを入力してください',
|
||||
'Hello' => 'こんにちわ',
|
||||
'Here you can edit your general profile data, which is visible in the about page of your profile.' => 'ここではプロフィール画面に表示するデータを編集できます。',
|
||||
'Hide introduction tour panel on dashboard' => 'ダッシュボードの操作案内ガイドパネルを隠す',
|
||||
'Invalid link! Please make sure that you entered the entire url.' => '',
|
||||
'Invalid link! Please make sure that you entered the entire url.' => '無効なリンク! URL全体を入力したことを確認してください。',
|
||||
'Language' => '言語',
|
||||
'Modules' => 'モジュール',
|
||||
'New E-Mail address' => '新しい(変更後の)メールアドレス',
|
||||
'New User name' => '新しいユーザー名',
|
||||
'Not registered users' => '',
|
||||
'Not registered users' => '登録されていないユーザー',
|
||||
'Notifications' => '通知',
|
||||
'Other users' => 'その他のユーザー',
|
||||
'Password Recovery' => 'パスワードの回復',
|
||||
'Permissions' => '権限',
|
||||
'Profile' => 'プロフィール',
|
||||
'Profile visibility' => 'プロフィールの可視化設定',
|
||||
'Registered users only' => '',
|
||||
'Registered users only' => '登録ユーザーのみ',
|
||||
'Save' => '保存',
|
||||
'Save profile' => 'プロフィール保存',
|
||||
'Settings' => '設定',
|
||||
'Tags' => 'タグ',
|
||||
'The entered e-mail address is already in use by another user.' => '',
|
||||
'These settings allow you to determine which permissions you want to grant visitors of your own individual profile. Each user can freely adjust the settings for his or her own profile.' => '',
|
||||
'The entered e-mail address is already in use by another user.' => '入力したメールアドレスは,すでに他のユーザーが使用しています。',
|
||||
'These settings allow you to determine which permissions you want to grant visitors of your own individual profile. Each user can freely adjust the settings for his or her own profile.' => 'これらの設定により,独自の個人プロファイルの訪問者に付与するアクセス許可を決定できます。 各ユーザーは,自分のプロファイルの設定を自由に調整できます。',
|
||||
'TimeZone' => 'タイムゾーン',
|
||||
'Username has been changed' => 'ユーザー名を変更しました',
|
||||
'Users' => 'ユーザー',
|
||||
'Visible for all (also unregistered users)' => '',
|
||||
'We´ve just sent an confirmation e-mail to your new address. <br /> Please follow the instructions inside.' => '新しいメールアドレスにEメールを送信しました。<br />文面の指示に従ってください。',
|
||||
'Visible for all (also unregistered users)' => 'すべてのユーザーに表示されます(未登録のユーザーも)',
|
||||
'We´ve just sent an confirmation e-mail to your new address. <br /> Please follow the instructions inside.' => '新しいメールアドレスにEメールを送信しました。<br>文面の指示に従ってください。',
|
||||
'You are currently the owner of following spaces:' => 'あなたは下記のスペースの管理人です。',
|
||||
'You have requested to change your e-mail address.<br>Your new e-mail address is {newemail}.<br><br>To confirm your new e-mail address please click on the button below.' => 'あなたの新しいEメールアドレスは {newemail} ですか?<br>これで確定する場合は、下記のリンクをクリックしてください。',
|
||||
'You have successfully changed your username.<br>Your new username is {newUsername}.' => '',
|
||||
'You have successfully changed your username.<br>Your new username is {newUsername}.' => 'ユーザー名が正常に変更されました。<br>新しいユーザー名は{newUsername}です。',
|
||||
'You must transfer ownership or delete these spaces before you can delete your account.' => 'あなたはスペース管理者を移譲するか、スペースを削除しないと、アカウントを削除できません。',
|
||||
'Your account cannot be deleted!' => 'あなたのアカウントは削除できません',
|
||||
'Your current E-mail address is <b>{email}</b>. You can change your current E-mail address here.' => 'あなたのメールアドレスは<b>{email}</b>です。メールアドレスはここで変更できます。',
|
||||
'Your current password can be changed here.' => 'ここであなたのパスワードの変更ができます。',
|
||||
'Your current username is <b>{username}</b>. You can change your current username here.' => '',
|
||||
'Your current username is <b>{username}</b>. You can change your current username here.' => '現在のユーザー名は<b> {username} </b>です。 ここで現在のユーザー名を変更できます。',
|
||||
'Your e-mail address has been successfully changed to {email}.' => 'Eメールアドレスの変更に成功しました。 {email}.',
|
||||
'Your friends' => 'あなたのフレンズ',
|
||||
'Your password has been successfully changed!' => 'パスワードを変更しました。',
|
||||
'Your username has been changed' => 'ユーザー名を変更しました。',
|
||||
'Your username has been successfully changed. <br> We´ve just sent an e-mail to you with new information.' => '',
|
||||
'Your username has been successfully changed. <br> We´ve just sent an e-mail to you with new information.' => 'ユーザー名は正常に変更されました。 <br>新しい情報が記載されたメールをお送りしました。',
|
||||
'{attribute} "{value}" was not found!' => '{attribute} "{value}" は見つかりませんでした!',
|
||||
);
|
||||
|
@ -4,12 +4,12 @@ return array (
|
||||
'<strong>Following</strong>' => '<strong>フォロー</strong> ユーザー',
|
||||
'<strong>Group</strong> members - {group}' => '<strong>グループ</strong>のメンバー - {group}',
|
||||
'<strong>Member</strong> in these spaces' => '<strong>スペース</strong> 一覧',
|
||||
'<strong>Member</strong> of these Spaces' => '',
|
||||
'<strong>People</strong>' => '',
|
||||
'<strong>Member</strong> of these Spaces' => 'これらのスペースの<strong>メンバー</strong>',
|
||||
'<strong>People</strong>' => '<strong>人</strong>',
|
||||
'<strong>User</strong> tags' => '<strong>ユーザー</strong> タグ',
|
||||
'All' => 'すべて',
|
||||
'Allows access to your about page with personal information' => '他のユーザーが、あなたのプロフィールページを閲覧できるようにする',
|
||||
'Any' => '',
|
||||
'Any' => 'どれか',
|
||||
'Auth Mode' => '',
|
||||
'Basic Settings' => '基本設定',
|
||||
'Change Email' => 'メールの変更',
|
||||
@ -32,7 +32,7 @@ return array (
|
||||
'E-Mail is already in use! - Try forgot password.' => 'このメールアドレスはすでに使われています。',
|
||||
'Email' => 'メール',
|
||||
'Enable Notifications' => '',
|
||||
'Find people by their profile data or user tags' => '',
|
||||
'Find people by their profile data or user tags' => 'プロファイルデータまたはユーザータグで人を見つける',
|
||||
'Follow' => 'フォロー',
|
||||
'Followers' => 'フォロワー',
|
||||
'Following' => 'フォロー',
|
||||
@ -58,12 +58,12 @@ return array (
|
||||
'Password changed' => '',
|
||||
'Password needs to be at least {chars} characters long.' => '',
|
||||
'Pending Requests' => '',
|
||||
'People' => '',
|
||||
'People' => '人',
|
||||
'Permission' => '権限',
|
||||
'Profile' => 'プロフィール',
|
||||
'Profile posts only' => '',
|
||||
'Register now and participate!' => '登録してください',
|
||||
'Search...' => '',
|
||||
'Search...' => '探す...',
|
||||
'Security' => 'セキュリティ',
|
||||
'Send invite' => '招待状を送る',
|
||||
'Settings' => '設定',
|
||||
@ -83,7 +83,7 @@ return array (
|
||||
'Updated at' => 'で更新',
|
||||
'Updated by' => '更新されました。',
|
||||
'User' => 'ユーザー',
|
||||
'User Group' => '',
|
||||
'User Group' => 'ユーザー・グループ',
|
||||
'User has been invited.' => 'ユーザーが招待されました',
|
||||
'Username' => 'ユーザー名',
|
||||
'Username contains invalid characters.' => '',
|
||||
|
@ -1,16 +1,15 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'An unexpected error occurred while loading the result.' => '結果のロード中に予期しないエラーが発生しました。',
|
||||
'Load more' => 'さらに読み込む',
|
||||
'No users found for the given query.' => 'ユーザーが見つかりませんでした',
|
||||
'Please enter at least {n} character' => '最低でも {n} 文字を入力してください',
|
||||
'Select {n,plural,=1{item} other{items}}' => '{n,plural,=1{item} other{items}} を選択します',
|
||||
'Select {n,plural,=1{user} other{users}}' => '{n,plural,=1{user} other{users}} を選択します',
|
||||
'This field only allows a maximum of {n,plural,=1{# item} other{# items}}.' => 'このフィールドでは、最大 {n,plural,=1{#item} other{#items}} のみが許可されます。',
|
||||
'This field only allows a maximum of {n,plural,=1{# user} other{# users}}.' => 'このフィールドでは、最大 {n,plural,=1{#user} other{#users}} のみが許可されます。',
|
||||
'You reached the maximum number of allowed characters ({n}).' => '許可されている文字の最大数 ({n}) に達しました。',
|
||||
'Your search returned no matches.' => '何も検索できませんでした',
|
||||
'Select user...' => '',
|
||||
'Select...' => '',
|
||||
];
|
||||
return array (
|
||||
'An unexpected error occurred while loading the result.' => '結果のロード中に予期しないエラーが発生しました。',
|
||||
'Load more' => 'さらに読み込む',
|
||||
'No users found for the given query.' => 'ユーザーが見つかりませんでした',
|
||||
'Please enter at least {n} character' => '最低でも {n} 文字を入力してください',
|
||||
'Select user...' => 'ユーザーを選択...',
|
||||
'Select {n,plural,=1{item} other{items}}' => '{n,plural,=1{item} other{items}} を選択します',
|
||||
'Select {n,plural,=1{user} other{users}}' => '{n,plural,=1{user} other{users}} を選択します',
|
||||
'Select...' => '選択する...',
|
||||
'This field only allows a maximum of {n,plural,=1{# item} other{# items}}.' => 'このフィールドでは、最大 {n,plural,=1{#item} other{#items}} のみが許可されます。',
|
||||
'This field only allows a maximum of {n,plural,=1{# user} other{# users}}.' => 'このフィールドでは、最大 {n,plural,=1{#user} other{#users}} のみが許可されます。',
|
||||
'You reached the maximum number of allowed characters ({n}).' => '許可されている文字の最大数 ({n}) に達しました。',
|
||||
'Your search returned no matches.' => '何も検索できませんでした',
|
||||
);
|
||||
|
@ -1,6 +1,5 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'Can Access \'People\'' => '',
|
||||
'Can access \'People\' section.' => '',
|
||||
];
|
||||
return array (
|
||||
'Can Access \'People\'' => '"人"にアクセスできます',
|
||||
'Can access \'People\' section.' => '"人"セクションにアクセスできます。',
|
||||
);
|
||||
|
@ -1,120 +1,119 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'%y Years' => '%y歳',
|
||||
'<b>This profile stream is still empty!</b>' => '<b>このプロフィール・ストリームには何も書かれていません。</b>',
|
||||
'<b>This profile stream is still empty</b><br>Be the first and post something...' => '<b>このプロフィールストリームはまだ空です b> <br>最初に投稿してください...</b>',
|
||||
'<b>Your profile stream is still empty</b><br>Get started and post something...' => '<b>あなたのストリームには何も書かれていません</b><br />何かを適当に書いてみましょう\'',
|
||||
'<strong>About</strong> this user' => '<strong>ユーザー</strong> 詳細',
|
||||
'<strong>Profile</strong> menu' => '<strong>プロフィール</strong>',
|
||||
'About' => 'About',
|
||||
'Allow other selection' => '全ての選択を許可する',
|
||||
'Birthday' => 'お誕生日',
|
||||
'Birthday field options' => '誕生日フィールドのオプション',
|
||||
'Checkbox' => 'チェックボックス',
|
||||
'Checkbox List' => 'チェックボックリスト',
|
||||
'Checkbox field options' => 'チェックボックス型のオプション',
|
||||
'City' => '都市',
|
||||
'Comma separated country codes, e.g. DE,EN,AU' => 'カンマを使って国コードを分割する 例 DE,EN,AU',
|
||||
'Communication' => 'SNS情報',
|
||||
'Country' => '国',
|
||||
'Created at' => 'で作成',
|
||||
'Created by' => 'によって作成された',
|
||||
'Creation date of the user' => 'ユーザーの作成日',
|
||||
'Custom' => 'カスタム',
|
||||
'Date' => '日付',
|
||||
'Date(-time) field options' => '日付型のオプション',
|
||||
'Datetime' => '日付時刻',
|
||||
'Default value' => 'デフォルト値',
|
||||
'Description' => '説明',
|
||||
'E-Mail' => 'メールアドレス',
|
||||
'E-mail address of the user' => 'ユーザーのメールアドレス',
|
||||
'Edit account' => 'アカウント編集',
|
||||
'Editable' => '編集可能',
|
||||
'Facebook URL' => 'FacebookのURL',
|
||||
'Fax' => 'Fax',
|
||||
'Female' => '女性',
|
||||
'Field Type could not be changed!' => 'フィールドタイプを変更できませんでした!',
|
||||
'Fieldtype' => 'フィールドタイプ',
|
||||
'First name' => '名前',
|
||||
'Flickr URL' => 'Flickr URL',
|
||||
'Followers' => 'フォロワー',
|
||||
'Following' => 'フォロー',
|
||||
'Friends' => 'フレンズ',
|
||||
'Gender' => '性別',
|
||||
'General' => '一般設定',
|
||||
'Hide age per default' => '年齢を非表示にする',
|
||||
'Hide year in profile' => '年を隠す',
|
||||
'ID' => 'ID',
|
||||
'Internal Name' => '内部コード',
|
||||
'Internal name already in use!' => 'この内部コードは使われています',
|
||||
'Internal name could not be changed!' => '内部コードは変更不可能です',
|
||||
'Invalid field type!' => 'フィールドタイプが無効です!',
|
||||
'Invalid!' => '無効!',
|
||||
'LDAP Attribute' => 'LDAP属性',
|
||||
'Last login date of the user' => 'ユーザーの最終ログイン日',
|
||||
'Last name' => '姓名',
|
||||
'LinkedIn URL' => 'LinkedIn URL',
|
||||
'MSN' => 'MSN',
|
||||
'Male' => '男性',
|
||||
'Markdown' => 'マークダウン',
|
||||
'Maximum length' => '最大の文字数',
|
||||
'Maximum value' => '最大値',
|
||||
'Minimum length' => '最小の文字数',
|
||||
'Minimum value' => '最小値',
|
||||
'Mobile' => 'モバイル',
|
||||
'Module' => 'モジュール',
|
||||
'Must contain at least one character.' => '少なくとも1文字が含まれている必要があります。',
|
||||
'MySpace URL' => 'MySpace URL',
|
||||
'Number' => '数',
|
||||
'Number field options' => '数字型のオプション',
|
||||
'One option per line. Key=>Value Format (e.g. yes=>Yes)' => '1行に1つのオプション。Key=>Valueの形式(例:yes=>Yes)',
|
||||
'Only alphanumeric characters allowed!' => '英数字のみ使用できます。',
|
||||
'Other:' => 'その他:',
|
||||
'Phone Private' => 'プライベート電話番号',
|
||||
'Phone Work' => '仕事用の電話番号',
|
||||
'Please select:' => '選択してください:',
|
||||
'Possible values' => '可能な値',
|
||||
'Profile Field Category' => 'プロファイルフィールドカテゴリ',
|
||||
'Regular Expression: Error message' => '正規表現:エラーメッセージ',
|
||||
'Regular Expression: Validator' => '正規表現: バリデーター',
|
||||
'Required' => '必須',
|
||||
'Searchable' => '検索可能',
|
||||
'Select List' => 'リストを選択',
|
||||
'Select field options' => '選択型のオプション',
|
||||
'Show at registration' => '登録時に表示する',
|
||||
'Show date/time picker' => '補助カレンダーを使う',
|
||||
'Skype Nickname' => 'Skype名',
|
||||
'Social bookmarks' => 'ソーシャル・ブックマーク',
|
||||
'Sort order' => '並び順',
|
||||
'Spaces' => 'スペース',
|
||||
'State' => '国',
|
||||
'Stream' => 'ストリーム',
|
||||
'Street' => '通り',
|
||||
'Supported ISO3166 country codes' => 'サポートされているISO3166国コード',
|
||||
'Text' => 'テキスト',
|
||||
'Text Area' => 'テキストエリア',
|
||||
'Text Field Options' => 'テキスト型のオプション',
|
||||
'Text area field options' => 'テキストボックス型のオプション',
|
||||
'This profile is no longer available!' => 'このプロファイルは使用できなくなりました。',
|
||||
'This user account is not approved yet!' => 'このユーザーアカウントは未承認です!',
|
||||
'This will add an additional input element for custom values' => 'これにより、カスタム値の入力要素が追加されます',
|
||||
'Title' => 'タイトル',
|
||||
'Translation Category ID' => '翻訳カテゴリID',
|
||||
'Twitter URL' => 'Twitter URL',
|
||||
'Type Config' => 'タイプ構成',
|
||||
'Updated at' => 'で更新',
|
||||
'Updated by' => '更新されました。',
|
||||
'Url' => 'Url',
|
||||
'Username' => 'ユーザー名',
|
||||
'Validator' => 'バリデーター',
|
||||
'Vimeo URL' => 'Vimeo URL',
|
||||
'Visible' => '他のユーザーから閲覧できる',
|
||||
'XMPP Jabber Address' => 'XMPP Jabber Address',
|
||||
'Xing URL' => 'Xing URL',
|
||||
'You need to login to view this user profile!' => 'ユーザープロフィールを確認するためにはログインが必要です。',
|
||||
'YouTube URL' => 'YouTube URL',
|
||||
'Zip' => '郵便番号',
|
||||
'Use as Directory filter' => '',
|
||||
'{attribute} is required!' => '',
|
||||
];
|
||||
return array (
|
||||
'%y Years' => '%y歳',
|
||||
'<b>This profile stream is still empty!</b>' => '<b>このプロフィール・ストリームには何も書かれていません。</b>',
|
||||
'<b>This profile stream is still empty</b><br>Be the first and post something...' => '<b>このプロフィールストリームはまだ空です b> <br>最初に投稿してください...</b>',
|
||||
'<b>Your profile stream is still empty</b><br>Get started and post something...' => '<b>プロファイルストリームはまだ空です</b> <br>初めて何かを投稿してください。',
|
||||
'<strong>About</strong> this user' => '<strong>ユーザー</strong> 詳細',
|
||||
'<strong>Profile</strong> menu' => '<strong>プロフィール</strong>',
|
||||
'About' => '約',
|
||||
'Allow other selection' => '全ての選択を許可する',
|
||||
'Birthday' => 'お誕生日',
|
||||
'Birthday field options' => '誕生日フィールドのオプション',
|
||||
'Checkbox' => 'チェックボックス',
|
||||
'Checkbox List' => 'チェックボックリスト',
|
||||
'Checkbox field options' => 'チェックボックス型のオプション',
|
||||
'City' => '都市',
|
||||
'Comma separated country codes, e.g. DE,EN,AU' => 'カンマを使って国コードを分割する 例 DE,EN,AU',
|
||||
'Communication' => 'SNS情報',
|
||||
'Country' => '国',
|
||||
'Created at' => 'で作成',
|
||||
'Created by' => 'によって作成された',
|
||||
'Creation date of the user' => 'ユーザーの作成日',
|
||||
'Custom' => 'カスタム',
|
||||
'Date' => '日付',
|
||||
'Date(-time) field options' => '日付型のオプション',
|
||||
'Datetime' => '日付時刻',
|
||||
'Default value' => 'デフォルト値',
|
||||
'Description' => '説明',
|
||||
'E-Mail' => 'メールアドレス',
|
||||
'E-mail address of the user' => 'ユーザーのメールアドレス',
|
||||
'Edit account' => 'アカウント編集',
|
||||
'Editable' => '編集可能',
|
||||
'Facebook URL' => 'FacebookのURL',
|
||||
'Fax' => 'Fax',
|
||||
'Female' => '女性',
|
||||
'Field Type could not be changed!' => 'フィールドタイプを変更できませんでした!',
|
||||
'Fieldtype' => 'フィールドタイプ',
|
||||
'First name' => '名前',
|
||||
'Flickr URL' => 'Flickr URL',
|
||||
'Followers' => 'フォロワー',
|
||||
'Following' => 'フォロー',
|
||||
'Friends' => 'フレンズ',
|
||||
'Gender' => '性別',
|
||||
'General' => '一般設定',
|
||||
'Hide age per default' => '年齢を非表示にする',
|
||||
'Hide year in profile' => '年を隠す',
|
||||
'ID' => 'ID',
|
||||
'Internal Name' => '内部コード',
|
||||
'Internal name already in use!' => 'この内部コードは使われています',
|
||||
'Internal name could not be changed!' => '内部コードは変更不可能です',
|
||||
'Invalid field type!' => 'フィールドタイプが無効です!',
|
||||
'Invalid!' => '無効!',
|
||||
'LDAP Attribute' => 'LDAP属性',
|
||||
'Last login date of the user' => 'ユーザーの最終ログイン日',
|
||||
'Last name' => '姓名',
|
||||
'LinkedIn URL' => 'LinkedIn URL',
|
||||
'MSN' => 'MSN',
|
||||
'Male' => '男性',
|
||||
'Markdown' => 'マークダウン',
|
||||
'Maximum length' => '最大の文字数',
|
||||
'Maximum value' => '最大値',
|
||||
'Minimum length' => '最小の文字数',
|
||||
'Minimum value' => '最小値',
|
||||
'Mobile' => 'モバイル',
|
||||
'Module' => 'モジュール',
|
||||
'Must contain at least one character.' => '少なくとも1文字が含まれている必要があります。',
|
||||
'MySpace URL' => 'MySpace URL',
|
||||
'Number' => '数',
|
||||
'Number field options' => '数字型のオプション',
|
||||
'One option per line. Key=>Value Format (e.g. yes=>Yes)' => '1行に1つのオプション。Key=>Valueの形式(例:yes=>Yes)',
|
||||
'Only alphanumeric characters allowed!' => '英数字のみ使用できます。',
|
||||
'Other:' => 'その他:',
|
||||
'Phone Private' => 'プライベート電話番号',
|
||||
'Phone Work' => '仕事用の電話番号',
|
||||
'Please select:' => '選択してください:',
|
||||
'Possible values' => '可能な値',
|
||||
'Profile Field Category' => 'プロファイルフィールドカテゴリ',
|
||||
'Regular Expression: Error message' => '正規表現:エラーメッセージ',
|
||||
'Regular Expression: Validator' => '正規表現: バリデーター',
|
||||
'Required' => '必須',
|
||||
'Searchable' => '検索可能',
|
||||
'Select List' => 'リストを選択',
|
||||
'Select field options' => '選択型のオプション',
|
||||
'Show at registration' => '登録時に表示する',
|
||||
'Show date/time picker' => '補助カレンダーを使う',
|
||||
'Skype Nickname' => 'Skype名',
|
||||
'Social bookmarks' => 'ソーシャル・ブックマーク',
|
||||
'Sort order' => '並び順',
|
||||
'Spaces' => 'スペース',
|
||||
'State' => '国',
|
||||
'Stream' => 'ストリーム',
|
||||
'Street' => '通り',
|
||||
'Supported ISO3166 country codes' => 'サポートされているISO3166国コード',
|
||||
'Text' => 'テキスト',
|
||||
'Text Area' => 'テキストエリア',
|
||||
'Text Field Options' => 'テキスト型のオプション',
|
||||
'Text area field options' => 'テキストボックス型のオプション',
|
||||
'This profile is no longer available!' => 'このプロファイルは使用できなくなりました。',
|
||||
'This user account is not approved yet!' => 'このユーザーアカウントは未承認です!',
|
||||
'This will add an additional input element for custom values' => 'これにより、カスタム値の入力要素が追加されます',
|
||||
'Title' => 'タイトル',
|
||||
'Translation Category ID' => '翻訳カテゴリID',
|
||||
'Twitter URL' => 'Twitter URL',
|
||||
'Type Config' => 'タイプ構成',
|
||||
'Updated at' => 'で更新',
|
||||
'Updated by' => '更新されました。',
|
||||
'Url' => 'Url',
|
||||
'Use as Directory filter' => 'ディレクトリフィルタとして使用',
|
||||
'Username' => 'ユーザー名',
|
||||
'Validator' => 'バリデーター',
|
||||
'Vimeo URL' => 'Vimeo URL',
|
||||
'Visible' => '他のユーザーから閲覧できる',
|
||||
'XMPP Jabber Address' => 'XMPP Jabber Address',
|
||||
'Xing URL' => 'Xing URL',
|
||||
'You need to login to view this user profile!' => 'ユーザープロフィールを確認するためにはログインが必要です。',
|
||||
'YouTube URL' => 'YouTube URL',
|
||||
'Zip' => '郵便番号',
|
||||
'{attribute} is required!' => '{attribute}が必要です!',
|
||||
);
|
||||
|
@ -5,7 +5,7 @@ return array (
|
||||
'<strong>Group</strong> members - {group}' => '<strong>Groep</strong> leden - {group}',
|
||||
'<strong>Member</strong> in these spaces' => '<strong>Lid</strong> van deze ruimten',
|
||||
'<strong>Member</strong> of these Spaces' => '<strong>Lid</strong> van deze Ruimten',
|
||||
'<strong>People</strong>' => '',
|
||||
'<strong>People</strong>' => '<strong>Leden</strong>',
|
||||
'<strong>User</strong> tags' => '<strong>Gebruiker</strong> labels',
|
||||
'All' => 'Alle',
|
||||
'Allows access to your about page with personal information' => 'Verleen toegang tot mijn pagina met persoonlijke informatie',
|
||||
@ -32,7 +32,7 @@ return array (
|
||||
'E-Mail is already in use! - Try forgot password.' => 'E-mailadres is reeds in gebruik - Probeer wachtwoord vergeten.',
|
||||
'Email' => 'E-mail',
|
||||
'Enable Notifications' => 'Notificaties aanzetten',
|
||||
'Find people by their profile data or user tags' => '',
|
||||
'Find people by their profile data or user tags' => 'Vind leden op basis van hun profielgegevens of labels',
|
||||
'Follow' => 'Volg',
|
||||
'Followers' => 'Volgers',
|
||||
'Following' => 'Volgend',
|
||||
@ -57,13 +57,13 @@ return array (
|
||||
'Password' => 'Wachtwoord',
|
||||
'Password changed' => 'Wachtwoord is veranderd',
|
||||
'Password needs to be at least {chars} characters long.' => 'Wachtwoord moet minstens {chars} tekens lang zijn.',
|
||||
'Pending Requests' => '',
|
||||
'Pending Requests' => 'Openstaande verzoeken',
|
||||
'People' => 'Mensen',
|
||||
'Permission' => 'Toestemming',
|
||||
'Profile' => 'Profiel',
|
||||
'Profile posts only' => 'Alleen profielberichten',
|
||||
'Register now and participate!' => 'Registreer nu en doe mee!',
|
||||
'Search...' => '',
|
||||
'Search...' => 'Zoeken...',
|
||||
'Security' => 'Veiligheid',
|
||||
'Send invite' => 'Verstuur uitnodiging',
|
||||
'Settings' => 'Instellingen',
|
||||
@ -77,13 +77,13 @@ return array (
|
||||
'Source' => 'Bron',
|
||||
'Status' => 'Status',
|
||||
'Tags' => 'Labels',
|
||||
'Try other keywords or remove filters.' => '',
|
||||
'Try other keywords or remove filters.' => 'Probeer andere zoekwoorden of verwijder filters.',
|
||||
'Unknown user status!' => 'Onbekende gebruikersstatus!',
|
||||
'Unsuccessful login attempts since last login: {failedLoginAttemptsCount}' => 'Mislukte inlogpogingen sinds laatste login: {failedLoginAttemptsCount}',
|
||||
'Updated at' => 'Bewerkt op',
|
||||
'Updated by' => 'Bewerkt door',
|
||||
'User' => 'Gebruiker',
|
||||
'User Group' => '',
|
||||
'User Group' => 'Gebruikersgroep',
|
||||
'User has been invited.' => 'De gebruiker is uitgenodigd.',
|
||||
'Username' => 'Gebruikersnaam',
|
||||
'Username contains invalid characters.' => 'Gebruikersnaam bevat ongeldige tekens.',
|
||||
|
@ -1,16 +1,15 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'An unexpected error occurred while loading the result.' => 'Er is een onverwachte fout opgetreden tijdens het laden.',
|
||||
'Load more' => 'Meer laden',
|
||||
'No users found for the given query.' => 'Geen gebruikers gevonden met de opgegeven waarden.',
|
||||
'Please enter at least {n} character' => 'Toets tenminste {n} tekens in',
|
||||
'Select {n,plural,=1{item} other{items}}' => 'Kies {n,plural,=1{item} other {items}}',
|
||||
'Select {n,plural,=1{user} other{users}}' => 'Selecteer {n,plural,=1{gebruiker} other{gebruikers}}',
|
||||
'This field only allows a maximum of {n,plural,=1{# item} other{# items}}.' => 'Het maximale aantal is {n,plural,=1{# item} other {# items}}.',
|
||||
'This field only allows a maximum of {n,plural,=1{# user} other{# users}}.' => 'Dit veld kan maximaal {n,plural,=1{# gebruiker} other{# gebruikers}}.',
|
||||
'You reached the maximum number of allowed characters ({n}).' => 'Het maximale aantal tekens is ({n}).',
|
||||
'Your search returned no matches.' => 'Uw zoekopdracht heeft geen overeenkomsten opgeleverd.',
|
||||
'Select user...' => '',
|
||||
'Select...' => '',
|
||||
];
|
||||
return array (
|
||||
'An unexpected error occurred while loading the result.' => 'Er is een onverwachte fout opgetreden tijdens het laden.',
|
||||
'Load more' => 'Meer laden',
|
||||
'No users found for the given query.' => 'Geen gebruikers gevonden met de opgegeven waarden.',
|
||||
'Please enter at least {n} character' => 'Toets tenminste {n} tekens in',
|
||||
'Select user...' => 'Selecteer gebruiker...',
|
||||
'Select {n,plural,=1{item} other{items}}' => 'Kies {n,plural,=1{item} other {items}}',
|
||||
'Select {n,plural,=1{user} other{users}}' => 'Selecteer {n,plural,=1{gebruiker} other{gebruikers}}',
|
||||
'Select...' => 'Selecteer...',
|
||||
'This field only allows a maximum of {n,plural,=1{# item} other{# items}}.' => 'Het maximale aantal is {n,plural,=1{# item} other {# items}}.',
|
||||
'This field only allows a maximum of {n,plural,=1{# user} other{# users}}.' => 'Dit veld kan maximaal {n,plural,=1{# gebruiker} other{# gebruikers}}.',
|
||||
'You reached the maximum number of allowed characters ({n}).' => 'Het maximale aantal tekens is ({n}).',
|
||||
'Your search returned no matches.' => 'Uw zoekopdracht heeft geen overeenkomsten opgeleverd.',
|
||||
);
|
||||
|
@ -1,6 +1,5 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'Can Access \'People\'' => '',
|
||||
'Can access \'People\' section.' => '',
|
||||
];
|
||||
return array (
|
||||
'Can Access \'People\'' => 'Heeft toegang tot \'Leden\'',
|
||||
'Can access \'People\' section.' => 'Heeft toegang tot het gedeelte \'Leden\'.',
|
||||
);
|
||||
|
@ -1,120 +1,119 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'%y Years' => '%y jaar',
|
||||
'<b>This profile stream is still empty!</b>' => '<b>Dit profiel is momenteel nog leeg!</b>',
|
||||
'<b>This profile stream is still empty</b><br>Be the first and post something...' => '<b>Uw profiel is momenteel nog leeg.</b><br />Wees de eerste en een schrijf een bericht...',
|
||||
'<b>Your profile stream is still empty</b><br>Get started and post something...' => '<b>Uw profiel is momenteel nog leeg.</b><br />Begin met het schrijven van een bericht...',
|
||||
'<strong>About</strong> this user' => '<strong>Over</strong> deze gebruiker',
|
||||
'<strong>Profile</strong> menu' => '<strong>Profiel</strong> menu',
|
||||
'About' => 'Over mij',
|
||||
'Allow other selection' => 'Andere selectie toestaan',
|
||||
'Birthday' => 'Geboortedatum',
|
||||
'Birthday field options' => 'Geboortedatum veld opties',
|
||||
'Checkbox' => 'Keuzevak',
|
||||
'Checkbox List' => 'Selectievak keuzelijst',
|
||||
'Checkbox field options' => 'Keuzevak opties',
|
||||
'City' => 'Stad',
|
||||
'Comma separated country codes, e.g. DE,EN,AU' => 'Door komma gescheiden land codes, bijvoorbeeld DE,EN,NL',
|
||||
'Communication' => 'Communicatie',
|
||||
'Country' => 'Land',
|
||||
'Created at' => 'Aangemaakt op',
|
||||
'Created by' => 'Aangemaakt door',
|
||||
'Creation date of the user' => 'Aanmaakdatum van de gebruiker',
|
||||
'Custom' => 'Extra',
|
||||
'Date' => 'Datum',
|
||||
'Date(-time) field options' => 'Datum (en tijd) veld opties',
|
||||
'Datetime' => 'Datumtijd',
|
||||
'Default value' => 'Standaardwaarde',
|
||||
'Description' => 'Beschrijving',
|
||||
'E-Mail' => 'E-mail',
|
||||
'E-mail address of the user' => 'E-mailadres van de gebruiker',
|
||||
'Edit account' => 'Bewerk account',
|
||||
'Editable' => 'Aanpasbaar',
|
||||
'Facebook URL' => 'Facebook URL',
|
||||
'Fax' => 'Fax',
|
||||
'Female' => 'Vrouw',
|
||||
'Field Type could not be changed!' => 'Veldtype kan niet aangepast worden!',
|
||||
'Fieldtype' => 'Veldtype',
|
||||
'First name' => 'Voornaam',
|
||||
'Flickr URL' => 'Flickr URL',
|
||||
'Followers' => 'Volgers',
|
||||
'Following' => 'Volgend',
|
||||
'Friends' => 'Vrienden',
|
||||
'Gender' => 'Geslacht',
|
||||
'General' => 'Algemeen',
|
||||
'Hide age per default' => 'Verberg leeftijd standaard',
|
||||
'Hide year in profile' => 'Verberg jaar in profiel',
|
||||
'ID' => 'ID',
|
||||
'Internal Name' => 'Interne naam',
|
||||
'Internal name already in use!' => 'Interne naam reeds in gebruik',
|
||||
'Internal name could not be changed!' => 'Interne naam kon niet aangepast worden!',
|
||||
'Invalid field type!' => 'Ongeldig veldtype!',
|
||||
'Invalid!' => 'Ongeldig!',
|
||||
'LDAP Attribute' => 'LDAP Attribuut',
|
||||
'Last login date of the user' => 'Laatste aanmelddatum van de gebruiker',
|
||||
'Last name' => 'Achternaam',
|
||||
'LinkedIn URL' => 'LinkedIn URL',
|
||||
'MSN' => 'MSN',
|
||||
'Male' => 'Man',
|
||||
'Markdown' => 'Opmaakcodering',
|
||||
'Maximum length' => 'Maximale lengte',
|
||||
'Maximum value' => 'Maximum waarde',
|
||||
'Minimum length' => 'Minimale lengte',
|
||||
'Minimum value' => 'Minimun waarde',
|
||||
'Mobile' => 'Mobiel',
|
||||
'Module' => 'Module',
|
||||
'Must contain at least one character.' => 'Moet ten minste één teken bevatten.',
|
||||
'MySpace URL' => 'MySpace URL',
|
||||
'Number' => 'Getal',
|
||||
'Number field options' => 'Getalveld opties',
|
||||
'One option per line. Key=>Value Format (e.g. yes=>Yes)' => 'Eén optie per regel. Sleutel => Waardeopmaak (bijvoorbeeld ja => Ja)',
|
||||
'Only alphanumeric characters allowed!' => 'Alleen alfanumerieke karakters zijn toegestaan!',
|
||||
'Other:' => 'Andere:',
|
||||
'Phone Private' => 'Telefoon (privé)',
|
||||
'Phone Work' => 'Telefoon (werk)',
|
||||
'Please select:' => 'Maak een keuze:',
|
||||
'Possible values' => 'Mogelijke waarden',
|
||||
'Profile Field Category' => 'Profiel Veld Categorie',
|
||||
'Regular Expression: Error message' => 'Reguliere expressie: Foutmelding',
|
||||
'Regular Expression: Validator' => 'Reguliere expressie: Validatie',
|
||||
'Required' => 'Verplicht',
|
||||
'Searchable' => 'Doorzoekbaar',
|
||||
'Select List' => 'Keuzelijst',
|
||||
'Select field options' => 'Selecteer veldopties',
|
||||
'Show at registration' => 'Toon bij registratie',
|
||||
'Show date/time picker' => 'Toon datum/tijd kiezer',
|
||||
'Skype Nickname' => 'Skype Nickname',
|
||||
'Social bookmarks' => 'Sociale bladwijzer',
|
||||
'Sort order' => 'Sorteervolgorde',
|
||||
'Spaces' => 'Ruimtes',
|
||||
'State' => 'Staat',
|
||||
'Stream' => 'Stream',
|
||||
'Street' => 'Straat',
|
||||
'Supported ISO3166 country codes' => 'Ondersteunde ISO3166 land codes',
|
||||
'Text' => 'Tekst',
|
||||
'Text Area' => 'Tekstvlak',
|
||||
'Text Field Options' => 'Tekstveld opties',
|
||||
'Text area field options' => 'Tekstvlak opties',
|
||||
'This profile is no longer available!' => 'Dit profiel is niet langer beschikbaar!',
|
||||
'This user account is not approved yet!' => 'Dit account is nog niet goedgekeurd!',
|
||||
'This will add an additional input element for custom values' => 'Dit voegt een extra invoerelement toe voor aangepaste waarden',
|
||||
'Title' => 'Titel',
|
||||
'Translation Category ID' => 'Vertaling Categorie ID',
|
||||
'Twitter URL' => 'Twitter URL',
|
||||
'Type Config' => 'Soort configuratie',
|
||||
'Updated at' => 'Aangepast op',
|
||||
'Updated by' => 'Aangepast door',
|
||||
'Url' => 'URL',
|
||||
'Username' => 'Gebruikernaam',
|
||||
'Validator' => 'Validatie',
|
||||
'Vimeo URL' => 'Vimeo URL',
|
||||
'Visible' => 'Zichtbaar',
|
||||
'XMPP Jabber Address' => 'XMPP Jabber Address',
|
||||
'Xing URL' => 'Xing URL',
|
||||
'You need to login to view this user profile!' => 'U moet ingelogd zijn om dit profiel te bekijken!',
|
||||
'YouTube URL' => 'YouTube URL',
|
||||
'Zip' => 'Postcode',
|
||||
'{attribute} is required!' => '{attribute} is vereist!',
|
||||
'Use as Directory filter' => '',
|
||||
];
|
||||
return array (
|
||||
'%y Years' => '%y jaar',
|
||||
'<b>This profile stream is still empty!</b>' => '<b>Dit profiel is momenteel nog leeg!</b>',
|
||||
'<b>This profile stream is still empty</b><br>Be the first and post something...' => '<b>Uw profiel is momenteel nog leeg.</b><br />Wees de eerste en een schrijf een bericht...',
|
||||
'<b>Your profile stream is still empty</b><br>Get started and post something...' => '<b>Uw profiel is momenteel nog leeg.</b><br />Begin met het schrijven van een bericht...',
|
||||
'<strong>About</strong> this user' => '<strong>Over</strong> deze gebruiker',
|
||||
'<strong>Profile</strong> menu' => '<strong>Profiel</strong> menu',
|
||||
'About' => 'Over mij',
|
||||
'Allow other selection' => 'Andere selectie toestaan',
|
||||
'Birthday' => 'Geboortedatum',
|
||||
'Birthday field options' => 'Geboortedatum veld opties',
|
||||
'Checkbox' => 'Keuzevak',
|
||||
'Checkbox List' => 'Selectievak keuzelijst',
|
||||
'Checkbox field options' => 'Keuzevak opties',
|
||||
'City' => 'Stad',
|
||||
'Comma separated country codes, e.g. DE,EN,AU' => 'Door komma gescheiden land codes, bijvoorbeeld DE,EN,NL',
|
||||
'Communication' => 'Communicatie',
|
||||
'Country' => 'Land',
|
||||
'Created at' => 'Aangemaakt op',
|
||||
'Created by' => 'Aangemaakt door',
|
||||
'Creation date of the user' => 'Aanmaakdatum van de gebruiker',
|
||||
'Custom' => 'Extra',
|
||||
'Date' => 'Datum',
|
||||
'Date(-time) field options' => 'Datum (en tijd) veld opties',
|
||||
'Datetime' => 'Datumtijd',
|
||||
'Default value' => 'Standaardwaarde',
|
||||
'Description' => 'Beschrijving',
|
||||
'E-Mail' => 'E-mail',
|
||||
'E-mail address of the user' => 'E-mailadres van de gebruiker',
|
||||
'Edit account' => 'Bewerk account',
|
||||
'Editable' => 'Aanpasbaar',
|
||||
'Facebook URL' => 'Facebook URL',
|
||||
'Fax' => 'Fax',
|
||||
'Female' => 'Vrouw',
|
||||
'Field Type could not be changed!' => 'Veldtype kan niet aangepast worden!',
|
||||
'Fieldtype' => 'Veldtype',
|
||||
'First name' => 'Voornaam',
|
||||
'Flickr URL' => 'Flickr URL',
|
||||
'Followers' => 'Volgers',
|
||||
'Following' => 'Volgend',
|
||||
'Friends' => 'Vrienden',
|
||||
'Gender' => 'Geslacht',
|
||||
'General' => 'Algemeen',
|
||||
'Hide age per default' => 'Verberg leeftijd standaard',
|
||||
'Hide year in profile' => 'Verberg jaar in profiel',
|
||||
'ID' => 'ID',
|
||||
'Internal Name' => 'Interne naam',
|
||||
'Internal name already in use!' => 'Interne naam reeds in gebruik',
|
||||
'Internal name could not be changed!' => 'Interne naam kon niet aangepast worden!',
|
||||
'Invalid field type!' => 'Ongeldig veldtype!',
|
||||
'Invalid!' => 'Ongeldig!',
|
||||
'LDAP Attribute' => 'LDAP Attribuut',
|
||||
'Last login date of the user' => 'Laatste aanmelddatum van de gebruiker',
|
||||
'Last name' => 'Achternaam',
|
||||
'LinkedIn URL' => 'LinkedIn URL',
|
||||
'MSN' => 'MSN',
|
||||
'Male' => 'Man',
|
||||
'Markdown' => 'Opmaakcodering',
|
||||
'Maximum length' => 'Maximale lengte',
|
||||
'Maximum value' => 'Maximum waarde',
|
||||
'Minimum length' => 'Minimale lengte',
|
||||
'Minimum value' => 'Minimun waarde',
|
||||
'Mobile' => 'Mobiel',
|
||||
'Module' => 'Module',
|
||||
'Must contain at least one character.' => 'Moet ten minste één teken bevatten.',
|
||||
'MySpace URL' => 'MySpace URL',
|
||||
'Number' => 'Getal',
|
||||
'Number field options' => 'Getalveld opties',
|
||||
'One option per line. Key=>Value Format (e.g. yes=>Yes)' => 'Eén optie per regel. Sleutel => Waardeopmaak (bijvoorbeeld ja => Ja)',
|
||||
'Only alphanumeric characters allowed!' => 'Alleen alfanumerieke karakters zijn toegestaan!',
|
||||
'Other:' => 'Andere:',
|
||||
'Phone Private' => 'Telefoon (privé)',
|
||||
'Phone Work' => 'Telefoon (werk)',
|
||||
'Please select:' => 'Maak een keuze:',
|
||||
'Possible values' => 'Mogelijke waarden',
|
||||
'Profile Field Category' => 'Profiel Veld Categorie',
|
||||
'Regular Expression: Error message' => 'Reguliere expressie: Foutmelding',
|
||||
'Regular Expression: Validator' => 'Reguliere expressie: Validatie',
|
||||
'Required' => 'Verplicht',
|
||||
'Searchable' => 'Doorzoekbaar',
|
||||
'Select List' => 'Keuzelijst',
|
||||
'Select field options' => 'Selecteer veldopties',
|
||||
'Show at registration' => 'Toon bij registratie',
|
||||
'Show date/time picker' => 'Toon datum/tijd kiezer',
|
||||
'Skype Nickname' => 'Skype Nickname',
|
||||
'Social bookmarks' => 'Sociale bladwijzer',
|
||||
'Sort order' => 'Sorteervolgorde',
|
||||
'Spaces' => 'Ruimtes',
|
||||
'State' => 'Staat',
|
||||
'Stream' => 'Stream',
|
||||
'Street' => 'Straat',
|
||||
'Supported ISO3166 country codes' => 'Ondersteunde ISO3166 land codes',
|
||||
'Text' => 'Tekst',
|
||||
'Text Area' => 'Tekstvlak',
|
||||
'Text Field Options' => 'Tekstveld opties',
|
||||
'Text area field options' => 'Tekstvlak opties',
|
||||
'This profile is no longer available!' => 'Dit profiel is niet langer beschikbaar!',
|
||||
'This user account is not approved yet!' => 'Dit account is nog niet goedgekeurd!',
|
||||
'This will add an additional input element for custom values' => 'Dit voegt een extra invoerelement toe voor aangepaste waarden',
|
||||
'Title' => 'Titel',
|
||||
'Translation Category ID' => 'Vertaling Categorie ID',
|
||||
'Twitter URL' => 'Twitter URL',
|
||||
'Type Config' => 'Soort configuratie',
|
||||
'Updated at' => 'Aangepast op',
|
||||
'Updated by' => 'Aangepast door',
|
||||
'Url' => 'URL',
|
||||
'Use as Directory filter' => 'Gebruiken als indexfilter',
|
||||
'Username' => 'Gebruikernaam',
|
||||
'Validator' => 'Validatie',
|
||||
'Vimeo URL' => 'Vimeo URL',
|
||||
'Visible' => 'Zichtbaar',
|
||||
'XMPP Jabber Address' => 'XMPP Jabber Address',
|
||||
'Xing URL' => 'Xing URL',
|
||||
'You need to login to view this user profile!' => 'U moet ingelogd zijn om dit profiel te bekijken!',
|
||||
'YouTube URL' => 'YouTube URL',
|
||||
'Zip' => 'Postcode',
|
||||
'{attribute} is required!' => '{attribute} is vereist!',
|
||||
);
|
||||
|
@ -41,7 +41,7 @@ $categories = $user->profile->getProfileFieldCategories();
|
||||
</label>
|
||||
<?php if (strtolower($field->title) == 'about'): ?>
|
||||
<div class="col-sm-9">
|
||||
<p class="form-control-static"><?= RichText::output($field->getUserValue($user, true)) ?></p>
|
||||
<div class="form-control-static"><?= RichText::output($field->getUserValue($user, true)) ?></div>
|
||||
</div>
|
||||
<?php else: ?>
|
||||
<div class="col-sm-9">
|
||||
|
Loading…
x
Reference in New Issue
Block a user