Skip to content

Commit

Permalink
fix(web): contextualize title in subscription dialog
Browse files Browse the repository at this point in the history
  • Loading branch information
cgx committed Sep 30, 2021
1 parent dec4f24 commit 8f99965
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion UI/Contacts/English.lproj/Localizable.strings
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@
"New Addressbook..." = "New Addressbook...";
"Subscribe to an Addressbook..." = "Subscribe to an Addressbook...";
"Remove the selected Addressbook" = "Remove the selected Addressbook";
"Subscribe to a shared folder" = "Subscribe to a shared folder";
"Subscribe to a shared contact" = "Subscribe to a shared addressbook";
"Search User" = "Search User";
"Name of the Address Book" = "Name of the Address Book";
"Are you sure you want to delete the selected address book?"
Expand Down
2 changes: 1 addition & 1 deletion UI/Scheduler/English.lproj/Localizable.strings
Original file line number Diff line number Diff line change
Expand Up @@ -579,7 +579,7 @@ vtodo_class2 = "(Confidential task)";
"Move To" = "Move To";
"Copy To" = "Copy To";
"Subscriptions" = "Subscriptions";
"Subscribe to a shared folder" = "Subscribe to a shared folder";
"Subscribe to a shared calendar" = "Subscribe to a shared calendar";
"Subscribe to a web calendar..." = "Subscribe to a web calendar...";
"URL of the Calendar" = "URL of the Calendar";
"Web Calendar" = "Web Calendar";
Expand Down
2 changes: 1 addition & 1 deletion UI/Templates/ContactsUI/UIxContactsUserFolders.wox
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<md-dialog flex="50" flex-sm="80" flex-xs="100">
<md-toolbar>
<div class="md-toolbar-tools">
<div class="sg-md-title md-flex"><var:string label:value="Subscribe to a shared folder"/></div>
<div class="sg-md-title md-flex">{{ 'Subscribe to a shared ' + subscribe.folderType | loc }}</div>
<md-button class="md-icon-button" ng-click="subscribe.close()">
<md-icon label:aria-label="Close">close</md-icon>
</md-button>
Expand Down
1 change: 1 addition & 0 deletions UI/WebServerResources/js/Common/sgSubscribe.directive.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@

vm.selectedUser = null;
vm.users = [];
vm.folderType = folderType;

vm.searchTextOptions = {
updateOn: 'default blur',
Expand Down

0 comments on commit 8f99965

Please sign in to comment.