Skip to content

Commit

Permalink
Merge pull request #115 from pukkaro/fix-114
Browse files Browse the repository at this point in the history
Provide proper window title translation (fixes #114)
  • Loading branch information
tabacitu authored Aug 12, 2022
2 parents d4f5506 + ad526e4 commit 176ba30
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/app/Http/Controllers/BackupController.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public function index()

// reverse the backups, so the newest one would be on top
$this->data['backups'] = array_reverse($this->data['backups']);
$this->data['title'] = trans('backupmanager::backups');
$this->data['title'] = trans('backpack::backup.backups');

return view('backupmanager::backup', $this->data);
}
Expand Down
3 changes: 2 additions & 1 deletion src/resources/lang/ro/backup.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
|
*/

'backup' => 'Copii de siguranță',
'backup' => 'Copie de siguranță',
'backups' => 'Copii de siguranță',
'create_a_new_backup' => 'Creează o nouă copie de siguranță',
'existing_backups' => 'Copii existente',
'date' => 'Data',
Expand Down

0 comments on commit 176ba30

Please sign in to comment.