From 54474257ec15b6e5aaf7f2447fb8d9f1f506662c Mon Sep 17 00:00:00 2001 From: Alberto Villa Date: Thu, 10 Nov 2011 02:49:42 +0100 Subject: [PATCH] Start reorganising meta files --- CHANGELOG => ChangeLog | 3 +-- HACKING | 1 - INSTALL | 6 +----- README | 2 +- README.translators | 20 ++++++++++++++++++++ RELEASE | 1 - kdenlive-mindmap.svg => mindmap.svg | 0 old_po/CORRECT_THESE | 6 ------ old_po/README | 17 ----------------- old_po/message-stats.sh | 23 ----------------------- 10 files changed, 23 insertions(+), 56 deletions(-) rename CHANGELOG => ChangeLog (99%) create mode 100644 README.translators rename kdenlive-mindmap.svg => mindmap.svg (100%) delete mode 100644 old_po/CORRECT_THESE delete mode 100644 old_po/README delete mode 100755 old_po/message-stats.sh diff --git a/CHANGELOG b/ChangeLog similarity index 99% rename from CHANGELOG rename to ChangeLog index b1d292cb..7ab7cc49 100644 --- a/CHANGELOG +++ b/ChangeLog @@ -1,4 +1,3 @@ - 0.8.2 * Load zone thumbnails from disk if available. * Optimise document loading. @@ -19,7 +18,7 @@ * Remove the "avformat-novalidate" trick for faster loading, caused crash. (http://kdenlive.org/mantis/view.php?id=2205) * Allow to assign a shortcut to usage of proxies in project. * Use separate thread for generation of timeline thumbnails when zoom is at frame level to keep UI responsive. - * Allow to use JScript in render profile parameter values. Values that need evalutation need to be indicated by '%'. + * Allow to use JScript in render profile parameter values. Values that need evalutation need to be indicated by '%'. * Check for missing proxies on document opening. * Check document for invalid (overlapping) transitions. * Check for duration mismatch in clip producers when opening a document (can cause corruption). diff --git a/HACKING b/HACKING index 7d454fb7..fcc7e8b7 100644 --- a/HACKING +++ b/HACKING @@ -1,4 +1,3 @@ - This is the coding guideline for Kdenlive. Committing diff --git a/INSTALL b/INSTALL index d6458f44..ecfda6f3 100644 --- a/INSTALL +++ b/INSTALL @@ -1,7 +1,6 @@ -Kdenlive Installation Instrucions +Kdenlive installation instrucions ================================= - To compile and install, go in the source directory and type: mkdir build;cd build @@ -21,6 +20,3 @@ Note that you should also install MLT to do anything useful with Kdenlive. See the README file for details. Have Fun! - - - diff --git a/README b/README index 794a848a..58d99149 100644 --- a/README +++ b/README @@ -18,7 +18,7 @@ versions, but this is not guaranteed, or (at this stage of development) likely. We welcome all bug reports, feedback, and offers for help! So please visit our bug tracker and forums: -Forum: +Forum: http://kdenlive.org/forum Bug Tracker: diff --git a/README.translators b/README.translators new file mode 100644 index 00000000..58f836c8 --- /dev/null +++ b/README.translators @@ -0,0 +1,20 @@ +This file is intended to contain tips and Q/A for translating. + +* What is String Freeze? + Some weeks (usually 2) before a new release, string freeze is declared. From + then it is guaranteed that no strings in the source code will be changed + anymore so that translators can work without constantly having to update again + and again. + +* There is a duplicate string (like «Clip:» and «Clip: » or «Audio device» and + «Audio Device»). What to do? + File a bug report on Mantis so that they can be corrected for the next + release. + +* There is some other weird thing (singular form has to be translated both + separately and together with its plural form, etc.). + As above: bug report. + +* There is HTML and some CDATA tags in a string to translate. + Yes. This is not a mistake but intended, for formatting. Please keep these + tags. :) diff --git a/RELEASE b/RELEASE index b1690dde..2e0691c7 100644 --- a/RELEASE +++ b/RELEASE @@ -1,4 +1,3 @@ - This file contains a to-do-list for releases. In braces the responsible person; none given means everybody. All time diff --git a/kdenlive-mindmap.svg b/mindmap.svg similarity index 100% rename from kdenlive-mindmap.svg rename to mindmap.svg diff --git a/old_po/CORRECT_THESE b/old_po/CORRECT_THESE deleted file mode 100644 index 80356f7d..00000000 --- a/old_po/CORRECT_THESE +++ /dev/null @@ -1,6 +0,0 @@ -0.8 translation: -* Duration: - Crop from start: - (once with space) -* Current settings - (settings uppercase and lowercase) \ No newline at end of file diff --git a/old_po/README b/old_po/README deleted file mode 100644 index 1cd3b267..00000000 --- a/old_po/README +++ /dev/null @@ -1,17 +0,0 @@ -This file is intended to contain tips and Q/A for translating. - -* What is String Freeze? - Some weeks (usually 2) before a new release, string freeze is declared. From then it is guaranteed that - no strings in the source code will be changed anymore so that translators can work without constantly - having to update again and again. - -* There is a duplicate string (like «Clip:» and «Clip: » or «Audio device» and «Audio Device»). What to do? - Either file a bug report on mantis, or add the strings to the CORRECT_THESE file in this directory so that - they can be corrected for the next release. - -* There is some other weird thing (singular form has to be translated both separately and together with its plural form, etc.) - As above: Bug report or CORRECT_THESE file. - -* There is HTML and some CDATA tags in a string to translate. - Yes. This is not a mistake but intended, for formatting. Please keep these tags :) - \ No newline at end of file diff --git a/old_po/message-stats.sh b/old_po/message-stats.sh deleted file mode 100755 index 27079dfd..00000000 --- a/old_po/message-stats.sh +++ /dev/null @@ -1,23 +0,0 @@ -#! /bin/sh - -#MAX=1106 - -thing=`msgfmt --statistics "kdenlive.pot" 2>&1` -set -- $thing -MAX=$4 - -echo "document.getElementById(\"lastupdated\").innerHTML = \""`date`"\";" > poprogress.js - -for f in *; do - if test -d "$f"; then - for pot in *.pot; do - thing=`msgfmt --statistics "$f/kdenlive.po" 2>&1` - set -- $thing - foo=$1 - ans=$(($foo * 100 / $MAX)) - echo "document.getElementById(\"$f\").style.width = $ans + \"%\";" >> poprogress.js - done - fi -done - - -- 2.39.2