mirror of
https://github.com/streamyfin/streamyfin.git
synced 2025-08-20 18:37:18 +02:00
fix: biome check, remove spell-check (#731)
This commit is contained in:
142
.github/actions/spell-check-this/dictionary.txt
vendored
142
.github/actions/spell-check-this/dictionary.txt
vendored
@@ -1,142 +0,0 @@
|
||||
Streamyfin
|
||||
Jellyfin
|
||||
TVOS
|
||||
Expo
|
||||
submodule-reload
|
||||
prebuild
|
||||
bun
|
||||
biome
|
||||
Gradle
|
||||
APK
|
||||
AAB
|
||||
Android
|
||||
iOS
|
||||
React
|
||||
ReactDOM
|
||||
ReactNative
|
||||
TypeScript
|
||||
JavaScript
|
||||
NodeJS
|
||||
Yarn
|
||||
npm
|
||||
Babel
|
||||
Husky
|
||||
Jest
|
||||
Lodash
|
||||
Zod
|
||||
Axios
|
||||
i18next
|
||||
Jotai
|
||||
TailwindCSS
|
||||
NativeWind
|
||||
Zeego
|
||||
Shopify
|
||||
FlashList
|
||||
MMKV
|
||||
Podfile
|
||||
CocoaPods
|
||||
async
|
||||
backend
|
||||
boolean
|
||||
callback
|
||||
config
|
||||
const
|
||||
dequeue
|
||||
endpoint
|
||||
frontend
|
||||
getter
|
||||
initializer
|
||||
middleware
|
||||
namespace
|
||||
nullable
|
||||
param
|
||||
params
|
||||
preload
|
||||
reducer
|
||||
refactor
|
||||
runtime
|
||||
singleton
|
||||
slug
|
||||
submodule
|
||||
thunk
|
||||
token
|
||||
utils
|
||||
uuid
|
||||
webpack
|
||||
API
|
||||
CLI
|
||||
CPU
|
||||
DB
|
||||
DEV
|
||||
ENV
|
||||
ID
|
||||
JSON
|
||||
OS
|
||||
PR
|
||||
SHA
|
||||
UI
|
||||
URL
|
||||
UTF
|
||||
UUID
|
||||
VSCode
|
||||
XML
|
||||
GitHub
|
||||
GitLab
|
||||
Bitbucket
|
||||
Apple
|
||||
Google
|
||||
PlayStore
|
||||
AppStore
|
||||
Xcode
|
||||
FlatList
|
||||
ScrollView
|
||||
TouchableOpacity
|
||||
ViewPager
|
||||
SafeArea
|
||||
Navigator
|
||||
NavigatorIOS
|
||||
Drawer
|
||||
BottomSheet
|
||||
TabView
|
||||
Reanimated
|
||||
GestureHandler
|
||||
ContextMenu
|
||||
WebView
|
||||
ProgressBar
|
||||
Carousel
|
||||
Slider
|
||||
VolumeManager
|
||||
EdgeToEdge
|
||||
CircularProgress
|
||||
VisibilitySensor
|
||||
BackgroundDownloader
|
||||
NetInfo
|
||||
ActionSheet
|
||||
MaterialTopTabs
|
||||
BottomTabs
|
||||
ReactQuery
|
||||
DeviceInfo
|
||||
ImageColors
|
||||
LinearGradient
|
||||
Localization
|
||||
Notifications
|
||||
ScreenOrientation
|
||||
Sensors
|
||||
Sharing
|
||||
SplashScreen
|
||||
StatusBar
|
||||
SystemUI
|
||||
TaskManager
|
||||
Updates
|
||||
WebBrowser
|
||||
TODO
|
||||
FIXME
|
||||
README
|
||||
Changelog
|
||||
Docs
|
||||
Docstring
|
||||
Linter
|
||||
Formatter
|
||||
Prettier
|
||||
ESLint
|
||||
Stylelint
|
||||
13
.github/spell-check.json
vendored
13
.github/spell-check.json
vendored
@@ -1,13 +0,0 @@
|
||||
{
|
||||
"ignore_files": [
|
||||
"**/node_modules/**",
|
||||
"**/bun.lockb",
|
||||
"**/android/**",
|
||||
"**/ios/**",
|
||||
"**/*.apk",
|
||||
"**/*.aab",
|
||||
"**/*.ipa",
|
||||
".github/actions/spell-check-this/dictionary.txt",
|
||||
".github/spell-check.json"
|
||||
]
|
||||
}
|
||||
66
.github/workflows/check_spelling.yaml
vendored
66
.github/workflows/check_spelling.yaml
vendored
@@ -1,66 +0,0 @@
|
||||
name: 📝 Check Spelling
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- develop
|
||||
- master
|
||||
pull_request_target:
|
||||
branches:
|
||||
- develop
|
||||
- master
|
||||
types:
|
||||
- 'opened'
|
||||
- 'reopened'
|
||||
- 'synchronize'
|
||||
|
||||
jobs:
|
||||
spelling:
|
||||
name: 🔎 Spelling Check
|
||||
permissions:
|
||||
contents: read
|
||||
pull-requests: read
|
||||
actions: read
|
||||
outputs:
|
||||
followup: ${{ steps.spelling.outputs.followup }}
|
||||
runs-on: ubuntu-24.04
|
||||
concurrency:
|
||||
group: spelling-${{ github.event.pull_request.number || github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
steps:
|
||||
- name: 📥 Checkout repository
|
||||
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
||||
with:
|
||||
ref: ${{ github.event.pull_request.head.sha || github.sha }}
|
||||
show-progress: false
|
||||
submodules: recursive
|
||||
fetch-depth: 0
|
||||
|
||||
- name: 🪄 Run Spelling Checker
|
||||
id: spelling
|
||||
uses: check-spelling/check-spelling@main
|
||||
with:
|
||||
checkout: true
|
||||
check_file_names: 1
|
||||
spell_check_this: check-spelling/spell-check-this@v0.0.24
|
||||
post_comment: 0
|
||||
warnings: bad-regex,deprecated-feature,noisy-file
|
||||
extra_dictionaries: |
|
||||
cspell:software-terms/src/softwareTerms.txt
|
||||
local:.github/actions/spell-check-this/dictionary.txt
|
||||
|
||||
comment-pr:
|
||||
name: 💬 Report (PR)
|
||||
runs-on: ubuntu-24.04
|
||||
needs: spelling
|
||||
permissions:
|
||||
pull-requests: write
|
||||
if: (success() || failure()) && needs.spelling.outputs.followup
|
||||
steps:
|
||||
- name: 💬 Post Spelling Report
|
||||
uses: check-spelling/check-spelling@main
|
||||
with:
|
||||
checkout: true
|
||||
spell_check_this: check-spelling/spell-check-this@v0.0.24
|
||||
task: ${{ needs.spelling.outputs.followup }}
|
||||
4
i18n.ts
4
i18n.ts
@@ -4,8 +4,8 @@ import { initReactI18next } from "react-i18next";
|
||||
import { getLocales } from "expo-localization";
|
||||
import de from "./translations/de.json";
|
||||
import en from "./translations/en.json";
|
||||
import es from "./translations/es.json";
|
||||
import eo from "./translations/eo.json";
|
||||
import es from "./translations/es.json";
|
||||
import fr from "./translations/fr.json";
|
||||
import it from "./translations/it.json";
|
||||
import ja from "./translations/ja.json";
|
||||
@@ -14,8 +14,8 @@ import pl from "./translations/pl.json";
|
||||
import ptBR from "./translations/pt-BR.json";
|
||||
import ru from "./translations/ru.json";
|
||||
import sv from "./translations/sv.json";
|
||||
import tr from "./translations/tr.json";
|
||||
import tlh from "./translations/tlh.json";
|
||||
import tr from "./translations/tr.json";
|
||||
import uk from "./translations/uk.json";
|
||||
import zhCN from "./translations/zh-CN.json";
|
||||
import zhTW from "./translations/zh-TW.json";
|
||||
|
||||
@@ -67,7 +67,7 @@
|
||||
"user": "tlhIngan",
|
||||
"server": "Ho'Do' veS",
|
||||
"token": "per De'",
|
||||
"app_version": "ghun wej",
|
||||
"app_version": "ghun wej"
|
||||
},
|
||||
"quick_connect": {
|
||||
"quick_connect_title": "parmaq ngoQ",
|
||||
@@ -198,7 +198,7 @@
|
||||
"app_usage": "ghun {{usedSpace}}%",
|
||||
"device_usage": "naDev {{availableSpace}}%",
|
||||
"size_used": "{{used}} / {{total}} ram",
|
||||
"delete_all_downloaded_files": "Hoch Qaw' Doch yIQaw'",
|
||||
"delete_all_downloaded_files": "Hoch Qaw' Doch yIQaw'"
|
||||
},
|
||||
"intro": {
|
||||
"show_intro": "chu' Doch yIHoch",
|
||||
|
||||
Reference in New Issue
Block a user