mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-27 10:37:53 +00:00
44a5cfc89c
cygwin_path_fix -> windows_style_tex_paths cygwin_path_fix_needed -> tex_expects_windows_paths check_cygwin_path -> check_windows_style_tex_paths use_cygwin_paths -> use_windows_paths RC_CYGWIN_PATH_FIX -> RC_TEX_EXPECTS_WINDOWS_PATHS * src/frontends/qt4/ui/QPrefCygwinPathUi.ui * src/frontends/qt3/ui/QPrefCygwinPathModule.ui Updated checkbutton label and description * src/frontends/qt4/QPrefsDialog.C (PrefCygwinPath): cygwin_path_fix -> windows_style_tex_paths (QPrefsDialog): Enable checkbutton for native WIN32 builds * src/frontends/xforms/forms/form_preferences.fd Updated label and name of checkbutton * src/frontends/xforms/FormPreferences.C (apply): cygwin_path_fix -> windows_style_tex_paths check_cygwin_path -> check_windows_style_tex_paths (build): Enable checkbutton for native WIN32 builds (update): Ditto (feedback): Updated description * src/frontends/qt3/QPrefs.C * src/frontends/qt3/QPrefsDialog.C * src/frontends/qt3/QPrefsDialog.h Renaming as above, enabled checkbutton for native WIN32 builds * src/support/os_unix.C * src/support/os.h * src/support/os_win32.C Renaming cygwin_path_fix -> windows_style_tex_paths * src/support/os_cygwin.C Ditto (external_path, external_path_list): always return windows style paths, not depending on the checkbutton status * src/lyxrc.C * src/lyxrc.h * src/lyxfunc.C * src/lyx_main.C Renaming * lib/configure.py Renaming, more meaningful diagnostics git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@14242 a592a061-630c-0410-9148-cb99ea01b6c8
This file is intended to provide information about the different translation files. If you want to make one for your language, please read "Help->Customization" for more information, and the information below. How can I update an existing po file? ------------------------------------- It requires a bit of work to get started, but once you are set up, the procedure should be relatively easy: 1) Getting ready Get and install gettext (available from ftp://alpha.gnu.org). Read the documentation for gettext. Then get the latest LyX distribution including patches, and unpack it in your home directory. It is yet better if you checkout the CVS version of LyX. Read the README in the LyX distribution. Check the mailing list archives to learn what is going on at the moment. Consider subscribing to the developer's mailing list, lyx-devel@lists.lyx.org. 2) Preparing a patch Now do (where XX stands for the code of your language): cp -R lyx-*.*.* lyx.new (Which makes a copy of the source distribution for you to change, but you should work in a CVS workarea) cd lyx.new/po/ make XX.pox (It merges the po file into the temporary file XX.pox) emacs XX.pox (Using po-mode. Emacs is convenient for po editing, but not mandatory.) (Make all necessary changes in XX.pox, and save.) mv XX.pox XX.po rm XX.pox~ (To remove Emacs autosave.) make XX.gmo (Update the ChangeLog file.) cd .. (Maybe update lib/CREDITS) cvs diff -u > XX_po_update.patch (Or whatever good method to have a patch in unified diff format) 3) Submitting the patch Check your patch and mail it to lyx-devel@lists.lyx.org Thanks! The LyX Team.