Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Hungarian translate #732

Open
wants to merge 44 commits into
base: dev
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
b1dbbfc
docs(readme): Fixed 'build' category link
Zeroo28 Jun 29, 2022
f0cd5fd
chore: removed .vscode directory
Zeroo28 Jun 29, 2022
1d99246
Revert "docs(readme): Fixed 'build' category link"
Zeroo28 Jun 29, 2022
96356af
revert(vcs): removed .vscode directory from .gitignore
Zeroo28 Jul 6, 2022
1d62b27
docs: fixes grammar mistakes and typos
Zeroo28 Jul 6, 2022
8414341
Merge branch 'patch-1' of https://github.com/Zeroo28/QtScrcpy into pa…
Zeroo28 Jul 6, 2022
3929ebf
Merge pull request #638 from Zeroo28/patch-1
barry-ran Jul 10, 2022
42a8958
[Github Actions] Capture linux build artifacts
Ujhhgtg Aug 6, 2022
a461aab
gh-actions: update qt
Ujhhgtg Aug 6, 2022
4a41b61
gh-actions: make artifacts' name more clear
Ujhhgtg Aug 6, 2022
4d0a93d
gh-actions: fix grammar
Ujhhgtg Aug 6, 2022
cc66358
gh-actions: try to standardize the process
Ujhhgtg Aug 6, 2022
ca70498
gh-actions: fix & update actions
Ujhhgtg Aug 6, 2022
0d6a9d4
docs: update readme
Ujhhgtg Aug 6, 2022
4da4168
docs: update readme again
Ujhhgtg Aug 6, 2022
06f905d
docs: update chinese readme
Ujhhgtg Aug 6, 2022
1d46e38
ci / gh-actions : update linux build script
Ujhhgtg Aug 8, 2022
dd3a49b
gh-actions: use relwithdebinfo for actions and release for releases
Ujhhgtg Aug 8, 2022
3b4e2c7
feat: enable back to original size after exit fullscreen.
re2zero Aug 18, 2022
fc9e922
docs + ci: update readme and rename linux build script as i have test…
Ujhhgtg Aug 22, 2022
b0a9302
ci: fix a problem caused by renaming
Ujhhgtg Aug 22, 2022
b61818f
gh-actions: remove gen-ver as it causes problems
Ujhhgtg Aug 22, 2022
c074428
scrcpy-server: update to 1.24
Ujhhgtg Aug 22, 2022
4c87400
Merge pull request #656 from UjhhgtgTeams/dev
barry-ran Sep 12, 2022
7b653d7
fix: record failed
barry-ran Sep 12, 2022
0d19d7b
feat: update server source code
barry-ran Sep 12, 2022
d1e14d2
fix: drag ui delay recv video
barry-ran Sep 12, 2022
efda484
Merge branch 'barry-ran:dev' into dev
re2zero Sep 13, 2022
ffaf41d
Merge pull request #666 from re2zero/dev
barry-ran Sep 14, 2022
5be490d
Enable dark window border on Windows
FrzMtrsprt Oct 7, 2022
34c39a4
feat: update server 1.24
barry-ran Oct 16, 2022
06ce462
fix: build error
barry-ran Oct 16, 2022
b9cd841
Fix build error
FrzMtrsprt Oct 16, 2022
0ad1c2a
Merge branch 'barry-ran:dev' into dark_border
FrzMtrsprt Oct 16, 2022
ef6489c
Merge branch 'dark_border' of https://github.com/FrzMtrsprt/QtScrcpy …
FrzMtrsprt Oct 16, 2022
9ac35d3
fix: mac read client version is 1.21
barry-ran Oct 17, 2022
c9919b3
Merge pull request #690 from FrzMtrsprt/dark_border
barry-ran Oct 17, 2022
0b6a9e2
fix: server start failed on samsung
Oct 18, 2022
ac70b7d
docs: update readme
Oct 18, 2022
fcd6832
docs: update readme
Oct 18, 2022
4b5fbe7
fix: samsung error stack corruption detected
Oct 21, 2022
f9fefb8
Merge pull request #706 from barry-ran/fix/sanxing_bug
barry-ran Oct 21, 2022
e981a17
fix: config path error on mac
barry-ran Oct 30, 2022
066324a
Hungarian translate
gidano Dec 7, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
- uses: actions/upload-artifact@v1
with:
name: ${{ steps.package.outputs.package-name }}.zip
path: ci/build/${{ steps.package.outputs.package-name }}.app
path: ci/build/${{ steps.package.outputs.package-name }}.dmg
# Upload to release
- name: Upload Release
if: startsWith(github.ref, 'refs/tags/')
Expand Down
52 changes: 40 additions & 12 deletions .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
name: Ubuntu
# Qt官方没有linux平台的x86包
on:
push:
paths:
Expand All @@ -19,35 +18,64 @@ jobs:
strategy:
matrix:
os: [ubuntu-22.04]
qt-ver: [5.15.1]
qt-ver: [5.15.2]
qt-arch-install: [gcc_64]
gcc-arch: [x64]
env:
target-name: QtScrcpy
qt-install-path: ${{ github.workspace }}/${{ matrix.qt-ver }}
plantform-des: ubuntu
steps:
- name: Cache Qt
id: cache-qt
uses: actions/cache@v1
with:
path: ${{ env.qt-install-path }}/${{ matrix.qt-arch-install }}
key: ${{ runner.os }}/${{ matrix.qt-ver }}/${{ matrix.qt-arch-install }}
- name: Install Qt
uses: jurplel/install-qt-action@v2.13.0
with:
version: ${{ matrix.qt-ver }}
cached: ${{ steps.cache-qt.outputs.cache-hit }}
- name: Ubuntu install GL library
- name: Cache Qt
id: cache-qt
uses: actions/cache@v3.0.6
with:
path: ${{ env.qt-install-path }}/${{ matrix.qt-arch-install }}
key: ${{ runner.os }}/${{ matrix.qt-ver }}/${{ matrix.qt-arch-install }}
- name: Install GL library
run: sudo apt-get install -y libglew-dev libglfw3-dev
- uses: actions/checkout@v2
with:
fetch-depth: 0
submodules: 'true'
ssh-key: ${{ secrets.BOT_SSH_KEY }}
- name: Build Ubuntu
- name: Build RelWithDebInfo
env:
ENV_QT_PATH: ${{ env.qt-install-path }}
run: |
ci/linux/build_for_linux.sh "RelWithDebInfo"
- name: Upload RelWithDebInfo
uses: actions/upload-artifact@v3.1.0
with:
name: QtScrcpy-${{ matrix.os }}-${{ matrix.qt-arch-install }}-RelWithDebInfo
path: output/x64/RelWithDebInfo/*
- name: Build Release
env:
ENV_QT_PATH: ${{ env.qt-install-path }}
run: |
python ci/generate-version.py
ci/linux/build_for_ubuntu.sh RelWithDebInfo
ci/linux/build_for_linux.sh "Release"
- name: Upload Release
uses: actions/upload-artifact@v3.1.0
with:
name: QtScrcpy-${{ matrix.os }}-${{ matrix.qt-arch-install }}-Release
path: output/x64/Release/*
- name: Install the zip utility
run: |
sudo apt install zip -y
- name: Zip the Artifacts
run: |
zip -r QtScrcpy-${{ matrix.os }}-${{ matrix.qt-arch-install }}.zip output/x64/Release
- name: Upload to Releases
if: startsWith(github.ref, 'refs/tags/')
uses: svenstaro/upload-release-action@2.3.0
with:
file: QtScrcpy-${{ matrix.os }}-${{ matrix.qt-arch-install }}.zip
asset_name: QtScrcpy-${{ matrix.os }}-${{ matrix.qt-arch-install }}.zip
repo_token: ${{ secrets.GITHUB_TOKEN }}
tag: ${{ github.ref }}
overwrite: true
4 changes: 4 additions & 0 deletions QtScrcpy/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,8 @@ if(CMAKE_SYSTEM_NAME STREQUAL "Windows")
set(QC_UTIL_SOURCES ${QC_UTIL_SOURCES}
util/mousetap/winmousetap.h
util/mousetap/winmousetap.cpp
util/winutils.h
util/winutils.cpp
)
endif()
if(CMAKE_SYSTEM_NAME STREQUAL "Linux")
Expand All @@ -161,6 +163,8 @@ if(CMAKE_SYSTEM_NAME STREQUAL "Darwin")
set(QC_UTIL_SOURCES ${QC_UTIL_SOURCES}
util/mousetap/cocoamousetap.h
util/mousetap/cocoamousetap.mm
util/path.h
util/path.mm
)
endif()
source_group(util FILES ${QC_UTIL_SOURCES})
Expand Down
Binary file added QtScrcpy/res/i18n/hu_HU.qm
Binary file not shown.
287 changes: 287 additions & 0 deletions QtScrcpy/res/i18n/hu_HU.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,287 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.1" language="hu_HU">
<context>
<name>ToolForm</name>
<message>
<source>Tool</source>
<translation>Eszköz</translation>
</message>
<message>
<source>home</source>
<translation>kezdőlap</translation>
</message>
<message>
<source>menu</source>
<translation>menü</translation>
</message>
<message>
<source>touch switch</source>
<translation>érintő kapcsoló</translation>
</message>
<message>
<source>power</source>
<translation>bekapcsoló</translation>
</message>
<message>
<source>close screen</source>
<translation>képernyő bezárása</translation>
</message>
<message>
<source>volume down</source>
<translation>hangerő le</translation>
</message>
<message>
<source>volume up</source>
<translation>hangerő fel</translation>
</message>
<message>
<source>return</source>
<translation>vissza</translation>
</message>
<message>
<source>app switch</source>
<translation>app váltó</translation>
</message>
<message>
<source>open screen</source>
<translation>képernyő megnyitás</translation>
</message>
<message>
<source>full screen</source>
<translation>teljes képernyő</translation>
</message>
<message>
<source>group control</source>
<translation>csoport vezérlés</translation>
</message>
<message>
<source>expand notify</source>
<translation>értesítés kibontása</translation>
</message>
<message>
<source>screen shot</source>
<translation>képernyőkép</translation>
</message>
</context>
<context>
<name>Dialog</name>
<message>
<source>quit</source>
<translation>kilépés</translation>
</message>
<message>
<source>show</source>
<translation>mutat</translation>
</message>
<message>
<source>Hidden here!</source>
<translation>Itt elrejtve!</translation>
</message>
<message>
<source>no lock</source>
<translation>nem zárol</translation>
</message>
<message>
<source>Notice</source>
<translation>Értesítés</translation>
</message>
<message>
<source>original</source>
<translation>eredeti</translation>
</message>
<message>
<source>select path</source>
<translation>válasszon útvonalat</translation>
</message>
</context>
<context>
<name>Widget</name>
<message>
<source>start server</source>
<translation>indítsa el a szervert</translation>
</message>
<message>
<source>apply</source>
<translation>alkalmaz</translation>
</message>
<message>
<source>clear</source>
<translation>törlés</translation>
</message>
<message>
<source>Wireless</source>
<translation>Vez. nélküli</translation>
</message>
<message>
<source>get device IP</source>
<translation>eszköz IP lekérés</translation>
</message>
<message>
<source>Start Config</source>
<translation>konfig. indítása</translation>
</message>
<message>
<source>stop all server</source>
<translation>minden szerver leállítása</translation>
</message>
<message>
<source>device name:</source>
<translation>eszköz neve:</translation>
</message>
<message>
<source>Simple Mode</source>
<translation>Egyszerű mód</translation>
</message>
<message>
<source>install sndcpy</source>
<translation>sndcpy telepítés</translation>
</message>
<message>
<source>stop audio</source>
<translation>hang leállítása</translation>
</message>
<message>
<source>adb command:</source>
<translation>adb parancs:</translation>
</message>
<message>
<source>device serial:</source>
<translation>eszköz sor.szám:</translation>
</message>
<message>
<source>Use Simple Mode</source>
<translation>Egyszerű mód használata</translation>
</message>
<message>
<source>start audio</source>
<translation>hang indítása</translation>
</message>
<message>
<source>bit rate:</source>
<translation>bitarány:</translation>
</message>
<message>
<source>wireless connect</source>
<translation>vez.nélküli kapcsolat</translation>
</message>
<message>
<source>refresh devices</source>
<translation>eszközök frissítése</translation>
</message>
<message>
<source>USB line</source>
<translation>USB vonal</translation>
</message>
<message>
<source>auto update</source>
<translation>auto frissítés</translation>
</message>
<message>
<source>stop server</source>
<translation>szerver leállítás</translation>
</message>
<message>
<source>frameless</source>
<translation>keret nélkül</translation>
</message>
<message>
<source>terminate</source>
<translation>befejez</translation>
</message>
<message>
<source>start adbd</source>
<translation>adbd indítás</translation>
</message>
<message>
<source>background record</source>
<translation>rögzítés a háttérben</translation>
</message>
<message>
<source>update name</source>
<translation>név frissítése</translation>
</message>
<message>
<source>select path</source>
<translation>elérési útvonal</translation>
</message>
<message>
<source>USB Connect</source>
<translation>USB kapcsolat</translation>
</message>
<message>
<source>reverse connection</source>
<translation>fordított csatlakozás</translation>
</message>
<message>
<source>max size:</source>
<translation>max méret:</translation>
</message>
<message>
<source>stay awake</source>
<translation>maradjon ébren</translation>
</message>
<message>
<source>screen-off</source>
<translation>képernyő ki</translation>
</message>
<message>
<source>refresh script</source>
<translation>szkript frissítése</translation>
</message>
<message>
<source>execute</source>
<translation>végrehajt</translation>
</message>
<message>
<source>Double click to connect:</source>
<translation>Kattintson duplán a csatlakozáshoz:</translation>
</message>
<message>
<source>lock orientation:</source>
<translation>zárolt tájolás:</translation>
</message>
<message>
<source>WIFI Connect</source>
<translation>WIFI kapcsolat</translation>
</message>
<message>
<source>wireless disconnect</source>
<translation>vez.nélküli kapcsolat megszakítása</translation>
</message>
<message>
<source>record screen</source>
<translation>képernyő felvétel</translation>
</message>
<message>
<source>show fps</source>
<translation>fps megjelenítés</translation>
</message>
<message>
<source>record save path:</source>
<translation>mentett felvétel helye:</translation>
</message>
<message>
<source>always on top</source>
<translation>mindig felül</translation>
</message>
<message>
<source>record format:</source>
<translation>felvétel formátum:</translation>
</message>
</context>
<context>
<name>QObject</name>
<message>
<source>This software is completely open source and free. Use it at your own risk. You can download it at the following address:</source>
<translation>Ez a szoftver teljesen nyílt forráskódú és ingyenes. Használja saját felelősségére. Letölthető az alábbi címről:</translation>
</message>
</context>
<context>
<name>VideoForm</name>
<message>
<source>file does not exist</source>
<translation>a fájl nem létezik</translation>
</message>
</context>
</TS>
Loading