nicolium: renames

Signed-off-by: nicole mikołajczyk <git@mkljczk.pl>
This commit is contained in:
nicole mikołajczyk
2026-02-26 22:06:33 +01:00
parent dd53efabea
commit 7cfb7fbbf2
34 changed files with 58 additions and 58 deletions

View File

@ -1,6 +1,6 @@
import type { Notification } from 'pl-api';
/** Notification types known to pl-fe. */
/** Notification types known to Nicolium. */
const NOTIFICATION_TYPES = [
'follow',
'follow_request',

View File

@ -1,6 +1,6 @@
/**
* State: general Redux state utility functions.
* @module pl-fe/utils/state
* @module @/utils/state
*/
import { getFrontendConfig } from '@/actions/frontend-config';
@ -19,7 +19,7 @@ const federationRestrictionsDisclosed = (state: RootState): boolean =>
!!state.instance.pleroma.metadata.federation.mrf_policies;
/**
* Determine whether pl-fe is running in standalone mode.
* Determine whether Nicolium is running in standalone mode.
* Standalone mode runs separately from any backend and can login anywhere.
*/
const isStandalone = (state: RootState): boolean => {

View File

@ -1,6 +1,6 @@
/**
* Static: functions related to static files.
* @module pl-fe/utils/static
* @module @/utils/static
*/
import { join } from 'path-browserify';