|
|
@@ -2,9 +2,9 @@
|
|
|
<!-- Reviewed: no -->
|
|
|
<!-- EN-Revision: 24249 -->
|
|
|
<sect1 id="zend.gdata.gapps">
|
|
|
-<!-- Skip-EN-Revisions: 22742 -->
|
|
|
<title>Google Apps Provisioning の使用法</title>
|
|
|
-
|
|
|
+ <!-- Skip-EN-Revisions: 22742 -->
|
|
|
+ <para>注意:このドキュメントでは、英語版のリビジョン 22742 の更新内容をスキップしています。</para>
|
|
|
<para>
|
|
|
Google Apps はドメイン管理者向けのサービスで、Google の提供する
|
|
|
メールやカレンダー、Docs & Spreadsheets
|
|
|
@@ -611,17 +611,18 @@ $gdata->deleteNickname('bar');
|
|
|
</para>
|
|
|
|
|
|
<sect3 id="zend.gdata.gapps.groups.creating">
|
|
|
- <title>Creating a group</title>
|
|
|
+ <title>グループを作成</title>
|
|
|
|
|
|
<para>
|
|
|
- Groups can be created by calling the
|
|
|
- <methodname>createGroup()</methodname> convenience method:
|
|
|
+ <methodname>createGroup()</methodname> という便利なメソッドを呼び出すと、
|
|
|
+ グループが作成できます。
|
|
|
</para>
|
|
|
|
|
|
<programlisting language="php"><![CDATA[
|
|
|
$gdata->createGroup('friends', 'The Friends Group');
|
|
|
]]></programlisting>
|
|
|
|
|
|
+ <!-- TODO : to be translated -->
|
|
|
<para>
|
|
|
Groups can also be created by instantiating
|
|
|
GroupEntry, providing a group id and name for the group,
|
|
|
@@ -730,10 +731,10 @@ foreach ($feed->entry as $entry) {
|
|
|
</sect3>
|
|
|
|
|
|
<sect3 id="zend.gdata.gapps.groups.deleting">
|
|
|
- <title>Deleting a group</title>
|
|
|
+ <title>グループを削除</title>
|
|
|
|
|
|
<para>
|
|
|
- To delete a group, call the deleteGroup() convenience method:
|
|
|
+ グループを削除するには、deleteGroup() という便利なメソッドを呼び出します。
|
|
|
</para>
|
|
|
|
|
|
<programlisting language="php"><![CDATA[
|
|
|
@@ -742,17 +743,18 @@ $gdata->deleteGroup('friends');
|
|
|
</sect3>
|
|
|
|
|
|
<sect3 id="zend.gdata.gapps.groups.updating">
|
|
|
- <title>Updating a group</title>
|
|
|
+ <title>グループを更新</title>
|
|
|
|
|
|
<para>
|
|
|
- Groups can be updated by calling the
|
|
|
- <methodname>updateGroup()</methodname> convenience method:
|
|
|
+ <methodname>updateGroup()</methodname> という便利なメソッドを呼び出すと、
|
|
|
+ グループが更新できます。
|
|
|
</para>
|
|
|
|
|
|
<programlisting language="php"><![CDATA[
|
|
|
$gdata->updateGroup('group-id-here', 'Group Name Here');
|
|
|
]]></programlisting>
|
|
|
|
|
|
+ <!-- TODO : to be translated -->
|
|
|
<para>
|
|
|
The first parameter is required. The second, third and fourth parameter,
|
|
|
representing the group name, group descscription, and email permission,
|