24 lines
647 B
TypeScript
24 lines
647 B
TypeScript
|
|
/*
|
||
|
|
* Copyright (C) Contributors to the Suwayomi project
|
||
|
|
*
|
||
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
||
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
||
|
|
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
|
||
|
|
|
||
|
|
const resources = {
|
||
|
|
en: {
|
||
|
|
translation: {
|
||
|
|
'DefaultNavBar.navbarItems.Library': 'Library',
|
||
|
|
'screens/Library/Library': 'Library',
|
||
|
|
},
|
||
|
|
},
|
||
|
|
fr: {
|
||
|
|
translation: {
|
||
|
|
'DefaultNavBar.navbarItems.Library': 'fr(Library)',
|
||
|
|
'screens/Library/Library': 'fr(Library)',
|
||
|
|
},
|
||
|
|
},
|
||
|
|
};
|
||
|
|
|
||
|
|
export default resources;
|