svn: /phpdoc/tr/trunk/reference/datetime/datetimezone/ construct.xml getlocation.xml getname.xml
[email protected] (Nilgün Belma Bugüner)
| Newsgroups | php.doc.tr |
|---|---|
| Message-ID | <[email protected]> |
nilgun Sat, 29 Sep 2018 12:12:07 +0000
Revision: http://svn.php.net/viewvc?view=revision&revision=345720
Log:
update for sync with English docs.
Changed paths:
U phpdoc/tr/trunk/reference/datetime/datetimezone/construct.xml
U phpdoc/tr/trunk/reference/datetime/datetimezone/getlocation.xml
U phpdoc/tr/trunk/reference/datetime/datetimezone/getname.xml
Modified: phpdoc/tr/trunk/reference/datetime/datetimezone/construct.xml
===================================================================
--- phpdoc/tr/trunk/reference/datetime/datetimezone/construct.xml 2018-09-29 12:11:06 UTC (rev 345719)
+++ phpdoc/tr/trunk/reference/datetime/datetimezone/construct.xml 2018-09-29 12:12:07 UTC (rev 345720)
@@ -1,9 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 299487 Maintainer: behzat Status: ready -->
+<!-- EN-Revision: 342230 Maintainer: behzat Status: ready -->
<refentry xml:id="datetimezone.construct" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
<refnamediv>
<refname>DateTimeZone::__construct</refname>
+ <refname>timezone_open</refname>
<refpurpose>Yeni bir <classname>DateTimeZone</classname> nesnesi oluşturur
</refpurpose>
</refnamediv>
@@ -33,7 +34,8 @@
<term><parameter>zamandilimi</parameter></term>
<listitem>
<para>
- Tanımlı <link linkend="timezones">zaman dilimlerinden</link> biri.
+ Desteklenen <link linkend="timezones">zaman dilimlerinden</link> biri
+ veya saat farkı (+0200).
</para>
</listitem>
</varlistentry>
@@ -56,6 +58,29 @@
<classname>Exception</classname> istisnası oluşturur.
</para>
</refsect1>
+ <refsect1 role="changelog">
+ &reftitle.changelog;
+ <para>
+ <informaltable>
+ <tgroup cols="2">
+ <thead>
+ <row>
+ <entry>&Version;</entry>
+ <entry>&Description;</entry>
+ </row>
+ </thead>
+ <tbody>
+ <row>
+ <entry>5.5.10</entry>
+ <entry>
+ <parameter>zamandilimi</parameter> saat farkını kabul ediyor.
+ </entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </informaltable>
+ </para>
+ </refsect1>
<refsect1 role="examples">
&reftitle.examples;
Modified: phpdoc/tr/trunk/reference/datetime/datetimezone/getlocation.xml
===================================================================
--- phpdoc/tr/trunk/reference/datetime/datetimezone/getlocation.xml 2018-09-29 12:11:06 UTC (rev 345719)
+++ phpdoc/tr/trunk/reference/datetime/datetimezone/getlocation.xml 2018-09-29 12:12:07 UTC (rev 345720)
@@ -1,9 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 299350 Maintainer: behzat Status: ready -->
+<!-- EN-Revision: 344087 Maintainer: behzat Status: ready -->
<refentry xml:id="datetimezone.getlocation" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
<refnamediv>
<refname>DateTimeZone::getLocation</refname>
+ <refname>timezone_location_get</refname>
<refpurpose>Zaman dilimi konum bilgisini döndürür</refpurpose>
</refnamediv>
@@ -12,7 +13,7 @@
<para>&style.oop;</para>
<methodsynopsis role="oop">
<modifier>public</modifier> <type>array</type><methodname>DateTimeZone::getLocation</methodname>
- <void />
+ <methodparam><type>DateTimeZone</type><parameter>nesne</parameter></methodparam>
</methodsynopsis>
<para>&style.procedural;</para>
<methodsynopsis role="procedural">
@@ -27,13 +28,17 @@
<refsect1 role="parameters">
&reftitle.parameters;
- &no.function.parameters;
+ <para>
+ <variablelist>
+ &date.datetimezone.description;
+ </variablelist>
+ </para>
</refsect1>
<refsect1 role="returnvalues">
&reftitle.returnvalues;
<para>
- Zaman dilimi hakkında konum bilgisini içeren bir dizi.
+ Zaman dilimi hakkında konum bilgisini içeren bir dizi&return.falseforfailure;.
</para>
</refsect1>
@@ -47,6 +52,7 @@
<?php
$tz = new DateTimeZone("Europe/Prague");
print_r($tz->getLocation());
+print_r(timezone_location_get($tz));
?>
]]>
</programlisting>
@@ -60,6 +66,13 @@
[longitude] => 14.43333
[comments] =>
)
+Array
+(
+ [country_code] => CZ
+ [latitude] => 50.08333
+ [longitude] => 14.43333
+ [comments] =>
+)
]]>
</screen>
</example>
Modified: phpdoc/tr/trunk/reference/datetime/datetimezone/getname.xml
===================================================================
--- phpdoc/tr/trunk/reference/datetime/datetimezone/getname.xml 2018-09-29 12:11:06 UTC (rev 345719)
+++ phpdoc/tr/trunk/reference/datetime/datetimezone/getname.xml 2018-09-29 12:12:07 UTC (rev 345720)
@@ -1,9 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 299350 Maintainer: behzat Status: ready -->
+<!-- EN-Revision: 312463 Maintainer: behzat Status: ready -->
<refentry xml:id="datetimezone.getname" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
<refnamediv>
<refname>DateTimeZone::getName</refname>
+ <refname>timezone_name_get</refname>
<refpurpose>Zaman diliminin adını döndürür</refpurpose>
</refnamediv>
@@ -12,7 +13,7 @@
<para>&style.oop;</para>
<methodsynopsis role="oop">
<modifier>public</modifier> <type>string</type><methodname>DateTimeZone::getName</methodname>
- <void />
+ <methodparam><type>DateTimeZone</type><parameter>nesne</parameter></methodparam>
</methodsynopsis>
<para>&style.procedural;</para>
<methodsynopsis role="procedural">
@@ -26,7 +27,16 @@
<refsect1 role="parameters">
&reftitle.parameters;
- &no.function.parameters;
+ <variablelist>
+ <varlistentry>
+ <term><parameter>nesne</parameter></term>
+ <listitem>
+ <para>
+ Bir isim almak için <classname>DateTimeZone</classname>.
+ </para>
+ </listitem>
+ </varlistentry>
+ </variablelist>
</refsect1>
<refsect1 role="returnvalues">