jellyfin-expo/constants/Links.js
2024-11-14 13:45:55 -05:00

57 lines
1.2 KiB
JavaScript

/**
* 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/.
*/
import { getIconName } from '../utils/Icons';
export const QuickStartUrl = 'https://jellyfin.org/docs/general/quick-start.html';
export default [
{
key: 'links-website',
name: 'links.website',
url: 'https://jellyfin.org/',
icon: {
name: getIconName('globe-outline'),
type: 'ionicon'
}
},
{
key: 'links-documentation',
name: 'links.documentation',
url: 'https://jellyfin.org/docs/',
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-help',
name: 'links.help',
url: 'https://jellyfin.org/docs/general/getting-help',
icon: {
name: getIconName('help-buoy'),
type: 'ionicon'
}
}
];