diff --git a/app/angular/workspace/workspace.html b/app/angular/workspace/workspace.html index eb8805db..242c47cd 100644 --- a/app/angular/workspace/workspace.html +++ b/app/angular/workspace/workspace.html @@ -65,7 +65,10 @@

{{ 'Models' | translate }}

{{model.typeName}} - {{model.name}} + + + {{model.name}} + {{model.authorName}} {{model.created | date:'dd/MM/yyyy'}} diff --git a/app/i18n/languages/en.js b/app/i18n/languages/en.js index 3f21d1a7..958490bd 100644 --- a/app/i18n/languages/en.js +++ b/app/i18n/languages/en.js @@ -167,6 +167,7 @@ export default { 'Still, the server and database to keep the project live cost money.': 'Still, the server and database to keep the project live cost money.', 'If you can, please considere a one time only or even monthly contribution via Github Sponsor.': 'If you can, please considere a one time only or even monthly contribution via Github Sponsor.', 'Go to Github Sponsors': 'Go to Github Sponsors', + 'Public link available': 'Public link available', 'Share model':'Share model', 'Create public link':'Create public link', 'Enable import': 'Enable import', diff --git a/app/i18n/languages/pt_BR.js b/app/i18n/languages/pt_BR.js index 372e98bb..9faff03b 100644 --- a/app/i18n/languages/pt_BR.js +++ b/app/i18n/languages/pt_BR.js @@ -167,6 +167,7 @@ export default { 'If you can, please considere a one time only or even monthly contribution via Github Sponsor.': 'Se puder, considere uma contribuição única ou mesmo mensal por meio do Github Sponsors.', 'Go to Github Sponsors': 'Ir para o Github Sponsors', 'Share model': 'Compartilhar modelo', + 'Public link available': 'Link público disponível', 'Create public link': 'Criar link público', 'Enable import': 'Autorizar importação', 'Allow users to make copies using the public link': 'Permitir que os usuários façam cópias usando o link público', diff --git a/app/sass/modelWorkspace.scss b/app/sass/modelWorkspace.scss index a27275b8..06545558 100644 --- a/app/sass/modelWorkspace.scss +++ b/app/sass/modelWorkspace.scss @@ -46,4 +46,13 @@ .modelWorkspace .workspace-header .page-header { margin-top: 10px; border-bottom: 1px solid var(--border-default); -} \ No newline at end of file +} + +//////////////////////////////////////////////////////////////////////////////// +// .share-status +//////////////////////////////////////////////////////////////////////////////// +.share-status { + color: var(--gray-70); + font-size: 1.2rem; + margin-right: 4px; +} \ No newline at end of file