mirror of
https://github.com/qelectrotech/qelectrotech-source-mirror.git
synced 2026-02-21 20:09:59 +01:00
Compare commits
86 Commits
a9632600b6
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
40f7889849 | ||
|
|
430ead5674 | ||
|
|
e52e42af45 | ||
|
|
b7b131f619 | ||
|
|
accc92ef90 | ||
|
|
89be949201 | ||
|
|
fe52babc34 | ||
|
|
f4ff6b1b60 | ||
|
|
23b5aa9f14 | ||
|
|
bd84f8749d | ||
|
|
d7c032f977 | ||
|
|
478f753b92 | ||
|
|
42b6678c00 | ||
|
|
c74d68c082 | ||
|
|
9482d11238 | ||
|
|
e62f7cf056 | ||
|
|
c4b35fc426 | ||
|
|
1209b175a3 | ||
|
|
4af52e79a0 | ||
|
|
efbfaa08d9 | ||
|
|
3f1a46f865 | ||
|
|
9a1f93c5fc | ||
|
|
5d36436df2 | ||
|
|
406fbe6e0c | ||
|
|
a3a5cd1e87 | ||
|
|
1b449686a8 | ||
|
|
d5eeed1aec | ||
|
|
7982989b59 | ||
|
|
6b6668a8bc | ||
|
|
03c1e4666f | ||
|
|
8fcc9b9b6b | ||
|
|
e9a053179e | ||
|
|
5bf11a3a02 | ||
|
|
c17a914896 | ||
|
|
0c62f291f0 | ||
|
|
534de377d3 | ||
|
|
f92992be79 | ||
|
|
4a05550731 | ||
|
|
bd5d8f3d55 | ||
|
|
d29cac51b4 | ||
|
|
4044d04cc5 | ||
|
|
62431aff57 | ||
|
|
130eede517 | ||
|
|
bd89d3a1b7 | ||
|
|
8307008daa | ||
|
|
a9b30ff71e | ||
|
|
87c2480ebc | ||
|
|
5e41ec415e | ||
|
|
fa6e3d31eb | ||
|
|
72bd4803e6 | ||
|
|
47d391c26b | ||
|
|
033c92257e | ||
|
|
2b18d93d43 | ||
|
|
36463542ab | ||
|
|
152b20899c | ||
|
|
765f0087fc | ||
|
|
42037f7f9a | ||
|
|
7df37ab9b5 | ||
|
|
f47143dd6f | ||
|
|
0d5373d640 | ||
|
|
506565489f | ||
|
|
8a2e0a585c | ||
|
|
40744ba41a | ||
|
|
94269afc76 | ||
|
|
73e673ef8a | ||
|
|
fb41b50e37 | ||
|
|
2ebc3a6054 | ||
|
|
bb74f822d7 | ||
|
|
70dbc9cbad | ||
|
|
bd5f4f4f96 | ||
|
|
179a9db0cb | ||
|
|
34ee4ebf49 | ||
|
|
da661b0d4f | ||
|
|
1625692ddd | ||
|
|
4fc2ce8d9e | ||
|
|
0663aa55e8 | ||
|
|
67185f173e | ||
|
|
2c5e5c6b78 | ||
|
|
689b101c55 | ||
|
|
3aa760e3cd | ||
|
|
82f3167d40 | ||
|
|
5b2c861d02 | ||
|
|
ca8f4650a3 | ||
|
|
e7f55ee843 | ||
|
|
cdc747548d | ||
|
|
6038db5c40 |
1
.gitattributes
vendored
Normal file
1
.gitattributes
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
*.qch filter=lfs diff=lfs merge=lfs -text
|
||||||
68
.github/workflows/auto-doxygen.yml
vendored
Normal file
68
.github/workflows/auto-doxygen.yml
vendored
Normal file
@@ -0,0 +1,68 @@
|
|||||||
|
name: Auto-build doxygen docs
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
doxygen:
|
||||||
|
permissions:
|
||||||
|
contents: write
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
if: github.ref == 'refs/heads/master'
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
submodules: 'recursive'
|
||||||
|
show-progress: ''
|
||||||
|
- name: Setup and run doxygen
|
||||||
|
run: sudo apt update && sudo apt install doxygen graphviz qhelpgenerator-qt5 -y
|
||||||
|
- name: Set up Git LFS
|
||||||
|
run: |
|
||||||
|
git lfs install
|
||||||
|
git lfs track "*.qch"
|
||||||
|
- name: Run doxygen
|
||||||
|
run: doxygen Doxyfile
|
||||||
|
- name: Create Pull Request
|
||||||
|
uses: peter-evans/create-pull-request@v8
|
||||||
|
with:
|
||||||
|
token: ${{ secrets.MR_TOKEN }}
|
||||||
|
commit-message: update QCH file
|
||||||
|
committer: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
|
||||||
|
title: Update QCH Help file
|
||||||
|
body: |
|
||||||
|
- Updating QT Help file following commit ${{ github.sha }}.
|
||||||
|
- Auto-generated by [create-pull-request][1]
|
||||||
|
|
||||||
|
[1]: https://github.com/peter-evans/create-pull-request
|
||||||
|
branch: update-qch
|
||||||
|
labels: |
|
||||||
|
qch
|
||||||
|
cicd
|
||||||
|
delete-branch: true
|
||||||
|
add-paths: doc/*.qch
|
||||||
|
- uses: actions/upload-pages-artifact@v3
|
||||||
|
with:
|
||||||
|
path: ${{ github.workspace }}/doc/html/
|
||||||
|
deploy:
|
||||||
|
# Add a dependency to the build job
|
||||||
|
needs: doxygen
|
||||||
|
|
||||||
|
# Grant GITHUB_TOKEN the permissions required to make a Pages deployment
|
||||||
|
permissions:
|
||||||
|
pages: write # to deploy to Pages
|
||||||
|
id-token: write # to verify the deployment originates from an appropriate source
|
||||||
|
|
||||||
|
# Deploy to the github-pages environment
|
||||||
|
environment:
|
||||||
|
name: github-pages
|
||||||
|
url: ${{ steps.deployment.outputs.page_url }}
|
||||||
|
|
||||||
|
# Specify runner + deployment step
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Deploy to GitHub Pages
|
||||||
|
id: deployment
|
||||||
|
uses: actions/deploy-pages@v4 # or specific "vX.X.X" version tag for this action
|
||||||
4
.gitignore
vendored
4
.gitignore
vendored
@@ -3,5 +3,7 @@
|
|||||||
# Qt build output
|
# Qt build output
|
||||||
*.user
|
*.user
|
||||||
# doxygen Doxyfile output
|
# doxygen Doxyfile output
|
||||||
doc/
|
doc/*
|
||||||
|
!doc/QElectroTech.qch
|
||||||
QElectroTech.tag
|
QElectroTech.tag
|
||||||
|
!doc/doc-utils
|
||||||
3
.gitmodules
vendored
3
.gitmodules
vendored
@@ -8,3 +8,6 @@
|
|||||||
path = elements
|
path = elements
|
||||||
url = https://github.com/qelectrotech/qelectrotech-elements.git
|
url = https://github.com/qelectrotech/qelectrotech-elements.git
|
||||||
|
|
||||||
|
[submodule "doxygen-awesome-css"]
|
||||||
|
path = doxygen-awesome-css
|
||||||
|
url = https://github.com/jothepro/doxygen-awesome-css.git
|
||||||
|
|||||||
32
CREDIT
32
CREDIT
@@ -266,3 +266,35 @@ Dank aan Chipsterjulien voor de pakkette Archlinux AUR
|
|||||||
Dank aan Elbert voor de pakkette OS/2
|
Dank aan Elbert voor de pakkette OS/2
|
||||||
Dank aan Zloidemon fvoor de pakkette (port GCC)
|
Dank aan Zloidemon fvoor de pakkette (port GCC)
|
||||||
Dank aan Mrbit van ebuild voor de pakkette Gentoo
|
Dank aan Mrbit van ebuild voor de pakkette Gentoo
|
||||||
|
|
||||||
|
[ko]
|
||||||
|
Qt 라이브러리(Qt Software, http://www.qtsoftware.com/)를 제공해 주신 Qt Software에 감사드립니다. (GNU/GPL 라이선스)
|
||||||
|
KDE 프로젝트 ( http://www.kde.org/ )에 감사드립니다.
|
||||||
|
수학적인 설명을 제공해 주신 Loic에게 감사드립니다.
|
||||||
|
Fedora 패키지를 제공해 주신 Remi Collet에게 감사드립니다.
|
||||||
|
Debian 패키지를 제공해 주신 Laurent Trinques에게 감사드립니다.
|
||||||
|
Mandriva 패키지를 제공해 주신 `trem`에게 감사드립니다.
|
||||||
|
프로젝트 호스팅을 지원해 주신 TuxFamily ( http://tuxfamily.org/ )에 감사드립니다.
|
||||||
|
요소 제공 및 지원을 해주신 `Nishiki`에게 감사드립니다.
|
||||||
|
SingleApplication 클래스를 제공해 준 qtcentre.org에 감사드립니다.
|
||||||
|
스페인어 번역 및 번역 수정에 기여해 주신 Alfredo Carreto ( http://electronicosmx.net )에게 감사드립니다.
|
||||||
|
이탈리아어 번역에 기여해 주신 'Dr.Slump'와 Silvio에게 감사드립니다.
|
||||||
|
포르투갈어 번역에 기여해 주신 Jose Carlos Martins에게 감사드립니다.
|
||||||
|
체코어 번역에 기여해 주신 Pavel Fric에게 감사드립니다.
|
||||||
|
폴란드어 번역에 기여해 주신 Pawel Smiech에게 감사드립니다.
|
||||||
|
러시아어 번역에 기여해 주신 Yuriy Litkevich에게 감사드립니다.
|
||||||
|
카탈로니아어 번역에 기여해 주신 Youssef Ouamalkran에게 감사드립니다.
|
||||||
|
루마니아어 번역에 기여해 주신 Gabi Mandoc에게 감사드립니다.
|
||||||
|
독일어 번역에 기여해 주신 Markus Budde, Jonas Stein, Noah Braden에게 감사드립니다.
|
||||||
|
아랍어 번역에 기여해 주신 Mohamed Souabni에게 감사드립니다.
|
||||||
|
슬로베니아어 번역에 기여해 주신 Uroš Platiše에게 감사드립니다.
|
||||||
|
크로아티아어 번역에 기여해 주신 Antun Marakovic에게 감사드립니다.
|
||||||
|
그리스어 번역에 기여해 주신 Nikos Papadopoylos와 Yannis Gyftomitros에게 감사드립니다.
|
||||||
|
한국어 번역에 기여해 주신 정광호 님께 감사드립니다.
|
||||||
|
Gentoo 패키지를 제공해 주신 Markos Chandras에게 감사드립니다.
|
||||||
|
Slackware 패키지를 제공해 주신 David에게 감사드립니다.
|
||||||
|
Arch Linux AUR 패키지를 제공해 주신 Chipsterjulien에게 감사드립니다.
|
||||||
|
OS/2 패키지를 제공해 주신 Elbert에게 감사드립니다.
|
||||||
|
FreeBSD(GCC 포트) 패키지를 제공해 주신 zloidemon에게 감사드립니다.
|
||||||
|
Gentoo ebuild 패키지를 제공해 주신 Mrbit에게 감사드립니다.
|
||||||
|
|
||||||
|
|||||||
125
ChangeLog
125
ChangeLog
@@ -1,3 +1,128 @@
|
|||||||
|
# QElectroTech - CHANGELOG
|
||||||
|
|
||||||
|
## Version 0.100
|
||||||
|
|
||||||
|
_Compiled from provided commit logs and contributor notes._
|
||||||
|
|
||||||
|
## Overview
|
||||||
|
|
||||||
|
This release (v0.100) collects a large set of new features, UI and editor improvements, element and symbol updates, build and packaging fixes, dependency upgrades, translations, and a broad set of bug fixes and stability improvements. It is intended as a stable, feature-rich stepping stone toward the next major workflows for symbol editing, terminal/strip handling and export improvements.
|
||||||
|
|
||||||
|
## Highlights / Key Features
|
||||||
|
|
||||||
|
- **Terminal Strip / Terminal Strip Editor**
|
||||||
|
- New TerminalStripItem type and related editor workflow added.
|
||||||
|
- Support for drawing and displaying terminal bridges and links in the editor.
|
||||||
|
- Full editor support (layout preview, save/load into .qet files) and undo support for terminal strip operations.
|
||||||
|
- **New Example Projects**
|
||||||
|
- Several new example projects included, notably photovoltaic (PV) examples to help users getting started with PV designs.
|
||||||
|
- **Improved Export / Print Handling**
|
||||||
|
- Export limits adjusted and better handling of QPainter/printing boundaries to avoid export artefacts and out-of-range errors.
|
||||||
|
- Export dialog updated to allow larger pixel limits where appropriate.
|
||||||
|
- **Element & Symbol Additions**
|
||||||
|
- New elements and symbols added (including vendor-specific elements and additional sensors/Arduino components).
|
||||||
|
- Improvements to element import & metadata handling.
|
||||||
|
- **Packaging & Multi-arch Support**
|
||||||
|
- Updated packaging scripts for AppImage, Flatpak, Snap and macOS deployment. Improved aarch64/arm64 support.
|
||||||
|
|
||||||
|
## Detailed Changes
|
||||||
|
|
||||||
|
### Editor & UX
|
||||||
|
|
||||||
|
- Better handling for **rotation, flip and mirror** operations in the element editor:
|
||||||
|
- Primitives and text rotation behavior improved.
|
||||||
|
- Finer rotation increments and predictable text orientation after flips/rotations.
|
||||||
|
- **Wiring and conductor behavior**:
|
||||||
|
- More robust creation and movement of wires and conductor bundles.
|
||||||
|
- Improved text attachment and positioning for wires and improved stability while editing complex conductor networks.
|
||||||
|
- **TerminalStrip editor**: see Highlights - includes drawing, preview, layout editing, persistent storage in the project file and undo support.
|
||||||
|
- **Element Editor & Symbol Trim/Sort**:
|
||||||
|
- Improved trimming/normalization of element metadata.
|
||||||
|
- Better sorting and error handling for element imports (DXF and other formats).
|
||||||
|
- Small UI improvements: About dialog updates, autosave spinbox ranges, improved tooltips and mouse-hover help for dynamic texts.
|
||||||
|
|
||||||
|
### New & Updated Elements
|
||||||
|
|
||||||
|
- New elements added for industrial and automation workflows (including Siemens-related elements, logic elements, sensors and Arduino components).
|
||||||
|
- Symbol library additions and cleanup; improved defaults for newly added symbols.
|
||||||
|
- Element meta-data cleanup: article numbers, descriptions, and manufacturer fields were normalized and trimmed on import.
|
||||||
|
|
||||||
|
### Export / Printing / PDF
|
||||||
|
|
||||||
|
- Adjusted internal export limits to avoid hitting QPainter size restrictions; users can now export larger, high-resolution images/prints in more cases.
|
||||||
|
- Better handling of page sizes and printer-related geometry using QRectF improvements.
|
||||||
|
- PDF export improvements to increase reliability of exported vector content.
|
||||||
|
|
||||||
|
### Build, Dependencies, Packaging
|
||||||
|
|
||||||
|
- Upgrades of core test and build dependencies:
|
||||||
|
- Catch2 upgraded to v2.13.10.
|
||||||
|
- googletest upgraded to v1.17.0.
|
||||||
|
- CMake fixes and i18n handling corrected for nl_BE and other locales.
|
||||||
|
- Packaging scripts updated across platforms (AppImage/Flatpak/Snap/macOS deploy) including fixes for aarch64/arm64.
|
||||||
|
- Submodule updates (e.g., qelectrotech-elements, pugixml, SingleApplication) synchronized where needed.
|
||||||
|
|
||||||
|
### Internationalization & Translations
|
||||||
|
|
||||||
|
- Large translation updates across many languages: German (DE), French (FR), Dutch (NL, including nl_BE), Swedish (SV), Italian (IT), Polish (PL), Portuguese-BR (PT-BR), Serbian (SR), Chinese (Simplified) and others.
|
||||||
|
- Fixes and corrections for many UI strings and localized resources.
|
||||||
|
|
||||||
|
### Tests, QA & Logging
|
||||||
|
|
||||||
|
- Improved logging and machine/config-path reporting; Git revision display refined to only show a revision when available.
|
||||||
|
- Unit test updates and fixes to align with updated testing frameworks.
|
||||||
|
|
||||||
|
## Bug Fixes (selected)
|
||||||
|
|
||||||
|
- Fixed crashes and various null pointer access issues discovered by static and dynamic testing.
|
||||||
|
- Resolved multiple reported bugs that caused build failures on some platforms (FTBFS fixes for macOS and others).
|
||||||
|
- Fixed issues with automatic conductor/strand numbering in several edge cases (referenced Bug 293 in the commit logs).
|
||||||
|
- Resolved text/summary headline issues in the German-language summary generator.
|
||||||
|
- Fixes for a number of visually incorrect renderings and layout corner-cases during element transformation (rotate/flip/mirror).
|
||||||
|
- Fixed issues that affected export sizes and caused export artifacts (referenced fixes for bug IDs around #329/#330 in commit notes).
|
||||||
|
|
||||||
|
## Developer & Contributor Notes
|
||||||
|
|
||||||
|
- Reworked parts of the codebase to use QRectF consistently for better compatibility with QPrinter and export pipelines.
|
||||||
|
- Code-style cleanups and comment improvements applied throughout the project.
|
||||||
|
- Expanded test coverage and dependency refresh to keep CI builds stable.
|
||||||
|
|
||||||
|
## Contributors (selected)
|
||||||
|
|
||||||
|
Thanks to the many contributors who made this release possible. Selected contributors mentioned in the commit logs include:
|
||||||
|
|
||||||
|
- Laurent Trinques
|
||||||
|
- joshua
|
||||||
|
- plc-user
|
||||||
|
- Achim
|
||||||
|
- Pascal Sander
|
||||||
|
- Andre Rummler
|
||||||
|
- Magnus Hellströmer
|
||||||
|
- Martin Marmsoler
|
||||||
|
- Remi Collet
|
||||||
|
|
||||||
|
(See the full commit history for the complete contributor list.)
|
||||||
|
|
||||||
|
## Upgrade / Migration Notes
|
||||||
|
|
||||||
|
- No database or project file format breaking changes were reported in the provided logs. As always, back up projects before opening them with a new version.
|
||||||
|
- If you rely on custom element libraries or third-party submodules, verify submodule synchronization after upgrading.
|
||||||
|
- If you are using custom packaging pipelines, review the updated packaging scripts for any changes required by new dependency versions, especially on aarch64/arm64.
|
||||||
|
|
||||||
|
## Known Issues & Limitations
|
||||||
|
|
||||||
|
- Some very large exports may still be limited by platform-specific rendering restrictions; the export dialog now allows larger pixel limits but extreme sizes may still hit system-level limits.
|
||||||
|
- If you use niche element-import workflows (DXF → element import), occasionally metadata normalization may alter whitespace/trim rules - verify newly imported elements in the element editor.
|
||||||
|
|
||||||
|
## How to get help / report bugs
|
||||||
|
|
||||||
|
- Use the project issue tracker (see repository) to report regressions or new bugs with detailed reproduction steps and example .qet files where possible.
|
||||||
|
- Include the output of Help → About (application version and Git revision) when reporting build/packaging issues.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
====== ChangeLog from 0.8 to 0.9 ======
|
====== ChangeLog from 0.8 to 0.9 ======
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -6,6 +6,8 @@
|
|||||||
|
|
||||||
**Closed issues:**
|
**Closed issues:**
|
||||||
|
|
||||||
|
- error in doxygen action code [\#414](https://github.com/qelectrotech/qelectrotech-source-mirror/issues/414)
|
||||||
|
- "NoName" is automatically inserted into empty text cells in title block [\#407](https://github.com/qelectrotech/qelectrotech-source-mirror/issues/407)
|
||||||
- Apple silicon download is not working [\#400](https://github.com/qelectrotech/qelectrotech-source-mirror/issues/400)
|
- Apple silicon download is not working [\#400](https://github.com/qelectrotech/qelectrotech-source-mirror/issues/400)
|
||||||
- Apple silicon download is not working [\#394](https://github.com/qelectrotech/qelectrotech-source-mirror/issues/394)
|
- Apple silicon download is not working [\#394](https://github.com/qelectrotech/qelectrotech-source-mirror/issues/394)
|
||||||
- Differenciating connector for proper labeling [\#390](https://github.com/qelectrotech/qelectrotech-source-mirror/issues/390)
|
- Differenciating connector for proper labeling [\#390](https://github.com/qelectrotech/qelectrotech-source-mirror/issues/390)
|
||||||
@@ -35,12 +37,16 @@
|
|||||||
|
|
||||||
**Merged pull requests:**
|
**Merged pull requests:**
|
||||||
|
|
||||||
|
- Update QCH Help file [\#416](https://github.com/qelectrotech/qelectrotech-source-mirror/pull/416) ([Int-Circuit](https://github.com/Int-Circuit))
|
||||||
|
- no random hashes to have more constant order of XML-tags [\#415](https://github.com/qelectrotech/qelectrotech-source-mirror/pull/415) ([plc-user](https://github.com/plc-user))
|
||||||
|
- Delete outdated QET docs [\#412](https://github.com/qelectrotech/qelectrotech-source-mirror/pull/412) ([Int-Circuit](https://github.com/Int-Circuit))
|
||||||
- Fixing translation file list in CMake [\#404](https://github.com/qelectrotech/qelectrotech-source-mirror/pull/404) ([arummler](https://github.com/arummler))
|
- Fixing translation file list in CMake [\#404](https://github.com/qelectrotech/qelectrotech-source-mirror/pull/404) ([arummler](https://github.com/arummler))
|
||||||
- Update dependencies to fix compilation errors [\#403](https://github.com/qelectrotech/qelectrotech-source-mirror/pull/403) ([arummler](https://github.com/arummler))
|
- Update dependencies to fix compilation errors [\#403](https://github.com/qelectrotech/qelectrotech-source-mirror/pull/403) ([arummler](https://github.com/arummler))
|
||||||
- Minor corrections to prevent crashes [\#401](https://github.com/qelectrotech/qelectrotech-source-mirror/pull/401) ([Evilscrack](https://github.com/Evilscrack))
|
- Minor corrections to prevent crashes [\#401](https://github.com/qelectrotech/qelectrotech-source-mirror/pull/401) ([Evilscrack](https://github.com/Evilscrack))
|
||||||
- Correct compositeText alignment on copying [\#399](https://github.com/qelectrotech/qelectrotech-source-mirror/pull/399) ([ChuckNr11](https://github.com/ChuckNr11))
|
- Correct compositeText alignment on copying [\#399](https://github.com/qelectrotech/qelectrotech-source-mirror/pull/399) ([ChuckNr11](https://github.com/ChuckNr11))
|
||||||
- Better handling of conductors when moving [\#398](https://github.com/qelectrotech/qelectrotech-source-mirror/pull/398) ([ChuckNr11](https://github.com/ChuckNr11))
|
- Better handling of conductors when moving [\#398](https://github.com/qelectrotech/qelectrotech-source-mirror/pull/398) ([ChuckNr11](https://github.com/ChuckNr11))
|
||||||
- A few small improvements [\#395](https://github.com/qelectrotech/qelectrotech-source-mirror/pull/395) ([ChuckNr11](https://github.com/ChuckNr11))
|
- A few small improvements [\#395](https://github.com/qelectrotech/qelectrotech-source-mirror/pull/395) ([ChuckNr11](https://github.com/ChuckNr11))
|
||||||
|
- Added updated automatic doxygen build on push + theme to make it fit with docs page [\#389](https://github.com/qelectrotech/qelectrotech-source-mirror/pull/389) ([Int-Circuit](https://github.com/Int-Circuit))
|
||||||
- qet\_de updated [\#388](https://github.com/qelectrotech/qelectrotech-source-mirror/pull/388) ([Bisku](https://github.com/Bisku))
|
- qet\_de updated [\#388](https://github.com/qelectrotech/qelectrotech-source-mirror/pull/388) ([Bisku](https://github.com/Bisku))
|
||||||
- only calculate grid-point-size, when min != max [\#387](https://github.com/qelectrotech/qelectrotech-source-mirror/pull/387) ([plc-user](https://github.com/plc-user))
|
- only calculate grid-point-size, when min != max [\#387](https://github.com/qelectrotech/qelectrotech-source-mirror/pull/387) ([plc-user](https://github.com/plc-user))
|
||||||
- Mouse hover text for dynamic text items [\#386](https://github.com/qelectrotech/qelectrotech-source-mirror/pull/386) ([elevatormind](https://github.com/elevatormind))
|
- Mouse hover text for dynamic text items [\#386](https://github.com/qelectrotech/qelectrotech-source-mirror/pull/386) ([elevatormind](https://github.com/elevatormind))
|
||||||
|
|||||||
2535
Doxyfile.bak
Normal file
2535
Doxyfile.bak
Normal file
File diff suppressed because it is too large
Load Diff
@@ -214,3 +214,20 @@ QElectroTech と一緒に提供される要素コレクションは現状のま
|
|||||||
ライセンスのコピーを見るには http://creativecommons.org/licenses/by/3.0/ にアクセスするか、
|
ライセンスのコピーを見るには http://creativecommons.org/licenses/by/3.0/ にアクセスするか、
|
||||||
「Creative Commons, 171 Second Street, Suite 300, San Francisco, California, 94105, USA.」に
|
「Creative Commons, 171 Second Street, Suite 300, San Francisco, California, 94105, USA.」に
|
||||||
手紙を送ってください。
|
手紙を送ってください。
|
||||||
|
|
||||||
|
[ko]
|
||||||
|
QElectroTech와 함께 제공되는 요소 컬렉션은 “있는 그대로(as is)” 제공되며,
|
||||||
|
특정 목적에 대한 적합성이나 정상 동작에 대한 어떠한 보증도 제공되지 않습니다.
|
||||||
|
요소의 사용, 수정 및 전기 도면에의 통합은 도면의 최종 라이선스와 관계없이
|
||||||
|
아무런 조건 없이 허용됩니다.
|
||||||
|
|
||||||
|
본 소프트웨어 또는 관련 파일을 기계 학습(machine learning) 모델을 구축하기 위한
|
||||||
|
샘플 데이터로 사용하는 것은 허용되지 않습니다.
|
||||||
|
|
||||||
|
전기 도면과 분리된 형태로 QElectroTech 요소 컬렉션의 전부 또는 일부를,
|
||||||
|
수정 여부와 관계없이 재배포하는 경우에는 CC-BY 라이선스 조건을 준수해야 합니다.
|
||||||
|
본 저작물은 Creative Commons Attribution 3.0 라이선스에 따라 제공됩니다.
|
||||||
|
라이선스 사본은 다음 주소에서 확인할 수 있습니다.
|
||||||
|
http://creativecommons.org/licenses/by/3.0/
|
||||||
|
또는 다음 주소로 서신을 보내실 수 있습니다.
|
||||||
|
Creative Commons, 171 Second Street, Suite 300, San Francisco, California, 94105, USA.
|
||||||
|
|||||||
@@ -48,8 +48,8 @@ Here are the technical choices made for the software development:
|
|||||||
* Coding language: [C++](https://en.wikipedia.org/wiki/C%2B%2B)
|
* Coding language: [C++](https://en.wikipedia.org/wiki/C%2B%2B)
|
||||||
* GUI translations: [Qt Linguist](http://doc.qt.io/qt-5/qtlinguist-index.html)
|
* GUI translations: [Qt Linguist](http://doc.qt.io/qt-5/qtlinguist-index.html)
|
||||||
* Version control: [GIT](https://github.com/qelectrotech/qelectrotech-source-mirror.git)
|
* Version control: [GIT](https://github.com/qelectrotech/qelectrotech-source-mirror.git)
|
||||||
* Doxygen documentation :[Doxygen](https://download.qelectrotech.org/qet/doxygen/html/)
|
* Doxygen documentation :[Doxygen](https://qelectrotech.github.io/qelectrotech-source-mirror/)
|
||||||
* QtCreator qch doxygen :[QElectroTech.qch](https://download.qelectrotech.org/qet/doxygen/)
|
* QtCreator qch doxygen :[QElectroTech.qch](https://github.com/qelectrotech/qelectrotech-source-mirror/blob/master/doc/QElectroTech.qch)
|
||||||
* File format for projects, elements and titleblocks: [XML](http://www.w3schools.com/xml/xml_whatis.asp)
|
* File format for projects, elements and titleblocks: [XML](http://www.w3schools.com/xml/xml_whatis.asp)
|
||||||
* Main development platform: [GNU/Linux](http://getgnulinux.org/en/linux/)
|
* Main development platform: [GNU/Linux](http://getgnulinux.org/en/linux/)
|
||||||
* Targeted platforms: Windows, GNU/Linux, Mac OS X, BSDs
|
* Targeted platforms: Windows, GNU/Linux, Mac OS X, BSDs
|
||||||
|
|||||||
@@ -109,6 +109,7 @@
|
|||||||
|
|
||||||
; For consistency, we limit the installer to languages supported by QElectroTech itself
|
; For consistency, we limit the installer to languages supported by QElectroTech itself
|
||||||
!insertmacro MUI_LANGUAGE "English" ;first language is the default language
|
!insertmacro MUI_LANGUAGE "English" ;first language is the default language
|
||||||
|
!insertmacro MUI_LANGUAGE "Korean"
|
||||||
!insertmacro MUI_LANGUAGE "French"
|
!insertmacro MUI_LANGUAGE "French"
|
||||||
!insertmacro MUI_LANGUAGE "Spanish"
|
!insertmacro MUI_LANGUAGE "Spanish"
|
||||||
!insertmacro MUI_LANGUAGE "Russian"
|
!insertmacro MUI_LANGUAGE "Russian"
|
||||||
@@ -125,7 +126,6 @@
|
|||||||
!insertmacro MUI_LANGUAGE "Dutch"
|
!insertmacro MUI_LANGUAGE "Dutch"
|
||||||
!insertmacro MUI_LANGUAGE "Dutch_Belgium"
|
!insertmacro MUI_LANGUAGE "Dutch_Belgium"
|
||||||
!insertmacro MUI_LANGUAGE "Danish"
|
!insertmacro MUI_LANGUAGE "Danish"
|
||||||
!insertmacro MUI_LANGUAGE "Swedish"
|
|
||||||
!insertmacro MUI_RESERVEFILE_LANGDLL
|
!insertmacro MUI_RESERVEFILE_LANGDLL
|
||||||
|
|
||||||
!include lang_extra.nsh
|
!include lang_extra.nsh
|
||||||
@@ -405,3 +405,6 @@ Function un.onInit
|
|||||||
FunctionEnd
|
FunctionEnd
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -19,6 +19,27 @@
|
|||||||
LangString var4 ${LANG_ENGLISH} "Examples of diagrams"
|
LangString var4 ${LANG_ENGLISH} "Examples of diagrams"
|
||||||
|
|
||||||
|
|
||||||
|
LangString installed ${LANG_KOREAN} "${SOFT_NAME}이(가) 이미 설치되어 있습니다. $\n$\n이전 버전을 제거하려면 `OK`를, 업그레이드를 취소하려면 `Cancel`을 클릭하세요."
|
||||||
|
LangString wrongArch ${LANG_KOREAN} "이 배포판은 64비트 컴퓨터에서만 사용할 수 있습니다."
|
||||||
|
LangString Elements ${LANG_KOREAN} "요소"
|
||||||
|
LangString Electric ${LANG_KOREAN} "전기"
|
||||||
|
LangString Logic ${LANG_KOREAN} "로직"
|
||||||
|
LangString Hydraulic ${LANG_KOREAN} "유압"
|
||||||
|
LangString Pneumatic ${LANG_KOREAN} "공압"
|
||||||
|
LangString Energy ${LANG_KOREAN} "에너지"
|
||||||
|
LangString water ${LANG_KOREAN} "물"
|
||||||
|
LangString Refrigeration ${LANG_KOREAN} "냉동"
|
||||||
|
LangString Solar_thermal ${LANG_KOREAN} "태양열"
|
||||||
|
LangString Lang ${LANG_KOREAN} "언어"
|
||||||
|
LangString Titleblocks ${LANG_KOREAN} "표제란"
|
||||||
|
LangString Examples ${LANG_KOREAN} "예제"
|
||||||
|
LangString Check ${LANG_KOREAN} "${SOFT_NAME} 실행"
|
||||||
|
LangString var1 ${LANG_KOREAN} "공식 컬렉션 요소"
|
||||||
|
LangString var2 ${LANG_KOREAN} "언어 파일"
|
||||||
|
LangString var3 ${LANG_KOREAN} "표제란 예제"
|
||||||
|
LangString var4 ${LANG_KOREAN} "도면 예제"
|
||||||
|
|
||||||
|
|
||||||
LangString installed ${LANG_POLISH} "${SOFT_NAME} jest już zainstalowany. $\n$\nKliknij `OK` aby odinstalować poprzednią wersję lub `Anuluj` aby przerwać aktualizację."
|
LangString installed ${LANG_POLISH} "${SOFT_NAME} jest już zainstalowany. $\n$\nKliknij `OK` aby odinstalować poprzednią wersję lub `Anuluj` aby przerwać aktualizację."
|
||||||
LangString wrongArch ${LANG_POLISH} "To oprogramowanie jest przeznaczone wyłącznie dla komputerów 64 bitowych."
|
LangString wrongArch ${LANG_POLISH} "To oprogramowanie jest przeznaczone wyłącznie dla komputerów 64 bitowych."
|
||||||
LangString Elements ${LANG_POLISH} "Elementy"
|
LangString Elements ${LANG_POLISH} "Elementy"
|
||||||
|
|||||||
3
doc/QElectroTech.qch
Normal file
3
doc/QElectroTech.qch
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:7b7798233e8251baac7717d4b0f991ad5fdf23a76d9fbe864d363e3b93458560
|
||||||
|
size 529821696
|
||||||
1841
doc/doc-utils/delete_me.css
Normal file
1841
doc/doc-utils/delete_me.css
Normal file
File diff suppressed because it is too large
Load Diff
18
doc/doc-utils/delete_me.html
Normal file
18
doc/doc-utils/delete_me.html
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
<!-- HTML footer for doxygen 1.12.0-->
|
||||||
|
<!-- start footer part -->
|
||||||
|
<!--BEGIN GENERATE_TREEVIEW-->
|
||||||
|
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||||
|
<ul>
|
||||||
|
$navpath
|
||||||
|
<li class="footer">$generatedby <a href="https://www.doxygen.org/index.html"><img class="footer" src="$relpath^doxygen.svg" width="104" height="31" alt="doxygen"/></a> $doxygenversion </li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<!--END GENERATE_TREEVIEW-->
|
||||||
|
<!--BEGIN !GENERATE_TREEVIEW-->
|
||||||
|
<hr class="footer"/><address class="footer"><small>
|
||||||
|
$generatedby <a href="https://www.doxygen.org/index.html"><img class="footer" src="$relpath^doxygen.svg" width="104" height="31" alt="doxygen"/></a> $doxygenversion
|
||||||
|
</small></address>
|
||||||
|
</div><!-- doc-content -->
|
||||||
|
<!--END !GENERATE_TREEVIEW-->
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
88
doc/doc-utils/header.html
Normal file
88
doc/doc-utils/header.html
Normal file
@@ -0,0 +1,88 @@
|
|||||||
|
<!-- HTML header for doxygen 1.12.0-->
|
||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml" lang="$langISO">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=11"/>
|
||||||
|
<meta name="generator" content="Doxygen $doxygenversion"/>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||||
|
<!--BEGIN PROJECT_NAME--><title>$projectname: $title</title><!--END PROJECT_NAME-->
|
||||||
|
<!--BEGIN !PROJECT_NAME--><title>$title</title><!--END !PROJECT_NAME-->
|
||||||
|
<!--BEGIN PROJECT_ICON-->
|
||||||
|
<link rel="icon" href="$relpath^$projecticon" type="image/x-icon" />
|
||||||
|
<!--END PROJECT_ICON-->
|
||||||
|
<link href="$relpath^tabs.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<!--BEGIN DISABLE_INDEX-->
|
||||||
|
<!--BEGIN FULL_SIDEBAR-->
|
||||||
|
<script type="text/javascript">var page_layout=1;</script>
|
||||||
|
<!--END FULL_SIDEBAR-->
|
||||||
|
<!--END DISABLE_INDEX-->
|
||||||
|
<script type="text/javascript" src="$relpath^jquery.js"></script>
|
||||||
|
<script type="text/javascript" src="$relpath^dynsections.js"></script>
|
||||||
|
<!--BEGIN COPY_CLIPBOARD-->
|
||||||
|
<script type="text/javascript" src="$relpath^clipboard.js"></script>
|
||||||
|
<!--END COPY_CLIPBOARD-->
|
||||||
|
$treeview
|
||||||
|
$search
|
||||||
|
$mathjax
|
||||||
|
$darkmode
|
||||||
|
<link href="$relpath^$stylesheet" rel="stylesheet" type="text/css" />
|
||||||
|
$extrastylesheet
|
||||||
|
<script type="text/javascript" src="$relpath^doxygen-awesome-darkmode-toggle.js"></script>
|
||||||
|
<script type="text/javascript">
|
||||||
|
DoxygenAwesomeDarkModeToggle.init()
|
||||||
|
</script>
|
||||||
|
<script type="text/javascript" src="$relpath^doxygen-awesome-fragment-copy-button.js"></script>
|
||||||
|
<script type="text/javascript">
|
||||||
|
DoxygenAwesomeFragmentCopyButton.init()
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<!--BEGIN DISABLE_INDEX-->
|
||||||
|
<!--BEGIN FULL_SIDEBAR-->
|
||||||
|
<div id="side-nav" class="ui-resizable side-nav-resizable"><!-- do not remove this div, it is closed by doxygen! -->
|
||||||
|
<!--END FULL_SIDEBAR-->
|
||||||
|
<!--END DISABLE_INDEX-->
|
||||||
|
|
||||||
|
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
|
||||||
|
|
||||||
|
<!--BEGIN TITLEAREA-->
|
||||||
|
<div id="titlearea">
|
||||||
|
<table cellspacing="0" cellpadding="0">
|
||||||
|
<tbody>
|
||||||
|
<tr id="projectrow">
|
||||||
|
<!--BEGIN PROJECT_LOGO-->
|
||||||
|
<td id="projectlogo"><img alt="Logo" src="$relpath^$projectlogo"$logosize/></td>
|
||||||
|
<!--END PROJECT_LOGO-->
|
||||||
|
<!--BEGIN PROJECT_NAME-->
|
||||||
|
<td id="projectalign">
|
||||||
|
<div id="projectname">$projectname<!--BEGIN PROJECT_NUMBER--><span id="projectnumber"> $projectnumber</span><!--END PROJECT_NUMBER-->
|
||||||
|
</div>
|
||||||
|
<!--BEGIN PROJECT_BRIEF--><div id="projectbrief">$projectbrief</div><!--END PROJECT_BRIEF-->
|
||||||
|
</td>
|
||||||
|
<!--END PROJECT_NAME-->
|
||||||
|
<!--BEGIN !PROJECT_NAME-->
|
||||||
|
<!--BEGIN PROJECT_BRIEF-->
|
||||||
|
<td>
|
||||||
|
<div id="projectbrief">$projectbrief</div>
|
||||||
|
</td>
|
||||||
|
<!--END PROJECT_BRIEF-->
|
||||||
|
<!--END !PROJECT_NAME-->
|
||||||
|
<!--BEGIN DISABLE_INDEX-->
|
||||||
|
<!--BEGIN SEARCHENGINE-->
|
||||||
|
<!--BEGIN !FULL_SIDEBAR-->
|
||||||
|
<td>$searchbox</td>
|
||||||
|
<!--END !FULL_SIDEBAR-->
|
||||||
|
<!--END SEARCHENGINE-->
|
||||||
|
<!--END DISABLE_INDEX-->
|
||||||
|
</tr>
|
||||||
|
<!--BEGIN SEARCHENGINE-->
|
||||||
|
<!--BEGIN FULL_SIDEBAR-->
|
||||||
|
<tr><td colspan="2">$searchbox</td></tr>
|
||||||
|
<!--END FULL_SIDEBAR-->
|
||||||
|
<!--END SEARCHENGINE-->
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<!--END TITLEAREA-->
|
||||||
|
<!-- end header part -->
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
Before Width: | Height: | Size: 16 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 2.3 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 2.6 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 7.7 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 43 KiB |
Binary file not shown.
1
doxygen-awesome-css
Submodule
1
doxygen-awesome-css
Submodule
Submodule doxygen-awesome-css added at 568f56cde6
2
elements
2
elements
Submodule elements updated: 6e1e2471fe...d6121a61e1
BIN
lang/qet_ca.qm
BIN
lang/qet_ca.qm
Binary file not shown.
134
lang/qet_ca.ts
134
lang/qet_ca.ts
@@ -890,7 +890,7 @@ Nota: Aquestes opcions NO permeten ni bloquegen les numeracions automàtiques, n
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../sources/ui/conductorpropertieswidget.ui" line="391"/>
|
<location filename="../sources/ui/conductorpropertieswidget.ui" line="391"/>
|
||||||
<source>phase</source>
|
<source>phase</source>
|
||||||
<translation>fase</translation>
|
<translation>Fase</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/ui/conductorpropertieswidget.cpp" line="234"/>
|
<location filename="../sources/ui/conductorpropertieswidget.cpp" line="234"/>
|
||||||
@@ -913,12 +913,12 @@ Nota: Aquestes opcions NO permeten ni bloquegen les numeracions automàtiques, n
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../sources/ui/conductorpropertieswidget.ui" line="377"/>
|
<location filename="../sources/ui/conductorpropertieswidget.ui" line="377"/>
|
||||||
<source>terre</source>
|
<source>terre</source>
|
||||||
<translation>terra</translation>
|
<translation>Terra</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/ui/conductorpropertieswidget.ui" line="363"/>
|
<location filename="../sources/ui/conductorpropertieswidget.ui" line="363"/>
|
||||||
<source>neutre</source>
|
<source>neutre</source>
|
||||||
<translation>neutre</translation>
|
<translation>Neutre</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/ui/conductorpropertieswidget.ui" line="14"/>
|
<location filename="../sources/ui/conductorpropertieswidget.ui" line="14"/>
|
||||||
@@ -954,12 +954,12 @@ Nota: Aquestes opcions NO permeten ni bloquegen les numeracions automàtiques, n
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../sources/ui/conductorpropertieswidget.ui" line="171"/>
|
<location filename="../sources/ui/conductorpropertieswidget.ui" line="171"/>
|
||||||
<source>Vertical à gauche</source>
|
<source>Vertical à gauche</source>
|
||||||
<translation>Vertical esquerra</translation>
|
<translation>Vertical a l'esquerra</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/ui/conductorpropertieswidget.ui" line="176"/>
|
<location filename="../sources/ui/conductorpropertieswidget.ui" line="176"/>
|
||||||
<source>Vertical à droite</source>
|
<source>Vertical à droite</source>
|
||||||
<translation>Vertical dreta</translation>
|
<translation>Vertical a la dreta</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/ui/conductorpropertieswidget.ui" line="184"/>
|
<location filename="../sources/ui/conductorpropertieswidget.ui" line="184"/>
|
||||||
@@ -1447,7 +1447,7 @@ Nota: Aquestes opcions NO permeten ni bloquegen les numeracions automàtiques, n
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../sources/ui/dynamicelementtextmodel.cpp" line="345"/>
|
<location filename="../sources/ui/dynamicelementtextmodel.cpp" line="345"/>
|
||||||
<source>Conserver la rotation visuel</source>
|
<source>Conserver la rotation visuel</source>
|
||||||
<translation>Mantenir la rotació visual</translation>
|
<translation>Manté la rotació visual</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/ui/dynamicelementtextmodel.cpp" line="359"/>
|
<location filename="../sources/ui/dynamicelementtextmodel.cpp" line="359"/>
|
||||||
@@ -1544,7 +1544,7 @@ Nota: Aquestes opcions NO permeten ni bloquegen les numeracions automàtiques, n
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../sources/ui/dynamicelementtextmodel.cpp" line="837"/>
|
<location filename="../sources/ui/dynamicelementtextmodel.cpp" line="837"/>
|
||||||
<source>Maintenir en bas de page</source>
|
<source>Maintenir en bas de page</source>
|
||||||
<translation>Mantenir al final de la pàgina</translation>
|
<translation>Manté al final de la pàgina</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/ui/dynamicelementtextmodel.cpp" line="1143"/>
|
<location filename="../sources/ui/dynamicelementtextmodel.cpp" line="1143"/>
|
||||||
@@ -1593,7 +1593,7 @@ Nota: Aquestes opcions NO permeten ni bloquegen les numeracions automàtiques, n
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../sources/editor/ui/dynamictextfieldeditor.ui" line="72"/>
|
<location filename="../sources/editor/ui/dynamictextfieldeditor.ui" line="72"/>
|
||||||
<source>Conserver la rotation visuel</source>
|
<source>Conserver la rotation visuel</source>
|
||||||
<translation>Mantenir la rotació visual</translation>
|
<translation>Manté la rotació visual</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/editor/ui/dynamictextfieldeditor.ui" line="115"/>
|
<location filename="../sources/editor/ui/dynamictextfieldeditor.ui" line="115"/>
|
||||||
@@ -2726,7 +2726,7 @@ S'eliminaran tots els elements i carpetes contingudes en aquesta carpeta.</
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../sources/elementspanelwidget.cpp" line="63"/>
|
<location filename="../sources/elementspanelwidget.cpp" line="63"/>
|
||||||
<source>Abaisser ce folio</source>
|
<source>Abaisser ce folio</source>
|
||||||
<translation>Retrocedir la posició del full</translation>
|
<translation>Retrocedeix la posició del full</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/elementspanelwidget.cpp" line="64"/>
|
<location filename="../sources/elementspanelwidget.cpp" line="64"/>
|
||||||
@@ -2746,12 +2746,12 @@ S'eliminaran tots els elements i carpetes contingudes en aquesta carpeta.</
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../sources/elementspanelwidget.cpp" line="67"/>
|
<location filename="../sources/elementspanelwidget.cpp" line="67"/>
|
||||||
<source>Abaisser ce folio x10</source>
|
<source>Abaisser ce folio x10</source>
|
||||||
<translation>Retrocedir 10 posicions el full</translation>
|
<translation>Retrocedeix 10 posicions el full</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/elementspanelwidget.cpp" line="68"/>
|
<location filename="../sources/elementspanelwidget.cpp" line="68"/>
|
||||||
<source>Abaisser ce folio x100</source>
|
<source>Abaisser ce folio x100</source>
|
||||||
<translation>Retrocedir 100 posicions el full</translation>
|
<translation>Retrocedeix 100 posicions el full</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/elementspanelwidget.cpp" line="88"/>
|
<location filename="../sources/elementspanelwidget.cpp" line="88"/>
|
||||||
@@ -3130,7 +3130,7 @@ Si el número definit al camp Valor té menys dígits que el tipus escollit, ani
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../sources/autoNum/ui/formulaautonumberingw.ui" line="72"/>
|
<location filename="../sources/autoNum/ui/formulaautonumberingw.ui" line="72"/>
|
||||||
<source>Insert Formula Here e.g.: %prefix%l%c</source>
|
<source>Insert Formula Here e.g.: %prefix%l%c</source>
|
||||||
<translation>Inserir Fórmula Aquí, per exemple: %prefix%l%c</translation>
|
<translation>Insereix la fórmula aquí, per exemple: %prefix%l%c</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/autoNum/ui/formulaautonumberingw.ui" line="101"/>
|
<location filename="../sources/autoNum/ui/formulaautonumberingw.ui" line="101"/>
|
||||||
@@ -3308,22 +3308,22 @@ Les entrades de text i nombres també
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="65"/>
|
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="65"/>
|
||||||
<source>Utiliser des fen&êtres (appliqué au prochain lancement de QElectroTech)</source>
|
<source>Utiliser des fen&êtres (appliqué au prochain lancement de QElectroTech)</source>
|
||||||
<translation>Utilitza fine&stres (aplicat al proper llançament de QElectroTech)</translation>
|
<translation>Utilitza fine&stres (s'aplicarà al proper llançament de QElectroTech)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="72"/>
|
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="72"/>
|
||||||
<source>Utiliser des onglets (appliqué au prochain lance&ment de QElectroTech)</source>
|
<source>Utiliser des onglets (appliqué au prochain lance&ment de QElectroTech)</source>
|
||||||
<translation>Utilitza pestanyes (aplicat al proper llança&ment de QElectroTech)</translation>
|
<translation>Utilitza pestanyes (s'aplicarà al proper llança&ment de QElectroTech)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="101"/>
|
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="101"/>
|
||||||
<source>Méthode de mise à l'echelle des écrans à haute densité de pixels (hdpi) (appliqué au prochain lancement de QElectroTech) :</source>
|
<source>Méthode de mise à l'echelle des écrans à haute densité de pixels (hdpi) (appliqué au prochain lancement de QElectroTech) :</source>
|
||||||
<translation>Mètode d'escalat de pantalla d'alta densitat de píxels (HDPI) (aplicat al proper llançament de QElectroTech):</translation>
|
<translation>Mètode d'escalat de pantalla d'alta densitat de píxels (HDPI) (s'aplicarà al proper llançament de QElectroTech):</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="147"/>
|
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="147"/>
|
||||||
<source>Sauvegarde automatique des projets (appliqué au prochain lancement de QElectroTech)</source>
|
<source>Sauvegarde automatique des projets (appliqué au prochain lancement de QElectroTech)</source>
|
||||||
<translation>Desament automàtic del projecte (aplicat al proper llançament de QElectroTech)</translation>
|
<translation>Desament automàtic del projecte (s'aplicarà al proper llançament de QElectroTech)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="161"/>
|
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="161"/>
|
||||||
@@ -3345,7 +3345,7 @@ Les entrades de text i nombres també
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="181"/>
|
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="181"/>
|
||||||
<source>Utiliser les numéros de folio à la place de leur position dans le projet</source>
|
<source>Utiliser les numéros de folio à la place de leur position dans le projet</source>
|
||||||
<translation>Utilitzeu els números de full en lloc de la seva posició en el projecte</translation>
|
<translation>Utilitza els números de full en lloc de la seva posició en el projecte</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="209"/>
|
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="209"/>
|
||||||
@@ -3360,7 +3360,7 @@ Les entrades de text i nombres també
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="227"/>
|
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="227"/>
|
||||||
<source>Répertoire de la collection commune</source>
|
<source>Répertoire de la collection commune</source>
|
||||||
<translation>Directori de col·leccions comuns</translation>
|
<translation>Directori de la col·lecció compartida</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="235"/>
|
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="235"/>
|
||||||
@@ -3383,22 +3383,22 @@ Les entrades de text i nombres també
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="248"/>
|
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="248"/>
|
||||||
<source>Répertoire de la collection company</source>
|
<source>Répertoire de la collection company</source>
|
||||||
<translation>Directori de la col·lecció d'empreses</translation>
|
<translation>Directori de la col·lecció d'empresa</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="269"/>
|
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="269"/>
|
||||||
<source>Répertoire des cartouches company</source>
|
<source>Répertoire des cartouches company</source>
|
||||||
<translation>Directori de caixetins d'empresa</translation>
|
<translation>Directori dels caixetins d'empresa</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="290"/>
|
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="290"/>
|
||||||
<source>Répertoire de la collection utilisateur</source>
|
<source>Répertoire de la collection utilisateur</source>
|
||||||
<translation>Directori de col·lecció d'usuaris</translation>
|
<translation>Directori de la col·lecció d'usuari</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="311"/>
|
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="311"/>
|
||||||
<source>Répertoire des cartouches utilisateur</source>
|
<source>Répertoire des cartouches utilisateur</source>
|
||||||
<translation>Directori de caixetins d'usuari</translation>
|
<translation>Directori dels caixetins d'usuari</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="332"/>
|
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="332"/>
|
||||||
@@ -3425,7 +3425,7 @@ Podeu especificar el valor per defecte d'aquest camp per als elements que c
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="395"/>
|
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="395"/>
|
||||||
<source>Appliqué au prochain lancement de QElectroTech</source>
|
<source>Appliqué au prochain lancement de QElectroTech</source>
|
||||||
<translation>Aplicat al proper llançament de QElectroTech</translation>
|
<translation>S'aplicarà al proper llançament de QElectroTech</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="429"/>
|
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="429"/>
|
||||||
@@ -3479,17 +3479,17 @@ Podeu especificar el valor per defecte d'aquest camp per als elements que c
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="618"/>
|
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="618"/>
|
||||||
<source>Grille + Clavier</source>
|
<source>Grille + Clavier</source>
|
||||||
<translation>Quadrícula + Teclat</translation>
|
<translation>Graella i teclat</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="624"/>
|
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="624"/>
|
||||||
<source>Grille : 1 - 30</source>
|
<source>Grille : 1 - 30</source>
|
||||||
<translation>Quadrícula: 1 - 30</translation>
|
<translation>Graella de l'editor d'esquemes</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="658"/>
|
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="658"/>
|
||||||
<source>DiagramEditor yGrid</source>
|
<source>DiagramEditor yGrid</source>
|
||||||
<translation>Editor de diagrames yQuadrícula</translation>
|
<translation>Distància entre punts en vertical : 1-30</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="665"/>
|
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="665"/>
|
||||||
@@ -3499,37 +3499,37 @@ Podeu especificar el valor per defecte d'aquest camp per als elements que c
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="691"/>
|
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="691"/>
|
||||||
<source>DiagramEditor xGrid</source>
|
<source>DiagramEditor xGrid</source>
|
||||||
<translation>Editor de diagrames xQuadrícula</translation>
|
<translation>Distància entre punts en horitzontal : 1-30</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="714"/>
|
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="714"/>
|
||||||
<source>Déplacement au clavier : 1 - 30</source>
|
<source>Déplacement au clavier : 1 - 30</source>
|
||||||
<translation>Moviment del teclat: 1 - 30</translation>
|
<translation>Desplaçament per la graella de l'editor d'esquemes utilitzant el teclat</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="764"/>
|
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="764"/>
|
||||||
<source>DiagramEditor (touche : gauche / droite) xGrid</source>
|
<source>DiagramEditor (touche : gauche / droite) xGrid</source>
|
||||||
<translation>Editor de diagrames (tecla: esquerra / dreta) xQuadrícula</translation>
|
<translation>Distància desplaçada amb les tecles esquerra i dreta en horitzontal : 1-30</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="771"/>
|
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="771"/>
|
||||||
<source>DiagramEditor (touche : haut / bas) yGrid</source>
|
<source>DiagramEditor (touche : haut / bas) yGrid</source>
|
||||||
<translation>Editor de diagrames (tecla: amunt / avall) yQuadrícula</translation>
|
<translation>Distància desplaçada amb les tecles amunt i avall en vertical : 1-30</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="794"/>
|
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="794"/>
|
||||||
<source>Déplacement au clavier avec la touche ALT : 1 - 9</source>
|
<source>Déplacement au clavier avec la touche ALT : 1 - 9</source>
|
||||||
<translation>Moviment del teclat amb la tecla ALT: 1 - 9</translation>
|
<translation>Desplaçament per la graella de l'editor d'esquemes utilitzant el teclat amb la tecla ALT</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="800"/>
|
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="800"/>
|
||||||
<source>DiagramEditor (touche : gauche / droite ) xGrid</source>
|
<source>DiagramEditor (touche : gauche / droite ) xGrid</source>
|
||||||
<translation>Editor de diagrames (tecla: esquerra / dreta) xQuadrícula</translation>
|
<translation>Distància desplaçada amb les tecles esquerra i dreta en horitzontal : 1-9</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="829"/>
|
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="829"/>
|
||||||
<source>DiagramEditor (touche : haut / bas) yGrid</source>
|
<source>DiagramEditor (touche : haut / bas) yGrid</source>
|
||||||
<translation>Editor de diagrames (tecla: amunt / avall) yQuadrícula</translation>
|
<translation>Distància desplaçada amb les tecles amunt i avall en vertical : 1-9</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="888"/>
|
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="888"/>
|
||||||
@@ -3544,17 +3544,17 @@ Podeu especificar el valor per defecte d'aquest camp per als elements que c
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="154"/>
|
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="154"/>
|
||||||
<source>Ne pas conserver les labels des éléments lors des copier coller</source>
|
<source>Ne pas conserver les labels des éléments lors des copier coller</source>
|
||||||
<translation>No conservar les etiquetes dels elements després de copiar i enganxar</translation>
|
<translation>No conservis les etiquetes dels elements després de copia i enganxa</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="51"/>
|
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="51"/>
|
||||||
<source>Autoriser le dézoom au delà du folio</source>
|
<source>Autoriser le dézoom au delà du folio</source>
|
||||||
<translation>Permetre allunyar més enllà de la mida del full</translation>
|
<translation>Permet allunyar més enllà de la mida del full</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="45"/>
|
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="45"/>
|
||||||
<source>Arrondi supérieur pour 0.5 et plus</source>
|
<source>Arrondi supérieur pour 0.5 et plus</source>
|
||||||
<translation>Arrodoneix cap amunt per 0,5 i més</translation>
|
<translation>Arrodoneix cap amunt per 0,5 o més</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="46"/>
|
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="46"/>
|
||||||
@@ -3569,7 +3569,7 @@ Podeu especificar el valor per defecte d'aquest camp per als elements que c
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="48"/>
|
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="48"/>
|
||||||
<source>Arrondi supérieur pour 0.75 et plus</source>
|
<source>Arrondi supérieur pour 0.75 et plus</source>
|
||||||
<translation>Arrodoneix cap amunt per 0,75 i més</translation>
|
<translation>Arrodoneix cap amunt per 0,75 o més</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="49"/>
|
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="49"/>
|
||||||
@@ -3720,27 +3720,27 @@ Podeu especificar el valor per defecte d'aquest camp per als elements que c
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="439"/>
|
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="439"/>
|
||||||
<source>Chemin de la collection commune</source>
|
<source>Chemin de la collection commune</source>
|
||||||
<translation>Ruta de col·lecció comuna</translation>
|
<translation>Ruta de la col·lecció compartida</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="453"/>
|
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="453"/>
|
||||||
<source>Chemin de la collection company</source>
|
<source>Chemin de la collection company</source>
|
||||||
<translation>Ruta de col·lecció d'empresa</translation>
|
<translation>Ruta de la col·lecció d'empresa</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="467"/>
|
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="467"/>
|
||||||
<source>Chemin de la collection utilisateur</source>
|
<source>Chemin de la collection utilisateur</source>
|
||||||
<translation>Ruta de col·lecció d'usuaris</translation>
|
<translation>Ruta de la col·lecció d'usuari</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="481"/>
|
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="481"/>
|
||||||
<source>Chemin des cartouches company</source>
|
<source>Chemin des cartouches company</source>
|
||||||
<translation>Ruta de caixetins d'empresa</translation>
|
<translation>Ruta dels caixetins d'empresa</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="495"/>
|
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="495"/>
|
||||||
<source>Chemin des cartouches utilisateur</source>
|
<source>Chemin des cartouches utilisateur</source>
|
||||||
<translation>Ruta de caixetins d'usuaris</translation>
|
<translation>Ruta dels caixetins d'usuaris</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="524"/>
|
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="524"/>
|
||||||
@@ -5516,7 +5516,7 @@ Vol desar els canvis?</translation>
|
|||||||
<location filename="../sources/projectview.cpp" line="384"/>
|
<location filename="../sources/projectview.cpp" line="384"/>
|
||||||
<source>Supprimer le folio ?</source>
|
<source>Supprimer le folio ?</source>
|
||||||
<comment>message box title</comment>
|
<comment>message box title</comment>
|
||||||
<translation>Suprimir el full?</translation>
|
<translation>Suprimeix el full?</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/projectview.cpp" line="385"/>
|
<location filename="../sources/projectview.cpp" line="385"/>
|
||||||
@@ -6149,7 +6149,7 @@ Opcions disponibles:
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../sources/qetdiagrameditor.cpp" line="616"/>
|
<location filename="../sources/qetdiagrameditor.cpp" line="616"/>
|
||||||
<source>Désélectionner tout</source>
|
<source>Désélectionner tout</source>
|
||||||
<translation>Desselecciona</translation>
|
<translation>Desselecciona-ho tot</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/qetdiagrameditor.cpp" line="617"/>
|
<location filename="../sources/qetdiagrameditor.cpp" line="617"/>
|
||||||
@@ -6159,7 +6159,7 @@ Opcions disponibles:
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../sources/qetdiagrameditor.cpp" line="668"/>
|
<location filename="../sources/qetdiagrameditor.cpp" line="668"/>
|
||||||
<source>Ajouter un plan de bornes</source>
|
<source>Ajouter un plan de bornes</source>
|
||||||
<translation>Afegiu un pla de borns</translation>
|
<translation>Afegeix un pla de borns</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/qetdiagrameditor.cpp" line="670"/>
|
<location filename="../sources/qetdiagrameditor.cpp" line="670"/>
|
||||||
@@ -6199,7 +6199,7 @@ Opcions disponibles:
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../sources/qetdiagrameditor.cpp" line="702"/>
|
<location filename="../sources/qetdiagrameditor.cpp" line="702"/>
|
||||||
<source>Chercher/remplacer</source>
|
<source>Chercher/remplacer</source>
|
||||||
<translation>Cerca/substitueix</translation>
|
<translation>Cerca i reemplaça</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/qetdiagrameditor.cpp" line="761"/>
|
<location filename="../sources/qetdiagrameditor.cpp" line="761"/>
|
||||||
@@ -6527,7 +6527,7 @@ Opcions disponibles:
|
|||||||
<location filename="../sources/qetdiagrameditor.cpp" line="350"/>
|
<location filename="../sources/qetdiagrameditor.cpp" line="350"/>
|
||||||
<source>Création automatique de conducteur(s)</source>
|
<source>Création automatique de conducteur(s)</source>
|
||||||
<comment>Tool tip of auto conductor</comment>
|
<comment>Tool tip of auto conductor</comment>
|
||||||
<translation>Creació automàtica de conductor(s)</translation>
|
<translation>Creació automàtica de conductors</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/qetdiagrameditor.cpp" line="159"/>
|
<location filename="../sources/qetdiagrameditor.cpp" line="159"/>
|
||||||
@@ -7485,7 +7485,7 @@ Les condicions requerides no són vàlides</translation>
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../sources/qetmainwindow.cpp" line="216"/>
|
<location filename="../sources/qetmainwindow.cpp" line="216"/>
|
||||||
<source>Sortir du &mode plein écran</source>
|
<source>Sortir du &mode plein écran</source>
|
||||||
<translation>Sortir de &pantalla completa</translation>
|
<translation>Surt de &pantalla completa</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/qetmainwindow.cpp" line="218"/>
|
<location filename="../sources/qetmainwindow.cpp" line="218"/>
|
||||||
@@ -8127,7 +8127,7 @@ Què voleu fer?</translation>
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../sources/exportdialog.cpp" line="1041"/>
|
<location filename="../sources/exportdialog.cpp" line="1041"/>
|
||||||
<source>Conserver les proportions</source>
|
<source>Conserver les proportions</source>
|
||||||
<translation>Mantenir les proporcions</translation>
|
<translation>Manté les proporcions</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/exportdialog.cpp" line="1045"/>
|
<location filename="../sources/exportdialog.cpp" line="1045"/>
|
||||||
@@ -9284,27 +9284,27 @@ Voleu substituir-la?</translation>
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../sources/SearchAndReplace/searchandreplaceworker.cpp" line="56"/>
|
<location filename="../sources/SearchAndReplace/searchandreplaceworker.cpp" line="56"/>
|
||||||
<source>Chercher/remplacer les propriétés de folio</source>
|
<source>Chercher/remplacer les propriétés de folio</source>
|
||||||
<translation>Cerca/Substitueix les propietats del full</translation>
|
<translation>Cerca i reemplaça les propietats del full</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/SearchAndReplace/searchandreplaceworker.cpp" line="120"/>
|
<location filename="../sources/SearchAndReplace/searchandreplaceworker.cpp" line="120"/>
|
||||||
<source>Chercher/remplacer les propriétés d'éléments.</source>
|
<source>Chercher/remplacer les propriétés d'éléments.</source>
|
||||||
<translation>Cerca/Substitueix les propietats dels elements.</translation>
|
<translation>Cerca i reemplaça les propietats dels elements.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/SearchAndReplace/searchandreplaceworker.cpp" line="173"/>
|
<location filename="../sources/SearchAndReplace/searchandreplaceworker.cpp" line="173"/>
|
||||||
<source>Chercher/remplacer des textes independants</source>
|
<source>Chercher/remplacer des textes independants</source>
|
||||||
<translation>Cercar/substituir textos independents</translation>
|
<translation>Cerca i reemplaça textos independents</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/SearchAndReplace/searchandreplaceworker.cpp" line="213"/>
|
<location filename="../sources/SearchAndReplace/searchandreplaceworker.cpp" line="213"/>
|
||||||
<source>Chercher/remplacer les propriétés de conducteurs.</source>
|
<source>Chercher/remplacer les propriétés de conducteurs.</source>
|
||||||
<translation>Cerca/substitueix les propietats dels conductors.</translation>
|
<translation>Cerca i reemplaça les propietats dels conductors.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/SearchAndReplace/searchandreplaceworker.cpp" line="300"/>
|
<location filename="../sources/SearchAndReplace/searchandreplaceworker.cpp" line="300"/>
|
||||||
<source>Rechercher / remplacer avancé</source>
|
<source>Rechercher / remplacer avancé</source>
|
||||||
<translation>Cerca/substitueix avançat</translation>
|
<translation>Cerca i reemplaça avançat</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/TerminalStrip/GraphicsItem/properties/terminalstriplayoutshandler.cpp" line="26"/>
|
<location filename="../sources/TerminalStrip/GraphicsItem/properties/terminalstriplayoutshandler.cpp" line="26"/>
|
||||||
@@ -9370,7 +9370,7 @@ Voleu substituir-la?</translation>
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../sources/undocommand/addelementtextcommand.cpp" line="283"/>
|
<location filename="../sources/undocommand/addelementtextcommand.cpp" line="283"/>
|
||||||
<source>Insérer un texte d'élément dans un groupe de textes</source>
|
<source>Insérer un texte d'élément dans un groupe de textes</source>
|
||||||
<translation>Inserir text d'element en un grup de text</translation>
|
<translation>Insereix text d'element en un grup de text</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/undocommand/addelementtextcommand.cpp" line="343"/>
|
<location filename="../sources/undocommand/addelementtextcommand.cpp" line="343"/>
|
||||||
@@ -9545,7 +9545,7 @@ Afegiu una taula nova o ajusteu la taula existent per mostrar la quantitat compl
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../sources/qetgraphicsitem/qetshapeitem.cpp" line="667"/>
|
<location filename="../sources/qetgraphicsitem/qetshapeitem.cpp" line="667"/>
|
||||||
<source>Ajouter un point à un polygone</source>
|
<source>Ajouter un point à un polygone</source>
|
||||||
<translation>Afegir un punt a un polígon</translation>
|
<translation>Afegeix un punt a un polígon</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/qetgraphicsitem/qetshapeitem.cpp" line="701"/>
|
<location filename="../sources/qetgraphicsitem/qetshapeitem.cpp" line="701"/>
|
||||||
@@ -9986,7 +9986,7 @@ Afegiu una taula nova o ajusteu la taula existent per mostrar la quantitat compl
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../sources/SearchAndReplace/ui/replacefoliowidget.ui" line="150"/>
|
<location filename="../sources/SearchAndReplace/ui/replacefoliowidget.ui" line="150"/>
|
||||||
<source>Pas de date</source>
|
<source>Pas de date</source>
|
||||||
<translation>No hi cap data</translation>
|
<translation>Sense data</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/SearchAndReplace/ui/replacefoliowidget.ui" line="157"/>
|
<location filename="../sources/SearchAndReplace/ui/replacefoliowidget.ui" line="157"/>
|
||||||
@@ -10077,7 +10077,7 @@ Créer votre propre texte en vous aidant des variables suivantes :
|
|||||||
%LM : la localisation
|
%LM : la localisation
|
||||||
%l : le numéro de ligne
|
%l : le numéro de ligne
|
||||||
%c : le numéro de colonne</source>
|
%c : le numéro de colonne</source>
|
||||||
<translation>Podeu definir una etiqueta personalitzada per als informes de foli.
|
<translation>Podeu definir una etiqueta personalitzada per als informes de full.
|
||||||
Creeu el vostre propi text utilitzant les variables següents:
|
Creeu el vostre propi text utilitzant les variables següents:
|
||||||
%f: la posició del full al projecte
|
%f: la posició del full al projecte
|
||||||
%F: el número de full
|
%F: el número de full
|
||||||
@@ -10318,7 +10318,7 @@ Creeu el vostre propi text utilitzant les variables següents:
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../sources/autoNum/ui/selectautonumw.ui" line="133"/>
|
<location filename="../sources/autoNum/ui/selectautonumw.ui" line="133"/>
|
||||||
<source><html><head/><body><p>Supprimer une variable de numérotation</p></body></html></source>
|
<source><html><head/><body><p>Supprimer une variable de numérotation</p></body></html></source>
|
||||||
<translation><html><head/><body><p>Suprimir una variable de numeració</p></body></html></translation>
|
<translation><html><head/><body><p>Suprimeix una variable de numeració</p></body></html></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/autoNum/ui/selectautonumw.ui" line="150"/>
|
<location filename="../sources/autoNum/ui/selectautonumw.ui" line="150"/>
|
||||||
@@ -13419,7 +13419,7 @@ Les autres champs ne sont pas utilisés.</source>
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../sources/ui/titleblockpropertieswidget.ui" line="288"/>
|
<location filename="../sources/ui/titleblockpropertieswidget.ui" line="288"/>
|
||||||
<source>Pas de date</source>
|
<source>Pas de date</source>
|
||||||
<translation>No hi cap data</translation>
|
<translation>Sense data</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/ui/titleblockpropertieswidget.ui" line="295"/>
|
<location filename="../sources/ui/titleblockpropertieswidget.ui" line="295"/>
|
||||||
@@ -13709,7 +13709,7 @@ associar el nom "volta" amb el valor "1745" substituirà %{v
|
|||||||
<location filename="../sources/titleblock/templatedeleter.cpp" line="61"/>
|
<location filename="../sources/titleblock/templatedeleter.cpp" line="61"/>
|
||||||
<source>Supprimer le modèle de cartouche ?</source>
|
<source>Supprimer le modèle de cartouche ?</source>
|
||||||
<comment>message box title</comment>
|
<comment>message box title</comment>
|
||||||
<translation>Suprimir el model de caixetí?</translation>
|
<translation>Suprimeix el model de caixetí?</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/titleblock/templatedeleter.cpp" line="63"/>
|
<location filename="../sources/titleblock/templatedeleter.cpp" line="63"/>
|
||||||
@@ -13943,13 +13943,13 @@ associar el nom "volta" amb el valor "1745" substituirà %{v
|
|||||||
<location filename="../sources/titleblock/templateview.cpp" line="583"/>
|
<location filename="../sources/titleblock/templateview.cpp" line="583"/>
|
||||||
<source>Supprimer cette colonne</source>
|
<source>Supprimer cette colonne</source>
|
||||||
<comment>context menu</comment>
|
<comment>context menu</comment>
|
||||||
<translation>Suprimir aquesta columna</translation>
|
<translation>Suprimeix aquesta columna</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/titleblock/templateview.cpp" line="584"/>
|
<location filename="../sources/titleblock/templateview.cpp" line="584"/>
|
||||||
<source>Supprimer cette ligne</source>
|
<source>Supprimer cette ligne</source>
|
||||||
<comment>context menu</comment>
|
<comment>context menu</comment>
|
||||||
<translation>Suprimir aquesta línia</translation>
|
<translation>Suprimeix aquesta línia</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/titleblock/templateview.cpp" line="585"/>
|
<location filename="../sources/titleblock/templateview.cpp" line="585"/>
|
||||||
@@ -14056,7 +14056,7 @@ Longitud màxima : %2px
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../sources/ui/xrefpropertieswidget.ui" line="56"/>
|
<location filename="../sources/ui/xrefpropertieswidget.ui" line="56"/>
|
||||||
<source>XRef Vertical Offset:</source>
|
<source>XRef Vertical Offset:</source>
|
||||||
<translation>Desplaçament vertical de la XRef :</translation>
|
<translation>Desplaçament vertical de la referència creuada :</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/ui/xrefpropertieswidget.ui" line="63"/>
|
<location filename="../sources/ui/xrefpropertieswidget.ui" line="63"/>
|
||||||
@@ -14071,12 +14071,12 @@ Longitud màxima : %2px
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../sources/ui/xrefpropertieswidget.ui" line="69"/>
|
<location filename="../sources/ui/xrefpropertieswidget.ui" line="69"/>
|
||||||
<source>Default - Fit to XRef height</source>
|
<source>Default - Fit to XRef height</source>
|
||||||
<translation>Per defecte - Ajusta a l'alçada de la XRef</translation>
|
<translation>Per defecte - Ajusta a l'alçada de la referència creuada</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/ui/xrefpropertieswidget.ui" line="98"/>
|
<location filename="../sources/ui/xrefpropertieswidget.ui" line="98"/>
|
||||||
<source>XRef slave position</source>
|
<source>XRef slave position</source>
|
||||||
<translation>Posició de l'esclau XRef</translation>
|
<translation>Posició de l'esclau de la referència creuada</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/ui/xrefpropertieswidget.ui" line="114"/>
|
<location filename="../sources/ui/xrefpropertieswidget.ui" line="114"/>
|
||||||
@@ -14086,7 +14086,7 @@ Longitud màxima : %2px
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../sources/ui/xrefpropertieswidget.ui" line="121"/>
|
<location filename="../sources/ui/xrefpropertieswidget.ui" line="121"/>
|
||||||
<source>Afficher en croix</source>
|
<source>Afficher en croix</source>
|
||||||
<translation>Mostra len creu</translation>
|
<translation>Mostra en creu</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/ui/xrefpropertieswidget.ui" line="134"/>
|
<location filename="../sources/ui/xrefpropertieswidget.ui" line="134"/>
|
||||||
|
|||||||
BIN
lang/qet_cs.qm
BIN
lang/qet_cs.qm
Binary file not shown.
109
lang/qet_cs.ts
109
lang/qet_cs.ts
@@ -46,7 +46,7 @@
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../sources/ui/aboutqetdialog.ui" line="508"/>
|
<location filename="../sources/ui/aboutqetdialog.ui" line="508"/>
|
||||||
<source>Licenses</source>
|
<source>Licenses</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>Povolení</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/ui/aboutqetdialog.ui" line="532"/>
|
<location filename="../sources/ui/aboutqetdialog.ui" line="532"/>
|
||||||
@@ -1193,7 +1193,7 @@ Poznámka: tyto volby automatické číslování ani NEPOVOLÍ ani nezakáží,
|
|||||||
<location filename="../sources/qetgraphicsitem/diagramtextitem.cpp" line="489"/>
|
<location filename="../sources/qetgraphicsitem/diagramtextitem.cpp" line="489"/>
|
||||||
<source>
|
<source>
|
||||||
<Shift> to move</source>
|
<Shift> to move</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation><Shift> k přesunutí</translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
<context>
|
<context>
|
||||||
@@ -3544,29 +3544,29 @@ Stanovte výchozí hodnotu textového pole pro nové prvky níže:</translation>
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="874"/>
|
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="874"/>
|
||||||
<source>Affichage Grille</source>
|
<source>Affichage Grille</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>Zobrazit mřížku</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="893"/>
|
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="893"/>
|
||||||
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="969"/>
|
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="969"/>
|
||||||
<source>max:</source>
|
<source>max:</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>max:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="900"/>
|
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="900"/>
|
||||||
<source>Taille des points de la grille de Diagram-Editor : 1 - 5</source>
|
<source>Taille des points de la grille de Diagram-Editor : 1 - 5</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>Velikost bodu v editoru diagramů: 1–5</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="923"/>
|
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="923"/>
|
||||||
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="992"/>
|
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="992"/>
|
||||||
<source>min:</source>
|
<source>min:</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>min:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="946"/>
|
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="946"/>
|
||||||
<source>Taille des points de la grille de l'éditeur d'éléments : 1 - 5</source>
|
<source>Taille des points de la grille de l'éditeur d'éléments : 1 - 5</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>Velikost bodu v editoru prvků: 1–5</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="1016"/>
|
<location filename="../sources/ui/configpage/generalconfigurationpage.ui" line="1016"/>
|
||||||
@@ -3757,7 +3757,7 @@ Stanovte výchozí hodnotu textového pole pro nové prvky níže:</translation>
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="383"/>
|
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="383"/>
|
||||||
<source>Suédois</source>
|
<source>Suédois</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>Švédština</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="465"/>
|
<location filename="../sources/ui/configpage/generalconfigurationpage.cpp" line="465"/>
|
||||||
@@ -5821,7 +5821,7 @@ Dostupné volby:
|
|||||||
<location filename="../sources/qetapp.cpp" line="2593"/>
|
<location filename="../sources/qetapp.cpp" line="2593"/>
|
||||||
<source> --data-dir=DIR Definir le dossier de data
|
<source> --data-dir=DIR Definir le dossier de data
|
||||||
</source>
|
</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation> --data-dir=DIR Stanovit adresář s daty</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/qetapp.cpp" line="2595"/>
|
<location filename="../sources/qetapp.cpp" line="2595"/>
|
||||||
@@ -6944,17 +6944,20 @@ Dostupné volby:
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../sources/editor/ui/qetelementeditor.ui" line="505"/>
|
<location filename="../sources/editor/ui/qetelementeditor.ui" line="505"/>
|
||||||
<source>Fine-Rotation</source>
|
<source>Fine-Rotation</source>
|
||||||
<translation type="unfinished"></translation>
|
<translatorcomment>Jemné otáčení</translatorcomment>
|
||||||
|
<translation></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/editor/ui/qetelementeditor.ui" line="514"/>
|
<location filename="../sources/editor/ui/qetelementeditor.ui" line="514"/>
|
||||||
<source>Mirror</source>
|
<source>Mirror</source>
|
||||||
<translation type="unfinished"></translation>
|
<translatorcomment>Zrcadlit</translatorcomment>
|
||||||
|
<translation></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/editor/ui/qetelementeditor.ui" line="523"/>
|
<location filename="../sources/editor/ui/qetelementeditor.ui" line="523"/>
|
||||||
<source>Flip</source>
|
<source>Flip</source>
|
||||||
<translation type="unfinished"></translation>
|
<translatorcomment>Převrátit</translatorcomment>
|
||||||
|
<translation></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/editor/ui/qetelementeditor.ui" line="532"/>
|
<location filename="../sources/editor/ui/qetelementeditor.ui" line="532"/>
|
||||||
@@ -8107,13 +8110,13 @@ Co si přejete udělat?</translation>
|
|||||||
<location filename="../sources/editor/editorcommands.cpp" line="676"/>
|
<location filename="../sources/editor/editorcommands.cpp" line="676"/>
|
||||||
<source>Miroir de sélection</source>
|
<source>Miroir de sélection</source>
|
||||||
<comment>undo caption</comment>
|
<comment>undo caption</comment>
|
||||||
<translation type="unfinished"></translation>
|
<translation>Zrcadlit výběr</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/editor/editorcommands.cpp" line="724"/>
|
<location filename="../sources/editor/editorcommands.cpp" line="724"/>
|
||||||
<source>Retourner la sélection</source>
|
<source>Retourner la sélection</source>
|
||||||
<comment>undo caption</comment>
|
<comment>undo caption</comment>
|
||||||
<translation type="unfinished"></translation>
|
<translation>Převrátit výběr</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/editor/graphicspart/partarc.h" line="52"/>
|
<location filename="../sources/editor/graphicspart/partarc.h" line="52"/>
|
||||||
@@ -8926,182 +8929,182 @@ Chcete je nahradit?</translation>
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../sources/qetinformation.cpp" line="272"/>
|
<location filename="../sources/qetinformation.cpp" line="272"/>
|
||||||
<source>Bloc auxiliaire 1</source>
|
<source>Bloc auxiliaire 1</source>
|
||||||
<translation>Pomocný blok 1</translation>
|
<translation>Dodatečné informace o přídavném zařízení 1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/qetinformation.cpp" line="273"/>
|
<location filename="../sources/qetinformation.cpp" line="273"/>
|
||||||
<source>Description textuelle auxiliaire 1</source>
|
<source>Description textuelle auxiliaire 1</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>Textový popis přídavného zařízení 1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/qetinformation.cpp" line="274"/>
|
<location filename="../sources/qetinformation.cpp" line="274"/>
|
||||||
<source>Numéro d'article auxiliaire 1</source>
|
<source>Numéro d'article auxiliaire 1</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>Číslo přídavného zařízení 1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/qetinformation.cpp" line="275"/>
|
<location filename="../sources/qetinformation.cpp" line="275"/>
|
||||||
<source>Fabricant auxiliaire 1</source>
|
<source>Fabricant auxiliaire 1</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>Výrobce přídavného zařízení 1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/qetinformation.cpp" line="276"/>
|
<location filename="../sources/qetinformation.cpp" line="276"/>
|
||||||
<source>Numéro de commande auxiliaire 1</source>
|
<source>Numéro de commande auxiliaire 1</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>Objednací číslo přídavného zařízení 1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/qetinformation.cpp" line="277"/>
|
<location filename="../sources/qetinformation.cpp" line="277"/>
|
||||||
<source>Numéro interne auxiliaire 1</source>
|
<source>Numéro interne auxiliaire 1</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>Vnitřní číslo přídavného zařízení 1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/qetinformation.cpp" line="278"/>
|
<location filename="../sources/qetinformation.cpp" line="278"/>
|
||||||
<source>Fournisseur auxiliaire 1</source>
|
<source>Fournisseur auxiliaire 1</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>Dodavatel přídavného zařízení 1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/qetinformation.cpp" line="279"/>
|
<location filename="../sources/qetinformation.cpp" line="279"/>
|
||||||
<source>Quantité auxiliaire 1</source>
|
<source>Quantité auxiliaire 1</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>Množství přídavného zařízení 1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/qetinformation.cpp" line="280"/>
|
<location filename="../sources/qetinformation.cpp" line="280"/>
|
||||||
<source>Unité auxiliaire 1</source>
|
<source>Unité auxiliaire 1</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>Jednotka přídavného zařízení 1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/qetinformation.cpp" line="281"/>
|
<location filename="../sources/qetinformation.cpp" line="281"/>
|
||||||
<source>Bloc auxiliaire 2</source>
|
<source>Bloc auxiliaire 2</source>
|
||||||
<translation>Pomocný blok 2</translation>
|
<translation>Dodatečné informace o přídavném zařízení 2</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/qetinformation.cpp" line="282"/>
|
<location filename="../sources/qetinformation.cpp" line="282"/>
|
||||||
<source>Description textuelle auxiliaire 2</source>
|
<source>Description textuelle auxiliaire 2</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>Textový popis přídavného zařízení 2</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/qetinformation.cpp" line="283"/>
|
<location filename="../sources/qetinformation.cpp" line="283"/>
|
||||||
<source>Numéro d'article auxiliaire 2</source>
|
<source>Numéro d'article auxiliaire 2</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>Číslo přídavného zařízení 2</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/qetinformation.cpp" line="284"/>
|
<location filename="../sources/qetinformation.cpp" line="284"/>
|
||||||
<source>Fabricant auxiliaire 2</source>
|
<source>Fabricant auxiliaire 2</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>Výrobce přídavného zařízení 2</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/qetinformation.cpp" line="285"/>
|
<location filename="../sources/qetinformation.cpp" line="285"/>
|
||||||
<source>Numéro de commande auxiliaire 2</source>
|
<source>Numéro de commande auxiliaire 2</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>Objednací číslo přídavného zařízení 2</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/qetinformation.cpp" line="286"/>
|
<location filename="../sources/qetinformation.cpp" line="286"/>
|
||||||
<source>Numéro interne auxiliaire 2</source>
|
<source>Numéro interne auxiliaire 2</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>Vnitřní číslo přídavného zařízení 2</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/qetinformation.cpp" line="287"/>
|
<location filename="../sources/qetinformation.cpp" line="287"/>
|
||||||
<source>Fournisseur auxiliaire 2</source>
|
<source>Fournisseur auxiliaire 2</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>Dodavatel přídavného zařízení 2</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/qetinformation.cpp" line="288"/>
|
<location filename="../sources/qetinformation.cpp" line="288"/>
|
||||||
<source>Quantité auxiliaire 2</source>
|
<source>Quantité auxiliaire 2</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>Množství přídavného zařízení 2</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/qetinformation.cpp" line="289"/>
|
<location filename="../sources/qetinformation.cpp" line="289"/>
|
||||||
<source>Unité auxiliaire 2</source>
|
<source>Unité auxiliaire 2</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>Jednotka přídavného zařízení 2</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/qetinformation.cpp" line="290"/>
|
<location filename="../sources/qetinformation.cpp" line="290"/>
|
||||||
<source>Bloc auxiliaire 3</source>
|
<source>Bloc auxiliaire 3</source>
|
||||||
<translation type="unfinished">Pomocný blok 3</translation>
|
<translation>Dodatečné informace o přídavném zařízení 3</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/qetinformation.cpp" line="291"/>
|
<location filename="../sources/qetinformation.cpp" line="291"/>
|
||||||
<source>Description textuelle auxiliaire 3</source>
|
<source>Description textuelle auxiliaire 3</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>Textový popis přídavného zařízení 3</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/qetinformation.cpp" line="292"/>
|
<location filename="../sources/qetinformation.cpp" line="292"/>
|
||||||
<source>Numéro d'article auxiliaire 3</source>
|
<source>Numéro d'article auxiliaire 3</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>Číslo přídavného zařízení 3</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/qetinformation.cpp" line="293"/>
|
<location filename="../sources/qetinformation.cpp" line="293"/>
|
||||||
<source>Fabricant auxiliaire 3</source>
|
<source>Fabricant auxiliaire 3</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>Výrobce přídavného zařízení 3</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/qetinformation.cpp" line="294"/>
|
<location filename="../sources/qetinformation.cpp" line="294"/>
|
||||||
<source>Numéro de commande auxiliaire 3</source>
|
<source>Numéro de commande auxiliaire 3</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>Objednací číslo přídavného zařízení 3</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/qetinformation.cpp" line="295"/>
|
<location filename="../sources/qetinformation.cpp" line="295"/>
|
||||||
<source>Numéro interne auxiliaire 3</source>
|
<source>Numéro interne auxiliaire 3</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>Vnitřní číslo přídavného zařízení 3</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/qetinformation.cpp" line="296"/>
|
<location filename="../sources/qetinformation.cpp" line="296"/>
|
||||||
<source>Fournisseur auxiliaire 3</source>
|
<source>Fournisseur auxiliaire 3</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>Dodavatel přídavného zařízení 3</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/qetinformation.cpp" line="297"/>
|
<location filename="../sources/qetinformation.cpp" line="297"/>
|
||||||
<source>Quantité auxiliaire 3</source>
|
<source>Quantité auxiliaire 3</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>Množství přídavného zařízení 3</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/qetinformation.cpp" line="298"/>
|
<location filename="../sources/qetinformation.cpp" line="298"/>
|
||||||
<source>Unité auxiliaire 3</source>
|
<source>Unité auxiliaire 3</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>Jednotka přídavného zařízení 3</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/qetinformation.cpp" line="299"/>
|
<location filename="../sources/qetinformation.cpp" line="299"/>
|
||||||
<source>Bloc auxiliaire 4</source>
|
<source>Bloc auxiliaire 4</source>
|
||||||
<translation type="unfinished">Pomocný blok 4</translation>
|
<translation>Dodatečné informace o přídavném zařízení 4</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/qetinformation.cpp" line="300"/>
|
<location filename="../sources/qetinformation.cpp" line="300"/>
|
||||||
<source>Description textuelle auxiliaire 4</source>
|
<source>Description textuelle auxiliaire 4</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>Textový popis přídavného zařízení 4</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/qetinformation.cpp" line="301"/>
|
<location filename="../sources/qetinformation.cpp" line="301"/>
|
||||||
<source>Numéro d'article auxiliaire 4</source>
|
<source>Numéro d'article auxiliaire 4</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>Číslo přídavného zařízení 4</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/qetinformation.cpp" line="302"/>
|
<location filename="../sources/qetinformation.cpp" line="302"/>
|
||||||
<source>Fabricant auxiliaire 4</source>
|
<source>Fabricant auxiliaire 4</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>Výrobce přídavného zařízení 4</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/qetinformation.cpp" line="303"/>
|
<location filename="../sources/qetinformation.cpp" line="303"/>
|
||||||
<source>Numéro de commande auxiliaire 4</source>
|
<source>Numéro de commande auxiliaire 4</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>Objednací číslo přídavného zařízení 4</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/qetinformation.cpp" line="304"/>
|
<location filename="../sources/qetinformation.cpp" line="304"/>
|
||||||
<source>Numéro interne auxiliaire 4</source>
|
<source>Numéro interne auxiliaire 4</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>Vnitřní číslo přídavného zařízení 4</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/qetinformation.cpp" line="305"/>
|
<location filename="../sources/qetinformation.cpp" line="305"/>
|
||||||
<source>Fournisseur auxiliaire 4</source>
|
<source>Fournisseur auxiliaire 4</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>Dodavatel přídavného zařízení 4</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/qetinformation.cpp" line="306"/>
|
<location filename="../sources/qetinformation.cpp" line="306"/>
|
||||||
<source>Quantité auxiliaire 4</source>
|
<source>Quantité auxiliaire 4</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>Množství přídavného zařízení 4</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/qetinformation.cpp" line="307"/>
|
<location filename="../sources/qetinformation.cpp" line="307"/>
|
||||||
<source>Unité auxiliaire 4</source>
|
<source>Unité auxiliaire 4</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>Jednotka přídavného zařízení 4</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/qetinformation.cpp" line="257"/>
|
<location filename="../sources/qetinformation.cpp" line="257"/>
|
||||||
@@ -9491,7 +9494,8 @@ Chcete je nahradit?</translation>
|
|||||||
<location filename="../sources/qet_elementscaler/qet_elementscaler.cpp" line="100"/>
|
<location filename="../sources/qet_elementscaler/qet_elementscaler.cpp" line="100"/>
|
||||||
<source>QET_ElementScaler:
|
<source>QET_ElementScaler:
|
||||||
additional information about %1 import / scaling</source>
|
additional information about %1 import / scaling</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>QET_ElementScaler:
|
||||||
|
další informace týkající se zavedení/škálování %1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/qet_elementscaler/qet_elementscaler.cpp" line="149"/>
|
<location filename="../sources/qet_elementscaler/qet_elementscaler.cpp" line="149"/>
|
||||||
@@ -9504,7 +9508,8 @@ Stáhněte jej z níže uvedeného odkazu a rozbalte jej do instalační složky
|
|||||||
<location filename="../sources/dxf/dxftoelmt.cpp" line="58"/>
|
<location filename="../sources/dxf/dxftoelmt.cpp" line="58"/>
|
||||||
<source>Dxf2elmt:
|
<source>Dxf2elmt:
|
||||||
Error: Make sure the file %1 is a valid .dxf file</source>
|
Error: Make sure the file %1 is a valid .dxf file</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>Dxf2elmt:
|
||||||
|
Chyba: Ujistěte se, že soubor %1 je platný soubor .dxf</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../sources/dxf/dxftoelmt.cpp" line="59"/>
|
<location filename="../sources/dxf/dxftoelmt.cpp" line="59"/>
|
||||||
|
|||||||
BIN
lang/qet_ko.qm
Normal file
BIN
lang/qet_ko.qm
Normal file
Binary file not shown.
14380
lang/qet_ko.ts
Normal file
14380
lang/qet_ko.ts
Normal file
File diff suppressed because it is too large
Load Diff
76
man/files/ko/man1/qelectrotech.1
Normal file
76
man/files/ko/man1/qelectrotech.1
Normal file
@@ -0,0 +1,76 @@
|
|||||||
|
.TH QELECTROTECH 1 "AOÛT 2008" QElectroTech "사용자 설명서"
|
||||||
|
.SH 이름
|
||||||
|
qelectrotech \- 전기 도면 편집기
|
||||||
|
.SH 사용법
|
||||||
|
.B qelectrotech
|
||||||
|
.B [\-\-common\-elements\-dir\fR=\fI경로\fB]
|
||||||
|
.B [\-\-config\-dir\fR=\fI경로\fB]
|
||||||
|
.B [\-\-lang\-dir\fR=\fI경로\fB]
|
||||||
|
.B [\-\-help]
|
||||||
|
.B [\-v\fR|\fB\-\-version]
|
||||||
|
.B [\-\-license]
|
||||||
|
.B [\fI파일\fB]...
|
||||||
|
|
||||||
|
.SH 설명
|
||||||
|
QElectroTech는 전기 도면 편집기입니다. 도면(*.qet)과 전기 요소(*.elmt)는 XML 형식으로 저장됩니다.
|
||||||
|
도면에서 사용할 수 있는 요소는 공용 컬렉션 또는 사용자 컬렉션에서 가져올 수 있습니다.
|
||||||
|
일반적으로 공용 컬렉션은 모든 사용자가 접근할 수 있지만 사용자가 편집할 수는 없습니다.
|
||||||
|
사용자 컬렉션은 각 사용자에게 고유하며 사용자가 원하는 대로 수정할 수 있습니다.
|
||||||
|
|
||||||
|
.SH 옵션
|
||||||
|
.TP
|
||||||
|
\fB\-\-common\-elements\-dir\fR=\fI경로\fR
|
||||||
|
공용 요소(Elements) 컬렉션의 루트로 \fI경로\fR 폴더를 사용합니다.
|
||||||
|
참고: 이 옵션은 컴파일 시 QET_ALLOW_OVERRIDE_CED_OPTION 지시문이 지정된 경우에만 활성화됩니다.
|
||||||
|
.TP
|
||||||
|
\fB\-\-config\-dir\fR=\fI경로\fR
|
||||||
|
현재 사용자의 설정 폴더로 \fI경로\fR 폴더를 사용합니다.
|
||||||
|
이 폴더에는 애플리케이션 설정을 담은 qelectrotech.conf 파일과, 사용자 요소 컬렉션을 담는 elements 하위 폴더가 포함됩니다.
|
||||||
|
참고: 이 옵션은 컴파일 시 QET_ALLOW_OVERRIDE_CD_OPTION 지시문이 지정된 경우에만 활성화됩니다.
|
||||||
|
.TP
|
||||||
|
\fB\-\-lang\-dir\fR=\fI경로\fR
|
||||||
|
애플리케이션 번역 파일을 \fI경로\fR 폴더에서 찾습니다.
|
||||||
|
.TP
|
||||||
|
\fB\-\-help\fR
|
||||||
|
사용 가능한 옵션에 대한 간단한 설명을 표시합니다.
|
||||||
|
.TP
|
||||||
|
\fB\-v\fR, \fB\-\-version\fR
|
||||||
|
애플리케이션 버전을 표시합니다(예: 0.1).
|
||||||
|
.TP
|
||||||
|
\fB\-\-license\fR
|
||||||
|
애플리케이션 라이선스(GNU/GPL)를 표시합니다.
|
||||||
|
|
||||||
|
.P
|
||||||
|
참고: 위 옵션 중 마지막 3개(\-\-lang\-dir, \-\-help, \-\-version, \-\-license 관련)는 명령행에서 지정되면
|
||||||
|
해당 정보를 표시한 뒤 프로그램이 종료됩니다.
|
||||||
|
사용자가 이미 애플리케이션을 실행 중인 경우에는, 실행 중인 인스턴스가 명령행을 처리하며 특히 열 파일 목록에 적용됩니다.
|
||||||
|
다만 폴더를 재정의하는 옵션(공용 컬렉션/설정 폴더/언어 파일 폴더)은 적용되지 않습니다.
|
||||||
|
열 파일의 확장자가 .elmt로 끝나면 QElectroTech는 요소 편집기로 열려고 시도합니다.
|
||||||
|
그 외에는 도면 파일로 간주합니다.
|
||||||
|
|
||||||
|
.SH 작성자
|
||||||
|
Benoît Ansieau <benoit@qelectrotech.org>
|
||||||
|
.br
|
||||||
|
Xavier Guerrin <xavier@qelectrotech.org>
|
||||||
|
.br
|
||||||
|
Laurent Trinques <scorpio@qelectrotech.org>
|
||||||
|
.br
|
||||||
|
Joshua Claveau <joshua@qelectrotech.org>
|
||||||
|
.br
|
||||||
|
Cyril.frausti <cyril@qelectrotech.org>
|
||||||
|
.br
|
||||||
|
|
||||||
|
.SH 버그 신고
|
||||||
|
애플리케이션에서 비정상 동작이 의심되면, FAQ <http://qelectrotech.org/wiki/doku.php?id=doc:faq> 와
|
||||||
|
BugTracker <http://qelectrotech.org/bugtracker/> 를 확인하여 이미 알려진 문제인지 확인해 주세요.
|
||||||
|
해당 문제가 없다면 BugTracker를 통해 버그 리포트를 제출해 주세요.
|
||||||
|
|
||||||
|
.SH 저작권
|
||||||
|
Copyright © QElectroTech 개발자
|
||||||
|
.br
|
||||||
|
라이선스: GNU/GPL v2+ : <http://www.gnu.org/licenses/old\-licenses/gpl\-2.0.html>
|
||||||
|
.br
|
||||||
|
이 프로그램은 자유 소프트웨어입니다. 수정 및 재배포할 수 있습니다. 이 프로그램은 “있는 그대로(as is)” 제공되며 어떠한 보증도 없습니다.
|
||||||
|
|
||||||
|
.SH 참고
|
||||||
|
공식 사이트: <http://qelectrotech.org/>
|
||||||
@@ -22,6 +22,7 @@ Comment[fr]=Éditer des schémas électriques.
|
|||||||
Comment[hr]=Uredi elektro sheme
|
Comment[hr]=Uredi elektro sheme
|
||||||
Comment[it]=Disegnare schemi elettrici
|
Comment[it]=Disegnare schemi elettrici
|
||||||
Comment[ja]=電気回路図の編集。
|
Comment[ja]=電気回路図の編集。
|
||||||
|
Comment[ko]=전기 도면을 편집합니다.
|
||||||
Comment[nl]=Bewerken bedradingsdiagrammen.
|
Comment[nl]=Bewerken bedradingsdiagrammen.
|
||||||
Comment[pl]=Edycja schematów elektrycznych
|
Comment[pl]=Edycja schematów elektrycznych
|
||||||
Comment[pt]=Criar esquemas eléctricos.
|
Comment[pt]=Criar esquemas eléctricos.
|
||||||
@@ -40,6 +41,7 @@ GenericName[fr]=Éditeur de schémas électriques
|
|||||||
GenericName[hr]=Editor elektro sheme
|
GenericName[hr]=Editor elektro sheme
|
||||||
GenericName[it]=Programma per disegnare schemi elettrici
|
GenericName[it]=Programma per disegnare schemi elettrici
|
||||||
GenericName[ja]=電気回路図エディタ
|
GenericName[ja]=電気回路図エディタ
|
||||||
|
GenericName[ko]=전기 도면 편집기
|
||||||
GenericName[nl]=Elektrische schema editor
|
GenericName[nl]=Elektrische schema editor
|
||||||
GenericName[pl]=Edytor schematów elektrycznych
|
GenericName[pl]=Edytor schematów elektrycznych
|
||||||
GenericName[pt]=Editor de esquemas eléctricos.
|
GenericName[pt]=Editor de esquemas eléctricos.
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<!-- Copyright 2006-2025 The QElectroTech Team -->
|
<!-- Copyright 2006-2026 The QElectroTech Team -->
|
||||||
<application>
|
<application>
|
||||||
<id type="desktop">qelectrotech.desktop</id>
|
<id type="desktop">qelectrotech.desktop</id>
|
||||||
<metadata_license>MIT</metadata_license>
|
<metadata_license>MIT</metadata_license>
|
||||||
@@ -13,11 +13,12 @@
|
|||||||
<summary xml:lang="da">Elektrisk diagram redigering</summary>
|
<summary xml:lang="da">Elektrisk diagram redigering</summary>
|
||||||
<summary xml:lang="de">Zeichenprogramm für Schaltpläne</summary>
|
<summary xml:lang="de">Zeichenprogramm für Schaltpläne</summary>
|
||||||
<summary xml:lang="el">Επεξεργαστής ηλεκτρικών διαγραμμάτων</summary>
|
<summary xml:lang="el">Επεξεργαστής ηλεκτρικών διαγραμμάτων</summary>
|
||||||
<summary xml:lang="ex">Editor de esquemas eléctricos</summary>
|
<summary xml:lang="es">Editor de esquemas eléctricos</summary>
|
||||||
<summary xml:lang="fr">Éditeur de schémas électriques</summary>
|
<summary xml:lang="fr">Éditeur de schémas électriques</summary>
|
||||||
<summary xml:lang="hr">Editor elektro sheme</summary>
|
<summary xml:lang="hr">Editor elektro sheme</summary>
|
||||||
<summary xml:lang="it">Programma per disegnare schemi elettrici</summary>
|
<summary xml:lang="it">Programma per disegnare schemi elettrici</summary>
|
||||||
<summary xml:lang="ja">電気回路図エディタ</summary>
|
<summary xml:lang="ja">電気回路図エディタ</summary>
|
||||||
|
<summary xml:lang="ko">전기 도면 편집기</summary>
|
||||||
<summary xml:lang="nl">Elektrische schema bewerker</summary>
|
<summary xml:lang="nl">Elektrische schema bewerker</summary>
|
||||||
<summary xml:lang="pl">Edytor schematów elektrycznych</summary>
|
<summary xml:lang="pl">Edytor schematów elektrycznych</summary>
|
||||||
<summary xml:lang="pt">Editor de esquemas eléctricos</summary>
|
<summary xml:lang="pt">Editor de esquemas eléctricos</summary>
|
||||||
@@ -71,6 +72,10 @@
|
|||||||
QElectroTech は電気回路図を作成する Qt5 アプリケーションです。
|
QElectroTech は電気回路図を作成する Qt5 アプリケーションです。
|
||||||
QET は要素と回路図に XML 形式を利用し、回路図エディタ、要素エディタ、表題欄エディタを含みます。
|
QET は要素と回路図に XML 形式を利用し、回路図エディタ、要素エディタ、表題欄エディタを含みます。
|
||||||
</p>
|
</p>
|
||||||
|
<p xml:lang="ko">
|
||||||
|
QElectroTech는 전기 도면을 설계하기 위한 Qt5 기반 애플리케이션입니다.
|
||||||
|
요소와 도면을 XML 형식으로 관리하며, 도면 편집기, 요소 편집기, 표제란 편집기를 포함하고 있습니다.
|
||||||
|
</p>
|
||||||
<p xml:lang="nl">
|
<p xml:lang="nl">
|
||||||
QElectroTech is een Qt5 applicatie om elektrische schema's te ontwerpen.
|
QElectroTech is een Qt5 applicatie om elektrische schema's te ontwerpen.
|
||||||
Het maakt gebruik van XML-bestanden voor elementen en diagrammen, en omvat zowel een diagram bewerker, een element bewerker, en een bloksjabloon bewerker.
|
Het maakt gebruik van XML-bestanden voor elementen en diagrammen, en omvat zowel een diagram bewerker, een element bewerker, en een bloksjabloon bewerker.
|
||||||
|
|||||||
@@ -14,6 +14,7 @@
|
|||||||
<comment xml:lang="fr">Fichier projet QElectroTech</comment>
|
<comment xml:lang="fr">Fichier projet QElectroTech</comment>
|
||||||
<comment xml:lang="it">File del progetto QElectroTech</comment>
|
<comment xml:lang="it">File del progetto QElectroTech</comment>
|
||||||
<comment xml:lang="ja">QElectroTech プロジェクト・ファイル</comment>
|
<comment xml:lang="ja">QElectroTech プロジェクト・ファイル</comment>
|
||||||
|
<comment xml:lang="ko">QElectroTech 프로젝트 파일</comment>
|
||||||
<comment xml:lang="nl">QElectroTech project bestand</comment>
|
<comment xml:lang="nl">QElectroTech project bestand</comment>
|
||||||
<comment xml:lang="pl">Plik projektu QElectrotech</comment>
|
<comment xml:lang="pl">Plik projektu QElectrotech</comment>
|
||||||
<comment xml:lang="pt">Ficheiro de projecto QElectroTech</comment>
|
<comment xml:lang="pt">Ficheiro de projecto QElectroTech</comment>
|
||||||
@@ -34,6 +35,7 @@
|
|||||||
<comment xml:lang="fr">Fichier élément QElectroTech</comment>
|
<comment xml:lang="fr">Fichier élément QElectroTech</comment>
|
||||||
<comment xml:lang="it">File del progetto QElectroTech</comment>
|
<comment xml:lang="it">File del progetto QElectroTech</comment>
|
||||||
<comment xml:lang="ja">QElectroTech 要素ファイル</comment>
|
<comment xml:lang="ja">QElectroTech 要素ファイル</comment>
|
||||||
|
<comment xml:lang="ko">QElectroTech 요소 파일</comment>
|
||||||
<comment xml:lang="nl">QElectroTech element bestand</comment>
|
<comment xml:lang="nl">QElectroTech element bestand</comment>
|
||||||
<comment xml:lang="pl">Plik elementu QElectroTech</comment>
|
<comment xml:lang="pl">Plik elementu QElectroTech</comment>
|
||||||
<comment xml:lang="pt">Ficheiro de projecto QElectroTech</comment>
|
<comment xml:lang="pt">Ficheiro de projecto QElectroTech</comment>
|
||||||
@@ -54,6 +56,7 @@
|
|||||||
<comment xml:lang="fr">Modèle de cartouche QElectroTech</comment>
|
<comment xml:lang="fr">Modèle de cartouche QElectroTech</comment>
|
||||||
<comment xml:lang="it">Modello di cartiglio per QElectroTech</comment>
|
<comment xml:lang="it">Modello di cartiglio per QElectroTech</comment>
|
||||||
<comment xml:lang="ja">QElectroTech 表題欄テンプレート</comment>
|
<comment xml:lang="ja">QElectroTech 表題欄テンプレート</comment>
|
||||||
|
<comment xml:lang="ko">QElectroTech 표제란 템플릿 파일</comment>
|
||||||
<comment xml:lang="nl">QElectroTech titel bloksjabloon</comment>
|
<comment xml:lang="nl">QElectroTech titel bloksjabloon</comment>
|
||||||
<comment xml:lang="pl">Szablon tabliczki rysunkowej QElectroTech</comment>
|
<comment xml:lang="pl">Szablon tabliczki rysunkowej QElectroTech</comment>
|
||||||
<comment xml:lang="pt">Modelo de moldura QElectroTech</comment>
|
<comment xml:lang="pt">Modelo de moldura QElectroTech</comment>
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
#Based on raspberry pi 5 8 Gb bookworm
|
#Based on raspberry pi 5 8 Gb Trixie
|
||||||
#sudo apt install git ssh rsync libqt5svg5-dev qt5-qmake qtbase5-dev libkf5widgetsaddons-dev libkf5coreaddons-dev libsqlite3-dev pkgconf libqt5waylandclient5-dev libqt5waylandcompositor5-dev g++ make
|
#sudo apt install git ssh rsync libqt5svg5-dev qt5-qmake qtbase5-dev libkf5widgetsaddons-dev libkf5coreaddons-dev libsqlite3-dev pkgconf libqt5waylandclient5-dev libqt5waylandcompositor5-dev g++ make
|
||||||
#mkdir -p AppImage/0.100.0/aarch64
|
#mkdir -p AppImage/0.100.0/aarch64
|
||||||
# Get GIT sources
|
# Get GIT sources
|
||||||
@@ -71,12 +71,12 @@ chmod +x AppDir/qelectrotech/AppRun
|
|||||||
# Get 64-bit ARM version of go-appimage appimagetool
|
# Get 64-bit ARM version of go-appimage appimagetool
|
||||||
#wget -c https://github.com/$(wget -q https://github.com/probonopd/go-appimage/releases/expanded_assets/continuous -O - | grep "appimagetool-.*-aarch64.AppImage" | head -n 1 | cut -d '"' -f 2)
|
#wget -c https://github.com/$(wget -q https://github.com/probonopd/go-appimage/releases/expanded_assets/continuous -O - | grep "appimagetool-.*-aarch64.AppImage" | head -n 1 | cut -d '"' -f 2)
|
||||||
#chmod +x appimagetool-*.AppImage
|
#chmod +x appimagetool-*.AppImage
|
||||||
VERSION=$tagName-r$HEAD ./appimagetool-8*.AppImage ./AppDir/qelectrotech/
|
VERSION=$tagName-r$HEAD ./appimagetool-9*.AppImage ./AppDir/qelectrotech/
|
||||||
|
|
||||||
|
|
||||||
chmod -x QElectroTech-*.AppImage
|
chmod -x QElectroTech-*.AppImage
|
||||||
shasum -a 256 QElectroTech-$tagName-r$HEAD-aarch64.AppImage > QElectroTech-$tagName-r$HEAD-aarch64.AppImage-SHA256.txt
|
shasum -a 256 QElectroTech-$tagName-r$HEAD-aarch64.AppImage > QElectroTech-$tagName-r$HEAD-aarch64.AppImage-SHA256.txt
|
||||||
mv QElectroTech-$tagName-r$HEAD-aarch64.AppImage* ./AppImage/0.100.0/aarch64
|
mv QElectroTech-$tagName-r$HEAD-aarch64.AppImage* ./AppImage/0.100.0/aarch64/trixie
|
||||||
cd ..
|
cd ..
|
||||||
#rsync to server
|
#rsync to server
|
||||||
echo -e "\033[1;31mWould you like to RSYNC Appimage to server n/Y?.\033[m"
|
echo -e "\033[1;31mWould you like to RSYNC Appimage to server n/Y?.\033[m"
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
Copyright 2006-2025 The QElectroTech Team
|
Copyright 2006-2026 The QElectroTech Team
|
||||||
This file is part of QElectroTech.
|
This file is part of QElectroTech.
|
||||||
|
|
||||||
QElectroTech is free software: you can redistribute it and/or modify
|
QElectroTech is free software: you can redistribute it and/or modify
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
Copyright 2006-2025 The QElectroTech Team
|
Copyright 2006-2026 The QElectroTech Team
|
||||||
This file is part of QElectroTech.
|
This file is part of QElectroTech.
|
||||||
|
|
||||||
QElectroTech is free software: you can redistribute it and/or modify
|
QElectroTech is free software: you can redistribute it and/or modify
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
Copyright 2006-2025 The QElectroTech Team
|
Copyright 2006-2026 The QElectroTech Team
|
||||||
This file is part of QElectroTech.
|
This file is part of QElectroTech.
|
||||||
|
|
||||||
QElectroTech is free software: you can redistribute it and/or modify
|
QElectroTech is free software: you can redistribute it and/or modify
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
Copyright 2006-2025 The QElectroTech Team
|
Copyright 2006-2026 The QElectroTech Team
|
||||||
This file is part of QElectroTech.
|
This file is part of QElectroTech.
|
||||||
|
|
||||||
QElectroTech is free software: you can redistribute it and/or modify
|
QElectroTech is free software: you can redistribute it and/or modify
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
Copyright 2006-2025 The QElectroTech Team
|
Copyright 2006-2026 The QElectroTech Team
|
||||||
This file is part of QElectroTech.
|
This file is part of QElectroTech.
|
||||||
|
|
||||||
QElectroTech is free software: you can redistribute it and/or modify
|
QElectroTech is free software: you can redistribute it and/or modify
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
Copyright 2006-2025 The QElectroTech Team
|
Copyright 2006-2026 The QElectroTech Team
|
||||||
This file is part of QElectroTech.
|
This file is part of QElectroTech.
|
||||||
|
|
||||||
QElectroTech is free software: you can redistribute it and/or modify
|
QElectroTech is free software: you can redistribute it and/or modify
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
Copyright 2006-2025 The QElectroTech Team
|
Copyright 2006-2026 The QElectroTech Team
|
||||||
This file is part of QElectroTech.
|
This file is part of QElectroTech.
|
||||||
|
|
||||||
QElectroTech is free software: you can redistribute it and/or modify
|
QElectroTech is free software: you can redistribute it and/or modify
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
Copyright 2006-2025 The QElectroTech Team
|
Copyright 2006-2026 The QElectroTech Team
|
||||||
This file is part of QElectroTech.
|
This file is part of QElectroTech.
|
||||||
|
|
||||||
QElectroTech is free software: you can redistribute it and/or modify
|
QElectroTech is free software: you can redistribute it and/or modify
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
Copyright 2006-2025 The QElectroTech Team
|
Copyright 2006-2026 The QElectroTech Team
|
||||||
This file is part of QElectroTech.
|
This file is part of QElectroTech.
|
||||||
|
|
||||||
QElectroTech is free software: you can redistribute it and/or modify
|
QElectroTech is free software: you can redistribute it and/or modify
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
Copyright 2006-2025 The QElectroTech Team
|
Copyright 2006-2026 The QElectroTech Team
|
||||||
This file is part of QElectroTech.
|
This file is part of QElectroTech.
|
||||||
|
|
||||||
QElectroTech is free software: you can redistribute it and/or modify
|
QElectroTech is free software: you can redistribute it and/or modify
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
Copyright 2006-2025 The QElectroTech Team
|
Copyright 2006-2026 The QElectroTech Team
|
||||||
This file is part of QElectroTech.
|
This file is part of QElectroTech.
|
||||||
|
|
||||||
QElectroTech is free software: you can redistribute it and/or modify
|
QElectroTech is free software: you can redistribute it and/or modify
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
Copyright 2006-2025 The QElectroTech Team
|
Copyright 2006-2026 The QElectroTech Team
|
||||||
This file is part of QElectroTech.
|
This file is part of QElectroTech.
|
||||||
|
|
||||||
QElectroTech is free software: you can redistribute it and/or modify
|
QElectroTech is free software: you can redistribute it and/or modify
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
Copyright 2006-2025 The QElectroTech Team
|
Copyright 2006-2026 The QElectroTech Team
|
||||||
This file is part of QElectroTech.
|
This file is part of QElectroTech.
|
||||||
|
|
||||||
QElectroTech is free software: you can redistribute it and/or modify
|
QElectroTech is free software: you can redistribute it and/or modify
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
Copyright 2006-2025 The QElectroTech Team
|
Copyright 2006-2026 The QElectroTech Team
|
||||||
This file is part of QElectroTech.
|
This file is part of QElectroTech.
|
||||||
|
|
||||||
QElectroTech is free software: you can redistribute it and/or modify
|
QElectroTech is free software: you can redistribute it and/or modify
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
Copyright 2006-2025 The QElectroTech Team
|
Copyright 2006-2026 The QElectroTech Team
|
||||||
This file is part of QElectroTech.
|
This file is part of QElectroTech.
|
||||||
|
|
||||||
QElectroTech is free software: you can redistribute it and/or modify
|
QElectroTech is free software: you can redistribute it and/or modify
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
Copyright 2006-2025 The QElectroTech Team
|
Copyright 2006-2026 The QElectroTech Team
|
||||||
This file is part of QElectroTech.
|
This file is part of QElectroTech.
|
||||||
|
|
||||||
QElectroTech is free software: you can redistribute it and/or modify
|
QElectroTech is free software: you can redistribute it and/or modify
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
Copyright 2006-2025 The QElectroTech Team
|
Copyright 2006-2026 The QElectroTech Team
|
||||||
This file is part of QElectroTech.
|
This file is part of QElectroTech.
|
||||||
|
|
||||||
QElectroTech is free software: you can redistribute it and/or modify
|
QElectroTech is free software: you can redistribute it and/or modify
|
||||||
@@ -58,6 +58,10 @@ XmlElementCollection::XmlElementCollection(QETProject *project) :
|
|||||||
QChar(0x30A4), QChar(0x30F3), QChar(0x30D0), QChar(0x30FC),
|
QChar(0x30A4), QChar(0x30F3), QChar(0x30D0), QChar(0x30FC),
|
||||||
QChar(0x30C8), QChar(0x3055), QChar(0x308C), QChar(0x305F),
|
QChar(0x30C8), QChar(0x3055), QChar(0x308C), QChar(0x305F),
|
||||||
QChar(0x8981), QChar(0x7D20)};
|
QChar(0x8981), QChar(0x7D20)};
|
||||||
|
const QChar korean_data[8] = {
|
||||||
|
QChar(0xC804), QChar(0xAE30), QChar(0x0020),
|
||||||
|
QChar(0xC2EC), QChar(0xBCFC), QChar(0x0020),
|
||||||
|
QChar(0xC694), QChar(0xC18C)};
|
||||||
const QChar russian_data[24] = {
|
const QChar russian_data[24] = {
|
||||||
QChar(0x0418), QChar(0x043C), QChar(0x043F), QChar(0x043E),
|
QChar(0x0418), QChar(0x043C), QChar(0x043F), QChar(0x043E),
|
||||||
QChar(0x0440), QChar(0x0442), QChar(0x0438), QChar(0x0440),
|
QChar(0x0440), QChar(0x0442), QChar(0x0438), QChar(0x0440),
|
||||||
@@ -88,6 +92,8 @@ XmlElementCollection::XmlElementCollection(QETProject *project) :
|
|||||||
names.addName("it", "Elementi importati");
|
names.addName("it", "Elementi importati");
|
||||||
names.addName("ja", QString(japanese_data, 10));
|
names.addName("ja", QString(japanese_data, 10));
|
||||||
//names.addName("ja", "インバートされた要素");
|
//names.addName("ja", "インバートされた要素");
|
||||||
|
names.addName("ko", QString(korean_data, 8));
|
||||||
|
names.addName("ko_KR", QString(korean_data, 8));
|
||||||
names.addName("nl", "Elementen geïmporteerd");
|
names.addName("nl", "Elementen geïmporteerd");
|
||||||
names.addName("nl_BE", "Elementen geïmporteerd");
|
names.addName("nl_BE", "Elementen geïmporteerd");
|
||||||
names.addName("pl", "Elementy importowane");
|
names.addName("pl", "Elementy importowane");
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
Copyright 2006-2025 The QElectroTech Team
|
Copyright 2006-2026 The QElectroTech Team
|
||||||
This file is part of QElectroTech.
|
This file is part of QElectroTech.
|
||||||
|
|
||||||
QElectroTech is free software: you can redistribute it and/or modify
|
QElectroTech is free software: you can redistribute it and/or modify
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
Copyright 2006-2025 The QElectroTech Team
|
Copyright 2006-2026 The QElectroTech Team
|
||||||
This file is part of QElectroTech.
|
This file is part of QElectroTech.
|
||||||
|
|
||||||
QElectroTech is free software: you can redistribute it and/or modify
|
QElectroTech is free software: you can redistribute it and/or modify
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
Copyright 2006-2025 The QElectroTech Team
|
Copyright 2006-2026 The QElectroTech Team
|
||||||
This file is part of QElectroTech.
|
This file is part of QElectroTech.
|
||||||
|
|
||||||
QElectroTech is free software: you can redistribute it and/or modify
|
QElectroTech is free software: you can redistribute it and/or modify
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
Copyright 2006-2025 The QElectroTech Team
|
Copyright 2006-2026 The QElectroTech Team
|
||||||
This file is part of QElectroTech.
|
This file is part of QElectroTech.
|
||||||
|
|
||||||
QElectroTech is free software: you can redistribute it and/or modify
|
QElectroTech is free software: you can redistribute it and/or modify
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
Copyright 2006-2025 The QElectroTech Team
|
Copyright 2006-2026 The QElectroTech Team
|
||||||
This file is part of QElectroTech.
|
This file is part of QElectroTech.
|
||||||
|
|
||||||
QElectroTech is free software: you can redistribute it and/or modify
|
QElectroTech is free software: you can redistribute it and/or modify
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
Copyright 2006-2025 The QElectroTech Team
|
Copyright 2006-2026 The QElectroTech Team
|
||||||
This file is part of QElectroTech.
|
This file is part of QElectroTech.
|
||||||
|
|
||||||
QElectroTech is free software: you can redistribute it and/or modify
|
QElectroTech is free software: you can redistribute it and/or modify
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
Copyright 2006-2025 The QElectroTech Team
|
Copyright 2006-2026 The QElectroTech Team
|
||||||
This file is part of QElectroTech.
|
This file is part of QElectroTech.
|
||||||
|
|
||||||
QElectroTech is free software: you can redistribute it and/or modify
|
QElectroTech is free software: you can redistribute it and/or modify
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
Copyright 2006-2025 The QElectroTech Team
|
Copyright 2006-2026 The QElectroTech Team
|
||||||
This file is part of QElectroTech.
|
This file is part of QElectroTech.
|
||||||
|
|
||||||
QElectroTech is free software: you can redistribute it and/or modify
|
QElectroTech is free software: you can redistribute it and/or modify
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
Copyright 2006-2025 The QElectroTech Team
|
Copyright 2006-2026 The QElectroTech Team
|
||||||
This file is part of QElectroTech.
|
This file is part of QElectroTech.
|
||||||
|
|
||||||
QElectroTech is free software: you can redistribute it and/or modify
|
QElectroTech is free software: you can redistribute it and/or modify
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
Copyright 2006-2025 The QElectroTech Team
|
Copyright 2006-2026 The QElectroTech Team
|
||||||
This file is part of QElectroTech.
|
This file is part of QElectroTech.
|
||||||
|
|
||||||
QElectroTech is free software: you can redistribute it and/or modify
|
QElectroTech is free software: you can redistribute it and/or modify
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
Copyright 2006-2025 The QElectroTech Team
|
Copyright 2006-2026 The QElectroTech Team
|
||||||
This file is part of QElectroTech.
|
This file is part of QElectroTech.
|
||||||
|
|
||||||
QElectroTech is free software: you can redistribute it and/or modify
|
QElectroTech is free software: you can redistribute it and/or modify
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
Copyright 2006-2025 The QElectroTech Team
|
Copyright 2006-2026 The QElectroTech Team
|
||||||
This file is part of QElectroTech.
|
This file is part of QElectroTech.
|
||||||
|
|
||||||
QElectroTech is free software: you can redistribute it and/or modify
|
QElectroTech is free software: you can redistribute it and/or modify
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
Copyright 2006-2025 The QElectroTech Team
|
Copyright 2006-2026 The QElectroTech Team
|
||||||
This file is part of QElectroTech.
|
This file is part of QElectroTech.
|
||||||
|
|
||||||
QElectroTech is free software: you can redistribute it and/or modify
|
QElectroTech is free software: you can redistribute it and/or modify
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
Copyright 2006-2025 The QElectroTech Team
|
Copyright 2006-2026 The QElectroTech Team
|
||||||
This file is part of QElectroTech.
|
This file is part of QElectroTech.
|
||||||
|
|
||||||
QElectroTech is free software: you can redistribute it and/or modify
|
QElectroTech is free software: you can redistribute it and/or modify
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
Copyright 2006-2025 The QElectroTech Team
|
Copyright 2006-2026 The QElectroTech Team
|
||||||
This file is part of QElectroTech.
|
This file is part of QElectroTech.
|
||||||
|
|
||||||
QElectroTech is free software: you can redistribute it and/or modify
|
QElectroTech is free software: you can redistribute it and/or modify
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
Copyright 2006-2025 The QElectroTech Team
|
Copyright 2006-2026 The QElectroTech Team
|
||||||
This file is part of QElectroTech.
|
This file is part of QElectroTech.
|
||||||
|
|
||||||
QElectroTech is free software: you can redistribute it and/or modify
|
QElectroTech is free software: you can redistribute it and/or modify
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
Copyright 2006-2025 The QElectroTech Team
|
Copyright 2006-2026 The QElectroTech Team
|
||||||
This file is part of QElectroTech.
|
This file is part of QElectroTech.
|
||||||
|
|
||||||
QElectroTech is free software: you can redistribute it and/or modify
|
QElectroTech is free software: you can redistribute it and/or modify
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
Copyright 2006-2025 The QElectroTech Team
|
Copyright 2006-2026 The QElectroTech Team
|
||||||
This file is part of QElectroTech.
|
This file is part of QElectroTech.
|
||||||
|
|
||||||
QElectroTech is free software: you can redistribute it and/or modify
|
QElectroTech is free software: you can redistribute it and/or modify
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
Copyright 2006-2025 The QElectroTech Team
|
Copyright 2006-2026 The QElectroTech Team
|
||||||
This file is part of QElectroTech.
|
This file is part of QElectroTech.
|
||||||
|
|
||||||
QElectroTech is free software: you can redistribute it and/or modify
|
QElectroTech is free software: you can redistribute it and/or modify
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
Copyright 2006-2025 The QElectroTech Team
|
Copyright 2006-2026 The QElectroTech Team
|
||||||
This file is part of QElectroTech.
|
This file is part of QElectroTech.
|
||||||
|
|
||||||
QElectroTech is free software: you can redistribute it and/or modify
|
QElectroTech is free software: you can redistribute it and/or modify
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
Copyright 2006-2025 The QElectroTech Team
|
Copyright 2006-2026 The QElectroTech Team
|
||||||
This file is part of QElectroTech.
|
This file is part of QElectroTech.
|
||||||
|
|
||||||
QElectroTech is free software: you can redistribute it and/or modify
|
QElectroTech is free software: you can redistribute it and/or modify
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
Copyright 2006-2025 The QElectroTech Team
|
Copyright 2006-2026 The QElectroTech Team
|
||||||
This file is part of QElectroTech.
|
This file is part of QElectroTech.
|
||||||
|
|
||||||
QElectroTech is free software: you can redistribute it and/or modify
|
QElectroTech is free software: you can redistribute it and/or modify
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
Copyright 2006-2025 The QElectroTech Team
|
Copyright 2006-2026 The QElectroTech Team
|
||||||
This file is part of QElectroTech.
|
This file is part of QElectroTech.
|
||||||
|
|
||||||
QElectroTech is free software: you can redistribute it and/or modify
|
QElectroTech is free software: you can redistribute it and/or modify
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
Copyright 2006-2025 The QElectroTech Team
|
Copyright 2006-2026 The QElectroTech Team
|
||||||
This file is part of QElectroTech.
|
This file is part of QElectroTech.
|
||||||
|
|
||||||
QElectroTech is free software: you can redistribute it and/or modify
|
QElectroTech is free software: you can redistribute it and/or modify
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
Copyright 2006-2025 The QElectroTech Team
|
Copyright 2006-2026 The QElectroTech Team
|
||||||
This file is part of QElectroTech.
|
This file is part of QElectroTech.
|
||||||
|
|
||||||
QElectroTech is free software: you can redistribute it and/or modify
|
QElectroTech is free software: you can redistribute it and/or modify
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
Copyright 2006-2025 The QElectroTech Team
|
Copyright 2006-2026 The QElectroTech Team
|
||||||
This file is part of QElectroTech.
|
This file is part of QElectroTech.
|
||||||
|
|
||||||
QElectroTech is free software: you can redistribute it and/or modify
|
QElectroTech is free software: you can redistribute it and/or modify
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
Copyright 2006-2025 The QElectroTech Team
|
Copyright 2006-2026 The QElectroTech Team
|
||||||
This file is part of QElectroTech.
|
This file is part of QElectroTech.
|
||||||
|
|
||||||
QElectroTech is free software: you can redistribute it and/or modify
|
QElectroTech is free software: you can redistribute it and/or modify
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
Copyright 2006-2025 The QElectroTech Team
|
Copyright 2006-2026 The QElectroTech Team
|
||||||
This file is part of QElectroTech.
|
This file is part of QElectroTech.
|
||||||
|
|
||||||
QElectroTech is free software: you can redistribute it and/or modify
|
QElectroTech is free software: you can redistribute it and/or modify
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
Copyright 2006-2025 The QElectroTech Team
|
Copyright 2006-2026 The QElectroTech Team
|
||||||
This file is part of QElectroTech.
|
This file is part of QElectroTech.
|
||||||
|
|
||||||
QElectroTech is free software: you can redistribute it and/or modify
|
QElectroTech is free software: you can redistribute it and/or modify
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
Copyright 2006-2025 The QElectroTech Team
|
Copyright 2006-2026 The QElectroTech Team
|
||||||
This file is part of QElectroTech.
|
This file is part of QElectroTech.
|
||||||
|
|
||||||
QElectroTech is free software: you can redistribute it and/or modify
|
QElectroTech is free software: you can redistribute it and/or modify
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
Copyright 2006-2025 The QElectroTech Team
|
Copyright 2006-2026 The QElectroTech Team
|
||||||
This file is part of QElectroTech.
|
This file is part of QElectroTech.
|
||||||
|
|
||||||
QElectroTech is free software: you can redistribute it and/or modify
|
QElectroTech is free software: you can redistribute it and/or modify
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
Copyright 2006-2025 The QElectroTech Team
|
Copyright 2006-2026 The QElectroTech Team
|
||||||
This file is part of QElectroTech.
|
This file is part of QElectroTech.
|
||||||
|
|
||||||
QElectroTech is free software: you can redistribute it and/or modify
|
QElectroTech is free software: you can redistribute it and/or modify
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
Copyright 2006-2025 The QElectroTech Team
|
Copyright 2006-2026 The QElectroTech Team
|
||||||
This file is part of QElectroTech.
|
This file is part of QElectroTech.
|
||||||
|
|
||||||
QElectroTech is free software: you can redistribute it and/or modify
|
QElectroTech is free software: you can redistribute it and/or modify
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
Copyright 2006-2025 The QElectroTech Team
|
Copyright 2006-2026 The QElectroTech Team
|
||||||
This file is part of QElectroTech.
|
This file is part of QElectroTech.
|
||||||
|
|
||||||
QElectroTech is free software: you can redistribute it and/or modify
|
QElectroTech is free software: you can redistribute it and/or modify
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
Copyright 2006-2025 The QElectroTech Team
|
Copyright 2006-2026 The QElectroTech Team
|
||||||
This file is part of QElectroTech.
|
This file is part of QElectroTech.
|
||||||
|
|
||||||
QElectroTech is free software: you can redistribute it and/or modify
|
QElectroTech is free software: you can redistribute it and/or modify
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
Copyright 2006-2025 The QElectroTech Team
|
Copyright 2006-2026 The QElectroTech Team
|
||||||
This file is part of QElectroTech.
|
This file is part of QElectroTech.
|
||||||
|
|
||||||
QElectroTech is free software: you can redistribute it and/or modify
|
QElectroTech is free software: you can redistribute it and/or modify
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
Copyright 2006-2025 The QElectroTech Team
|
Copyright 2006-2026 The QElectroTech Team
|
||||||
This file is part of QElectroTech.
|
This file is part of QElectroTech.
|
||||||
|
|
||||||
QElectroTech is free software: you can redistribute it and/or modify
|
QElectroTech is free software: you can redistribute it and/or modify
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
Copyright 2006-2025 The QElectroTech Team
|
Copyright 2006-2026 The QElectroTech Team
|
||||||
This file is part of QElectroTech.
|
This file is part of QElectroTech.
|
||||||
|
|
||||||
QElectroTech is free software: you can redistribute it and/or modify
|
QElectroTech is free software: you can redistribute it and/or modify
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
Copyright 2006-2025 The QElectroTech Team
|
Copyright 2006-2026 The QElectroTech Team
|
||||||
This file is part of QElectroTech.
|
This file is part of QElectroTech.
|
||||||
|
|
||||||
QElectroTech is free software: you can redistribute it and/or modify
|
QElectroTech is free software: you can redistribute it and/or modify
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
Copyright 2006-2025 The QElectroTech Team
|
Copyright 2006-2026 The QElectroTech Team
|
||||||
This file is part of QElectroTech.
|
This file is part of QElectroTech.
|
||||||
|
|
||||||
QElectroTech is free software: you can redistribute it and/or modify
|
QElectroTech is free software: you can redistribute it and/or modify
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
Copyright 2006-2025 The QElectroTech Team
|
Copyright 2006-2026 The QElectroTech Team
|
||||||
This file is part of QElectroTech.
|
This file is part of QElectroTech.
|
||||||
|
|
||||||
QElectroTech is free software: you can redistribute it and/or modify
|
QElectroTech is free software: you can redistribute it and/or modify
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
Copyright 2006-2025 The QElectroTech Team
|
Copyright 2006-2026 The QElectroTech Team
|
||||||
This file is part of QElectroTech.
|
This file is part of QElectroTech.
|
||||||
|
|
||||||
QElectroTech is free software: you can redistribute it and/or modify
|
QElectroTech is free software: you can redistribute it and/or modify
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
Copyright 2006-2025 The QElectroTech Team
|
Copyright 2006-2026 The QElectroTech Team
|
||||||
This file is part of QElectroTech.
|
This file is part of QElectroTech.
|
||||||
|
|
||||||
QElectroTech is free software: you can redistribute it and/or modify
|
QElectroTech is free software: you can redistribute it and/or modify
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
Copyright 2006-2025 The QElectroTech Team
|
Copyright 2006-2026 The QElectroTech Team
|
||||||
This file is part of QElectroTech.
|
This file is part of QElectroTech.
|
||||||
|
|
||||||
QElectroTech is free software: you can redistribute it and/or modify
|
QElectroTech is free software: you can redistribute it and/or modify
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
Copyright 2006-2025 The QElectroTech Team
|
Copyright 2006-2026 The QElectroTech Team
|
||||||
This file is part of QElectroTech.
|
This file is part of QElectroTech.
|
||||||
|
|
||||||
QElectroTech is free software: you can redistribute it and/or modify
|
QElectroTech is free software: you can redistribute it and/or modify
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user