|
| 1 | +<?php |
| 2 | + |
| 3 | +return [ |
| 4 | + |
| 5 | + /* |
| 6 | + |-------------------------------------------------------------------------- |
| 7 | + | Forms Language Lines |
| 8 | + |-------------------------------------------------------------------------- |
| 9 | + | |
| 10 | + | The following language lines are the default lines which match forms. |
| 11 | + | |
| 12 | + */ |
| 13 | + |
| 14 | + // CREATE NEW USER FORM |
| 15 | + 'create_user_label_email' => 'Email do usuário', |
| 16 | + 'create_user_ph_email' => 'Email do usuário', |
| 17 | + 'create_user_icon_email' => 'fa-envelope', |
| 18 | + |
| 19 | + 'create_user_label_username' => 'Apelido', |
| 20 | + 'create_user_ph_username' => 'Apelido', |
| 21 | + 'create_user_icon_username' => 'fa-user', |
| 22 | + |
| 23 | + 'create_user_label_firstname' => 'Nome', |
| 24 | + 'create_user_ph_firstname' => 'Nome', |
| 25 | + 'create_user_icon_firstname' => 'fa-user', |
| 26 | + |
| 27 | + 'create_user_label_lastname' => 'Sobrenome', |
| 28 | + 'create_user_ph_lastname' => 'Sobrenome', |
| 29 | + 'create_user_icon_lastname' => 'fa-user', |
| 30 | + |
| 31 | + 'create_user_label_password' => 'Senha', |
| 32 | + 'create_user_ph_password' => 'Senha', |
| 33 | + 'create_user_icon_password' => 'fa-lock', |
| 34 | + |
| 35 | + 'create_user_label_pw_confirmation' => 'Confirmação de Senha', |
| 36 | + 'create_user_ph_pw_confirmation' => 'Confirmação de Senha', |
| 37 | + 'create_user_icon_pw_confirmation' => 'fa-lock', |
| 38 | + |
| 39 | + 'create_user_label_location' => 'Localização do Usuário', |
| 40 | + 'create_user_ph_location' => 'Localização do Usuário', |
| 41 | + 'create_user_icon_location' => 'fa-map-marker', |
| 42 | + |
| 43 | + 'create_user_label_bio' => 'Informações do Usuário', |
| 44 | + 'create_user_ph_bio' => 'Informações do Usuário', |
| 45 | + 'create_user_icon_bio' => 'fa-pencil', |
| 46 | + |
| 47 | + 'create_user_label_twitter_username' => 'Usuário do Twitter ', |
| 48 | + 'create_user_ph_twitter_username' => 'Usuário do Twitter ', |
| 49 | + 'create_user_icon_twitter_username' => 'fa-twitter', |
| 50 | + |
| 51 | + 'create_user_label_github_username' => 'Usuário do GitHub ', |
| 52 | + 'create_user_ph_github_username' => 'Usuário do GitHub ', |
| 53 | + 'create_user_icon_github_username' => 'fa-github', |
| 54 | + |
| 55 | + 'create_user_label_career_title' => 'Ocupação', |
| 56 | + 'create_user_ph_career_title' => 'Ocupação', |
| 57 | + 'create_user_icon_career_title' => 'fa-briefcase', |
| 58 | + |
| 59 | + 'create_user_label_education' => 'Educação', |
| 60 | + 'create_user_ph_education' => 'Educação', |
| 61 | + 'create_user_icon_education' => 'fa-graduation-cap', |
| 62 | + |
| 63 | + 'create_user_label_role' => 'Nível de Acesso do Usuário', |
| 64 | + 'create_user_ph_role' => 'Selecionar Nível de Acesso do Usuário', |
| 65 | + 'create_user_icon_role' => 'fas fa-fw fas fa-shield-alt', |
| 66 | + |
| 67 | + 'create_user_button_text' => '<i class="fa fa-user-plus" aria-hidden="true"></i> Criar Novo Usuário', |
| 68 | + |
| 69 | + // EDIT USER AS ADMINISTRATOR FORM |
| 70 | + 'edit-user-admin-title' => 'Editar Informações do Usuário', |
| 71 | + |
| 72 | + 'label-username' => 'Apelido', |
| 73 | + 'ph-username' => 'Apelido', |
| 74 | + |
| 75 | + 'label-useremail' => 'Email do usuário', |
| 76 | + 'ph-useremail' => 'Email do usuário', |
| 77 | + |
| 78 | + 'label-userrole_id' => 'Nível de Acesso do Usuário', |
| 79 | + 'option-label' => 'Selecionar Nível do Usuário', |
| 80 | + 'option-user' => 'Usuário', |
| 81 | + 'option-editor' => 'Editor', |
| 82 | + 'option-admin' => 'Administrador', |
| 83 | + 'submit-btn-text' => 'Editar o Usuário!', |
| 84 | + |
| 85 | + 'submit-btn-icon' => 'fa-save', |
| 86 | + 'username-icon' => 'fa-user', |
| 87 | + 'useremail-icon' => 'fa-envelope-o', |
| 88 | + |
| 89 | + 'change-pw' => 'Mudar Senha', |
| 90 | + 'cancel' => 'Cancelar', |
| 91 | + 'save-changes' => '<i class="fa fa-fw fa-save" aria-hidden="true"></i> Salvar Mudanças', |
| 92 | + |
| 93 | + // Search Users Form |
| 94 | + 'search-users-ph' => 'Procurar Usuários', |
| 95 | + |
| 96 | +]; |
0 commit comments