Git
Threads by month
- ----- 2025 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2010 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- 9 participants
- 38706 discussions
[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_3_2RC1-1576-g176583f
by Michal Čihař 13 Apr '10
by Michal Čihař 13 Apr '10
13 Apr '10
The branch, master has been updated
via 176583f4aea4a6a44bbd24d14bc142e0e41e1918 (commit)
from ed9ef7cb12ab421e74355ebb278f51b41e5987f2 (commit)
- Log -----------------------------------------------------------------
commit 176583f4aea4a6a44bbd24d14bc142e0e41e1918
Author: Michal Čihař <mcihar(a)novell.com>
Date: Tue Apr 13 11:33:07 2010 +0200
Add javascript compressor.
It uses http://code.google.com/closure/compiler/ for now.
-----------------------------------------------------------------------
Summary of changes:
.gitignore | 2 +
scripts/compress-js | 7 +
scripts/create-release.sh | 8 +
scripts/google-javascript-compiler/COPYING | 202 ++++++++++++++++++
scripts/google-javascript-compiler/README | 261 +++++++++++++++++++++++
scripts/google-javascript-compiler/compiler.jar | Bin 0 -> 4337904 bytes
6 files changed, 480 insertions(+), 0 deletions(-)
create mode 100755 scripts/compress-js
create mode 100644 scripts/google-javascript-compiler/COPYING
create mode 100644 scripts/google-javascript-compiler/README
create mode 100644 scripts/google-javascript-compiler/compiler.jar
diff --git a/.gitignore b/.gitignore
index 1356d4c..bae35cb 100644
--- a/.gitignore
+++ b/.gitignore
@@ -24,3 +24,5 @@ phpmyadmin.wpj
locale
# Backups
*~
+# Javascript sources
+sources
diff --git a/scripts/compress-js b/scripts/compress-js
new file mode 100755
index 0000000..3a22824
--- /dev/null
+++ b/scripts/compress-js
@@ -0,0 +1,7 @@
+#!/bin/sh
+
+for file in `find js -name '*.js' -not -name '*min.js' -not -name 'mootools*'` ; do
+ mkdir -p sources/`dirname $file`
+ mv $file sources/$file
+ java -jar ./scripts/google-javascript-compiler/compiler.jar --js sources/$file --js_output_file $file --compilation_level ADVANCED_OPTIMIZATIONS
+done
diff --git a/scripts/create-release.sh b/scripts/create-release.sh
index 859dbcf..fd73f2e 100755
--- a/scripts/create-release.sh
+++ b/scripts/create-release.sh
@@ -130,10 +130,18 @@ if [ $GETTEXT -eq 1 ] ; then
./scripts/generate-mo
fi
+if [ -f ./scripts/compress-js ] ; then
+ echo "* Compressing javascript files"
+ ./scripts/compress-js
+fi
+
# Remove test directory from package to avoid Path disclosure messages
# if someone runs /test/wui.php and there are test failures
rm -rf test
+# Remove javascript compiler, no need to ship it
+rm -rf scripts/google-javascript-compiler/
+
# Remove git metadata
rm -rf .git
diff --git a/scripts/google-javascript-compiler/COPYING b/scripts/google-javascript-compiler/COPYING
new file mode 100644
index 0000000..d645695
--- /dev/null
+++ b/scripts/google-javascript-compiler/COPYING
@@ -0,0 +1,202 @@
+
+ Apache License
+ Version 2.0, January 2004
+ http://www.apache.org/licenses/
+
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+ 1. Definitions.
+
+ "License" shall mean the terms and conditions for use, reproduction,
+ and distribution as defined by Sections 1 through 9 of this document.
+
+ "Licensor" shall mean the copyright owner or entity authorized by
+ the copyright owner that is granting the License.
+
+ "Legal Entity" shall mean the union of the acting entity and all
+ other entities that control, are controlled by, or are under common
+ control with that entity. For the purposes of this definition,
+ "control" means (i) the power, direct or indirect, to cause the
+ direction or management of such entity, whether by contract or
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
+ outstanding shares, or (iii) beneficial ownership of such entity.
+
+ "You" (or "Your") shall mean an individual or Legal Entity
+ exercising permissions granted by this License.
+
+ "Source" form shall mean the preferred form for making modifications,
+ including but not limited to software source code, documentation
+ source, and configuration files.
+
+ "Object" form shall mean any form resulting from mechanical
+ transformation or translation of a Source form, including but
+ not limited to compiled object code, generated documentation,
+ and conversions to other media types.
+
+ "Work" shall mean the work of authorship, whether in Source or
+ Object form, made available under the License, as indicated by a
+ copyright notice that is included in or attached to the work
+ (an example is provided in the Appendix below).
+
+ "Derivative Works" shall mean any work, whether in Source or Object
+ form, that is based on (or derived from) the Work and for which the
+ editorial revisions, annotations, elaborations, or other modifications
+ represent, as a whole, an original work of authorship. For the purposes
+ of this License, Derivative Works shall not include works that remain
+ separable from, or merely link (or bind by name) to the interfaces of,
+ the Work and Derivative Works thereof.
+
+ "Contribution" shall mean any work of authorship, including
+ the original version of the Work and any modifications or additions
+ to that Work or Derivative Works thereof, that is intentionally
+ submitted to Licensor for inclusion in the Work by the copyright owner
+ or by an individual or Legal Entity authorized to submit on behalf of
+ the copyright owner. For the purposes of this definition, "submitted"
+ means any form of electronic, verbal, or written communication sent
+ to the Licensor or its representatives, including but not limited to
+ communication on electronic mailing lists, source code control systems,
+ and issue tracking systems that are managed by, or on behalf of, the
+ Licensor for the purpose of discussing and improving the Work, but
+ excluding communication that is conspicuously marked or otherwise
+ designated in writing by the copyright owner as "Not a Contribution."
+
+ "Contributor" shall mean Licensor and any individual or Legal Entity
+ on behalf of whom a Contribution has been received by Licensor and
+ subsequently incorporated within the Work.
+
+ 2. Grant of Copyright License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ copyright license to reproduce, prepare Derivative Works of,
+ publicly display, publicly perform, sublicense, and distribute the
+ Work and such Derivative Works in Source or Object form.
+
+ 3. Grant of Patent License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ (except as stated in this section) patent license to make, have made,
+ use, offer to sell, sell, import, and otherwise transfer the Work,
+ where such license applies only to those patent claims licensable
+ by such Contributor that are necessarily infringed by their
+ Contribution(s) alone or by combination of their Contribution(s)
+ with the Work to which such Contribution(s) was submitted. If You
+ institute patent litigation against any entity (including a
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
+ or a Contribution incorporated within the Work constitutes direct
+ or contributory patent infringement, then any patent licenses
+ granted to You under this License for that Work shall terminate
+ as of the date such litigation is filed.
+
+ 4. Redistribution. You may reproduce and distribute copies of the
+ Work or Derivative Works thereof in any medium, with or without
+ modifications, and in Source or Object form, provided that You
+ meet the following conditions:
+
+ (a) You must give any other recipients of the Work or
+ Derivative Works a copy of this License; and
+
+ (b) You must cause any modified files to carry prominent notices
+ stating that You changed the files; and
+
+ (c) You must retain, in the Source form of any Derivative Works
+ that You distribute, all copyright, patent, trademark, and
+ attribution notices from the Source form of the Work,
+ excluding those notices that do not pertain to any part of
+ the Derivative Works; and
+
+ (d) If the Work includes a "NOTICE" text file as part of its
+ distribution, then any Derivative Works that You distribute must
+ include a readable copy of the attribution notices contained
+ within such NOTICE file, excluding those notices that do not
+ pertain to any part of the Derivative Works, in at least one
+ of the following places: within a NOTICE text file distributed
+ as part of the Derivative Works; within the Source form or
+ documentation, if provided along with the Derivative Works; or,
+ within a display generated by the Derivative Works, if and
+ wherever such third-party notices normally appear. The contents
+ of the NOTICE file are for informational purposes only and
+ do not modify the License. You may add Your own attribution
+ notices within Derivative Works that You distribute, alongside
+ or as an addendum to the NOTICE text from the Work, provided
+ that such additional attribution notices cannot be construed
+ as modifying the License.
+
+ You may add Your own copyright statement to Your modifications and
+ may provide additional or different license terms and conditions
+ for use, reproduction, or distribution of Your modifications, or
+ for any such Derivative Works as a whole, provided Your use,
+ reproduction, and distribution of the Work otherwise complies with
+ the conditions stated in this License.
+
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
+ any Contribution intentionally submitted for inclusion in the Work
+ by You to the Licensor shall be under the terms and conditions of
+ this License, without any additional terms or conditions.
+ Notwithstanding the above, nothing herein shall supersede or modify
+ the terms of any separate license agreement you may have executed
+ with Licensor regarding such Contributions.
+
+ 6. Trademarks. This License does not grant permission to use the trade
+ names, trademarks, service marks, or product names of the Licensor,
+ except as required for reasonable and customary use in describing the
+ origin of the Work and reproducing the content of the NOTICE file.
+
+ 7. Disclaimer of Warranty. Unless required by applicable law or
+ agreed to in writing, Licensor provides the Work (and each
+ Contributor provides its Contributions) on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+ implied, including, without limitation, any warranties or conditions
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+ PARTICULAR PURPOSE. You are solely responsible for determining the
+ appropriateness of using or redistributing the Work and assume any
+ risks associated with Your exercise of permissions under this License.
+
+ 8. Limitation of Liability. In no event and under no legal theory,
+ whether in tort (including negligence), contract, or otherwise,
+ unless required by applicable law (such as deliberate and grossly
+ negligent acts) or agreed to in writing, shall any Contributor be
+ liable to You for damages, including any direct, indirect, special,
+ incidental, or consequential damages of any character arising as a
+ result of this License or out of the use or inability to use the
+ Work (including but not limited to damages for loss of goodwill,
+ work stoppage, computer failure or malfunction, or any and all
+ other commercial damages or losses), even if such Contributor
+ has been advised of the possibility of such damages.
+
+ 9. Accepting Warranty or Additional Liability. While redistributing
+ the Work or Derivative Works thereof, You may choose to offer,
+ and charge a fee for, acceptance of support, warranty, indemnity,
+ or other liability obligations and/or rights consistent with this
+ License. However, in accepting such obligations, You may act only
+ on Your own behalf and on Your sole responsibility, not on behalf
+ of any other Contributor, and only if You agree to indemnify,
+ defend, and hold each Contributor harmless for any liability
+ incurred by, or claims asserted against, such Contributor by reason
+ of your accepting any such warranty or additional liability.
+
+ END OF TERMS AND CONDITIONS
+
+ APPENDIX: How to apply the Apache License to your work.
+
+ To apply the Apache License to your work, attach the following
+ boilerplate notice, with the fields enclosed by brackets "[]"
+ replaced with your own identifying information. (Don't include
+ the brackets!) The text should be enclosed in the appropriate
+ comment syntax for the file format. We also recommend that a
+ file or class name and description of purpose be included on the
+ same "printed page" as the copyright notice for easier
+ identification within third-party archives.
+
+ Copyright [yyyy] [name of copyright owner]
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
diff --git a/scripts/google-javascript-compiler/README b/scripts/google-javascript-compiler/README
new file mode 100644
index 0000000..8718f5b
--- /dev/null
+++ b/scripts/google-javascript-compiler/README
@@ -0,0 +1,261 @@
+/*
+ * Copyright 2009 Google Inc.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+//
+// Contents
+//
+
+The Closure Compiler performs checking, instrumentation, and
+optimizations on JavaScript code. The purpose of this README is to
+explain how to build and run the Closure Compiler.
+
+The Closure Compiler requires Java 6 or higher.
+http://www.java.com/
+
+
+//
+// Building The Closure Compiler
+//
+
+There are three ways to get a Closure Compiler executable.
+
+1) Use one we built for you.
+
+Pre-built Closure binaries can be found at
+http://code.google.com/p/closure-compiler/downloads/list
+
+
+2) Check out the source and build it with Apache Ant.
+
+First, check out the full source tree of the Closure Compiler. There
+are instructions on how to do this at the project site.
+http://code.google.com/p/closure-compiler/source/checkout
+
+Apache Ant is a cross-platform build tool.
+http://ant.apache.org/
+
+At the root of the source tree, there is an Ant file named
+build.xml. To use it, navigate to the same directory and type the
+command
+
+ant jar
+
+This will produce a jar file called "build/compiler.jar".
+
+
+3) Check out the source and build it with Eclipse.
+
+Eclipse is a cross-platform IDE.
+http://www.eclipse.org/
+
+Under Eclipse's File menu, click "New > Project ..." and create a
+"Java Project." You will see an options screen. Give the project a
+name, select "Create project from existing source," and choose the
+root of the checked-out source tree as the existing directory. Verify
+that you are using JRE version 6 or higher.
+
+Eclipse can use the build.xml file to discover rules. When you
+navigate to the build.xml file, you will see all the build rules in
+the "Outline" pane. Run the "jar" rule to build the compiler in
+build/compiler.jar.
+
+
+//
+// Running The Closure Compiler
+//
+
+Once you have the jar binary, running the Closure Compiler is straightforward.
+
+On the command line, type
+
+java -jar compiler.jar
+
+This starts the compiler in interactive mode. Type
+
+var x = 17 + 25;
+
+then hit "Enter", then hit "Ctrl-Z" (on Windows) or "Ctrl-D" (on Mac or Linux)
+and "Enter" again. The Compiler will respond:
+
+var x=42;
+
+The Closure Compiler has many options for reading input from a file,
+writing output to a file, checking your code, and running
+optimizations. To learn more, type
+
+java -jar compiler.jar --help
+
+You can read more detailed documentation about the many flags at
+http://code.google.com/closure/compiler/docs/gettingstarted_app.html
+
+
+//
+// Compiling Multiple Scripts
+//
+
+If you have multiple scripts, you should compile them all together with
+one compile command.
+
+java -jar compiler.jar --js=in1.js --js=in2.js ... --js_output_file=out.js
+
+The Closure Compiler will concatenate the files in the order they're
+passed at the command line.
+
+If you need to compile many, many scripts together, you may start to
+run into problems with managing dependencies between scripts. You
+should check out the Closure Library. It contains functions for
+enforcing dependencies between scripts, and a tool called calcdeps.py
+that knows how to give scripts to the Closure Compiler in the right
+order.
+
+http://code.google.com/p/closure-library/
+
+//
+// Licensing
+//
+
+Unless otherwise stated, all source files are licensed under
+the Apache License, Version 2.0.
+
+
+-----
+Code under:
+src/com/google/javascript/rhino
+test/com/google/javascript/rhino
+
+URL: http://www.mozilla.org/rhino
+Version: 1.5R3, with heavy modifications
+License: Netscape Public License and MPL / GPL dual license
+
+Description: A partial copy of Mozilla Rhino. Mozilla Rhino is an
+implementation of JavaScript for the JVM. The JavaScript parser and
+the parse tree data structures were extracted and modified
+significantly for use by Google's JavaScript compiler.
+
+Local Modifications: The packages have been renamespaced. All code not
+relavant to parsing has been removed. A JSDoc parser and static typing
+system have been added.
+
+
+-----
+Code in:
+lib/libtrunk_rhino_parser_jarjared.jar
+
+Rhino
+URL: http://www.mozilla.org/rhino
+Version: Trunk
+License: Netscape Public License and MPL / GPL dual license
+
+Description: Mozilla Rhino is an implementation of JavaScript for the JVM.
+
+Local Modifications: None. We've used JarJar to renamespace the code
+post-compilation. See:
+http://code.google.com/p/jarjar/
+
+
+-----
+Code in:
+lib/args4j_deploy.jar
+
+Args4j
+URL: https://args4j.dev.java.net/
+Version: 2.0.9
+License: MIT
+
+Description:
+args4j is a small Java class library that makes it easy to parse command line
+options/arguments in your CUI application.
+
+Local Modifications: None.
+
+
+-----
+Code in:
+lib/google_common_deploy.jar
+
+Guava Libraries
+URL: http://code.google.com/p/guava-libraries/
+Version: Trunk
+License: Apache License 2.0
+
+Description: Google's core Java libraries.
+
+Local Modifications: None.
+
+
+-----
+Code in:
+lib/hamcrest-core-1.1.jar
+
+Hamcrest
+URL: http://code.google.com/p/hamcrest
+License: BSD
+License File: LICENSE
+
+Description:
+Provides a library of matcher objects (also known as constraints or
+predicates) allowing 'match' rules to be defined declaratively, to be used in
+other frameworks. Typical scenarios include testing frameworks, mocking
+libraries and UI validation rules.
+
+Local modifications:
+The original jars contained both source code and compiled classes.
+
+hamcrest-core-1.1.jar just contains the compiled classes.
+
+
+----
+Code in:
+lib/junit.jar
+
+JUnit
+URL: http://sourceforge.net/projects/junit/
+Version: 4.5
+License: Common Public License 1.0
+
+Description: A framework for writing and running automated tests in Java.
+
+Local Modifications: None.
+
+
+---
+Code in:
+lib/protobuf_deploy.jar
+
+Protocol Buffers
+URL: http://code.google.com/p/protobuf/
+Version: 2.2.0a
+License: New BSD License
+
+Description: Supporting libraries for protocol buffers,
+an encoding of structured data.
+
+Local Modifications: None
+
+
+---
+Code in:
+lib/ant_deploy.jar
+
+URL: http://ant.apache.org/bindownload.cgi
+Version: 1.6.5
+License: Apache License 2.0
+Description:
+ Ant is a Java based build tool. In theory it is kind of like "make"
+ without make's wrinkles and with the full portability of pure java code.
+
+Local Modifications:
+ Modified apache-ant-1.6.5/bin/ant to look in the ant.runfiles directory
diff --git a/scripts/google-javascript-compiler/compiler.jar b/scripts/google-javascript-compiler/compiler.jar
new file mode 100644
index 0000000..c087e92
Binary files /dev/null and b/scripts/google-javascript-compiler/compiler.jar differ
hooks/post-receive
--
phpMyAdmin
1
0
[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_3_2RC1-1575-ged9ef7c
by Dieter Adriaenssens 12 Apr '10
by Dieter Adriaenssens 12 Apr '10
12 Apr '10
The branch, master has been updated
via ed9ef7cb12ab421e74355ebb278f51b41e5987f2 (commit)
via f73b0e0195be22ee89c244e26301051f4d7a1933 (commit)
from 6d05e375e8645cb53293ba53fe8d48c96e38f3e7 (commit)
- Log -----------------------------------------------------------------
commit ed9ef7cb12ab421e74355ebb278f51b41e5987f2
Merge: 6d05e375e8645cb53293ba53fe8d48c96e38f3e7 f73b0e0195be22ee89c244e26301051f4d7a1933
Author: Dieter Adriaenssens <ruleant(a)users.sourceforge.net>
Date: Mon Apr 12 20:17:23 2010 +0200
Merge branch 'QA_3_3'
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 2 ++
libraries/PHPExcel/PHPExcel/Shared/String.php | 6 +++++-
2 files changed, 7 insertions(+), 1 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index b2f9da9..9e868eb 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -74,6 +74,8 @@ $Id$
only Structure is done, thanks to Ankit Gupta - ankitgupta3
- patch #2984893 [engines] InnoDB storage page emits a warning,
thanks to Madhura Jayaratne - madhuracj
+- bug #2974687, bug #2974692 [compatibility] PHPExcel : IBM AIX iconv() does not work,
+ thanks to Björn Wiberg - bwiberg
3.3.2.0 (not yet released)
- patch #2969449 [core] Name for MERGE engine varies depending on the
diff --git a/libraries/PHPExcel/PHPExcel/Shared/String.php b/libraries/PHPExcel/PHPExcel/Shared/String.php
index b6a17a3..8a105f0 100644
--- a/libraries/PHPExcel/PHPExcel/Shared/String.php
+++ b/libraries/PHPExcel/PHPExcel/Shared/String.php
@@ -97,7 +97,11 @@ class PHPExcel_Shared_String
return self::$_isIconvEnabled;
}
- self::$_isIconvEnabled = function_exists('iconv') ?
+ // IBM AIX iconv() does not work
+ self::$_isIconvEnabled = function_exists('iconv') &&
+ !(defined('PHP_OS') && @stristr(PHP_OS, 'AIX') && defined('ICONV_IMPL')
+ && (@strcasecmp(ICONV_IMPL, 'unknown') == 0) && defined('ICONV_VERSION')
+ && (@strcasecmp(ICONV_VERSION, 'unknown') == 0)) ?
true : false;
return self::$_isIconvEnabled;
hooks/post-receive
--
phpMyAdmin
1
0
[Phpmyadmin-git] [SCM] phpMyAdmin branch, QA_3_3, updated. RELEASE_3_3_2RC1-20-gf73b0e0
by Dieter Adriaenssens 12 Apr '10
by Dieter Adriaenssens 12 Apr '10
12 Apr '10
The branch, QA_3_3 has been updated
via f73b0e0195be22ee89c244e26301051f4d7a1933 (commit)
from d0d24a6e714646a3660c64549382c07375967feb (commit)
- Log -----------------------------------------------------------------
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 2 ++
libraries/PHPExcel/PHPExcel/Shared/String.php | 6 +++++-
2 files changed, 7 insertions(+), 1 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index ab8e8c0..3cd0606 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -12,6 +12,8 @@ $HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyA
only Structure is done, thanks to Ankit Gupta - ankitgupta3
- patch #2984893 [engines] InnoDB storage page emits a warning,
thanks to Madhura Jayaratne - madhuracj
+- bug #2974687, bug #2974692 [compatibility] PHPExcel : IBM AIX iconv() does not work,
+ thanks to Björn Wiberg - bwiberg
3.3.2.0 (not yet released)
- patch #2969449 [core] Name for MERGE engine varies depending on the
diff --git a/libraries/PHPExcel/PHPExcel/Shared/String.php b/libraries/PHPExcel/PHPExcel/Shared/String.php
index b6a17a3..8a105f0 100644
--- a/libraries/PHPExcel/PHPExcel/Shared/String.php
+++ b/libraries/PHPExcel/PHPExcel/Shared/String.php
@@ -97,7 +97,11 @@ class PHPExcel_Shared_String
return self::$_isIconvEnabled;
}
- self::$_isIconvEnabled = function_exists('iconv') ?
+ // IBM AIX iconv() does not work
+ self::$_isIconvEnabled = function_exists('iconv') &&
+ !(defined('PHP_OS') && @stristr(PHP_OS, 'AIX') && defined('ICONV_IMPL')
+ && (@strcasecmp(ICONV_IMPL, 'unknown') == 0) && defined('ICONV_VERSION')
+ && (@strcasecmp(ICONV_VERSION, 'unknown') == 0)) ?
true : false;
return self::$_isIconvEnabled;
hooks/post-receive
--
phpMyAdmin
1
0
[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_3_2RC1-1573-g6d05e37
by Michal Čihař 12 Apr '10
by Michal Čihař 12 Apr '10
12 Apr '10
The branch, master has been updated
via 6d05e375e8645cb53293ba53fe8d48c96e38f3e7 (commit)
via 0310966ed2b3169af9fd0cdc2e9c3968818037a9 (commit)
from ab6c0126bfb392e944f09e0e8f0923b373ad96df (commit)
- Log -----------------------------------------------------------------
commit 6d05e375e8645cb53293ba53fe8d48c96e38f3e7
Author: Michal Čihař <mcihar(a)novell.com>
Date: Mon Apr 12 16:56:13 2010 +0200
Initialize variable in case first loop fails.
commit 0310966ed2b3169af9fd0cdc2e9c3968818037a9
Author: Michal Čihař <mcihar(a)novell.com>
Date: Mon Apr 12 16:55:03 2010 +0200
Fix assignment.
-----------------------------------------------------------------------
Summary of changes:
js/functions.js | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/js/functions.js b/js/functions.js
index a9346fe..2f15915 100644
--- a/js/functions.js
+++ b/js/functions.js
@@ -465,7 +465,7 @@ function showDetails(i, update_size, insert_size, remove_size, insert_index, rem
//The case when the row showing the details need to be removed from the table i.e. the difference button is deselected now.
var table_rows = table_body.getElementsByTagName("tr");
var j;
- var index;
+ var index = 0;
for (j=0; j < table_rows.length; j++)
{
if (table_rows[j].id == i) {
@@ -1668,7 +1668,7 @@ function requestMIMETypeChange(db, table, reference, current_mime_type)
{
// no mime type specified, set to default (nothing)
if (undefined == current_mime_type)
- current_mime_type == "";
+ current_mime_type = "";
// prompt user for new mime type
var new_mime_type = prompt("Enter custom MIME type", current_mime_type);
hooks/post-receive
--
phpMyAdmin
1
0
[Phpmyadmin-git] [SCM] phpMyAdmin localized documentation branch, master, updated. f7779ad1b24ca831c0f2fb3718bae46716e55205
by Michal Čihař 12 Apr '10
by Michal Čihař 12 Apr '10
12 Apr '10
The branch, master has been updated
via f7779ad1b24ca831c0f2fb3718bae46716e55205 (commit)
from bf2c5407b89ab36d045d06a1cbcf63c8fb5f8cad (commit)
- Log -----------------------------------------------------------------
commit f7779ad1b24ca831c0f2fb3718bae46716e55205
Author: Michal Čihař <mcihar(a)novell.com>
Date: Mon Apr 12 14:10:56 2010 +0200
Regenerate docs.
-----------------------------------------------------------------------
Summary of changes:
output/cs/Documentation.html | 2 +-
po/cs.po | 4 ++--
pot/ca-full.pot | 2 +-
pot/ca-html.pot | 2 +-
pot/ca-txt.pot | 2 +-
pot/cs-full.pot | 2 +-
pot/cs-html.pot | 2 +-
pot/cs-txt.pot | 2 +-
pot/de-full.pot | 2 +-
pot/de-html.pot | 2 +-
pot/de-txt.pot | 2 +-
pot/en_GB-full.pot | 2 +-
pot/en_GB-html.pot | 2 +-
pot/en_GB-txt.pot | 2 +-
pot/es-full.pot | 2 +-
pot/es-html.pot | 2 +-
pot/es-txt.pot | 2 +-
pot/fi-full.pot | 2 +-
pot/fi-html.pot | 2 +-
pot/fi-txt.pot | 2 +-
pot/fr-full.pot | 2 +-
pot/fr-html.pot | 2 +-
pot/fr-txt.pot | 2 +-
pot/gl-full.pot | 2 +-
pot/gl-html.pot | 2 +-
pot/gl-txt.pot | 2 +-
pot/hu-full.pot | 2 +-
pot/hu-html.pot | 2 +-
pot/hu-txt.pot | 2 +-
pot/hy-full.pot | 2 +-
pot/hy-html.pot | 2 +-
pot/hy-txt.pot | 2 +-
pot/it-full.pot | 2 +-
pot/it-html.pot | 2 +-
pot/it-txt.pot | 2 +-
pot/ja-full.pot | 2 +-
pot/ja-html.pot | 2 +-
pot/ja-txt.pot | 2 +-
pot/ka-full.pot | 2 +-
pot/ka-html.pot | 2 +-
pot/ka-txt.pot | 2 +-
pot/lt-full.pot | 2 +-
pot/lt-html.pot | 2 +-
pot/lt-txt.pot | 2 +-
pot/mn-full.pot | 2 +-
pot/mn-html.pot | 2 +-
pot/mn-txt.pot | 2 +-
pot/nb-full.pot | 2 +-
pot/nb-html.pot | 2 +-
pot/nb-txt.pot | 2 +-
pot/nl-full.pot | 2 +-
pot/nl-html.pot | 2 +-
pot/nl-txt.pot | 2 +-
pot/pl-full.pot | 2 +-
pot/pl-html.pot | 2 +-
pot/pl-txt.pot | 2 +-
pot/pt_BR-full.pot | 2 +-
pot/pt_BR-html.pot | 2 +-
pot/pt_BR-txt.pot | 2 +-
pot/ro-full.pot | 13 ++++++++++++-
pot/ro-html.pot | 2 +-
pot/ro-txt.pot | 2 +-
pot/sk-full.pot | 2 +-
pot/sk-html.pot | 2 +-
pot/sk-txt.pot | 2 +-
pot/sv-full.pot | 2 +-
pot/sv-html.pot | 2 +-
pot/sv-txt.pot | 2 +-
pot/tr-full.pot | 13 ++++++++++++-
pot/tr-html.pot | 2 +-
pot/tr-txt.pot | 2 +-
pot/zh_CN-full.pot | 2 +-
pot/zh_CN-html.pot | 2 +-
pot/zh_CN-txt.pot | 2 +-
pot/zh_TW-full.pot | 2 +-
pot/zh_TW-html.pot | 2 +-
pot/zh_TW-txt.pot | 2 +-
77 files changed, 100 insertions(+), 78 deletions(-)
diff --git a/output/cs/Documentation.html b/output/cs/Documentation.html
index 8276b6a..fb4ebb7 100644
--- a/output/cs/Documentation.html
+++ b/output/cs/Documentation.html
@@ -250,7 +250,7 @@ $i++;
$cfg['Servers'][$i]['auth_type'] = 'cookie';
?>
</pre>
- Or, if you prefer to not be prompted every time you log in:
+ Nebo, pokud nechcete být dotazováni na heslo při každém přihlášení:
<pre>
<?php
diff --git a/po/cs.po b/po/cs.po
index 728377a..165426d 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -9,14 +9,14 @@ msgid ""
msgstr ""
"Project-Id-Version: po 4a\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-08 12:44+0300\n"
+"POT-Creation-Date: 2010-04-12 14:07+0300\n"
"PO-Revision-Date: 2010-04-12 14:04+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: Czech <cs(a)li.org>\n"
-"Language: cs\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: cs\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Generator: Pootle 2.0.1\n"
diff --git a/pot/ca-full.pot b/pot/ca-full.pot
index 743240d..88adfbf 100644
--- a/pot/ca-full.pot
+++ b/pot/ca-full.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:22+0300\n"
+"POT-Creation-Date: 2010-04-12 14:08+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/ca-html.pot b/pot/ca-html.pot
index dbebe41..781aa09 100644
--- a/pot/ca-html.pot
+++ b/pot/ca-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:22+0300\n"
+"POT-Creation-Date: 2010-04-12 14:08+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/ca-txt.pot b/pot/ca-txt.pot
index dee03a2..0f2a05d 100644
--- a/pot/ca-txt.pot
+++ b/pot/ca-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:22+0300\n"
+"POT-Creation-Date: 2010-04-12 14:08+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/cs-full.pot b/pot/cs-full.pot
index 2b32c0b..f9b0548 100644
--- a/pot/cs-full.pot
+++ b/pot/cs-full.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:22+0300\n"
+"POT-Creation-Date: 2010-04-12 14:07+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/cs-html.pot b/pot/cs-html.pot
index 1c8979c..0f3aa2e 100644
--- a/pot/cs-html.pot
+++ b/pot/cs-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:22+0300\n"
+"POT-Creation-Date: 2010-04-12 14:07+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/cs-txt.pot b/pot/cs-txt.pot
index dee03a2..a17e6bb 100644
--- a/pot/cs-txt.pot
+++ b/pot/cs-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:22+0300\n"
+"POT-Creation-Date: 2010-04-12 14:07+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/de-full.pot b/pot/de-full.pot
index 6a9c1ad..7a4d06b 100644
--- a/pot/de-full.pot
+++ b/pot/de-full.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:22+0300\n"
+"POT-Creation-Date: 2010-04-12 14:08+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/de-html.pot b/pot/de-html.pot
index be20673..60c55cb 100644
--- a/pot/de-html.pot
+++ b/pot/de-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:22+0300\n"
+"POT-Creation-Date: 2010-04-12 14:08+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/de-txt.pot b/pot/de-txt.pot
index dee03a2..0f2a05d 100644
--- a/pot/de-txt.pot
+++ b/pot/de-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:22+0300\n"
+"POT-Creation-Date: 2010-04-12 14:08+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/en_GB-full.pot b/pot/en_GB-full.pot
index d9c292b..82ff1ff 100644
--- a/pot/en_GB-full.pot
+++ b/pot/en_GB-full.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:22+0300\n"
+"POT-Creation-Date: 2010-04-12 14:09+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/en_GB-html.pot b/pot/en_GB-html.pot
index 97988f6..09adcd8 100644
--- a/pot/en_GB-html.pot
+++ b/pot/en_GB-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:22+0300\n"
+"POT-Creation-Date: 2010-04-12 14:09+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/en_GB-txt.pot b/pot/en_GB-txt.pot
index dee03a2..836a90c 100644
--- a/pot/en_GB-txt.pot
+++ b/pot/en_GB-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:22+0300\n"
+"POT-Creation-Date: 2010-04-12 14:09+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/es-full.pot b/pot/es-full.pot
index dacab8d..1a959f6 100644
--- a/pot/es-full.pot
+++ b/pot/es-full.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:22+0300\n"
+"POT-Creation-Date: 2010-04-12 14:08+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/es-html.pot b/pot/es-html.pot
index cd3d4fb..fe6d0cd 100644
--- a/pot/es-html.pot
+++ b/pot/es-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:22+0300\n"
+"POT-Creation-Date: 2010-04-12 14:08+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/es-txt.pot b/pot/es-txt.pot
index dee03a2..0f2a05d 100644
--- a/pot/es-txt.pot
+++ b/pot/es-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:22+0300\n"
+"POT-Creation-Date: 2010-04-12 14:08+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/fi-full.pot b/pot/fi-full.pot
index e49d9c4..3f5d254 100644
--- a/pot/fi-full.pot
+++ b/pot/fi-full.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:22+0300\n"
+"POT-Creation-Date: 2010-04-12 14:08+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/fi-html.pot b/pot/fi-html.pot
index 171c5de..8d70ed8 100644
--- a/pot/fi-html.pot
+++ b/pot/fi-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:22+0300\n"
+"POT-Creation-Date: 2010-04-12 14:08+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/fi-txt.pot b/pot/fi-txt.pot
index dee03a2..0f2a05d 100644
--- a/pot/fi-txt.pot
+++ b/pot/fi-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:22+0300\n"
+"POT-Creation-Date: 2010-04-12 14:08+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/fr-full.pot b/pot/fr-full.pot
index 3b5a9b8..8898293 100644
--- a/pot/fr-full.pot
+++ b/pot/fr-full.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:22+0300\n"
+"POT-Creation-Date: 2010-04-12 14:07+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/fr-html.pot b/pot/fr-html.pot
index 5720e08..3728bc3 100644
--- a/pot/fr-html.pot
+++ b/pot/fr-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:22+0300\n"
+"POT-Creation-Date: 2010-04-12 14:07+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/fr-txt.pot b/pot/fr-txt.pot
index dee03a2..a17e6bb 100644
--- a/pot/fr-txt.pot
+++ b/pot/fr-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:22+0300\n"
+"POT-Creation-Date: 2010-04-12 14:07+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/gl-full.pot b/pot/gl-full.pot
index 8d1637b..3ea9bde 100644
--- a/pot/gl-full.pot
+++ b/pot/gl-full.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:22+0300\n"
+"POT-Creation-Date: 2010-04-12 14:07+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/gl-html.pot b/pot/gl-html.pot
index b977438..fdfdfed 100644
--- a/pot/gl-html.pot
+++ b/pot/gl-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:22+0300\n"
+"POT-Creation-Date: 2010-04-12 14:07+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/gl-txt.pot b/pot/gl-txt.pot
index dee03a2..a17e6bb 100644
--- a/pot/gl-txt.pot
+++ b/pot/gl-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:22+0300\n"
+"POT-Creation-Date: 2010-04-12 14:07+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/hu-full.pot b/pot/hu-full.pot
index eb660b0..00a2a78 100644
--- a/pot/hu-full.pot
+++ b/pot/hu-full.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:22+0300\n"
+"POT-Creation-Date: 2010-04-12 14:08+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/hu-html.pot b/pot/hu-html.pot
index 92b0a11..52e01cd 100644
--- a/pot/hu-html.pot
+++ b/pot/hu-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:22+0300\n"
+"POT-Creation-Date: 2010-04-12 14:08+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/hu-txt.pot b/pot/hu-txt.pot
index dee03a2..0f2a05d 100644
--- a/pot/hu-txt.pot
+++ b/pot/hu-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:22+0300\n"
+"POT-Creation-Date: 2010-04-12 14:08+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/hy-full.pot b/pot/hy-full.pot
index 28400c0..8fc21cf 100644
--- a/pot/hy-full.pot
+++ b/pot/hy-full.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:22+0300\n"
+"POT-Creation-Date: 2010-04-12 14:09+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/hy-html.pot b/pot/hy-html.pot
index 3929865..a3db593 100644
--- a/pot/hy-html.pot
+++ b/pot/hy-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:22+0300\n"
+"POT-Creation-Date: 2010-04-12 14:09+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/hy-txt.pot b/pot/hy-txt.pot
index dee03a2..836a90c 100644
--- a/pot/hy-txt.pot
+++ b/pot/hy-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:22+0300\n"
+"POT-Creation-Date: 2010-04-12 14:09+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/it-full.pot b/pot/it-full.pot
index 17216cd..e49099e 100644
--- a/pot/it-full.pot
+++ b/pot/it-full.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:22+0300\n"
+"POT-Creation-Date: 2010-04-12 14:06+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/it-html.pot b/pot/it-html.pot
index 0f0af00..226a592 100644
--- a/pot/it-html.pot
+++ b/pot/it-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:22+0300\n"
+"POT-Creation-Date: 2010-04-12 14:06+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/it-txt.pot b/pot/it-txt.pot
index dee03a2..0cfbd3e 100644
--- a/pot/it-txt.pot
+++ b/pot/it-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:22+0300\n"
+"POT-Creation-Date: 2010-04-12 14:06+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/ja-full.pot b/pot/ja-full.pot
index e1d8986..488c73e 100644
--- a/pot/ja-full.pot
+++ b/pot/ja-full.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:22+0300\n"
+"POT-Creation-Date: 2010-04-12 14:07+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/ja-html.pot b/pot/ja-html.pot
index 577c9f4..c48ae5c 100644
--- a/pot/ja-html.pot
+++ b/pot/ja-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:22+0300\n"
+"POT-Creation-Date: 2010-04-12 14:07+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/ja-txt.pot b/pot/ja-txt.pot
index dee03a2..a17e6bb 100644
--- a/pot/ja-txt.pot
+++ b/pot/ja-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:22+0300\n"
+"POT-Creation-Date: 2010-04-12 14:07+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/ka-full.pot b/pot/ka-full.pot
index f4289cf..bb73d85 100644
--- a/pot/ka-full.pot
+++ b/pot/ka-full.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:22+0300\n"
+"POT-Creation-Date: 2010-04-12 14:07+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/ka-html.pot b/pot/ka-html.pot
index 7b1ef25..29586f7 100644
--- a/pot/ka-html.pot
+++ b/pot/ka-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:22+0300\n"
+"POT-Creation-Date: 2010-04-12 14:07+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/ka-txt.pot b/pot/ka-txt.pot
index dee03a2..a17e6bb 100644
--- a/pot/ka-txt.pot
+++ b/pot/ka-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:22+0300\n"
+"POT-Creation-Date: 2010-04-12 14:07+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/lt-full.pot b/pot/lt-full.pot
index 822795f..9436514 100644
--- a/pot/lt-full.pot
+++ b/pot/lt-full.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:22+0300\n"
+"POT-Creation-Date: 2010-04-12 14:08+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/lt-html.pot b/pot/lt-html.pot
index 0a12c0d..57a55cd 100644
--- a/pot/lt-html.pot
+++ b/pot/lt-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:22+0300\n"
+"POT-Creation-Date: 2010-04-12 14:08+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/lt-txt.pot b/pot/lt-txt.pot
index dee03a2..0f2a05d 100644
--- a/pot/lt-txt.pot
+++ b/pot/lt-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:22+0300\n"
+"POT-Creation-Date: 2010-04-12 14:08+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/mn-full.pot b/pot/mn-full.pot
index 0a36e8e..b7fe985 100644
--- a/pot/mn-full.pot
+++ b/pot/mn-full.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:22+0300\n"
+"POT-Creation-Date: 2010-04-12 14:09+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/mn-html.pot b/pot/mn-html.pot
index 4e87955..330b4fb 100644
--- a/pot/mn-html.pot
+++ b/pot/mn-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:22+0300\n"
+"POT-Creation-Date: 2010-04-12 14:09+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/mn-txt.pot b/pot/mn-txt.pot
index dee03a2..836a90c 100644
--- a/pot/mn-txt.pot
+++ b/pot/mn-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:22+0300\n"
+"POT-Creation-Date: 2010-04-12 14:09+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/nb-full.pot b/pot/nb-full.pot
index ac5c030..7e10f1d 100644
--- a/pot/nb-full.pot
+++ b/pot/nb-full.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:22+0300\n"
+"POT-Creation-Date: 2010-04-12 14:08+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/nb-html.pot b/pot/nb-html.pot
index 10ba192..a875244 100644
--- a/pot/nb-html.pot
+++ b/pot/nb-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:22+0300\n"
+"POT-Creation-Date: 2010-04-12 14:08+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/nb-txt.pot b/pot/nb-txt.pot
index dee03a2..0f2a05d 100644
--- a/pot/nb-txt.pot
+++ b/pot/nb-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:22+0300\n"
+"POT-Creation-Date: 2010-04-12 14:08+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/nl-full.pot b/pot/nl-full.pot
index fe66d15..766c22d 100644
--- a/pot/nl-full.pot
+++ b/pot/nl-full.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:22+0300\n"
+"POT-Creation-Date: 2010-04-12 14:07+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/nl-html.pot b/pot/nl-html.pot
index 04f7285..4f0772a 100644
--- a/pot/nl-html.pot
+++ b/pot/nl-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:22+0300\n"
+"POT-Creation-Date: 2010-04-12 14:07+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/nl-txt.pot b/pot/nl-txt.pot
index dee03a2..a17e6bb 100644
--- a/pot/nl-txt.pot
+++ b/pot/nl-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:22+0300\n"
+"POT-Creation-Date: 2010-04-12 14:07+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/pl-full.pot b/pot/pl-full.pot
index 3440f42..19b8f33 100644
--- a/pot/pl-full.pot
+++ b/pot/pl-full.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:22+0300\n"
+"POT-Creation-Date: 2010-04-12 14:06+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/pl-html.pot b/pot/pl-html.pot
index c057e6f..5ce8696 100644
--- a/pot/pl-html.pot
+++ b/pot/pl-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:22+0300\n"
+"POT-Creation-Date: 2010-04-12 14:06+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/pl-txt.pot b/pot/pl-txt.pot
index dee03a2..0cfbd3e 100644
--- a/pot/pl-txt.pot
+++ b/pot/pl-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:22+0300\n"
+"POT-Creation-Date: 2010-04-12 14:06+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/pt_BR-full.pot b/pot/pt_BR-full.pot
index 4048478..95dab39 100644
--- a/pot/pt_BR-full.pot
+++ b/pot/pt_BR-full.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:22+0300\n"
+"POT-Creation-Date: 2010-04-12 14:09+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/pt_BR-html.pot b/pot/pt_BR-html.pot
index c4b77c6..8d95a03 100644
--- a/pot/pt_BR-html.pot
+++ b/pot/pt_BR-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:22+0300\n"
+"POT-Creation-Date: 2010-04-12 14:09+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/pt_BR-txt.pot b/pot/pt_BR-txt.pot
index dee03a2..836a90c 100644
--- a/pot/pt_BR-txt.pot
+++ b/pot/pt_BR-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:22+0300\n"
+"POT-Creation-Date: 2010-04-12 14:09+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/ro-full.pot b/pot/ro-full.pot
index b941323..69e1ad1 100644
--- a/pot/ro-full.pot
+++ b/pot/ro-full.pot
@@ -6,9 +6,20 @@
#, fuzzy
msgid ""
msgstr ""
+"#-#-#-#-# ro-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:22+0300\n"
+"POT-Creation-Date: 2010-04-12 14:08+0300\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL(a)li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: ENCODING\n"
+"#-#-#-#-# ro-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
+"Project-Id-Version: phpMyAdmin documentation VERSION\n"
+"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
+"POT-Creation-Date: 2010-04-12 14:09+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/ro-html.pot b/pot/ro-html.pot
index 795c276..7ccbb73 100644
--- a/pot/ro-html.pot
+++ b/pot/ro-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:22+0300\n"
+"POT-Creation-Date: 2010-04-12 14:08+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/ro-txt.pot b/pot/ro-txt.pot
index dee03a2..836a90c 100644
--- a/pot/ro-txt.pot
+++ b/pot/ro-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:22+0300\n"
+"POT-Creation-Date: 2010-04-12 14:09+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/sk-full.pot b/pot/sk-full.pot
index 488bfe2..cc30119 100644
--- a/pot/sk-full.pot
+++ b/pot/sk-full.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:22+0300\n"
+"POT-Creation-Date: 2010-04-12 14:09+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/sk-html.pot b/pot/sk-html.pot
index 4bae1b9..891b874 100644
--- a/pot/sk-html.pot
+++ b/pot/sk-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:22+0300\n"
+"POT-Creation-Date: 2010-04-12 14:09+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/sk-txt.pot b/pot/sk-txt.pot
index dee03a2..836a90c 100644
--- a/pot/sk-txt.pot
+++ b/pot/sk-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:22+0300\n"
+"POT-Creation-Date: 2010-04-12 14:09+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/sv-full.pot b/pot/sv-full.pot
index b0c2f2b..c300fa9 100644
--- a/pot/sv-full.pot
+++ b/pot/sv-full.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:22+0300\n"
+"POT-Creation-Date: 2010-04-12 14:07+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/sv-html.pot b/pot/sv-html.pot
index d87efb5..310844e 100644
--- a/pot/sv-html.pot
+++ b/pot/sv-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:22+0300\n"
+"POT-Creation-Date: 2010-04-12 14:07+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/sv-txt.pot b/pot/sv-txt.pot
index dee03a2..a17e6bb 100644
--- a/pot/sv-txt.pot
+++ b/pot/sv-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:22+0300\n"
+"POT-Creation-Date: 2010-04-12 14:07+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/tr-full.pot b/pot/tr-full.pot
index 234b7e9..4a6bc27 100644
--- a/pot/tr-full.pot
+++ b/pot/tr-full.pot
@@ -6,9 +6,20 @@
#, fuzzy
msgid ""
msgstr ""
+"#-#-#-#-# tr-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:22+0300\n"
+"POT-Creation-Date: 2010-04-12 14:07+0300\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL(a)li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: ENCODING\n"
+"#-#-#-#-# tr-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
+"Project-Id-Version: phpMyAdmin documentation VERSION\n"
+"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
+"POT-Creation-Date: 2010-04-12 14:08+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/tr-html.pot b/pot/tr-html.pot
index fcab644..96a5ef0 100644
--- a/pot/tr-html.pot
+++ b/pot/tr-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:22+0300\n"
+"POT-Creation-Date: 2010-04-12 14:07+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/tr-txt.pot b/pot/tr-txt.pot
index dee03a2..0f2a05d 100644
--- a/pot/tr-txt.pot
+++ b/pot/tr-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:22+0300\n"
+"POT-Creation-Date: 2010-04-12 14:08+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/zh_CN-full.pot b/pot/zh_CN-full.pot
index e403eab..941d3f5 100644
--- a/pot/zh_CN-full.pot
+++ b/pot/zh_CN-full.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:22+0300\n"
+"POT-Creation-Date: 2010-04-12 14:09+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/zh_CN-html.pot b/pot/zh_CN-html.pot
index 4d578d5..73340c5 100644
--- a/pot/zh_CN-html.pot
+++ b/pot/zh_CN-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:22+0300\n"
+"POT-Creation-Date: 2010-04-12 14:09+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/zh_CN-txt.pot b/pot/zh_CN-txt.pot
index dee03a2..836a90c 100644
--- a/pot/zh_CN-txt.pot
+++ b/pot/zh_CN-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:22+0300\n"
+"POT-Creation-Date: 2010-04-12 14:09+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/zh_TW-full.pot b/pot/zh_TW-full.pot
index 42767ed..c793e7a 100644
--- a/pot/zh_TW-full.pot
+++ b/pot/zh_TW-full.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:22+0300\n"
+"POT-Creation-Date: 2010-04-12 14:09+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/zh_TW-html.pot b/pot/zh_TW-html.pot
index 30ce17e..65e3105 100644
--- a/pot/zh_TW-html.pot
+++ b/pot/zh_TW-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:22+0300\n"
+"POT-Creation-Date: 2010-04-12 14:09+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
diff --git a/pot/zh_TW-txt.pot b/pot/zh_TW-txt.pot
index dee03a2..836a90c 100644
--- a/pot/zh_TW-txt.pot
+++ b/pot/zh_TW-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-11 11:22+0300\n"
+"POT-Creation-Date: 2010-04-12 14:09+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
hooks/post-receive
--
phpMyAdmin localized documentation
1
0
[Phpmyadmin-git] [SCM] phpMyAdmin localized documentation branch, master, updated. bf2c5407b89ab36d045d06a1cbcf63c8fb5f8cad
by Michal Čihař 12 Apr '10
by Michal Čihař 12 Apr '10
12 Apr '10
The branch, master has been updated
via bf2c5407b89ab36d045d06a1cbcf63c8fb5f8cad (commit)
from 539ba31d64e630f90f4fc25a4b6870eade962dc4 (commit)
- Log -----------------------------------------------------------------
commit bf2c5407b89ab36d045d06a1cbcf63c8fb5f8cad
Author: Michal Čihař <michal(a)cihar.com>
Date: Mon Apr 12 14:04:43 2010 +0200
Translation update done using Pootle.
-----------------------------------------------------------------------
Summary of changes:
po/cs.po | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/po/cs.po b/po/cs.po
index 38246f2..728377a 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -10,13 +10,13 @@ msgstr ""
"Project-Id-Version: po 4a\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2010-04-08 12:44+0300\n"
-"PO-Revision-Date: 2010-04-02 14:59+0200\n"
+"PO-Revision-Date: 2010-04-12 14:04+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: Czech <cs(a)li.org>\n"
+"Language: cs\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: cs\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Generator: Pootle 2.0.1\n"
@@ -607,7 +607,7 @@ msgstr ""
#. type: Content of: <html><body><div><ol><li><ul><li>
#: ../phpmyadmin/Documentation.html:238
msgid "Or, if you prefer to not be prompted every time you log in:"
-msgstr ""
+msgstr "Nebo, pokud nechcete být dotazováni na heslo při každém přihlášení:"
#. type: Content of: <html><body><div><ol><li><ul><li><pre>
#: ../phpmyadmin/Documentation.html:240
hooks/post-receive
--
phpMyAdmin localized documentation
1
0
[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_3_2RC1-1571-gab6c012
by Michal Čihař 12 Apr '10
by Michal Čihař 12 Apr '10
12 Apr '10
The branch, master has been updated
via ab6c0126bfb392e944f09e0e8f0923b373ad96df (commit)
from 7393ad7bea2bfdb0db9aae31bc310248cae0d485 (commit)
- Log -----------------------------------------------------------------
commit ab6c0126bfb392e944f09e0e8f0923b373ad96df
Author: Michal Čihař <mcihar(a)novell.com>
Date: Mon Apr 12 13:58:51 2010 +0200
Czech translation update.
-----------------------------------------------------------------------
Summary of changes:
po/cs.po | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
diff --git a/po/cs.po b/po/cs.po
index bc1a486..3137a2e 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -5,7 +5,7 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2010-04-11 11:34+0200\n"
-"PO-Revision-Date: 2010-04-09 16:57+0200\n"
+"PO-Revision-Date: 2010-04-12 13:58+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: czech <cs(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -7348,6 +7348,8 @@ msgstr "Automaticky vytvářet verze"
#: setup/lib/messages.inc.php:305
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
+"Určuje seznam příkazů které se automaticky používají pro vytvoření nových "
+"verzí."
#: setup/lib/messages.inc.php:306
msgid "Statements to track"
hooks/post-receive
--
phpMyAdmin
1
0
[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_3_2RC1-1570-g7393ad7
by Michal Čihař 12 Apr '10
by Michal Čihař 12 Apr '10
12 Apr '10
The branch, master has been updated
via 7393ad7bea2bfdb0db9aae31bc310248cae0d485 (commit)
from 8e6843061099e68c667c4a53a20b568ef3722690 (commit)
- Log -----------------------------------------------------------------
commit 7393ad7bea2bfdb0db9aae31bc310248cae0d485
Author: Michal Čihař <mcihar(a)novell.com>
Date: Mon Apr 12 11:30:23 2010 +0200
jQuery -> $
-----------------------------------------------------------------------
Summary of changes:
js/functions.js | 2 +-
js/navigation.js | 12 ++++++------
js/update-location.js | 2 +-
libraries/footer.inc.php | 2 +-
4 files changed, 9 insertions(+), 9 deletions(-)
diff --git a/js/functions.js b/js/functions.js
index 447d1c6..a9346fe 100644
--- a/js/functions.js
+++ b/js/functions.js
@@ -1719,7 +1719,7 @@ $(document).ready(function(){
$(".sql").html("<span class=\"syntax\">"+$oldText+"</span>");
});
- jQuery('.sqlbutton').click(function(evt){
+ $('.sqlbutton').click(function(evt){
insertQuery(evt.target.id);
return false;
});
diff --git a/js/navigation.js b/js/navigation.js
index 2932105..391b77d 100644
--- a/js/navigation.js
+++ b/js/navigation.js
@@ -177,17 +177,17 @@ function fast_filter(value){
* Clears fast filter.
*/
function clear_fast_filter() {
- var elm = jQuery('#NavFilter input');
+ var elm = $('#NavFilter input');
elm.val('');
fast_filter('');
elm.focus();
}
/* Performed on load */
-jQuery(document).ready(function(){
+$(document).ready(function(){
/* Display filter */
- jQuery('#NavFilter').css('display', 'inline');
- jQuery('#clear_fast_filter').click(clear_fast_filter);
- jQuery('#fast_filter').focus(function (evt) {evt.target.select();});
- jQuery('#fast_filter').keyup(function (evt) {fast_filter(evt.target.value);});
+ $('#NavFilter').css('display', 'inline');
+ $('#clear_fast_filter').click(clear_fast_filter);
+ $('#fast_filter').focus(function (evt) {evt.target.select();});
+ $('#fast_filter').keyup(function (evt) {fast_filter(evt.target.value);});
});
diff --git a/js/update-location.js b/js/update-location.js
index 8ebdb62..b8b001d 100644
--- a/js/update-location.js
+++ b/js/update-location.js
@@ -42,7 +42,7 @@ function setURLHash(hash) {
* Handler for changing url according to the hash part, which is updated
* on each page to allow bookmarks.
*/
-jQuery(document).ready(function(){
+$(document).ready(function(){
/* Don't do anything if we're not root Window */
if (window.parent != window && window.parent.setURLHash) {
return;
diff --git a/libraries/footer.inc.php b/libraries/footer.inc.php
index deacb53..d02aee0 100644
--- a/libraries/footer.inc.php
+++ b/libraries/footer.inc.php
@@ -100,7 +100,7 @@ if (! empty($_SESSION['debug'])) {
<?php
if (empty($GLOBALS['error_message'])) {
?>
-jQuery(document).ready(function(){
+$(document).ready(function(){
// updates current settings
if (window.parent.setAll) {
window.parent.setAll('<?php
hooks/post-receive
--
phpMyAdmin
1
0
[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_3_2RC1-1569-g8e68430
by Michal Čihař 12 Apr '10
by Michal Čihař 12 Apr '10
12 Apr '10
The branch, master has been updated
via 8e6843061099e68c667c4a53a20b568ef3722690 (commit)
via 76ae26376edca589cf98475d84bfb854e71905e6 (commit)
from ffaee32052bbcb57aa41a2a7a2e34a883447e97f (commit)
- Log -----------------------------------------------------------------
commit 8e6843061099e68c667c4a53a20b568ef3722690
Author: Michal Čihař <mcihar(a)novell.com>
Date: Mon Apr 12 09:55:58 2010 +0200
[edit] CURRENT_TIMESTAMP is also valid for datetime fields.
commit 76ae26376edca589cf98475d84bfb854e71905e6
Author: Michal Čihař <mcihar(a)novell.com>
Date: Mon Apr 12 09:55:11 2010 +0200
Fix folding expression.
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 3 ++-
libraries/tbl_replace_fields.inc.php | 4 ++--
tbl_change.php | 21 +++++++++++++--------
3 files changed, 17 insertions(+), 11 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 978695d..b2f9da9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -65,6 +65,7 @@ $Id$
to sutharshan.
+ patch #2984337 [interface] Convert loading of export/import to jQuery ready
event, thanks to sutharshan.
+- [edit] CURRENT_TIMESTAMP is also valid for datetime fields.
3.3.3.0 (not yet released)
- patch #2982480 [navi] Do not group if there would be one table in group,
@@ -193,5 +194,5 @@ $Id$
# vim: et ts=4 sw=4 sts=4
# vim: ft=changelog fenc=utf-8 encoding=utf-8
-# vim: fde=getline(v\:lnum-1)=~'^\\s*$'&&getline(v\:lnum)=~'\\S'?'>1'\:1&&v\:lnum>8&&getline(v\:lnum)!~'^#'
+# vim: fde=getline(v\:lnum-1)=~'^\\s*$'&&getline(v\:lnum)=~'\\S'?'>1'\:1&&v\:lnum>6&&getline(v\:lnum)!~'^#'
# vim: fdn=1 fdm=expr
diff --git a/libraries/tbl_replace_fields.inc.php b/libraries/tbl_replace_fields.inc.php
index 2d5b8e7..dd24882 100644
--- a/libraries/tbl_replace_fields.inc.php
+++ b/libraries/tbl_replace_fields.inc.php
@@ -113,8 +113,8 @@ if (false !== $possibly_uploaded_val) {
} elseif ($type == 'bit') {
$val = preg_replace('/[^01]/', '0', $val);
$val = "b'" . PMA_sqlAddslashes($val) . "'";
- } elseif (! ($type == 'timestamp' && $val == 'CURRENT_TIMESTAMP')) {
- $val = "'" . PMA_sqlAddslashes($val) . "'";
+ } elseif (! (($type == 'datetime' || $type == 'timestamp') && $val == 'CURRENT_TIMESTAMP')) {
+ $val = "'" . PMA_sqlAddslashes($val) . "' /*" . $type . " */";
}
// Was the Null checkbox checked for this field?
diff --git a/tbl_change.php b/tbl_change.php
index 835ccf6..631b8f6 100644
--- a/tbl_change.php
+++ b/tbl_change.php
@@ -183,7 +183,7 @@ if (isset($where_clause)) {
} else { // end if (no row returned)
$meta = PMA_DBI_get_fields_meta($result[$key_id]);
list($unique_condition, $tmp_clause_is_unique) = PMA_getUniqueCondition($result[$key_id], count($meta), $meta, $rows[$key_id], true);
- if (! empty($unique_condition)) {
+ if (! empty($unique_condition)) {
$found_unique_key = true;
}
unset($unique_condition, $tmp_clause_is_unique);
@@ -304,7 +304,7 @@ foreach ($rows as $row_id => $vrow) {
<thead>
<tr>
<th><?php echo $strField; ?></th>
-
+
<?php
if ($cfg['ShowFieldTypesInDataEditView']) {
$this_url_params = array_merge($url_params,
@@ -345,8 +345,8 @@ foreach ($rows as $row_id => $vrow) {
// d a t e t i m e
//
// Current date should not be set as default if the field is NULL
- // for the current row, but do not put here the current datetime
- // if there is a default value (the real default value will be set
+ // for the current row, but do not put here the current datetime
+ // if there is a default value (the real default value will be set
// in the Default value logic below)
// Note: (tested in MySQL 4.0.16): when lang is some UTF-8,
@@ -439,7 +439,7 @@ foreach ($rows as $row_id => $vrow) {
<td align="center"<?php echo $field['wrap']; ?>>
<?php echo $field['pma_type']; ?>
</td>
-
+
<?php } //End if
// Prepares the field value
@@ -562,12 +562,12 @@ foreach ($rows as $row_id => $vrow) {
) {
$default_function = $cfg['DefaultFunctions']['pk_char36'];
}
-
+
// this is set only when appropriate and is always true
if (isset($field['display_binary_as_hex'])) {
$default_function = 'UNHEX';
}
-
+
// loop on the dropdown array and print all available options for that field.
foreach ($dropdown as $each_dropdown){
echo '<option';
@@ -639,7 +639,7 @@ foreach ($rows as $row_id => $vrow) {
// foreign key in a drop-down
$onclick .= '4, ';
} elseif ($foreigners && isset($foreigners[$field['Field']]) && $foreignData['foreign_link'] == true) {
- // foreign key with a browsing icon
+ // foreign key with a browsing icon
$onclick .= '6, ';
} else {
$onclick .= '5, ';
@@ -1069,6 +1069,11 @@ foreach ($rows as $row_id => $vrow) {
<input type="hidden" name="fields_type<?php echo $field_name_appendix; ?>" value="timestamp" />
<?php
}
+ if (substr($field['pma_type'], 0, 8) == 'datetime') {
+ ?>
+ <input type="hidden" name="fields_type<?php echo $field_name_appendix; ?>" value="datetime" />
+ <?php
+ }
if ($field['True_Type'] == 'bit') {
?>
<input type="hidden" name="fields_type<?php echo $field_name_appendix; ?>" value="bit" />
hooks/post-receive
--
phpMyAdmin
1
0
[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_3_2RC1-1567-gffaee32
by Michal Čihař 11 Apr '10
by Michal Čihař 11 Apr '10
11 Apr '10
The branch, master has been updated
via ffaee32052bbcb57aa41a2a7a2e34a883447e97f (commit)
via 142325cf1b8ea579507209ad9073d472e9e9aa64 (commit)
via c67f8bb2df808f2e39c9c0c661ce36ebe26dc32b (commit)
via 6d972b58610cbb9ecadc72717447e24d4545aa4e (commit)
via 512cf070ee3e5b6e57cece81f3fd73f5597d7316 (commit)
via 42ae785dab2aa8fcdd7c4bef009e2e3e6ff9c114 (commit)
via d0f232dc9bda6f9405f565ad97f0b89fc54f323e (commit)
via 61e5af444506f94ee3ff3d791d5da89c61e3a08e (commit)
via 07816f2d349e1218ee778477fab2b6d1132e9682 (commit)
via 77dad4c34f0bfb8ebe53704cb06efa6495b57122 (commit)
via a2830b6d523b49fc585b8977dd958ac71acddbf9 (commit)
via 17e1b6feee2d36deb7c15b63edf9c953508c1b71 (commit)
via ba1e17352770f033e9bb88a6f268b5855a219b2c (commit)
via 7d001b31852d10586920f97d90db203c14c5a840 (commit)
via 7ca9f87dd3f46242582744dc51bfedce7186286c (commit)
via 70b70a70d4b951d4e499d39826be81396b532968 (commit)
via b05b09561892bf274495b0eab40995f8bd7bf376 (commit)
via f0829b3f31a2194b63e1bc0a09638188c858b84e (commit)
from ffdc7c6903f7f1f7de66287f80651f6c88835e07 (commit)
- Log -----------------------------------------------------------------
commit ffaee32052bbcb57aa41a2a7a2e34a883447e97f
Merge: 142325cf1b8ea579507209ad9073d472e9e9aa64 ffdc7c6903f7f1f7de66287f80651f6c88835e07
Author: Michal Čihař <michal(a)cihar.com>
Date: Sun Apr 11 19:30:00 2010 +0200
Merge remote branch 'origin/master'
Conflicts:
po/it.po
commit 142325cf1b8ea579507209ad9073d472e9e9aa64
Author: Fabio Fantoni <fantonifabio(a)tiscali.it>
Date: Sun Apr 11 11:19:39 2010 +0200
Translation update done using Pootle.
commit c67f8bb2df808f2e39c9c0c661ce36ebe26dc32b
Author: Fabio Fantoni <fantonifabio(a)tiscali.it>
Date: Sun Apr 11 11:18:43 2010 +0200
Translation update done using Pootle.
commit 6d972b58610cbb9ecadc72717447e24d4545aa4e
Author: Fabio Fantoni <fantonifabio(a)tiscali.it>
Date: Sun Apr 11 11:17:42 2010 +0200
Translation update done using Pootle.
commit 512cf070ee3e5b6e57cece81f3fd73f5597d7316
Author: Fabio Fantoni <fantonifabio(a)tiscali.it>
Date: Sun Apr 11 11:15:46 2010 +0200
Translation update done using Pootle.
commit 42ae785dab2aa8fcdd7c4bef009e2e3e6ff9c114
Author: Fabio Fantoni <fantonifabio(a)tiscali.it>
Date: Sun Apr 11 11:15:35 2010 +0200
Translation update done using Pootle.
commit d0f232dc9bda6f9405f565ad97f0b89fc54f323e
Author: Fabio Fantoni <fantonifabio(a)tiscali.it>
Date: Sun Apr 11 11:15:18 2010 +0200
Translation update done using Pootle.
commit 61e5af444506f94ee3ff3d791d5da89c61e3a08e
Author: Fabio Fantoni <fantonifabio(a)tiscali.it>
Date: Sun Apr 11 11:14:51 2010 +0200
Translation update done using Pootle.
commit 07816f2d349e1218ee778477fab2b6d1132e9682
Author: Fabio Fantoni <fantonifabio(a)tiscali.it>
Date: Sun Apr 11 11:14:45 2010 +0200
Translation update done using Pootle.
commit 77dad4c34f0bfb8ebe53704cb06efa6495b57122
Author: Fabio Fantoni <fantonifabio(a)tiscali.it>
Date: Sun Apr 11 11:14:35 2010 +0200
Translation update done using Pootle.
commit a2830b6d523b49fc585b8977dd958ac71acddbf9
Author: Fabio Fantoni <fantonifabio(a)tiscali.it>
Date: Sun Apr 11 11:14:21 2010 +0200
Translation update done using Pootle.
commit 17e1b6feee2d36deb7c15b63edf9c953508c1b71
Author: Fabio Fantoni <fantonifabio(a)tiscali.it>
Date: Sun Apr 11 11:14:06 2010 +0200
Translation update done using Pootle.
commit ba1e17352770f033e9bb88a6f268b5855a219b2c
Author: Fabio Fantoni <fantonifabio(a)tiscali.it>
Date: Sun Apr 11 11:13:24 2010 +0200
Translation update done using Pootle.
commit 7d001b31852d10586920f97d90db203c14c5a840
Author: Fabio Fantoni <fantonifabio(a)tiscali.it>
Date: Sun Apr 11 11:10:18 2010 +0200
Translation update done using Pootle.
commit 7ca9f87dd3f46242582744dc51bfedce7186286c
Author: Fabio Fantoni <fantonifabio(a)tiscali.it>
Date: Sun Apr 11 11:09:49 2010 +0200
Translation update done using Pootle.
commit 70b70a70d4b951d4e499d39826be81396b532968
Author: Fabio Fantoni <fantonifabio(a)tiscali.it>
Date: Sun Apr 11 11:09:42 2010 +0200
Translation update done using Pootle.
commit b05b09561892bf274495b0eab40995f8bd7bf376
Author: Fabio Fantoni <fantonifabio(a)tiscali.it>
Date: Sun Apr 11 11:09:32 2010 +0200
Translation update done using Pootle.
commit f0829b3f31a2194b63e1bc0a09638188c858b84e
Author: Fabio Fantoni <fantonifabio(a)tiscali.it>
Date: Sun Apr 11 11:07:32 2010 +0200
Translation update done using Pootle.
-----------------------------------------------------------------------
Summary of changes:
po/it.po | 38 ++++++++++++++++++++++----------------
1 files changed, 22 insertions(+), 16 deletions(-)
diff --git a/po/it.po b/po/it.po
index 995ae49..7d8bf49 100644
--- a/po/it.po
+++ b/po/it.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2010-04-11 11:34+0200\n"
-"PO-Revision-Date: 2010-04-11 11:05+0200\n"
+"PO-Revision-Date: 2010-04-11 11:19+0200\n"
"Last-Translator: Fabio <fantonifabio(a)tiscali.it>\n"
"Language-Team: italian <it(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -1883,7 +1883,7 @@ msgstr ""
#: libraries/messages.inc.php:420
msgid "The file is being processed, please be patient."
-msgstr ""
+msgstr "Il file è in fase di elaborazione, vi preghiamo di essere pazienti."
#: libraries/messages.inc.php:421
#, php-format
@@ -1895,14 +1895,16 @@ msgid ""
"Please be patient, the file is being uploaded. Details about the upload are "
"not available."
msgstr ""
+"Pazienza mentre il file viene caricato. Dettagli sulla upload non sono "
+"disponibili."
#: libraries/messages.inc.php:423
msgid "Excel 97-2003 XLS Workbook"
-msgstr ""
+msgstr "Excel 97-2003 XLS Workbook"
#: libraries/messages.inc.php:424
msgid "Excel 2007 XLSX Workbook"
-msgstr ""
+msgstr "Excel 2007 XLSX Workbook"
#: libraries/messages.inc.php:425
msgid "Indexes"
@@ -2006,7 +2008,7 @@ msgstr "Inserita riga id: %1$d"
#: libraries/messages.inc.php:444
msgid "Insert as new row and ignore errors"
-msgstr ""
+msgstr "Inserisci come nuova riga e ignora gli errori"
#: libraries/messages.inc.php:445
msgid "Insert"
@@ -2110,6 +2112,9 @@ msgid ""
"functionality will be missing. For example navigation frame will not refresh "
"automatically."
msgstr ""
+"Il supporto Javascript è mancante o disabilitato sul tuo browser, alcune "
+"funzioni di phpMyAdmin saranno mancanti. Per esempio la navigazione dei "
+"frame non sarà aggiornata automaticamente."
#: libraries/messages.inc.php:468
msgid "Joins"
@@ -2262,6 +2267,7 @@ msgstr "Connetti"
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr ""
+"Login senza password è vietato dalla configurazione (vedi AllowNoPassword)"
#: libraries/messages.inc.php:506
msgid "Log out"
@@ -2323,7 +2329,7 @@ msgstr ""
#: libraries/messages.inc.php:518
msgid "MediaWiki Table"
-msgstr ""
+msgstr "Tabella MediaWiki"
#: libraries/messages.inc.php:519
msgid "Available MIME types"
@@ -2536,9 +2542,8 @@ msgid "Name"
msgstr "Nome"
#: libraries/messages.inc.php:558
-#, fuzzy
msgid "New table"
-msgstr "Nessuna Tabella"
+msgstr "Nuova tabella"
#: libraries/messages.inc.php:559
msgid "Next"
@@ -2608,7 +2613,6 @@ msgid "No change"
msgstr "Nessun cambiamento"
#: libraries/messages.inc.php:573
-#, fuzzy
msgctxt "$strNoneDefault"
msgid "None"
msgstr "Nessuno"
@@ -2678,7 +2682,7 @@ msgstr "non OK"
#: libraries/messages.inc.php:588
msgid "not present"
-msgstr ""
+msgstr "non presente"
#: libraries/messages.inc.php:589
#, php-format
@@ -2992,13 +2996,12 @@ msgid "No tables"
msgstr "Nessuna Tabella"
#: libraries/messages.inc.php:654
-#, fuzzy
msgid "Page has been created"
-msgstr "La tabella %1$s è stata creata."
+msgstr "La pagina è stata creata"
#: libraries/messages.inc.php:655
msgid "Page creation failed"
-msgstr ""
+msgstr "Creazione della pagina fallita"
#: libraries/messages.inc.php:656
msgid "PDF"
@@ -3034,7 +3037,7 @@ msgstr "rubrica"
#: libraries/messages.inc.php:664
msgid "PHP array"
-msgstr ""
+msgstr "Array PHP"
#: libraries/messages.inc.php:665 setup/lib/messages.inc.php:355
msgid "Create PHP Code"
@@ -3061,6 +3064,9 @@ msgid ""
"Enable advanced features in configuration file (<code>config.inc.php</"
"code>), for example by starting from <code>config.sample.inc.php</code>."
msgstr ""
+"Attiva funzionalità avanzate nel file di configuratione "
+"(<code>config.inc.php</code>), per esempio partendo da "
+"<code>config.sample.inc.php</code>."
#: libraries/messages.inc.php:671
msgid "Quick steps to setup advanced features:"
@@ -3069,11 +3075,11 @@ msgstr ""
#: libraries/messages.inc.php:672
msgid ""
"Create the needed tables with the <code>script/create_tables.sql</code>."
-msgstr ""
+msgstr "Crea le tabelle necessarie <code>script/create_tables.sql</code>."
#: libraries/messages.inc.php:673
msgid "Create a pma user and give access to these tables."
-msgstr ""
+msgstr "Crea l'utente pma e dagli accesso a queste tabelle."
#: libraries/messages.inc.php:674
msgid "Re-login to phpMyAdmin to load the updated configuration file."
hooks/post-receive
--
phpMyAdmin
1
0