mirror of
				https://github.com/gyurix1968/guacamole-client.git
				synced 2025-10-31 00:53:21 +00:00 
			
		
		
		
	GUAC-968: Reduce number of namespaces. Adopt consistent string naming. Reorganize and reformat. Remove unused strings.
This commit is contained in:
		| @@ -21,25 +21,25 @@ THE SOFTWARE. | ||||
| --> | ||||
|  | ||||
| <div class="logout-panel"> | ||||
|     <a class="back button" href="#/manage/">{{'manage.back' | translate}}</a> | ||||
|     <a class="logout button" ng-click="logout()">{{'home.logout' | translate}}</a> | ||||
|     <a class="back button" href="#/manage/">{{'MANAGE_CONNECTION_GROUP.ACTION_NAVIGATE_BACK' | translate}}</a> | ||||
|     <a class="logout button" ng-click="logout()">{{'MANAGE_CONNECTION_GROUP.ACTION_LOGOUT' | translate}}</a> | ||||
| </div> | ||||
|  | ||||
| <!-- Main property editor --> | ||||
| <h2>{{'manage.edit.connectionGroup.title' | translate}}</h2> | ||||
| <h2>{{'MANAGE_CONNECTION_GROUP.SECTION_HEADER_EDIT_CONNECTION_GROUP' | translate}}</h2> | ||||
| <div class="section"> | ||||
|     <table class="properties"> | ||||
|                      | ||||
|         <!-- Edit connection group name --> | ||||
|         <tr> | ||||
|             <th>{{'manage.edit.connectionGroup.name' | translate}}</th> | ||||
|             <th>{{'MANAGE_CONNECTION_GROUP.FIELD_HEADER_NAME' | translate}}</th> | ||||
|                        | ||||
|             <td><input type="text" ng-model="connectionGroup.name"/></td> | ||||
|         </tr> | ||||
|                      | ||||
|         <!-- Edit connection group location --> | ||||
|         <tr> | ||||
|             <th>{{'manage.edit.connectionGroup.location' | translate}}</th> | ||||
|             <th>{{'MANAGE_CONNECTION_GROUP.FIELD_HEADER_LOCATION' | translate}}</th> | ||||
|                        | ||||
|             <td> | ||||
|                 <location-chooser value="connectionGroup.parentIdentifier" root-group="rootGroup"/> | ||||
| @@ -49,9 +49,9 @@ THE SOFTWARE. | ||||
|                      | ||||
|         <!-- Edit connection group type --> | ||||
|         <tr> | ||||
|             <th>{{'manage.edit.connectionGroup.type.label' | translate}}</th> | ||||
|             <th>{{'MANAGE_CONNECTION_GROUP.FIELD_HEADER_TYPE' | translate}}</th> | ||||
|             <td> | ||||
|                 <select ng-model="connectionGroup.type" ng-options="type.value as 'manage.edit.connectionGroup.type.' + type.label | translate for type in types | orderBy: name"></select> | ||||
|                 <select ng-model="connectionGroup.type" ng-options="type.value as type.label | translate for type in types | orderBy: name"></select> | ||||
|             </td> | ||||
|         </tr> | ||||
|     </table> | ||||
| @@ -59,7 +59,7 @@ THE SOFTWARE. | ||||
|  | ||||
| <!-- Form action buttons --> | ||||
| <div class="action-buttons"> | ||||
|     <button ng-click="saveConnectionGroup()">{{'manage.edit.connectionGroup.save' | translate}}</button> | ||||
|     <button ng-click="cancel()">{{'manage.edit.connectionGroup.cancel' | translate}}</button> | ||||
|     <button ng-click="deleteConnectionGroup()" class="danger">{{'manage.edit.connectionGroup.delete' | translate}}</button> | ||||
|     <button ng-click="saveConnectionGroup()">{{'MANAGE_CONNECTION_GROUP.ACTION_SAVE' | translate}}</button> | ||||
|     <button ng-click="cancel()">{{'MANAGE_CONNECTION_GROUP.ACTION_CANCEL' | translate}}</button> | ||||
|     <button ng-click="deleteConnectionGroup()" class="danger">{{'MANAGE_CONNECTION_GROUP.ACTION_DELETE' | translate}}</button> | ||||
| </div> | ||||
		Reference in New Issue
	
	Block a user