Skip to content

Commit 176ba30

Browse files
authored
Merge pull request #115 from pukkaro/fix-114
Provide proper window title translation (fixes #114)
2 parents d4f5506 + ad526e4 commit 176ba30

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/app/Http/Controllers/BackupController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public function index()
4949

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

5454
return view('backupmanager::backup', $this->data);
5555
}

src/resources/lang/ro/backup.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@
1212
|
1313
*/
1414

15-
'backup' => 'Copii de siguranță',
15+
'backup' => 'Copie de siguranță',
16+
'backups' => 'Copii de siguranță',
1617
'create_a_new_backup' => 'Creează o nouă copie de siguranță',
1718
'existing_backups' => 'Copii existente',
1819
'date' => 'Data',

0 commit comments

Comments
 (0)