translation

This commit is contained in:
Bogdan Cilibiu
2017-10-19 23:21:55 +03:00
parent 3361075971
commit 5a78b7d7df
6 changed files with 28 additions and 11 deletions

View File

@@ -91,8 +91,8 @@
<ng-template>
<div class="app-no-content_block">
<md-icon>star_rate</md-icon>
<p class="app-no-content_title">No favorite files or folders</p>
<p class="app-no-content_text">Favorite items that you want to easily find later.</p>
<p class="app-no-content_title">{{ 'APP.BROWSE.FAVORITES.EMPTY_STATE.TITLE' | translate }}</p>
<p class="app-no-content_text">{{ 'APP.BROWSE.FAVORITES.EMPTY_STATE.TEXT' | translate }}</p>
</div>
</ng-template>
</empty-folder-content>

View File

@@ -23,8 +23,8 @@
<ng-template>
<div class="app-no-content_block">
<md-icon>group_work</md-icon>
<p class="app-no-content_title">You aren't a member of any File Libraries yet</p>
<p class="app-no-content_text">Join sites to upload, view, and share files.</p>
<p class="app-no-content_title">{{ 'APP.BROWSE.LIBRARIES.EMPTY_STATE.TITLE' | translate }}</p>
<p class="app-no-content_text">{{ 'APP.BROWSE.LIBRARIES.EMPTY_STATE.TITLE' | translate }}</p>
</div>
</ng-template>
</empty-folder-content>

View File

@@ -84,8 +84,8 @@
<ng-template>
<div class="app-no-content_block">
<md-icon>access_time</md-icon>
<p class="app-no-content_title">No recent files or folders</p>
<p class="app-no-content_text">Items you upload or edit in the last 30 days are shown here.</p>
<p class="app-no-content_title">{{ 'APP.BROWSE.RECENT.EMPTY_STATE.TITLE' | translate }}</p>
<p class="app-no-content_text">{{ 'APP.BROWSE.RECENT.EMPTY_STATE.TITLE' | translate }}</p>
</div>
</ng-template>
</empty-folder-content>

View File

@@ -82,8 +82,8 @@
<ng-template>
<div class="app-no-content_block">
<md-icon>people</md-icon>
<p class="app-no-content_title">No shared files or folders</p>
<p class="app-no-content_text">Items you share using the Share option are shown here.</p>
<p class="app-no-content_title">{{ 'APP.BROWSE.SHARED.EMPTY_STATE.TITLE' | translate }}</p>
<p class="app-no-content_text">{{ 'APP.BROWSE.SHARED.EMPTY_STATE.TITLE' | translate }}</p>
</div>
</ng-template>
</empty-folder-content>

View File

@@ -40,9 +40,9 @@
<ng-template>
<div class="app-no-content_block">
<md-icon>delete</md-icon>
<p class="app-no-content_title">Trash is empty</p>
<p class="app-no-content_text">Items you delete are moved to the Trash.</p>
<p class="app-no-content_text">Empty Trash to permanently delete items.</p>
<p class="app-no-content_title">{{ 'APP.BROWSE.TRASHCAN.EMPTY_STATE.TITLE' | translate }}</p>
<p class="app-no-content_text">{{ 'APP.BROWSE.TRASHCAN.EMPTY_STATE.FIRST_TEXT' | translate }}</p>
<p class="app-no-content_text">{{ 'APP.BROWSE.TRASHCAN.EMPTY_STATE.SECOND_TEXT' | translate }}</p>
</div>
</ng-template>
</empty-folder-content>

View File

@@ -31,6 +31,10 @@
"SIDENAV_LINK": {
"LABEL": "File Libraries",
"TOOLTIP": "Access File Libraries"
},
"EMPTY_STATE": {
"TITLE": "You aren't a member of any File Libraries yet",
"TEXT": "Join sites to upload, view, and share files."
}
},
"SHARED": {
@@ -45,6 +49,10 @@
"SIDENAV_LINK": {
"LABEL": "Recent Files",
"TOOLTIP": "View files you recently edited"
},
"EMPTY_STATE": {
"TITLE": "No recent files or folders",
"TEXT": "Items you upload or edit in the last 30 days are shown here."
}
},
"FAVORITES": {
@@ -52,6 +60,10 @@
"SIDENAV_LINK": {
"LABEL": "Favorites",
"TOOLTIP": "View your favorite files and folders"
},
"EMPTY_STATE": {
"TITLE": "No favorite files or folders",
"TEXT": "Favorite items that you want to easily find later."
}
},
"TRASHCAN": {
@@ -59,6 +71,11 @@
"SIDENAV_LINK": {
"LABEL": "Trash",
"TOOLTIP": "View deleted files in the trash"
},
"EMPTY_STATE": {
"TITLE": "Trash is empty",
"FIRST_TEXT": "Items you delete are moved to the Trash.",
"SECOND_TEXT": "Empty Trash to permanently delete items."
}
}
},