jellyfin-expo/constants/Links.js

57 lines
1.2 KiB
JavaScript
Raw Normal View History

/**
* 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 http://mozilla.org/MPL/2.0/.
*/
2020-07-13 16:38:51 +00:00
import { getIconName } from '../utils/Icons';
2021-03-25 18:56:07 +00:00
export const QuickStartUrl = 'https://jellyfin.org/docs/general/quick-start.html';
export default [
2020-07-22 03:37:43 +00:00
{
key: 'links-website',
name: 'links.website',
url: 'https://jellyfin.org/',
icon: {
2021-10-07 17:17:01 +00:00
name: getIconName('globe-outline'),
2020-07-22 03:37:43 +00:00
type: 'ionicon'
}
},
{
key: 'links-documentation',
name: 'links.documentation',
url: 'https://docs.jellyfin.org',
icon: {
name: getIconName('book'),
type: 'ionicon'
}
},
{
key: 'links-source',
name: 'links.source',
url: 'https://github.com/jellyfin/jellyfin-expo',
icon: {
name: 'logo-github',
type: 'ionicon'
}
},
{
key: 'links-translate',
name: 'links.translate',
url: 'https://translate.jellyfin.org/projects/jellyfin/jellyfin-expo/',
icon: {
name: 'translate',
type: 'material'
}
},
{
key: 'links-issue',
name: 'links.issue',
url: 'https://github.com/jellyfin/jellyfin-expo/issues',
icon: {
name: getIconName('bug'),
type: 'ionicon'
}
}
2020-01-21 03:36:28 +00:00
];