mirror of
https://github.com/nextcloud/server.git
synced 2026-06-12 10:10:49 -04:00
feat(appstore): replace OnlyOffice with Euro-Office in office suite switcher
- Replace onlyoffice/onlyoffice entry with collabora-office/richdocuments - Change nextcloud-office appId from richdocuments to eurooffice - Update features and learnMoreUrl for Euro-Office branding Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> Signed-off-by: James Manuel <moodyjmz@users.noreply.github.com>
This commit is contained in:
parent
b165048074
commit
a19c78a9d7
1 changed files with 16 additions and 15 deletions
|
|
@ -8,8 +8,23 @@ import { t } from '@nextcloud/l10n'
|
|||
export const OFFICE_SUITES = Object.freeze([
|
||||
{
|
||||
id: 'nextcloud-office',
|
||||
appId: 'richdocuments',
|
||||
appId: 'eurooffice',
|
||||
name: 'Nextcloud Office',
|
||||
features: [
|
||||
t('settings', 'Powered by Euro-Office'),
|
||||
t('settings', 'Good Nextcloud integration'),
|
||||
t('settings', 'Open source'),
|
||||
t('settings', 'Best performance'),
|
||||
t('settings', 'Limited ODF compatibility'),
|
||||
t('settings', 'Best Microsoft compatibility'),
|
||||
],
|
||||
learnMoreUrl: 'https://github.com/Euro-Office',
|
||||
isPrimary: true,
|
||||
},
|
||||
{
|
||||
id: 'collabora-office',
|
||||
appId: 'richdocuments',
|
||||
name: 'Collabora Office',
|
||||
features: [
|
||||
t('settings', 'Best Nextcloud integration'),
|
||||
t('settings', 'Open source'),
|
||||
|
|
@ -19,20 +34,6 @@ export const OFFICE_SUITES = Object.freeze([
|
|||
t('settings', 'Best support for legacy files'),
|
||||
],
|
||||
learnMoreUrl: 'https://nextcloud.com/collaboraonline/',
|
||||
isPrimary: true,
|
||||
},
|
||||
{
|
||||
id: 'onlyoffice',
|
||||
appId: 'onlyoffice',
|
||||
name: 'Onlyoffice',
|
||||
features: [
|
||||
t('settings', 'Good Nextcloud integration'),
|
||||
t('settings', 'Open core'),
|
||||
t('settings', 'Best performance'),
|
||||
t('settings', 'Limited ODF compatibility'),
|
||||
t('settings', 'Best Microsoft compatibility'),
|
||||
],
|
||||
learnMoreUrl: 'https://nextcloud.com/onlyoffice/',
|
||||
isPrimary: false,
|
||||
},
|
||||
])
|
||||
|
|
|
|||
Loading…
Reference in a new issue