Generated translation keys from code file

This commit is contained in:
Louis Delbosc 2022-12-09 15:09:36 +01:00
parent 7082e3dce9
commit 1d97137f11
2 changed files with 642 additions and 681 deletions

View File

@ -15,7 +15,7 @@ import {cssMenu, cssMenuWrap, defaultMenuOptions, IPopupOptions, setPopupToCreat
import {getUserRoleText} from 'app/common/UserAPI';
import {makeT} from 'app/client/lib/localization';
const t = makeT('aclui.ViewAsDropdown');
const t = makeT("ACLUsers");
function isSpecialEmail(email: string) {
return email === ANONYMOUS_USER_EMAIL || email === EVERYONE_EMAIL;
@ -56,13 +56,13 @@ export class ACLUsersPopup extends Disposable {
cssUsers.cls(''),
cssHeader(t('View As'), dom.show(this._shareUsers.length > 0)),
dom.forEach(this._shareUsers, buildRow),
(this._attributeTableUsers.length > 0) ? cssHeader(t('UsersFrom')) : null,
(this._attributeTableUsers.length > 0) ? cssHeader(t("Users from table")) : null,
dom.forEach(this._attributeTableUsers, buildExampleUserRow),
// Include example users only if there are not many "real" users.
// It might be better to have an expandable section with these users, collapsed
// by default, but that's beyond my UI ken.
(this._shareUsers.length + this._attributeTableUsers.length < 5) ? [
(this._exampleUsers.length > 0) ? cssHeader(t('ExampleUsers')) : null,
(this._exampleUsers.length > 0) ? cssHeader(t("Example Users")) : null,
dom.forEach(this._exampleUsers, buildExampleUserRow)
] : null,
(el) => { setTimeout(() => el.focus(), 0); },

File diff suppressed because it is too large Load Diff