mirror of
				https://github.com/gyurix1968/guacamole-client.git
				synced 2025-10-31 09:03:21 +00:00 
			
		
		
		
	GUAC-919: Fix filtering of project properties in web pages.
This commit is contained in:
		| @@ -42,7 +42,7 @@ | ||||
|  | ||||
|     <!-- Menu --> | ||||
|     <div ng-class="{open: menuShown}" id="menu"> | ||||
|         <h2 id="menu-title">Guacamole ${project.version}</h2> | ||||
|         <h2 id="menu-title">{{'application.title' | translate}}</h2> | ||||
|  | ||||
|         <h3>{{'client.clipboard' | translate}}</h3> | ||||
|         <div class="content" id="clipboard-settings"> | ||||
|   | ||||
| @@ -31,17 +31,17 @@ angular.module('index').config(['$routeProvider', '$locationProvider', | ||||
|      | ||||
|     $routeProvider. | ||||
|         when('/', { | ||||
|             title: 'index.title', | ||||
|             title: 'application.title', | ||||
|             templateUrl: 'app/home/templates/home.html', | ||||
|             controller: 'homeController' | ||||
|         }). | ||||
|         when('/manage/', { | ||||
|             title: 'index.title', | ||||
|             title: 'application.title', | ||||
|             templateUrl: 'app/manage/templates/manage.html', | ||||
|             controller: 'manageController' | ||||
|         }). | ||||
|         when('/login/', { | ||||
|             title: 'index.title', | ||||
|             title: 'application.title', | ||||
|             templateUrl: 'app/login/templates/login.html', | ||||
|             controller: 'loginController' | ||||
|         }). | ||||
|   | ||||
| @@ -1,6 +1,6 @@ | ||||
| { | ||||
|     "index": { | ||||
|         "title" : "Guacamole 0.9.1" | ||||
|     "application": { | ||||
|         "title" : "Guacamole ${project.version}" | ||||
|     }, | ||||
|      | ||||
|     "login": { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user