Added Dutch localisation (Thanks Rick Van Lieshout and Fly Man)
Reformated Docs into Markdown FossilOrigin-Name: c2bac983bbd7ac0b30a8911f9491af593a8b8989
This commit is contained in:
		| @@ -6,66 +6,87 @@ Prerequisites | ||||
| Building Fuel from source requires Qt version 4 or 5. Qt is available at: | ||||
| 	http://www.qt.io/download-open-source/ | ||||
| 
 | ||||
| To run Fuel a compiled binary of Fossil must be available either in the system  | ||||
| To run Fuel a compiled binary of Fossil must be available either in the system | ||||
| path or in the same folder as the Fuel executable. You can find the latest | ||||
| Fossil binaries from the Fossil homepage at: | ||||
| 	http://www.fossil-scm.org/download.html | ||||
| 
 | ||||
| 	https://www.fossil-scm.org/download.html | ||||
| 
 | ||||
| Retrieving the source | ||||
| ------------------------------------------------------------------------------- | ||||
| The source is available as a tar.gz archive at the following location | ||||
| 	http://fuelscm.org/fossil/wiki?name=Downloads | ||||
| 
 | ||||
| 	https://fuel-scm.org/fossil/wiki?name=Downloads | ||||
| 
 | ||||
| Additionally you can clone the source code directly from our site using fossil | ||||
| 
 | ||||
| 	mkdir fuel | ||||
| 	cd fuel | ||||
| 	fossil clone http://fuelscm.org/fossil fuel.fossil | ||||
| 	fossil clone https://fuel-scm.org/fossil fuel.fossil | ||||
| 	fossil open fuel.fossil | ||||
| 
 | ||||
| 
 | ||||
| Windows (Qt4) | ||||
| Windows (Qt4 / MinGW) | ||||
| ------------------------------------------------------------------------------- | ||||
| 1. Open a Command Prompt and cd into the folder containing the Fuel source code | ||||
| 	cd fuel | ||||
| 
 | ||||
| 		cd fuel | ||||
| 
 | ||||
| 2. Make a build folder and cd into it | ||||
| 	md build | ||||
| 	cd build | ||||
| 
 | ||||
| 3.1 Build with MinGW | ||||
| 	3.1.1 Generate the makefile with qmake | ||||
| 		md build | ||||
| 		cd build | ||||
| 
 | ||||
| 3. Generate the makefile with qmake | ||||
| 
 | ||||
| 		C:\QtSDK\Desktop\Qt\4.8.1\mingw\bin\qmake ..\fuel.pro -r -spec win32-g++ CONFIG+=release | ||||
| 
 | ||||
| 	3.1.2 Build the project | ||||
| 4. Build the project | ||||
| 
 | ||||
| 		c:\QtSDK\mingw\bin\mingw32-make | ||||
| 
 | ||||
| 	3.1.3 Copy the Qt DLLs | ||||
| 5. Copy the Qt DLLs | ||||
| 
 | ||||
| 		copy C:\QtSDK\Desktop\Qt\4.8.1\mingw\bin\QtCore4.dll release | ||||
| 		copy C:\QtSDK\Desktop\Qt\4.8.1\mingw\bin\QtGui4.dll release | ||||
| 
 | ||||
| 	3.1.4 Copy the MinGW DLLs | ||||
| 6. Copy the MinGW DLLs | ||||
| 
 | ||||
| 		copy C:\QtSDK\mingw\bin\libgcc_s_dw2-1.dll release | ||||
| 		copy C:\QtSDK\mingw\bin\mingwm10.dll release | ||||
| 	 | ||||
| 3.2 Build with Visual Studio 2010 | ||||
| 	3.2.1 Generate the Visual Studio project makefile with qmake | ||||
| 
 | ||||
| 
 | ||||
| Windows (Qt4 / MSVC) | ||||
| ------------------------------------------------------------------------------- | ||||
| 1. Open a Command Prompt and cd into the folder containing the Fuel source code | ||||
| 
 | ||||
| 		cd fuel | ||||
| 
 | ||||
| 2. Make a build folder and cd into it | ||||
| 
 | ||||
| 		md build | ||||
| 		cd build | ||||
| 
 | ||||
| 3. Generate the Visual Studio project makefile with qmake | ||||
| 
 | ||||
| 		C:\QtSDK\Desktop\Qt\4.8.1\msvc2010\bin\qmake ..\fuel.pro -tp vc -spec win32-msvc2010 | ||||
| 
 | ||||
| 	3.2.2 Open the generated project | ||||
| 4. Open the generated project | ||||
| 
 | ||||
| 		start fuel.vcxproj | ||||
| 		 | ||||
| 	3.2.3 Build the project | ||||
| 		 | ||||
| 	Alternatively you can build via MSBuild | ||||
| 
 | ||||
| 5. Build the project | ||||
| 	Use the IDE to build the project or alternatively you can use via MSBuild | ||||
| 
 | ||||
| 		c:\Windows\Microsoft.NET\Framework\v4.0.30319\msbuild Fuel.vcxproj /t:build /p:Configuration=Release | ||||
| 		 | ||||
| 	3.2.4 Copy the Qt DLLs | ||||
| 
 | ||||
| 6. Copy the Qt DLLs | ||||
| 
 | ||||
| 		copy C:\QtSDK\Desktop\Qt\4.8.1\msvc2010\bin\QtCore4.dll release | ||||
| 		copy C:\QtSDK\Desktop\Qt\4.8.1\msvc2010\bin\QtGui4.dll release | ||||
| 		 | ||||
| 
 | ||||
| 4. Enjoy | ||||
| 	release\Fuel.exe | ||||
| 
 | ||||
| 		release\Fuel.exe | ||||
| 
 | ||||
| 
 | ||||
| Mac OS X | ||||
| @@ -73,46 +94,59 @@ Mac OS X | ||||
| Build Steps: | ||||
| 
 | ||||
| 1. Open a Terminal and add your Qt bin folder to the path | ||||
| 	export PATH=$PATH:/path/to/qt/version/clang_64/bin | ||||
| 
 | ||||
| 		export PATH=$PATH:/path/to/qt/version/clang_64/bin | ||||
| 
 | ||||
| 2. Go into the folder containing the Fuel source code | ||||
| 	cd fuel | ||||
| 
 | ||||
| 		cd fuel | ||||
| 
 | ||||
| 3. Generate localization files | ||||
| 	intl/convert.sh | ||||
| 
 | ||||
| 		intl/convert.sh | ||||
| 
 | ||||
| 4. Generate the makefile with qmake | ||||
| 	qmake fuel.pro -spec macx-clang CONFIG+=release | ||||
| 
 | ||||
| 		qmake fuel.pro -spec macx-clang CONFIG+=release | ||||
| 
 | ||||
| 5. Build the project | ||||
| 	make | ||||
| 
 | ||||
| 		make | ||||
| 
 | ||||
| 6. (Optional) Include the Fossil executable within the Fuel application bundle | ||||
| 	cp /location/to/fossil Fuel.app/Contents/MacOS | ||||
| 
 | ||||
| 		cp /location/to/fossil Fuel.app/Contents/MacOS | ||||
| 
 | ||||
| 7. Package Qt dependencies into Fuel to make a standalone application bundle | ||||
| 	macdeployqt Fuel.app | ||||
| 
 | ||||
| 		macdeployqt Fuel.app | ||||
| 
 | ||||
| 8. Enjoy | ||||
| 	open Fuel.app | ||||
| 
 | ||||
| 		open Fuel.app | ||||
| 
 | ||||
| 
 | ||||
| Unix-based OSs | ||||
| Unix-based OS | ||||
| ------------------------------------------------------------------------------- | ||||
| Build Steps: | ||||
| 
 | ||||
| 1. cd into the folder containing the Fuel source code | ||||
| 	cd fuel | ||||
| 
 | ||||
| 		cd fuel | ||||
| 
 | ||||
| 2. Generate localization files | ||||
| 	intl/convert.sh | ||||
| 
 | ||||
| 		intl/convert.sh | ||||
| 
 | ||||
| 3. Generate the makefile with qmake | ||||
| 	qmake fuel.pro | ||||
| 
 | ||||
| 		qmake fuel.pro | ||||
| 
 | ||||
| 4. Build the project | ||||
| 	make | ||||
| 
 | ||||
| 		make | ||||
| 
 | ||||
| 5. Enjoy | ||||
| 	./Fuel | ||||
| 
 | ||||
| 		./Fuel | ||||
| 
 | ||||
| @@ -1,15 +1,22 @@ | ||||
| Fuel V1.0.1 (2015-07-XX) | ||||
| ================================================================================ | ||||
| - Reformated Docs into Markdown | ||||
| - Added Localisations: | ||||
| 	- Italian (Thanks maxxlupi and Zangune) | ||||
| 	- Dutch (Thanks Rick Van Lieshout and Fly Man) | ||||
| 
 | ||||
| Fuel V1.0.0 (2015-03-28) | ||||
| ============ | ||||
| ================================================================================ | ||||
| - Feature: Long Operations can now be aborted by pressing the Escape key | ||||
| - Improvement: Better support for commit messages with international characters | ||||
| - Improvement: Fossil queries about CR/NL inconsistencies are now handled better | ||||
| - Improvement: Files in Conflicted state are now shown | ||||
| - Localisations: | ||||
| 	Russian (Thanks Mouse166) | ||||
| 	Portuguese (Thanks emansije) | ||||
| 	- Russian (Thanks Mouse166) | ||||
| 	- Portuguese (Thanks emansije) | ||||
| 
 | ||||
| Fuel V0.9.7 (Unreleased) | ||||
| ============ | ||||
| ================================================================================ | ||||
| - Feature: Optionally use the internal browser for the Fossil UI | ||||
| - Feature: Support for persisting the state (Column order and sizes) of the File View | ||||
| - Feature: Dropping a Fossil checkout file or workspace folder on Fuel now opens that workspace | ||||
| @@ -18,15 +25,15 @@ Fuel V0.9.7 (Unreleased) | ||||
|   and Escape aborts it | ||||
| - Feature: Support for localization | ||||
| - Localisations: | ||||
| 	French (Thanks Fringale) | ||||
| 	German (Thanks stayawake) | ||||
| 	Greek | ||||
| 	Spanish (Thanks djnavas) | ||||
| 	- French (Thanks Fringale) | ||||
| 	- German (Thanks stayawake) | ||||
| 	- Greek | ||||
| 	- Spanish (Thanks djnavas) | ||||
| - Feature: Support for QT5 | ||||
| - Distribution: Fuel is now available in the Arch User Repository | ||||
| 
 | ||||
| Fuel V0.9.6 (2012-05-13) | ||||
| ============ | ||||
| ================================================================================ | ||||
| - Feature: Support for fossil stashes | ||||
| - Feature: Support for dragging and dropping files out of Fuel | ||||
| - Feature: Allow for opening workspaces via the checkout file or a workspace folder | ||||
| @@ -42,3 +49,4 @@ Fuel V0.9.6 (2012-05-13) | ||||
| - Bug Fix: Fixed issue where a complete repository would be committed even when | ||||
|   the user has a specific set of files marked for commit | ||||
| - Misc: Minor GUI bug fixes and usability enhancements | ||||
| 
 | ||||
							
								
								
									
										4
									
								
								fuel.pro
									
									
									
									
									
								
							
							
						
						
									
										4
									
								
								fuel.pro
									
									
									
									
									
								
							| @@ -90,5 +90,5 @@ TRANSLATIONS += \ | ||||
| 	intl/fr_FR.ts \ | ||||
| 	intl/ru_RU.ts \ | ||||
| 	intl/pt_PT.ts \ | ||||
| 	intl/it_IT.ts | ||||
|  | ||||
| 	intl/it_IT.ts \ | ||||
| 	intl/nl_NL.ts \ | ||||
|   | ||||
| @@ -16,5 +16,7 @@ REM Convert all except the en_US which is the original text in the code | ||||
| %QTPATH%\bin\lrelease fr_FR.ts -qm ..\rsrc\intl\fr_FR.qm | ||||
| %QTPATH%\bin\lrelease ru_RU.ts -qm ..\rsrc\intl\ru_RU.qm | ||||
| %QTPATH%\bin\lrelease pt_PT.ts -qm ..\rsrc\intl\pt_PT.qm | ||||
| %QTPATH%\bin\lrelease it_IT.ts -qm ..\rsrc\intl\it_IT.qm | ||||
| %QTPATH%\bin\lrelease nl_NL.ts -qm ..\rsrc\intl\nl_NL.qm | ||||
|  | ||||
| endlocal | ||||
|   | ||||
							
								
								
									
										1375
									
								
								intl/nl_NL.ts
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1375
									
								
								intl/nl_NL.ts
									
									
									
									
									
										Normal file
									
								
							
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							
							
								
								
									
										25
									
								
								manifest
									
									
									
									
									
								
							
							
						
						
									
										25
									
								
								manifest
									
									
									
									
									
								
							| @@ -1,5 +1,5 @@ | ||||
| C Added\smissing\stranslation\sfile.\n | ||||
| D 2015-07-11T13:39:24.789 | ||||
| C Added\sDutch\slocalisation\s(Thanks\sRick\sVan\sLieshout\sand\sFly\sMan)\nReformated\sDocs\sinto\sMarkdown\n | ||||
| D 2015-07-23T12:54:38.568 | ||||
| F .travis.yml 77966888a81c4ceee1fcc79bce842c9667ad8a35 | ||||
| F debian/changelog eb4304dfcb6bb66850ec740838090eb50ce1249b | ||||
| F debian/compat b6abd567fa79cbe0196d093a067271361dc6ca8b | ||||
| @@ -12,11 +12,11 @@ F debian/source/format 1064dc0ce263680c076a1005f35ec906a5cf5a32 | ||||
| F debian/watch 34f0921ff100a3e16a7ad84dcc303731de830a60 | ||||
| F dist/arch/PKGBUILD 26623327e467028a883cd13963daa36baf10dfa3 | ||||
| F dist/win/fuel.iss ef3558dbba409eb194938b930377fc9ee27d319e | ||||
| F doc/Building.txt 17b43fa23da764b5d1b828cc48c5a95e612bbd8f | ||||
| F doc/Changes.txt b03302545e4a6c0b16a30d623a7627f8aef65ef6 | ||||
| F doc/Building.md 149d959751ae488829e084a9f88449a08220c1d1 w doc/Building.txt | ||||
| F doc/Changes.md 8fe4787ae5a12dd51e686cca08d16ef763d1e21a w doc/Changes.txt | ||||
| F doc/License.txt 4cc77b90af91e615a64ae04893fdffa7939db84c | ||||
| F fuel.pro 3c6ad6d4ce941eca2b48c8660022adf1ad43cae4 | ||||
| F intl/convert.bat 4222ae403418381452b843929d15259ea9850ab1 x | ||||
| F fuel.pro 39f8897a40835849c17811ed297fb3e5347f18f1 | ||||
| F intl/convert.bat b51d86691d7e1ac50a33e680f10c68922143bee3 x | ||||
| F intl/convert.sh 2ca2179ff53e727f241925b75e19182607883c45 x | ||||
| F intl/de_DE.ts e2faceab920ac60c97bbc6fba038e261d51fc741 | ||||
| F intl/el_GR.ts 1b805ee57309d02059d9e3e4cb49d945f9d9ac82 | ||||
| @@ -24,6 +24,7 @@ F intl/en_US.ts 7917816efedf35d5f4f798d18896d7aa0cb3c71b | ||||
| F intl/es_ES.ts fbddd3374f7999e602536de9870ae1fef0c28ea8 | ||||
| F intl/fr_FR.ts 8d2c00ab00927ee5239c1d273f380bbe4cfb2464 | ||||
| F intl/it_IT.ts 54b962cc19ce2e86268da67cea63db53beb751af | ||||
| F intl/nl_NL.ts ff9b6ae9da5b6ffacc74fc1075a14ad80ebc0429 | ||||
| F intl/pt_PT.ts f93bcc3df5447ab1d85407e1dec4cd68c03d2245 | ||||
| F intl/ru_RU.ts 74189b3ee2b30b0b47b2db5bd7c9935db84947fc | ||||
| F intl/update.sh 39d4561630ba6681bb27e7beadc225a31469728f x | ||||
| @@ -184,7 +185,7 @@ F rsrc/icons/Zoom-01.png 67ca532922e9166325c5c75fce1ca3fbb0d2b6a6 | ||||
| F rsrc/icons/fuel.icns 81e535004b62db801a02f3e15d0a33afc9d4070b | ||||
| F rsrc/icons/fuel.ico eb529ab3332a17b9302ef3e851db5b9ebce2a038 | ||||
| F rsrc/icons/fuel.png 40daf53b7f6bdcdd0d6aa5ef433d078ec5ea4342 | ||||
| F rsrc/resources.qrc fefa8bf056d3c64cc692c507f94ea678ca06e354 | ||||
| F rsrc/resources.qrc a5a5308bad38502417d39302b12052a59d86d82a | ||||
| F src/BrowserWidget.cpp 8b8f545cdff4a4188edc698a1b4777f5df46f056 | ||||
| F src/BrowserWidget.h 764d66aa9a93b890298bd0301097739cb4e16597 | ||||
| F src/CloneDialog.cpp 812ef7d361c16da21540b7047c9d4d5e74f18539 | ||||
| @@ -199,9 +200,9 @@ F src/FileTableView.cpp 5ddf8c391c9a3ac449ec61fb1db837b577afeec2 | ||||
| F src/FileTableView.h 03e56d87c2d46411b9762b87f4d301619aaf18df | ||||
| F src/LoggedProcess.cpp 2a1e5c94bc1e57c8984563e66c210e43a14dc60c | ||||
| F src/LoggedProcess.h 85df7c635c807a5a0e8c4763f17a0752aaff7261 | ||||
| F src/MainWindow.cpp 1fc0bec39404f9f6198bf170f4b5cd488cc628a6 | ||||
| F src/MainWindow.cpp 0f4acbc7c9ca7ad8dc112f1e7cb0da1cca481a1b | ||||
| F src/MainWindow.h 77038e9c9fe8a64a1c2dfb8d4c2be7558ab5f372 | ||||
| F src/SettingsDialog.cpp d0485749c977d6285e10d442f64d97e465683d64 | ||||
| F src/SettingsDialog.cpp 8884e228619fb26c4c90154a0a96bf8e7230f1ea | ||||
| F src/SettingsDialog.h 4e2790f581e991c744ae9f86580f1972b8c7ff43 | ||||
| F src/Utils.cpp 9aff456712e4276b49083426301b3b96d3819c77 | ||||
| F src/Utils.h c546e478a1225a28c99cd4c30f70cf9be9804a2a | ||||
| @@ -214,7 +215,7 @@ F ui/CommitDialog.ui 6200f6cabdcf40a20812e811be28e0793f82516f | ||||
| F ui/FileActionDialog.ui 89bb4dc2d0b8adcd41adcb11ec65f2028a09a12d | ||||
| F ui/MainWindow.ui 8677f5c8bca5bf7561d5f64bfdd0cef5157c6ac7 | ||||
| F ui/SettingsDialog.ui 2b7c2870e0054b0f4106f495d85d02c0b814df8b | ||||
| P ddb8c7f5e5fd5b341b90ddafef349af789147d88 | ||||
| R 49cea2efbf00ef13de55faeaf20c9c6e | ||||
| P badb3aa4b79f08bf8768219099b8e2928072f047 | ||||
| R 64d1486486b7c5f562b75f2d49f26198 | ||||
| U kostas | ||||
| Z d3c782d58d3ec91833a18dce56353083 | ||||
| Z 6a6d4a7c221553dbc08e3f41be1db157 | ||||
|   | ||||
| @@ -1 +1 @@ | ||||
| badb3aa4b79f08bf8768219099b8e2928072f047 | ||||
| c2bac983bbd7ac0b30a8911f9491af593a8b8989 | ||||
| @@ -160,5 +160,6 @@ | ||||
| 		<file>intl/ru_RU.qm</file> | ||||
| 		<file>intl/pt_PT.qm</file> | ||||
| 		<file>intl/it_IT.qm</file> | ||||
| 		<file>intl/nl_NL.qm</file> | ||||
| 	</qresource> | ||||
| </RCC> | ||||
|   | ||||
| @@ -2090,6 +2090,8 @@ void MainWindow::on_actionAbout_triggered() | ||||
| 							"emansije: pt_PT\n" | ||||
| 							"maxxlupi: it_IT\n" | ||||
| 							"Zangune: it_IT\n" | ||||
| 							"Fly Man: nl_NL\n" | ||||
| 							"Rick Van Lieshout: nl_NL\n" | ||||
| 					   ); | ||||
| } | ||||
|  | ||||
|   | ||||
| @@ -159,6 +159,7 @@ void SettingsDialog::CreateLangMap() | ||||
| 	langMap.append(LangMap("de_DE", "German (DE)")); | ||||
| 	langMap.append(LangMap("el_GR", "Greek (GR)")); | ||||
| 	langMap.append(LangMap("it_IT", "Italian (IT)")); | ||||
| 	langMap.append(LangMap("nl_NL", "Dutch (NL)")); | ||||
| 	langMap.append(LangMap("pt_PT", "Portuguese (PT)")); | ||||
| 	langMap.append(LangMap("ru_RU", "Russian (RU)")); | ||||
| 	langMap.append(LangMap("es_ES", "Spanish (ES)")); | ||||
|   | ||||
		Reference in New Issue
	
	Block a user