diff --git a/ChangeLog b/ChangeLog index f464ac84ff7ac376e1ccf5f1c01a518957c08112..d4fa87f9f55b0229351ab2a36b6d77dbe4173717 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2006-03-06 Benedikt Meurer <benny@xfce.org> + + * autogen.sh, configure.in.in, po/LINGUAS: Read the set of available + languages from po/LINGUAS and substitute them when autogen.sh is + run. This way we can continue to use glib-gettext. + * docs/manual/, po-doc/, configure.in.in, Makefile.am: Import Daichi's + initial japanese translations for the user manual. + 2006-03-05 Benedikt Meurer <benny@xfce.org> * po/POTFILES.in: Add Thunar-folder-handler.desktop.in here. diff --git a/Makefile.am b/Makefile.am index ae59880759429ad8b5f16e08eec244f284838a1f..732522de316610c1fb259573cd8f07a200c1e979 100644 --- a/Makefile.am +++ b/Makefile.am @@ -8,6 +8,7 @@ SUBDIRS = \ icons \ pixmaps \ po \ + po-doc \ tdb \ thunarx \ thunar-vfs \ @@ -69,6 +70,9 @@ DISTCLEANFILES = \ $(desktop_DATA) \ $(service_DATA) -DISTCHECK_CONFIGURE_FLAGS = --enable-gtk-doc --enable-xsltproc +DISTCHECK_CONFIGURE_FLAGS = \ + --enable-gtk-doc \ + --enable-xml2po \ + --enable-xsltproc # vi:set ts=8 sw=8 noet ai nocindent syntax=automake: diff --git a/autogen.sh b/autogen.sh index c3a49bfff9bb031d5e752f4d684aac09de776579..9bbd6784c48a167ad4a3de96b0b4ef562f42cb8c 100755 --- a/autogen.sh +++ b/autogen.sh @@ -18,9 +18,21 @@ EOF exit 1 } -# substitute revision and date +# verify that po/LINGUAS is present +(test -f po/LINGUAS) >/dev/null 2>&1 || { + cat >&2 <<EOF +autogen.sh: The file po/LINGUAS could not be found. Please check your snapshot + or try to checkout again. +EOF + exit 1 +} + +# substitute revision and linguas +linguas=`sed -e '/^#/d' po/LINGUAS` revision=`LC_ALL=C svn info $0 | awk '/^Revision: / {printf "%05d\n", $2}'` -sed -e "s/@REVISION@/${revision}/g" < "configure.in.in" > "configure.in" +sed -e "s/@LINGUAS@/${linguas}/g" \ + -e "s/@REVISION@/${revision}/g" \ + < "configure.in.in" > "configure.in" exec xdt-autogen $@ diff --git a/configure.in.in b/configure.in.in index 3050a0da206e84b666a217645470aeee40c443b4..bef1171ebbdef37a83a530861004ee8f794fd7ce 100644 --- a/configure.in.in +++ b/configure.in.in @@ -151,7 +151,7 @@ AC_TRY_LINK([#include <sys/mman.h>], posix_madvise_test(), dnl ****************************** dnl *** Check for i18n support *** dnl ****************************** -XDT_I18N([ca de el es eu fi fr hu it ja nl pl pt_BR ru sv zh_TW]) +XDT_I18N([@LINGUAS@]) dnl *********************************** dnl *** Check for required packages *** @@ -218,6 +218,18 @@ if test x"$enable_xsltproc" = x"yes"; then fi AM_CONDITIONAL([ENABLE_XSLTPROC], [test x"$enable_xsltproc" = x"yes"]) +dnl ************************ +dnl *** Check for xml2po *** +dnl ************************ +AC_ARG_ENABLE([xml2po], [AC_HELP_STRING([--enable-xml2po], [Use xml2po to translate documentation @<:@default=no@:>@])],, [enable_xml2po=no]) +if test x"$enable_xml2po" = x"yes"; then + AC_PATH_PROG([XML2PO], [xml2po], [no]) + if test x"$XML2PO" = x"no"; then + enable_xml2po=no + fi +fi +AM_CONDITIONAL([ENABLE_XML2PO], [test x"$enable_xml2po" = x"yes"]) + dnl **************************************************** dnl *** Check for file system monitor implementation *** dnl **************************************************** @@ -343,6 +355,9 @@ docs/manual/Makefile docs/manual/C/Makefile docs/manual/C/Thunar.xml docs/manual/C/images/Makefile +docs/manual/ja/Makefile +docs/manual/ja/Thunar.xml +docs/manual/ja/images/Makefile docs/papers/Makefile docs/reference/Makefile docs/reference/thunar-vfs/Makefile @@ -357,6 +372,7 @@ icons/24x24/Makefile icons/48x48/Makefile icons/scalable/Makefile po/Makefile.in +po-doc/Makefile tdb/Makefile tdb/tdbconfig.h pixmaps/Makefile diff --git a/docs/manual/Makefile.am b/docs/manual/Makefile.am index c655e8f10370e3d9ba8b552eb76395cdde92a721..ba6e4a6ec5b5c2cb9e10ae621bc08e25a1e97136 100644 --- a/docs/manual/Makefile.am +++ b/docs/manual/Makefile.am @@ -1,7 +1,8 @@ # $Id$ SUBDIRS = \ - C + C \ + ja cssdir = $(datadir)/doc/Thunar/html css_DATA = \ diff --git a/docs/manual/ja/Makefile.am b/docs/manual/ja/Makefile.am new file mode 100644 index 0000000000000000000000000000000000000000..4d0cab457019a1b4e8a1ce23ca645b32fb31280a --- /dev/null +++ b/docs/manual/ja/Makefile.am @@ -0,0 +1,68 @@ +# $Id$ + +SUBDIRS = \ + images + +TARGET_DIR = $(datadir)/doc/Thunar/html/ja +STYLESHEET = ../thunar.xsl +DOCUMENT = Thunar.xml + +# We set GPATH here; this gives us semantics for GNU make +# which are more like other make's VPATH, when it comes to +# whether a source that is a target of one rule is then +# searched for in VPATH/GPATH. +GPATH = $(srcdir) + +DOC_STAMPS = html-build.stamp + +EXTRA_DIST = $(DOCUMENT) +CLEANFILES = $(DOC_STAMPS) + +if ENABLE_XSLTPROC +all-local: html-build.stamp + +html-build.stamp: $(srcdir)/$(DOCUMENT) $(srcdir)/$(STYLESHEET) + @echo "*** Building HTML ***" + @-chmod -R u+w $(srcdir) + rm -rf $(srcdir)/html + mkdir $(srcdir)/html + $(XSLTPROC) --nonet -o $(srcdir)/html/ $(srcdir)/$(STYLESHEET) \ + $(srcdir)/$(DOCUMENT) + touch html-build.stamp +else +all-local: +endif + +maintainer-clean-local: clean + (cd $(srcdir) && rm -rf html) + +install-data-local: + installfiles=`echo $(srcdir)/html/*`; \ + if test "$$installfiles" = '$(srcdir)/html/*'; then \ + echo "--- Nothing to install"; \ + else \ + $(mkinstalldirs) $(DESTDIR)$(TARGET_DIR); \ + for file in $$installfiles; do \ + echo "--- Installing "$$file; \ + $(INSTALL_DATA) $$file $(DESTDIR)$(TARGET_DIR); \ + done; \ + fi + +uninstall-local: + rm -rf $(DESTDIR)$(TARGET_DIR)/* + +if ENABLE_XSLTPROC +dist-check-xsltproc: all +else +dist-check-xsltproc: + @echo "*** xsltproc must be installed and enabled in order to make dist" + @false +endif + +dist-hook: dist-check-xsltproc dist-hook-local + mkdir $(distdir)/html + -cp $(srcdir)/html/* $(distdir)/html + +.PHONY: dist-hook-local + +# vi:set ts=8 sw=8 noet ai nocindent syntax=automake: diff --git a/docs/manual/ja/Thunar.xml.in b/docs/manual/ja/Thunar.xml.in new file mode 100644 index 0000000000000000000000000000000000000000..7f9d3d84f3a35c18c12ee63acda744db7554a788 --- /dev/null +++ b/docs/manual/ja/Thunar.xml.in @@ -0,0 +1,186 @@ +<?xml version="1.0" encoding="utf-8"?> +<!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN" "http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd" [ +<!ENTITY date "March 2006"> +<!ENTITY version "@PACKAGE_VERSION@"> +<!ENTITY application "@PACKAGE_NAME@"> +]> +<article id="index" lang="ja"> + + <!-- Header --> + <articleinfo> + <title>Thunar ファイルマãƒãƒ¼ã‚¸ãƒ£ãƒ¼</title> + + <pubdate>&date;</pubdate> + + <copyright> + <year>2004</year> + <year>2005</year> + <year>2006</year> + <holder>Benedikt Meurer</holder> + </copyright><copyright><year>2006.</year><holder>Daichi Kawahata (daichi@xfce.org)</holder></copyright> + + <legalnotice id="legalnotice"> + <para>フリーソフトウェア財団ãŒå…¬è¡¨ã™ã‚‹ GNU フリー文書利用許諾契約書ã®ç¬¬1.1版ã€ã‚ã‚‹ã„ã¯ãれ以é™ã®ã„ãšã‚Œã‹ã®ç‰ˆã®æ¡ä»¶ä¸‹ã«ãŠã„ã¦ã€ã“ã®æ–‡æ›¸ã®è¤‡è£½ã€é…布ãŠã‚ˆã³/ã¾ãŸã¯å¤‰æ›´ãŒè¨±å¯ã•ã‚Œã¾ã™ã€‚変更出æ¥ãªã„箇所ã€è¡¨ç´™æ–‡ãŠã‚ˆã³è£è¡¨ç´™æ–‡ãŒã‚ã£ã¦ã¯ã„ã‘ã¾ã›ã‚“。ã“ã®åˆ©ç”¨è¨±è«¾å¥‘約書ã®å…¨æ–‡ã¯<ulink type="http" url="http://www.gnu.org/">フリーソフトウェア財団</ulink>ã‹ã‚‰å–å¾—ã™ã‚‹äº‹ãŒã§ãã¾ã™ã€‚</para> + </legalnotice> + + <authorgroup> + <author> + <firstname>Benedikt</firstname> + <surname>Meurer</surname> + <affiliation> + <address><email>benny@xfce.org</email></address> + <orgname>os-cillation</orgname> + <orgdiv>システム開発</orgdiv> + <jobtitle>ソフトウェア開発者</jobtitle> + </affiliation> + </author> + </authorgroup> + + <releaseinfo>ã“ã®èª¬æ˜Žæ›¸ã¯ @PACKAGE_NAME@ ã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³ @PACKAGE_VERSION@ ã«ã¤ã„ã¦æ›¸ã‹ã‚Œã¦ã„ã¾ã™ã€‚</releaseinfo> + </articleinfo> + + <sect1 id="intro"> + <title>@PACKAGE_NAME@ ã®ç´¹ä»‹</title> + + <para>Thunar 㯠Xfce デスクトップ環境ã®ãŸã‚ã«ã€è»½å¿«ã‹ã¤æ‰‹è»½ã«ä½¿ãˆã‚‹ã‚ˆã†ã‚¼ãƒã‹ã‚‰è¨è¨ˆã•ã‚Œã¦ã„ã‚‹ã€ä»Šé¢¨ã®æ–°ã—ã„ファイルマãƒãƒ¼ã‚¸ãƒ£ãƒ¼ã§ã™ã€‚ãã®ãƒ¦ãƒ¼ã‚¶ãƒ¼ã‚¤ãƒ³ã‚¿ãƒ¼ãƒ•ã‚§ã‚¤ã‚¹ã¯ç°¡æ½”ã‹ã¤ç›´è¦³çš„ã§ã€ç´›ã‚‰ã‚ã—ã„ã€ã‚ã‚‹ã„ã¯ç„¡é§„ãªã‚ªãƒ—ションã¯æ¨™æº–ã§ã¯ä¸€åˆ‡çµ„ã¿è¾¼ã¾ã‚Œã¦ã„ã¾ã›ã‚“ã€‚ç´ æ—©ãèµ·å‹•ã—ã¦ãƒ•ã‚©ãƒ«ãƒ€ã®èªã¿è¾¼ã¿ã«å¯¾ã™ã‚‹æ„Ÿåº¦ã‚‚上々ã§ã™ã€‚</para> + + <para>ãã®çµæžœã¨ã—ã¦ã§ã¯ã‚ã‚Šã¾ã™ãŒã€ãƒ•ã‚¡ã‚¤ãƒ«ãƒžãƒãƒ¼ã‚¸ãƒ£ãƒ¼ Thunar ã¯ã‚ãªãŸã®ãƒ•ã‚¡ã‚¤ãƒ«ã‚„アプリケーションã®ãŸã‚ã®çµ±åˆã•ã‚ŒãŸä¸€ã¤ã®ã‚¢ã‚¯ã‚»ã‚¹æ‹ 点をæä¾›ã—ã¾ã™ã€‚以下ã®äº‹æŸ„ãŒè¡Œã†ãŸã‚ã«ã“ã®ãƒ•ã‚¡ã‚¤ãƒ«ãƒžãƒãƒ¼ã‚¸ãƒ£ãƒ¼ã‚’利用ã™ã‚‹ã“ã¨ãŒã§ãã¾ã™:</para> + + <itemizedlist> + <listitem>フォルダãŠã‚ˆã³æ–‡æ›¸ã®ä½œæˆã€‚</listitem> + <listitem>ファイルãŠã‚ˆã³ãƒ•ã‚©ãƒ«ãƒ€ã®è¡¨ç¤ºã€‚</listitem> + <listitem>ファイルãŠã‚ˆã³ãƒ•ã‚©ãƒ«ãƒ€ã®ç®¡ç†ã€‚</listitem> + <listitem>個別ã«è¨å®šã—ãŸã‚¢ã‚¯ã‚·ãƒ§ãƒ³ã®å®Ÿè¡ŒãŠã‚ˆã³ç®¡ç†ã€‚</listitem> + <listitem>æŒã¡é‹ã³å¯èƒ½ãªãƒ¡ãƒ‡ã‚£ã‚¢ã¸ã®ã‚¢ã‚¯ã‚»ã‚¹ã€‚</listitem> + </itemizedlist> + </sect1> + + + <sect1 id="advanced-topics"> + <title>高度ãªè©±é¡Œ</title> + + <sect2 id="the-unix-file-system"> + <title>UNIX ファイルシステム</title> + + <para>ファイルマãƒãƒ¼ã‚¸ãƒ£ãƒ¼ Thunar ã¯ã€åŸºæœ¬çš„ãªãƒ•ã‚¡ã‚¤ãƒ«ã‚·ã‚¹ãƒ†ãƒ ã®æŠ½è±¡çš„ãªäº›äº‹ã‚’何ã®å•é¡Œã‚‚ç„¡ãã“ãªã—ã¾ã™ã®ã§ã€åˆ©ç”¨è€…ã¯ã“れらを気ã«ã™ã‚‹å¿…è¦ã¯ã‚ã‚Šã¾ã›ã‚“。ã¨ã¯è¨€ã„ãªãŒã‚‰ã€å…¨ä½“åƒã‚’掴むãŸã‚ã«åŸºç¤Žæ¦‚念をç†è§£ã—ã¦ãŠãã¨ã€å¾Œã€…役立ã¤å ´åˆãŒã‚ã‚Šã¾ã™ã€‚ã“ã®ç« ã§ã¯ã€UNIX ファイルシステムã®æ¦‚念を手çŸã«ç´¹ä»‹ã—ã¾ã™ã€‚ã“ã‚Œã¯ã€ä»Šæ—¥ã«ãŠã‘ã‚‹ Linux ã‚’å«ã‚€ã‚らゆる UNIX ã®ç”Ÿã¾ã‚Œå¤‰ã‚ã‚Šã§ç”¨ã„られã¦ã„ã¾ã™ã€‚</para> + + <sect3 id="folders-and-paths"> + <title>フォルダã¨ãƒ‘ス</title> + + <para>UNIX ファイルシステムã§ã¯ã€å…¨ã¦ã®ãƒ•ã‚¡ãƒ«ãƒ€ã¯ä¸€ã¤ã®æœ€ä¸Šä½ãƒ•ã‚©ãƒ«ãƒ€ã‹ã‚‰ä¸‹ã¸å‘ã‹ã£ã¦æžåˆ†ã‹ã‚Œã—ãªãŒã‚‰é…ç½®ã•ã‚Œã¦ã„ãã¾ã™ã€é€†ã•ã«ãªã£ãŸæ¨¹æœ¨ã®æ§‹é€ を想åƒã—ã¦ã¿ã¦ä¸‹ã•ã„。ã“ã®æœ€ä¸Šä½ã«ã‚るフォルダã¯<emphasis>ルートディレクトリ</emphasis> (<emphasis>ディレクトリ</emphasis>ã¨ã„ã†ç”¨èªžã¯<emphasis>フォルダ</emphasis>ã®ä»£ã‚ã‚Šã«ã‚ˆã使ã‚ã‚Œã¾ã™) ã¨å‘¼ã°ã‚Œã€Thunar ã§ã¯<guilabel>ファイルシステム</guilabel>ã¨ã—ã¦è¡¨ç¤ºã•ã‚Œã¾ã™ã€‚ã¤ã¾ã‚Šã€ã‚る地点ã«åˆ°é”ã™ã‚‹ã¾ã§ãƒ•ã‚©ãƒ«ãƒ€ã‹ã‚‰ãƒ•ã‚©ãƒ«ãƒ€ã¸ã¨ã“ã®æœ¨æ§‹é€ ã‚’ç™»ã£ã¦è¡Œãã¾ã™ã€ãã®å¾Œã«ç›®æ¨™ã¨ã™ã‚‹å ´æ‰€ã«ç€ãã¾ã§ã‚µãƒ–フォルダを下ã£ã¦è¡Œãã®ã§ã™ã€‚</para> + + <para>ã“ã®æœ¨æ§‹é€ ã§ã®ãƒ•ã‚¡ã‚¤ãƒ«ã‚„フォルダã®ä½ç½®ã¯ãã®<emphasis>パス</emphasis>ã§è¨˜ã™ã“ã¨ãŒã§ãã¾ã™ã€‚ã“ã®ãƒ‘スã¨ã„ã†ã®ã¯ã€ç›®æ¨™ã¨ã™ã‚‹ãƒ•ã‚©ãƒ«ãƒ€ã‚„ファイルã«ãŸã©ã‚Šç€ããŸã‚ã«é€šéŽã—ã¦ã„ã‹ãªã‘ã‚Œã°ã„ã‘ãªã„パスã®ãƒªã‚¹ãƒˆã§ã€æœ€ä¸Šéƒ¨ã®ãƒ•ã‚©ãƒ«ãƒ€ã‹ã‚‰å§‹ã¾ã‚Šã¾ã™ã€‚例ãˆã°ã€<filename role="directory">/home/luke</filename> ã¯æœ€ä¸Šéƒ¨ãƒ•ã‚©ãƒ«ãƒ€ã®ã‚µãƒ–フォルダ <filename role="directory">home</filename> ã®ã‚µãƒ–フォルダ <filename role="directory">luke</filename> ã«ãªã‚Šã¾ã™ã€‚<filename>/home/luke/myfile.txt</filename> ã¯ãã®ã‚µãƒ–フォルダã«ã‚ã‚‹ <filename>myfile.txt</filename> ã¨ã„ã†ãƒ•ã‚¡ã‚¤ãƒ«ã§ã™ã€‚ã“れらã®ãƒ‘スã®å…ˆé ã«ã‚ã‚‹ <filename role="directory">/</filename> ã¯æœ€ä¸Šéƒ¨ãƒ•ã‚©ãƒ«ãƒ€ã‚’表ã—ã¾ã™ã€‚</para> + + <para>ã™ã¹ã¦ã®åˆ©ç”¨è€…ãŒå€‹äººç”¨ã®ãƒ•ã‚¡ã‚¤ãƒ«ã‚„è¨å®šã‚’ä¿ç®¡ã™ã‚‹ãŸã‚ã®å€‹åˆ¥ã®ãƒ•ã‚©ãƒ«ãƒ€ã‚’æŒã¡ã¾ã™ã€‚ã“ã®ãƒ•ã‚©ãƒ«ãƒ€ã¯<emphasis>ホームディレクトリ</emphasis>ã¨å‘¼ã°ã‚Œã€Thunar ã§ã¯åˆ©ç”¨è€…ã®ãƒã‚°ã‚¤ãƒ³åã¨å…±ã«ç‰¹åˆ¥ãªã‚¢ã‚¤ã‚³ãƒ³ã§è¡¨ç¤ºã•ã‚Œã¾ã™ã€‚Windows ã§çŸ¥ã‚‰ã‚Œã‚‹<guilabel>ï¾ï½²ï¾Œï½§ï½²ï¾™</guilabel>ã¨ä¼¼ã¦ã„ã¾ã™ã€‚ãã‚Œãžã‚Œã®åˆ©ç”¨è€…ã®<emphasis>ホームディレクトリ</emphasis>ã¯é€šå¸¸ <filename role="directory">/home</filename> ã®ä¸‹ã«ã‚ã‚Šã¾ã™ã€‚例ã¨ã—ã¦ä¸Šã’ã‚‹ã¨ã€ãƒã‚°ã‚¤ãƒ³å <filename role="directory">luke</filename> ã®ãƒ›ãƒ¼ãƒ ディレクトリ㯠<filename role="directory">/home/luke</filename> ã«ãªã‚‹ä¸€æ–¹ã€<filename role="directory">/home/jane</filename> ã¯ãƒã‚°ã‚¤ãƒ³å㌠<filename role="directory">jane</filename> ã®ãƒ›ãƒ¼ãƒ ディレクトリã«ãªã‚Šã¾ã™ã€‚</para> + </sect3> + + <sect3 id="file-types"> + <title>ファイルã®ç¨®é¡ž</title> + + <para>ã‚‚ã†å¾¡å˜çŸ¥ã‹ã‚‚ã—ã‚Œã¾ã›ã‚“ãŒã€UNIX ã§ã¯ã‚らゆるもã®ãŒãƒ•ã‚¡ã‚¤ãƒ«ã¨ã—ã¦å–り扱ã‚ã‚Œã¾ã™ã€‚ã“ã‚Œã¯ä»Šæ—¥ã® UNIX システムã«å˜åœ¨ã™ã‚‹ç‰©ç†çš„ãªå˜åœ¨ã«å¯¾ã—ã¦ã‚‚当ã¦ã¯ã¾ã‚Šã¾ã™ã€å®Ÿéš›ã®æ‰€ã€å„種装置や周辺機器も特殊ファイルã¨ã—ã¦è¡¨ã•ã‚Œã‚‹ã®ã§ã™ã€‚一見æ„味ã®ç„¡ã„よã†ã«æ€ã‚れるã‹ã‚‚ã—ã‚Œã¾ã›ã‚“ãŒã€ã“れ㯠UNIX ã®å¼·å‘³ã®ä¸€ã¤ã§ãã®èªžæºã§ã‚‚ã‚ã‚Šã¾ã™ã€‚UNIX ã¯ã‚·ãƒ³ãƒ—ルãªã‚³ã‚¢ã‚’何年ã«ã‚‚ã‚ãŸã£ã¦ä¿å®ˆã™ã‚‹ã ã‘ã§ã‚ˆã„ã®ã«å¯¾ã—ã¦ã€ä»–ã®ã‚ªãƒšãƒ¬ãƒ¼ãƒ†ã‚£ãƒ³ã‚°ã‚·ã‚¹ãƒ†ãƒ ã¯æ–°ã—ã„テクノãƒã‚¸ãƒ¼ãŒç´¹ä»‹ã•ã‚Œã‚‹åº¦ã«ã€æ–°ã—ã„概念を導入ã—ãªã‘ã‚Œã°ãªã‚Šã¾ã›ã‚“ã§ã—ãŸã€‚</para> + + <para>UNIX ファイルシステムã«ãŠã‘るファイルã®ç¨®é¡žã«ã¯ã€å››ã¤ã®é‡è¦ãªã‚‚ã®ãŒã‚ã‚Šã¾ã™ã€‚</para> + + <sect4 id="file-types-ordinary-files"> + <title>普通ã®ãƒ•ã‚¡ã‚¤ãƒ«</title> + + <para>普通ã®ãƒ•ã‚¡ã‚¤ãƒ«ã¯æ–‡å—データをå«ã‚“ã§ã„ãŸã‚Šã€ãƒ—ãƒã‚°ãƒ©ãƒ ã¾ãŸã¯ä»–ã®ãƒ‡ãƒ¼ã‚¿ã§ã‚ã£ãŸã‚Šã—ã¾ã™ã€‚ã“ã“ã«ã¯ç”»åƒãƒ•ã‚¡ã‚¤ãƒ«ã€ã‚ªãƒ¼ãƒ‡ã‚£ã‚ªãƒ•ã‚¡ã‚¤ãƒ«ã€ã‚ªãƒ•ã‚£ã‚¹æ–‡æ›¸ãŠã‚ˆã³å‹•ç”»ãƒ•ã‚¡ã‚¤ãƒ«ã‚‚入りã¾ã™ã€‚<emphasis>ファイル</emphasis>ã¨ã„ã†ç”¨èªžãŒã“れら普通ã®ãƒ•ã‚¡ã‚¤ãƒ«ã‚’指ã™ã®ã«ã‚ˆã使用ã•ã‚Œã¾ã™ã€‚</para> + </sect4> + + <sect4 id="file-types-folder-files"> + <title>フォルダファイル</title> + + <para>UNIX ファイルシステムã§ã¯ãƒ•ã‚©ãƒ«ãƒ€ã‚‚ファイルã§ã™ã€‚æ£ç¢ºã«è¨€ãˆã°ãƒ•ã‚©ãƒ«ãƒ€ã¯ç‰¹æ®Šãƒ•ã‚¡ã‚¤ãƒ«ã«ãªã‚Šã¾ã™ã€ã“ã®ãƒ•ã‚©ãƒ«ãƒ€å†…ã«ã‚ã‚‹å…¨ã¦ã®ãƒ•ã‚¡ã‚¤ãƒ«ã‚’å‚ç…§ã™ã‚‹ãŸã‚ã®ãƒ•ã‚¡ã‚¤ãƒ«åã®ãƒžãƒƒãƒ—ãŒå«ã¾ã‚Œã¦ã„ã¾ã™ã€‚</para> + </sect4> + + <sect4 id="file-types-symbolic-link-files"> + <title>シンボリックリンク・ファイル</title> + + <para>シンボリックリンク (よã<emphasis>リンク</emphasis>ã¨å‘¼ã°ã‚Œã¾ã™) ã¯ãƒ•ã‚¡ã‚¤ãƒ«ã‚·ã‚¹ãƒ†ãƒ ã§ã€ä»–ã®ãƒ•ã‚¡ã‚¤ãƒ«ã¸ã®ãƒ‘スをå«ã‚€ç‰¹æ®Šãƒ•ã‚¡ã‚¤ãƒ«ã§ã™ã€‚従ã£ã¦ã‚·ãƒ³ãƒœãƒªãƒƒã‚¯ãƒ•ã‚¡ã‚¤ãƒ«è‡ªèº«ã¯ç‰¹ã«æ„味ã®ã‚ã‚‹æƒ…å ±ã‚’æŒã¡ã¾ã›ã‚“ã€å˜ã«ä»–ã®ãƒ•ã‚¡ã‚¤ãƒ«ã‚’å‚ç…§ã™ã‚‹ã ã‘ã§ã™ã€‚</para> + </sect4> + + <sect4 id="file-types-device-files"> + <title>デãƒã‚¤ã‚¹ãƒ•ã‚¡ã‚¤ãƒ«</title> + + <para>始ã‚ã®æ–¹ã§è¿°ã¹ãŸã‚ˆã†ã« (殆んã©ã®) デãƒã‚¤ã‚¹ã‚‚ファイルシステム経由ã§ã‚¢ã‚¯ã‚»ã‚¹ã•ã‚Œã¾ã™ã€‚ã“れら特殊デãƒã‚¤ã‚¹ãƒ•ã‚¡ã‚¤ãƒ«ã¯é€šå¸¸ <filename role="directory">/dev</filename> フォルダã«ã‚ã‚Šã¾ã™ã€‚例ãˆã°ã€ç‰¹æ®Šãƒ•ã‚¡ã‚¤ãƒ« <filename>/dev/hda</filename> 㯠Linux 上ã§ã®ä¸€ç•ªç›®ã® IDE ディスクを表ã—ã¾ã™ã€‚</para> + </sect4> + </sect3> + </sect2> + </sect1> + + + <sect1 id="faq"> + <title>よãèžã‹ã‚Œã‚‹è³ªå•</title> + + <para>ã“ã®ç« ã§ã¯ @PACKAGE_NAME@ を使用ã™ã‚‹ã«ã‚ãŸã£ã¦ã€ã‹ãªã‚Šã®é »åº¦ã§å°‹ãられる質å•ã«å›žç”ã—ã¾ã™ã€‚ã“ã®ãƒšãƒ¼ã‚¸ã«ãªã„質å•ãŒã‚ã‚‹ã®ã§ã—ãŸã‚‰ã€<ulink type="http" url="http://bugzilla.xfce.org/enter_bug.cgi?product=Thunar&format=guided">è¦æœ›</ulink>を出ã—ã¦ä¸‹ã•ã‚‹ã‚ˆã†ãŠé¡˜ã„ã—ã¾ã™ã€‚</para> + + <sect3 id="faq-executables"> + <title>実行å¯èƒ½ã«ãªã£ã¦ã„るファイルを実行ã—ãªã„ã®ã¯ä½•æ•…ã§ã™ã‹ï¼Ÿ</title> + + <para>ã‚»ã‚ュリティ上ã®ç†ç”±ã‹ã‚‰ã€Thunar ã¯ç¨®é¡žãŒ <literal>application/x-desktop</literal>, <literal>application/x-executable</literal> ãŠã‚ˆã³ <literal>application/x-shellscript</literal> ã®ãƒ•ã‚¡ã‚¤ãƒ«ã®ã¿ã‚’実行ã—ã¾ã™ã€‚デスクトップファイルã«å¯¾ã—ã¦ã¯ã€ç¨®é¡žãŒ <literal>Application</literal> ã‹ã¤é©æ£ãª <literal>Exec</literal> è¡ŒãŒæŒ‡å®šã•ã‚Œã¦ã„ã‚‹ã‹ã€ã‚ã‚‹ã„ã¯ç¨®é¡žãŒ <literal>Link</literal> ã‹ã¤é©æ£ãª <literal>URL</literal> ãŒæŒ‡å®šã•ã‚Œã¦ã„ã‚‹å ´åˆã«é™ã£ã¦å®Ÿè¡Œæ©Ÿèƒ½ãŒæœ‰åŠ¹ã«ãªã‚Šã¾ã™ã€‚ãã®ä»–ã«å¯¾ã—ã¦ã¯ã€å½“該ファイルãŒç¾åœ¨ã®åˆ©ç”¨è€…ã«ã¨ã£ã¦å®Ÿè¡Œå¯èƒ½ãªã‚ˆã†ã«ãƒžãƒ¼ã‚¯ã•ã‚Œã¦ã„ã‚‹å ´åˆã«åˆ©ç”¨ã§ãã¾ã™ã€‚</para> + + <para><literal>application/x-executable</literal> ãŠã‚ˆã³ <literal>application/x-shellscript</literal> ã«é–¢ã—ã¦ã¯æ¬¡ã®ã“ã¨ã‚’覚ãˆã¦ãŠã„ã¦ä¸‹ã•ã„ã€ã“ã®ç¨®é¡žã®ãƒ•ã‚¡ã‚¤ãƒ«ã¯å®Ÿéš›ã«ã¯ã“ã®ç¨®é¡žã«æ£ç¢ºã«ä¸€è‡´ã™ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã›ã‚“ã€ã—ã‹ã—ã€ãƒã‚§ãƒƒã‚¯ã•ã‚ŒãŸç¨®é¡žã«ä¸Šè¨˜äºŒã¤ã®ç¨®é¡žã«è©²å½“ã™ã‚‹è¦ªãŒã‚ã‚‹ãªã‚‰ã€ã‚ã‚‹ã„㯠MIME タイプãŒä¸Šã«ã‚ã‚‹ã‚‚ã®ã®å†…ã®ä¸€ã¤ã¸ã®åˆ¥åãªã‚‰ã°ã€ãã‚Œã§äº‹è¶³ã‚Šã¾ã™ã€‚</para> + </sect3> + + <sect3 id="faq-metadata"> + <title>ファイルã«é–¢é€£ä»˜ã‘られã¦ã„るメタデータã¯ä½•å‡¦ã«ä¿å˜ã•ã‚Œã¦ã„ã¾ã™ã‹ï¼Ÿ</title> + + <para>Thunar ã¯ãƒ•ã‚¡ã‚¤ãƒ«ã‚„フォルダã«æ§˜ã€…ãªè¨å®šäº‹é …を関連付ã‘ã¾ã™ã€‚ã“れらã¯ãƒ¡ã‚¿ãƒ‡ãƒ¼ã‚¿ã¨å‘¼ã°ã‚Œã€å…¨ãƒ•ã‚¡ã‚¤ãƒ«ã®ãƒ¡ã‚¿ãƒ‡ãƒ¼ã‚¿ã¯ (メタファイルã¨å‘¼ã°ã‚Œã‚‹) tdb データベース・ファイルã«ä¿ç®¡ã•ã‚Œã¾ã™ã€‚ã“ã®ãƒ‡ãƒ¼ã‚¿ãƒ™ãƒ¼ã‚¹ãƒ»ãƒ•ã‚¡ã‚¤ãƒ«ã¯ <filename>$XDG_CACHE_HOME/Thunar/metafile.tdb</filename> ã«ä¿å˜ã•ã‚Œã¦ã„ã¦ã€<command>tdbtool</command> を使ã†ã“ã¨ã§å¤‰æ›´ã§ãã¾ã™ã€‚ã“ã®ãƒ„ールã¯é…布ã•ã‚Œã‚‹ Thunar パッケージã®ä¸€éƒ¨ã¨ã—ã¦ã€ã‚µãƒ–ディレクトリ <filename role="directory">tdb/</filename> ã«ã‚ã‚Šã¾ã™ã€‚</para> + </sect3> + + <sect3 id="faq-thunarrc"> + <title>Thunar ã®ç’°å¢ƒè¨å®šãŒä¿å˜ã•ã‚Œã¦ã„ã‚‹ã®ã¯ä½•å‡¦ã§ã™ã‹ï¼Ÿ</title> + + <para>Thunar 㯠<filename>.ini</filename> ファイルã«åˆ©ç”¨è€…ãŒå¤‰æ›´å¯èƒ½ãªç’°å¢ƒè¨å®š (ãŠã‚ˆã³éš ã—è¨å®š) ã‚’ä¿ç®¡ã—ã¾ã™ã€‚ã“ã®ãƒ•ã‚¡ã‚¤ãƒ«ã¯ <filename>$XDG_CONFIG_HOME/Thunar/thunarrc</filename> ã«ã‚ã‚Šã€ãƒ†ã‚ストエディターを使ã£ã¦è‰²ã€…ãªè¨å®šã‚’実験ã—ã¦ã¿ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚å„環境è¨å®šã®æ¦‚è¦ã¯ <filename>docs/README.thunarrc</filename> ã«ã‚ã‚Šã¾ã™ã€‚</para> + </sect3> + + <sect3 id="faq-mouse-gestures"> + <title>Thunar ã§ãƒžã‚¦ã‚¹ã‚¸ã‚§ã‚¹ãƒãƒ£ãƒ¼ã‚’使ã†ã«ã¯ï¼Ÿ</title> + + <para>ç¾åœ¨ã®ã¨ã“ã‚ã€Thunar ã¯ã‚¢ã‚¤ã‚³ãƒ³è¡¨ç¤ºã§ã€ã„ã‚ゆる<emphasis>マウスジェスãƒãƒ£ãƒ¼</emphasis>ã¨å‘¼ã°ã‚Œã‚‹ã‚‚ã®ã‚’最低é™ã‚µãƒãƒ¼ãƒˆã™ã‚‹æ©Ÿèƒ½ãŒå‚™ã‚ã£ã¦ã„ã¾ã™ã€‚マウスãƒã‚¤ãƒ³ã‚¿ãƒ¼ãŒã‚¢ã‚¤ã‚³ãƒ³è¡¨ç¤ºã‚³ãƒ³ãƒãƒ¼ãƒãƒ³ãƒˆã®èƒŒæ™¯ã¨ãªã‚‹å ´æ‰€ (アイコンや文å—ãŒç„¡ã„所ãªã‚‰ã©ã“ã§ã‚‚該当ã—ã¾ã™) ã«ã‚ã‚‹é–“ã¯ã€ãƒžã‚¦ã‚¹ã®ä¸å¤®ãƒœã‚¿ãƒ³ (通常ã¯ãƒžã‚¦ã‚¹ãƒ›ã‚¤ãƒ¼ãƒ«) を押ã—ã£æ”¾ã—ã«ã™ã‚‹ã“ã¨ã§ã€ã“れら<emphasis>マウスジェスãƒãƒ£ãƒ¼</emphasis>ã®æ©Ÿèƒ½ã‚’使ã†ã“ã¨ãŒã§ãã¾ã™ã€‚ã“ã‚Œã§ã‚る決ã¾ã£ãŸå‹•ä½œã‚’実行ã™ã‚‹ãŸã‚ã«ã€ã‚«ãƒ¼ã‚½ãƒ«ã‚’四方ã«ç§»å‹•ã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚以下ã§ã“れらã®å‹•ä½œã‚’説明ã—ã¾ã™ã€‚</para> + + <simplelist> + <member><guilabel>å·¦</guilabel> - å‰ã®ãƒ•ã‚©ãƒ«ãƒ€ã‚’é–‹ãã¾ã™</member> + <member><guilabel>上</guilabel> - 上ä½ã®ãƒ•ã‚©ãƒ«ãƒ€ã‚’é–‹ãã¾ã™</member> + <member><guilabel>å³</guilabel> - 次ã®ãƒ•ã‚©ãƒ«ãƒ€ã‚’é–‹ãã¾ã™</member> + <member><guilabel>下</guilabel> - ç¾åœ¨ã®ãƒ•ã‚©ãƒ«ãƒ€ã‚’リãƒãƒ¼ãƒ‰ã—ã¾ã™</member> + </simplelist> + </sect3> + </sect1> + + + <sect1 id="support"> + <title>サãƒãƒ¼ãƒˆ</title> + + <para>ã“ã®ã‚¢ãƒ—リケーションã‚ã‚‹ã„ã¯èª¬æ˜Žæ›¸ã«é–¢ã™ã‚‹ãƒã‚°ã‚’å ±å‘Šã—ãŸã‚Šä½•ã‹æ案をã™ã‚‹ãªã‚‰ã€<ulink url="http://bugzilla.xfce.org/enter_bug.cgi?product=Thunar&format=guided">http://bugzilla.xfce.org/</ulink> ã«ã‚ã‚‹ãƒã‚°è¿½è·¡ã‚·ã‚¹ãƒ†ãƒ を御利用下ã•ã„。æ„味ã®ã‚ã‚‹ãƒã‚°å ±å‘Šã“ããŒãƒã‚°ã‚’ä¿®æ£ã™ã‚‹ã®ã ã¨ã„ã†äº‹ã‚’忘れãªã„ã§ä¸‹ã•ã„ã€ã§ã¯ã©ã†ã„ã£ãŸã‚‚ã®ãŒè©²å½“ã™ã‚‹ã‹ã¨ã„ã†ã¨ã€äºŒã¤ã®ç‰¹è³ªãŒã‚ã‚Šã¾ã™:</para> + + <itemizedlist> + <listitem> + <para><emphasis role="bold">å†ç¾å¯èƒ½ã§ã‚ã‚‹ã“ã¨ã€‚</emphasis>開発者自身ãŒãƒã‚°ã®å˜åœ¨ã‚’確èªã™ã‚‹ã“ã¨ãŒã§ããªã„å ´åˆã¯ã€ãれを修æ£ã™ã‚‹ã®ã¯ã»ã¼ä¸å¯èƒ½ã«è¿‘ããªã‚Šã¾ã™ã€‚ã©ã‚“ãªç´°ã‹ã„ã“ã¨ã§ã‚‚役立ã¡ã¾ã™ã®ã§ã€è©³ç´°ã‚’ä½™ã•ãšä¼ãˆã¦ä¸‹ã•ã„。</para> + </listitem> + <listitem> + <para><emphasis role="bold">具体的ã§ã‚ã‚‹ã“ã¨ã€‚</emphasis>開発者ãŒå•é¡Œã‚’特定ã®ç®‡æ‰€ã«ã‚ˆã‚Šæ—©ã絞れる程ã€ãã®ä¿®æ£æŽªç½®ã‚’å–ã‚Šã‚„ã™ããªã‚Šã¾ã™ã€‚</para> + </listitem> + </itemizedlist> + + <para>新機能ã®è¿½åŠ ã‚’è¦æœ›ã™ã‚‹å ´åˆã€ä½•æ•…ãã‚ŒãŒã‚¢ãƒ—リケーションã«ã¨ã£ã¦æœ‰æ„義ã ã¨è€ƒãˆã‚‹ã®ã‹æ˜Žã‚‰ã‹ã«ã—ã¦ä¸‹ã•ã‚‹ã‚ˆã†ãŠé¡˜ã„ã—ã¾ã™ã€‚ãã®æ©Ÿèƒ½ã«ã¤ã„ã¦ç´å¾—ã®ã„ãè°è«–ã‚’è¡Œãˆã‚‹ã®ã§ã—ãŸã‚‰ã€è¿½åŠ ã•ã‚Œã‚‹å¯èƒ½æ€§ã¯é«˜ããªã‚Šã¾ã™ã€‚è¦æ±‚ã™ã‚‹æ©Ÿèƒ½ã‚’実装ã—ãŸãƒ‘ッãƒã‚’æä¾›ã—ã¦ä¸‹ã•ã‚‹ãªã‚‰æ›´ã«é«˜ããªã‚Šã¾ã™ãŒã€äº‹å‰ã«ãƒ•ã‚¡ã‚¤ãƒ« <ulink url="http://svn.xfce.org/svn/xfce/terminal/trunk/HACKING">HACKING</ulink> を忘れãšã«èªã‚“ã§ä¸‹ã•ã„。特㫠<emphasis>Coding Style</emphasis> ã¨é¡Œã•ã‚Œã¦ã„る箇所ã«ç›®ã‚’通ã™ã‚ˆã†ã«ã—ã¦ä¸‹ã•ã„。</para> + + <para>ãれ以外ã€åˆ©ç”¨æ–¹æ³•ã‚„ã“ã®ã‚½ãƒ•ãƒˆã‚¦ã‚§ã‚¢ã®ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã«é–¢ã™ã‚‹è³ªå•ãŒã‚ã‚‹ã®ã§ã—ãŸã‚‰ã€<ulink type="http" url="http://foo-projects.org/mailman/listinfo/thunar-dev">thunar-dev メーリングリスト</ulink>ã§è³ªå•ã™ã‚‹ã‹ã€IRC クライアント㧠<emphasis role="bold">irc.freenode.net</emphasis> ã®ãƒãƒ£ãƒ³ãƒãƒ« <emphasis role="bold">#thunar</emphasis> ã«å‚åŠ ã—ã¦æ‰‹åŠ©ã‘を求ã‚ã¦ã¿ã¦ä¸‹ã•ã„。</para> + </sect1> + + <sect1 id="copyright"> + <title>@PACKAGE_NAME@ ã«ã¤ã„ã¦</title> + + <para>@PACKAGE_NAME@ 㯠Benedikt Meurer (<email>benny@xfce.org</email>) ãŒè£½ä½œã—ã¾ã—ãŸã€‚より詳ã—ã„æƒ…å ±ã‚’å¾—ã‚‹ã«ã¯ <ulink url="http://thunar.xfce.org/" type="http">Thunar ã®ã‚¦ã‚§ãƒ–サイト</ulink>を訪れã¦ä¸‹ã•ã„。</para> + + <para>Benedikt Meurer (<email>benny@xfce.org</email>) ãŒã“ã®æ–‡æ›¸ã‚’製作ã—ã¾ã—ãŸã€‚最新版㯠<ulink type="http" url="http://thunar.xfce.org/">Thunar ã®ã‚¦ã‚§ãƒ–サイト</ulink>ã«ã‚ã‚Šã¾ã™ã€‚</para> + + <para>ã“ã®ã‚½ãƒ•ãƒˆã‚¦ã‚§ã‚¢ã¯ãƒ•ãƒªãƒ¼ã‚½ãƒ•ãƒˆã‚¦ã‚§ã‚¢è²¡å›£ãŒå…¬è¡¨ã™ã‚‹ GNU 一般公衆利用許諾契約書ã®æ¡ä»¶ä¸‹ã«é…布ã•ã‚Œã¦ã„ã¾ã™ã€‚第2版ã‚ã‚‹ã„ã¯ã€ã‚ãªãŸãŒé¸ã¶ãれ以é™ã®ç‰ˆã®ã„ãšã‚Œã‹ãŒé©ç”¨ã•ã‚Œã¾ã™ã€‚</para> + + <para>ã“ã®ãƒ—ãƒã‚°ãƒ©ãƒ ã«ã¯ã€GNU 一般公衆利用許諾契約書ã®ã‚³ãƒ”ーãŒé™„属ã™ã‚‹ã¯ãšã§ã™ãŒã€ã‚‚ã—ç„¡ã„ã®ã§ã‚ã‚Œã°ãƒ•ãƒªãƒ¼ã‚½ãƒ•ãƒˆã‚¦ã‚§ã‚¢è²¡å›£ã«é€£çµ¡ã—ã¦ä¸‹ã•ã„。59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.</para> + </sect1> + +</article> +<!-- + vim:set ts=2 sw=2 et ai: +--> diff --git a/docs/manual/ja/images/Makefile.am b/docs/manual/ja/images/Makefile.am new file mode 100644 index 0000000000000000000000000000000000000000..f762cc00b55da8e33f2beb2bb4e3aed2b70a07bd --- /dev/null +++ b/docs/manual/ja/images/Makefile.am @@ -0,0 +1,9 @@ +# $Id$ + +imagesdir = $(datadir)/doc/Thunar/html/ja/images +images_DATA = + +EXTRA_DIST = \ + $(images_DATA) + +# vi:set ts=8 sw=8 noet ai nocindent syntax=automake: diff --git a/po-doc/LINGUAS b/po-doc/LINGUAS new file mode 100644 index 0000000000000000000000000000000000000000..5d607cda53d1608ea9e7c2d3bb9d478e14a3555e --- /dev/null +++ b/po-doc/LINGUAS @@ -0,0 +1,2 @@ +# Set of languages supported +ja diff --git a/po-doc/Makefile.am b/po-doc/Makefile.am new file mode 100644 index 0000000000000000000000000000000000000000..3af8e5f84b092e0c342efed276a8ba74d9f54eb9 --- /dev/null +++ b/po-doc/Makefile.am @@ -0,0 +1,94 @@ +## Makefile.am file for the XML documents translation. +## +## Copyright (C) 2006 The Xfce development team. +## +## Written by Daichi Kawahata <daichi@xfce.org>, 2006. +## +## This file is free software; you can redistribute it and/or modify +## it under the terms of the GNU General Public License as published by +## the Free Software Foundation; either version 2, or (at your option) +## any later version. +## +## This file is distributed in the hope that it will be useful, +## but WITHOUT ANY WARRANTY; without even the implied warranty of +## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +## GNU General Public License for more details. +## +## You should have received a copy of the GNU General Public License +## along with this program; if not, write to the Free Software +## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA +## 02111-1307, USA. + +## +## Rules to auto-generate translated XML files +## +## At first, you need to install `xml2po' package maintained by +## GNOME team, too bad it's not a separated package (and depends +## libxml2 >= 2.5.11), to get a workable package, try the following +## steps: +## +## cvs -d:pserver:anonymous@anoncvs.gnome.org:/cvs/gnome login +## (RETURN) +## cvs -d:pserver:anonymous@anoncvs.gnome.org:/cvs/gnome co \ +## gnome-doc-utils/xml2po +## cd gnome-doc-utils/xml2po && ./autogen.sh && make +## +## For developers: Nothing, you need nothing to do basically, +## however it's appreciated if you'll install the package above, +## keep updating POT, PO files when you'll update your documents. +## +## For translators: Just translate your PO file with your favorite +## editor, if you see no PO file for your language, then type +## `msginit' in this directory and enter your contact address. +## +## For maintainers: You're supposed to watch every changes made +## by the developers, translators; if POT, PO files are out-of- +## dated or generated XML files are committed properly. +## +## A problem could be the matter is, it takes a time to update +## entire files due to its size and processing method in general +## (comparing with the gettext PO files), also with the same +## reason, it costs a certain disk spaces against the repository. +## + +srcdir = @srcdir@ +top_srcdir = @top_srcdir@ +docdir = $(top_srcdir)/docs/manual + +if ENABLE_XML2PO +all-local: $(PACKAGE).pot + +$(PACKAGE).pot: $(docdir)/C/$(PACKAGE).xml.in + $(XML2PO) -o $(PACKAGE).pot $(docdir)/C/$(PACKAGE).xml.in + +update-po: Makefile $(PACKAGE).pot + @echo "*** Updating PO ***" + langs=`sed -e '/^#/d' $(srcdir)/LINGUAS`; \ + for lang in $$langs; do \ + $(XML2PO) -u $$lang.po $(docdir)/C/$(PACKAGE).xml.in; \ + done + +update-xml: Makefile $(PACKAGE).pot + @echo "*** Updating XML ***" + langs=`sed -e '/^#/d' $(srcdir)/LINGUAS`; \ + for lang in $$langs; do \ + if test -n $(docdir)/$$lang; then \ + mkdir -p $(docdir)/$$lang; \ + fi; \ + $(XML2PO) -p $$lang.po $(docdir)/C/$(PACKAGE).xml.in > $(docdir)/$$lang/$(PACKAGE).xml.in; \ + done + +else +all-local: +endif + +if ENABLE_XML2PO +dist-check-xml2po: all +else +dist-check-xml2po: + @echo "*** xml2po must be installed and enabled in order to make dist" + @false +endif + +DISTCLEANFILES = $(PACKAGE).pot + diff --git a/po-doc/Thunar.pot b/po-doc/Thunar.pot new file mode 100644 index 0000000000000000000000000000000000000000..f5908bf085c675add79c4e083b13426e45c329dd --- /dev/null +++ b/po-doc/Thunar.pot @@ -0,0 +1,292 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2006-03-04 13:45JST\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../docs/manual/C/Thunar.xml.in:12(title) +msgid "Thunar File Manager" +msgstr "" + +#: ../docs/manual/C/Thunar.xml.in:17(year) +msgid "2004" +msgstr "" + +#: ../docs/manual/C/Thunar.xml.in:18(year) +msgid "2005" +msgstr "" + +#: ../docs/manual/C/Thunar.xml.in:19(year) +msgid "2006" +msgstr "" + +#: ../docs/manual/C/Thunar.xml.in:20(holder) +msgid "Benedikt Meurer" +msgstr "" + +#: ../docs/manual/C/Thunar.xml.in:24(para) +msgid "Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.1 or any later version published by the Free Software Foundation; with no Invariant Sections, with no Front-Cover Texts, and with no Back-Cover Texts. The complete license text is available from the <ulink type=\"http\" url=\"http://www.gnu.org/\">Free Software Foundation</ulink>." +msgstr "" + +#: ../docs/manual/C/Thunar.xml.in:36(firstname) +msgid "Benedikt" +msgstr "" + +#: ../docs/manual/C/Thunar.xml.in:37(surname) +msgid "Meurer" +msgstr "" + +#: ../docs/manual/C/Thunar.xml.in:39(email) +msgid "benny@xfce.org" +msgstr "" + +#: ../docs/manual/C/Thunar.xml.in:40(orgname) +msgid "os-cillation" +msgstr "" + +#: ../docs/manual/C/Thunar.xml.in:41(orgdiv) +msgid "System development" +msgstr "" + +#: ../docs/manual/C/Thunar.xml.in:42(jobtitle) +msgid "Software developer" +msgstr "" + +#: ../docs/manual/C/Thunar.xml.in:47(releaseinfo) +msgid "This manual describes version @PACKAGE_VERSION@ of @PACKAGE_NAME@." +msgstr "" + +#: ../docs/manual/C/Thunar.xml.in:53(title) +msgid "Introduction to @PACKAGE_NAME@" +msgstr "" + +#: ../docs/manual/C/Thunar.xml.in:55(para) +msgid "Thunar is a new modern file manager for the Xfce Desktop Environment. Thunar has been designed from the ground up to be fast and easy-to-use. Its user interface is clean and intuitive, and does not include any confusing or useless options by default. Thunar is fast and responsive with a good start up time and folder load time." +msgstr "" + +#: ../docs/manual/C/Thunar.xml.in:61(para) +msgid "The Thunar file manager thereby provides an integrated access point to your files and applications. You can use the file manager to do the following:" +msgstr "" + +#: ../docs/manual/C/Thunar.xml.in:67(listitem) +msgid "Create folders and documents." +msgstr "" + +#: ../docs/manual/C/Thunar.xml.in:68(listitem) +msgid "Display your files and folders." +msgstr "" + +#: ../docs/manual/C/Thunar.xml.in:69(listitem) +msgid "Manage your files and folders." +msgstr "" + +#: ../docs/manual/C/Thunar.xml.in:70(listitem) +msgid "Run and manage custom actions." +msgstr "" + +#: ../docs/manual/C/Thunar.xml.in:71(listitem) +msgid "Access Removable Media." +msgstr "" + +#: ../docs/manual/C/Thunar.xml.in:77(title) +msgid "Advanced Topics" +msgstr "" + +#: ../docs/manual/C/Thunar.xml.in:80(title) +msgid "The UNIX File System" +msgstr "" + +#: ../docs/manual/C/Thunar.xml.in:82(para) +msgid "While the Thunar file manager does a good job at abstracting the details of the underlying file system, so the user does not need to care about them, it is sometimes useful to understand the basic concepts to get the whole picture. This section tries to give a brief introduction to the concepts of the UNIX file system, which is used today by all incarnations of UNIX, including Linux." +msgstr "" + +#: ../docs/manual/C/Thunar.xml.in:90(title) +msgid "Folders and Paths" +msgstr "" + +#: ../docs/manual/C/Thunar.xml.in:92(para) +msgid "In a UNIX file system all folders are arranged in a simple inverted tree structure descending and branching down from a single top level folder, which is called the <emphasis>root directory</emphasis> (the term <emphasis>directory</emphasis> is often used instead of <emphasis>folder</emphasis>) and displayed as <guilabel>File System</guilabel> in Thunar. This means that you can get from any folder to any other by going up the tree until you reach a common point, then down the tree through the appropriate subfolders until you reach your target." +msgstr "" + +#: ../docs/manual/C/Thunar.xml.in:101(para) +msgid "The position of any file or folder in the tree can be described by its <emphasis>path</emphasis>. The path is the list of folders you would have to descend through to get to the target folder or file, starting from the top level folder. For example <filename role=\"directory\">/home/luke</filename> is the subfolder <filename role=\"directory\">luke</filename> of the subfolder <filename role=\"directory\">home</filename> of the top level folder, and <filename>/home/luke/myfile.txt</filename> is the file <filename>myfile.txt</filename> in that subfolder. The leading <filename role=\"directory\">/</filename> in these paths represents the top level folder." +msgstr "" + +#: ../docs/manual/C/Thunar.xml.in:110(para) +msgid "Every user has their own folder to hold their personal files and settings. This folder is called the <emphasis>home directory</emphasis> and is displayed in Thunar as special icon with the users login name. The folder is similar to the <guilabel>My Files</guilabel> folder known from Windows. The <emphasis>home directories</emphasis> of the various users in a system are usually located below the <filename role=\"directory\">/home</filename> folder. For example <filename role=\"directory\">/home/luke</filename> would be the home directory of the user with the login name <filename role=\"directory\">luke</filename>, while <filename role=\"directory\">/home/jane</filename> would be the home directory for the user with the login name <filename role=\"directory\">jane</filename>." +msgstr "" + +#: ../docs/manual/C/Thunar.xml.in:122(title) +msgid "File Types" +msgstr "" + +#: ../docs/manual/C/Thunar.xml.in:124(para) +msgid "You may have already heard that everything is a file in UNIX. This is true for most objects present in UNIX systems today. In fact even devices are represented as a special files. While this may not make sense at first sight, it is one of the strengths of UNIX and its derivates, and has helped it to maintain a simple core over the years where other operating systems had to introduce new concepts for every new technology." +msgstr "" + +#: ../docs/manual/C/Thunar.xml.in:131(para) +msgid "These are the four most important types of files in the UNIX file system." +msgstr "" + +#: ../docs/manual/C/Thunar.xml.in:136(title) +msgid "Ordinary Files" +msgstr "" + +#: ../docs/manual/C/Thunar.xml.in:138(para) +msgid "An ordinary file may contain text, a program or other data. This includes image files, audio files, office documents and video files. The term <emphasis>file</emphasis> is often used to refer to an ordinary file." +msgstr "" + +#: ../docs/manual/C/Thunar.xml.in:145(title) +msgid "Folder Files" +msgstr "" + +#: ../docs/manual/C/Thunar.xml.in:147(para) +msgid "Folders are also files in the UNIX file system. To be exact a folder is a special file, which contains a mapping of file names to file references for every file contained within this folder." +msgstr "" + +#: ../docs/manual/C/Thunar.xml.in:154(title) +msgid "Symbolic Link Files" +msgstr "" + +#: ../docs/manual/C/Thunar.xml.in:156(para) +msgid "A Symbolic link (often called a <emphasis>symlink</emphasis>) is a special file that contains a path to another file in the file system. Symbolic link files therefore do not contain any useful information themselves, but just refer to other files." +msgstr "" + +#: ../docs/manual/C/Thunar.xml.in:164(title) +msgid "Device Files" +msgstr "" + +#: ../docs/manual/C/Thunar.xml.in:166(para) +msgid "As mentioned earlier (most) devices are also accessed through the file system. These special device files are usually located in the <filename role=\"directory\">/dev</filename> folder. For example the special file <filename>/dev/hda</filename> represents the first IDE disk on Linux." +msgstr "" + +#: ../docs/manual/C/Thunar.xml.in:178(title) +msgid "Frequently Asked Questions" +msgstr "" + +#: ../docs/manual/C/Thunar.xml.in:180(para) +msgid "The intent of this section is to collect the quite numerous frequently asked questions that relate to working with Thunar. If you know of a question that is missing from this page, please <ulink type=\"http\" url=\"http://bugzilla.xfce.org/enter_bug.cgi?product=Thunar&format=guided\">file a request</ulink>." +msgstr "" + +#: ../docs/manual/C/Thunar.xml.in:189(title) +msgid "Why doesn't Thunar execute files marked as executable?" +msgstr "" + +#: ../docs/manual/C/Thunar.xml.in:191(para) +msgid "For security reasons Thunar only executes files of type <literal>application/x-desktop</literal>, <literal>application/x-executable</literal> and <literal>application/x-shellscript</literal>. For desktop files the execution feature will only be enabled if the desktop file is of type <literal>Application</literal> and a valid <literal>Exec</literal> line is given or of type <literal>Link</literal> and a valid <literal>URL</literal> is given. For the other types the feature is available if the file is marked executable for the current user." +msgstr "" + +#: ../docs/manual/C/Thunar.xml.in:200(para) +msgid "Also note that for <literal>application/x-executable</literal> and <literal>application/x-shellscript</literal>, the types of the file don't really need to match these types exactly, but it is suffice if the detected type has a parent that matches one of the two types listed above, or if the MIME-type is an alias for one of the above." +msgstr "" + +#: ../docs/manual/C/Thunar.xml.in:209(title) +msgid "Where does Thunar store the metadata associated with files?" +msgstr "" + +#: ../docs/manual/C/Thunar.xml.in:211(para) +msgid "Thunar associates various settings with files/folders, which we call metadata. This metadata for all files is stored in tdb database file, which is called the metafile. The database file is stored in <filename>$XDG_CACHE_HOME/Thunar/metafile.tdb</filename> and can be examined using the <command>tdbtool</command>, which is part of the Thunar distribution (located in the <filename role=\"directory\">tdb/</filename> subdirectory)." +msgstr "" + +#: ../docs/manual/C/Thunar.xml.in:222(title) +msgid "Where does Thunar store its preferences?" +msgstr "" + +#: ../docs/manual/C/Thunar.xml.in:224(para) +msgid "Thunar stores the user configurable preferences (and hidden settings) in an <filename>.ini</filename> file, which is located at <filename>$XDG_CONFIG_HOME/Thunar/thunarrc</filename> and can be examined using a text editor. See <filename>docs/README.thunarrc</filename> for an overview of the various preferences." +msgstr "" + +#: ../docs/manual/C/Thunar.xml.in:234(title) +msgid "How to use mouse gestures in Thunar?" +msgstr "" + +#: ../docs/manual/C/Thunar.xml.in:236(para) +msgid "Thunar currently features basic support for so called <emphasis>mouse gestures</emphasis> in its icon view. You can use these <emphasis>mouse gestures</emphasis> by holding down the middle mouse button (usually the mouse wheel) while the mouse pointer is on the background area of the icon view component (any area that is not covered by an icon or a text). Now you can move the cursor into four directions to perform certain actions, which are described below." +msgstr "" + +#: ../docs/manual/C/Thunar.xml.in:246(guilabel) +msgid "Left" +msgstr "" + +#: ../docs/manual/C/Thunar.xml.in:246(member) +msgid "<placeholder-1/> - opens the previous visited folder" +msgstr "" + +#: ../docs/manual/C/Thunar.xml.in:247(guilabel) +msgid "Up" +msgstr "" + +#: ../docs/manual/C/Thunar.xml.in:247(member) +msgid "<placeholder-1/> - opens the parent folder" +msgstr "" + +#: ../docs/manual/C/Thunar.xml.in:248(guilabel) +msgid "Right" +msgstr "" + +#: ../docs/manual/C/Thunar.xml.in:248(member) +msgid "<placeholder-1/> - opens the next visited folder" +msgstr "" + +#: ../docs/manual/C/Thunar.xml.in:249(guilabel) +msgid "Down" +msgstr "" + +#: ../docs/manual/C/Thunar.xml.in:249(member) +msgid "<placeholder-1/> - reloads the current folder" +msgstr "" + +#: ../docs/manual/C/Thunar.xml.in:256(title) +msgid "Support" +msgstr "" + +#: ../docs/manual/C/Thunar.xml.in:258(para) +msgid "To report a bug or to make a suggestion regarding this application or this manual, use the bug tracking system at <ulink url=\"http://bugzilla.xfce.org/enter_bug.cgi?product=Thunar&format=guided\">http://bugzilla.xfce.org/</ulink>. Remember that useful bug reports are ones that get bugs fixed, so a useful bug report has two qualities:" +msgstr "" + +#: ../docs/manual/C/Thunar.xml.in:266(para) +msgid "<emphasis role=\"bold\">Reproducible.</emphasis> If the developer cannot see the bug himself to prove that it exists, he will most probably not be able to fix it at all. Every detail you can provide helps." +msgstr "" + +#: ../docs/manual/C/Thunar.xml.in:273(para) +msgid "<emphasis role=\"bold\">Specific.</emphasis> The quicker the developer can isolate the problem to a specific area, the more likely he will expediently fix it." +msgstr "" + +#: ../docs/manual/C/Thunar.xml.in:280(para) +msgid "In case you want to request a new feature, please make clear why you consider it a worth addition for the application. It is more likely that a new feature gets added if you provide good arguments for the feature. It will increase the chance of addition even more if you provide a patch that implements the requested feature, but make sure that you read the file <ulink type=\"http\" url=\"http://svn.xfce.org/svn/xfce/terminal/trunk/HACKING\">HACKING</ulink> - especially the section labeled <emphasis>Coding Style</emphasis> - before you start hacking up the source." +msgstr "" + +#: ../docs/manual/C/Thunar.xml.in:290(para) +msgid "Else, if you have questions about the use or installation of this software, please ask on the <ulink type=\"http\" url=\"http://foo-projects.org/mailman/listinfo/thunar-dev\">thunar-dev mailing list</ulink> or point your IRC client to <emphasis role=\"bold\">irc.freenode.net</emphasis>, join the channel <emphasis role=\"bold\">#thunar</emphasis> and ask for help." +msgstr "" + +#: ../docs/manual/C/Thunar.xml.in:299(title) +msgid "About @PACKAGE_NAME@" +msgstr "" + +#: ../docs/manual/C/Thunar.xml.in:301(para) +msgid "@PACKAGE_NAME@ was written by Benedikt Meurer (<email>benny@xfce.org</email>). Visit the <ulink url=\"http://thunar.xfce.org/\" type=\"http\">Thunar website</ulink> for more information." +msgstr "" + +#: ../docs/manual/C/Thunar.xml.in:306(para) +msgid "This documentation was written by Benedikt Meurer (<email>benny@xfce.org</email>). The latest version of this document is always available from the <ulink type=\"http\" url=\"http://thunar.xfce.org/\">Thunar website</ulink>." +msgstr "" + +#: ../docs/manual/C/Thunar.xml.in:312(para) +msgid "This software is distributed under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version." +msgstr "" + +#: ../docs/manual/C/Thunar.xml.in:318(para) +msgid "You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA." +msgstr "" + +#. Put one translator per line, in the form of NAME <EMAIL>, YEAR1, YEAR2. +#: ../docs/manual/C/Thunar.xml.in:0(None) +msgid "translator-credits" +msgstr "" + diff --git a/po-doc/ja.po b/po-doc/ja.po new file mode 100644 index 0000000000000000000000000000000000000000..577cb50633091496c6a4809a944576b48b83cfc4 --- /dev/null +++ b/po-doc/ja.po @@ -0,0 +1,578 @@ +# Japanese translations for Thunar package. +# Copyright (C) 2004-2006 Benedikt Meurer. +# This file is distributed under the same license as the Thunar package. +# Daichi Kawahata <daichi@xfce.org>, 2006. +# +msgid "" +msgstr "" +"Project-Id-Version: Thunar 0.2.1svn-r20203\n" +"POT-Creation-Date: 2006-03-06 16:33+0100\n" +"PO-Revision-Date: 2006-03-06 00:30+0900\n" +"Last-Translator: Daichi Kawahata <daichi@xfce.org>\n" +"Language-Team: Japanese <xfce-users-jp@ml.fdiary.net>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: ../docs/manual/C/Thunar.xml.in:12 (title) +msgid "Thunar File Manager" +msgstr "Thunar ファイルマãƒãƒ¼ã‚¸ãƒ£ãƒ¼" + +#: ../docs/manual/C/Thunar.xml.in:17 (year) +msgid "2004" +msgstr "2004" + +#: ../docs/manual/C/Thunar.xml.in:18 (year) +msgid "2005" +msgstr "2005" + +#: ../docs/manual/C/Thunar.xml.in:19 (year) +msgid "2006" +msgstr "2006" + +#: ../docs/manual/C/Thunar.xml.in:20 (holder) +msgid "Benedikt Meurer" +msgstr "Benedikt Meurer" + +#: ../docs/manual/C/Thunar.xml.in:24 (para) +msgid "" +"Permission is granted to copy, distribute and/or modify this document under " +"the terms of the GNU Free Documentation License, Version 1.1 or any later " +"version published by the Free Software Foundation; with no Invariant " +"Sections, with no Front-Cover Texts, and with no Back-Cover Texts. The " +"complete license text is available from the <ulink type=\"http\" url=" +"\"http://www.gnu.org/\">Free Software Foundation</ulink>." +msgstr "" +"フリーソフトウェア財団ãŒå…¬è¡¨ã™ã‚‹ GNU フリー文書利用許諾契約書ã®ç¬¬1.1版ã€ã‚ã‚‹" +"ã„ã¯ãれ以é™ã®ã„ãšã‚Œã‹ã®ç‰ˆã®æ¡ä»¶ä¸‹ã«ãŠã„ã¦ã€ã“ã®æ–‡æ›¸ã®è¤‡è£½ã€é…布ãŠã‚ˆã³/ã¾ãŸã¯" +"変更ãŒè¨±å¯ã•ã‚Œã¾ã™ã€‚変更出æ¥ãªã„箇所ã€è¡¨ç´™æ–‡ãŠã‚ˆã³è£è¡¨ç´™æ–‡ãŒã‚ã£ã¦ã¯ã„ã‘ã¾ã›" +"ん。ã“ã®åˆ©ç”¨è¨±è«¾å¥‘約書ã®å…¨æ–‡ã¯<ulink type=\"http\" url=\"http://www.gnu.org/" +"\">フリーソフトウェア財団</ulink>ã‹ã‚‰å–å¾—ã™ã‚‹äº‹ãŒã§ãã¾ã™ã€‚" + +#: ../docs/manual/C/Thunar.xml.in:36 (firstname) +msgid "Benedikt" +msgstr "Benedikt" + +#: ../docs/manual/C/Thunar.xml.in:37 (surname) +msgid "Meurer" +msgstr "Meurer" + +#: ../docs/manual/C/Thunar.xml.in:39 (email) +msgid "benny@xfce.org" +msgstr "benny@xfce.org" + +#: ../docs/manual/C/Thunar.xml.in:40 (orgname) +msgid "os-cillation" +msgstr "os-cillation" + +#: ../docs/manual/C/Thunar.xml.in:41 (orgdiv) +msgid "System development" +msgstr "システム開発" + +#: ../docs/manual/C/Thunar.xml.in:42 (jobtitle) +msgid "Software developer" +msgstr "ソフトウェア開発者" + +#: ../docs/manual/C/Thunar.xml.in:47 (releaseinfo) +msgid "This manual describes version @PACKAGE_VERSION@ of @PACKAGE_NAME@." +msgstr "" +"ã“ã®èª¬æ˜Žæ›¸ã¯ @PACKAGE_NAME@ ã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³ @PACKAGE_VERSION@ ã«ã¤ã„ã¦æ›¸ã‹ã‚Œã¦ã„" +"ã¾ã™ã€‚" + +#: ../docs/manual/C/Thunar.xml.in:53 (title) +msgid "Introduction to @PACKAGE_NAME@" +msgstr "@PACKAGE_NAME@ ã®ç´¹ä»‹" + +#: ../docs/manual/C/Thunar.xml.in:55 (para) +msgid "" +"Thunar is a new modern file manager for the Xfce Desktop Environment. Thunar " +"has been designed from the ground up to be fast and easy-to-use. Its user " +"interface is clean and intuitive, and does not include any confusing or " +"useless options by default. Thunar is fast and responsive with a good start " +"up time and folder load time." +msgstr "" +"Thunar 㯠Xfce デスクトップ環境ã®ãŸã‚ã«ã€è»½å¿«ã‹ã¤æ‰‹è»½ã«ä½¿ãˆã‚‹ã‚ˆã†ã‚¼ãƒã‹ã‚‰è¨è¨ˆ" +"ã•ã‚Œã¦ã„ã‚‹ã€ä»Šé¢¨ã®æ–°ã—ã„ファイルマãƒãƒ¼ã‚¸ãƒ£ãƒ¼ã§ã™ã€‚ãã®ãƒ¦ãƒ¼ã‚¶ãƒ¼ã‚¤ãƒ³ã‚¿ãƒ¼ãƒ•ã‚§ã‚¤" +"スã¯ç°¡æ½”ã‹ã¤ç›´è¦³çš„ã§ã€ç´›ã‚‰ã‚ã—ã„ã€ã‚ã‚‹ã„ã¯ç„¡é§„ãªã‚ªãƒ—ションã¯æ¨™æº–ã§ã¯ä¸€åˆ‡çµ„ã¿" +"è¾¼ã¾ã‚Œã¦ã„ã¾ã›ã‚“ã€‚ç´ æ—©ãèµ·å‹•ã—ã¦ãƒ•ã‚©ãƒ«ãƒ€ã®èªã¿è¾¼ã¿ã«å¯¾ã™ã‚‹æ„Ÿåº¦ã‚‚上々ã§ã™ã€‚" + +#: ../docs/manual/C/Thunar.xml.in:61 (para) +msgid "" +"The Thunar file manager thereby provides an integrated access point to your " +"files and applications. You can use the file manager to do the following:" +msgstr "" +"ãã®çµæžœã¨ã—ã¦ã§ã¯ã‚ã‚Šã¾ã™ãŒã€ãƒ•ã‚¡ã‚¤ãƒ«ãƒžãƒãƒ¼ã‚¸ãƒ£ãƒ¼ Thunar ã¯ã‚ãªãŸã®ãƒ•ã‚¡ã‚¤ãƒ«" +"やアプリケーションã®ãŸã‚ã®çµ±åˆã•ã‚ŒãŸä¸€ã¤ã®ã‚¢ã‚¯ã‚»ã‚¹æ‹ 点をæä¾›ã—ã¾ã™ã€‚以下ã®äº‹" +"柄ãŒè¡Œã†ãŸã‚ã«ã“ã®ãƒ•ã‚¡ã‚¤ãƒ«ãƒžãƒãƒ¼ã‚¸ãƒ£ãƒ¼ã‚’利用ã™ã‚‹ã“ã¨ãŒã§ãã¾ã™:" + +#: ../docs/manual/C/Thunar.xml.in:67 (listitem) +msgid "Create folders and documents." +msgstr "フォルダãŠã‚ˆã³æ–‡æ›¸ã®ä½œæˆã€‚" + +#: ../docs/manual/C/Thunar.xml.in:68 (listitem) +msgid "Display your files and folders." +msgstr "ファイルãŠã‚ˆã³ãƒ•ã‚©ãƒ«ãƒ€ã®è¡¨ç¤ºã€‚" + +#: ../docs/manual/C/Thunar.xml.in:69 (listitem) +msgid "Manage your files and folders." +msgstr "ファイルãŠã‚ˆã³ãƒ•ã‚©ãƒ«ãƒ€ã®ç®¡ç†ã€‚" + +#: ../docs/manual/C/Thunar.xml.in:70 (listitem) +msgid "Run and manage custom actions." +msgstr "個別ã«è¨å®šã—ãŸã‚¢ã‚¯ã‚·ãƒ§ãƒ³ã®å®Ÿè¡ŒãŠã‚ˆã³ç®¡ç†ã€‚" + +#: ../docs/manual/C/Thunar.xml.in:71 (listitem) +msgid "Access Removable Media." +msgstr "æŒã¡é‹ã³å¯èƒ½ãªãƒ¡ãƒ‡ã‚£ã‚¢ã¸ã®ã‚¢ã‚¯ã‚»ã‚¹ã€‚" + +#: ../docs/manual/C/Thunar.xml.in:77 (title) +msgid "Advanced Topics" +msgstr "高度ãªè©±é¡Œ" + +#: ../docs/manual/C/Thunar.xml.in:80 (title) +msgid "The UNIX File System" +msgstr "UNIX ファイルシステム" + +#: ../docs/manual/C/Thunar.xml.in:82 (para) +msgid "" +"While the Thunar file manager does a good job at abstracting the details of " +"the underlying file system, so the user does not need to care about them, it " +"is sometimes useful to understand the basic concepts to get the whole " +"picture. This section tries to give a brief introduction to the concepts of " +"the UNIX file system, which is used today by all incarnations of UNIX, " +"including Linux." +msgstr "" +"ファイルマãƒãƒ¼ã‚¸ãƒ£ãƒ¼ Thunar ã¯ã€åŸºæœ¬çš„ãªãƒ•ã‚¡ã‚¤ãƒ«ã‚·ã‚¹ãƒ†ãƒ ã®æŠ½è±¡çš„ãªäº›äº‹ã‚’何ã®" +"å•é¡Œã‚‚ç„¡ãã“ãªã—ã¾ã™ã®ã§ã€åˆ©ç”¨è€…ã¯ã“れらを気ã«ã™ã‚‹å¿…è¦ã¯ã‚ã‚Šã¾ã›ã‚“。ã¨ã¯è¨€ã„" +"ãªãŒã‚‰ã€å…¨ä½“åƒã‚’掴むãŸã‚ã«åŸºç¤Žæ¦‚念をç†è§£ã—ã¦ãŠãã¨ã€å¾Œã€…役立ã¤å ´åˆãŒã‚ã‚Šã¾" +"ã™ã€‚ã“ã®ç« ã§ã¯ã€UNIX ファイルシステムã®æ¦‚念を手çŸã«ç´¹ä»‹ã—ã¾ã™ã€‚ã“ã‚Œã¯ã€ä»Šæ—¥ã«" +"ãŠã‘ã‚‹ Linux ã‚’å«ã‚€ã‚らゆる UNIX ã®ç”Ÿã¾ã‚Œå¤‰ã‚ã‚Šã§ç”¨ã„られã¦ã„ã¾ã™ã€‚" + +#: ../docs/manual/C/Thunar.xml.in:90 (title) +msgid "Folders and Paths" +msgstr "フォルダã¨ãƒ‘ス" + +#: ../docs/manual/C/Thunar.xml.in:92 (para) +msgid "" +"In a UNIX file system all folders are arranged in a simple inverted tree " +"structure descending and branching down from a single top level folder, " +"which is called the <emphasis>root directory</emphasis> (the term " +"<emphasis>directory</emphasis> is often used instead of <emphasis>folder</" +"emphasis>) and displayed as <guilabel>File System</guilabel> in Thunar. This " +"means that you can get from any folder to any other by going up the tree " +"until you reach a common point, then down the tree through the appropriate " +"subfolders until you reach your target." +msgstr "" +"UNIX ファイルシステムã§ã¯ã€å…¨ã¦ã®ãƒ•ã‚¡ãƒ«ãƒ€ã¯ä¸€ã¤ã®æœ€ä¸Šä½ãƒ•ã‚©ãƒ«ãƒ€ã‹ã‚‰ä¸‹ã¸å‘ã‹ã£" +"ã¦æžåˆ†ã‹ã‚Œã—ãªãŒã‚‰é…ç½®ã•ã‚Œã¦ã„ãã¾ã™ã€é€†ã•ã«ãªã£ãŸæ¨¹æœ¨ã®æ§‹é€ を想åƒã—ã¦ã¿ã¦ä¸‹" +"ã•ã„。ã“ã®æœ€ä¸Šä½ã«ã‚るフォルダã¯<emphasis>ルートディレクトリ</emphasis> " +"(<emphasis>ディレクトリ</emphasis>ã¨ã„ã†ç”¨èªžã¯<emphasis>フォルダ</emphasis>ã®" +"代ã‚ã‚Šã«ã‚ˆã使ã‚ã‚Œã¾ã™) ã¨å‘¼ã°ã‚Œã€Thunar ã§ã¯<guilabel>ファイルシステム</" +"guilabel>ã¨ã—ã¦è¡¨ç¤ºã•ã‚Œã¾ã™ã€‚ã¤ã¾ã‚Šã€ã‚る地点ã«åˆ°é”ã™ã‚‹ã¾ã§ãƒ•ã‚©ãƒ«ãƒ€ã‹ã‚‰ãƒ•ã‚©ãƒ«" +"ダã¸ã¨ã“ã®æœ¨æ§‹é€ ã‚’ç™»ã£ã¦è¡Œãã¾ã™ã€ãã®å¾Œã«ç›®æ¨™ã¨ã™ã‚‹å ´æ‰€ã«ç€ãã¾ã§ã‚µãƒ–フォル" +"ダを下ã£ã¦è¡Œãã®ã§ã™ã€‚" + +#: ../docs/manual/C/Thunar.xml.in:101 (para) +msgid "" +"The position of any file or folder in the tree can be described by its " +"<emphasis>path</emphasis>. The path is the list of folders you would have to " +"descend through to get to the target folder or file, starting from the top " +"level folder. For example <filename role=\"directory\">/home/luke</filename> " +"is the subfolder <filename role=\"directory\">luke</filename> of the " +"subfolder <filename role=\"directory\">home</filename> of the top level " +"folder, and <filename>/home/luke/myfile.txt</filename> is the file " +"<filename>myfile.txt</filename> in that subfolder. The leading <filename " +"role=\"directory\">/</filename> in these paths represents the top level " +"folder." +msgstr "" +"ã“ã®æœ¨æ§‹é€ ã§ã®ãƒ•ã‚¡ã‚¤ãƒ«ã‚„フォルダã®ä½ç½®ã¯ãã®<emphasis>パス</emphasis>ã§è¨˜ã™ã“" +"ã¨ãŒã§ãã¾ã™ã€‚ã“ã®ãƒ‘スã¨ã„ã†ã®ã¯ã€ç›®æ¨™ã¨ã™ã‚‹ãƒ•ã‚©ãƒ«ãƒ€ã‚„ファイルã«ãŸã©ã‚Šç€ããŸ" +"ã‚ã«é€šéŽã—ã¦ã„ã‹ãªã‘ã‚Œã°ã„ã‘ãªã„パスã®ãƒªã‚¹ãƒˆã§ã€æœ€ä¸Šéƒ¨ã®ãƒ•ã‚©ãƒ«ãƒ€ã‹ã‚‰å§‹ã¾ã‚Šã¾" +"ã™ã€‚例ãˆã°ã€<filename role=\"directory\">/home/luke</filename> ã¯æœ€ä¸Šéƒ¨ãƒ•ã‚©ãƒ«" +"ダã®ã‚µãƒ–フォルダ <filename role=\"directory\">home</filename> ã®ã‚µãƒ–フォルダ " +"<filename role=\"directory\">luke</filename> ã«ãªã‚Šã¾ã™ã€‚<filename>/home/" +"luke/myfile.txt</filename> ã¯ãã®ã‚µãƒ–フォルダã«ã‚ã‚‹ <filename>myfile.txt</" +"filename> ã¨ã„ã†ãƒ•ã‚¡ã‚¤ãƒ«ã§ã™ã€‚ã“れらã®ãƒ‘スã®å…ˆé ã«ã‚ã‚‹ <filename role=" +"\"directory\">/</filename> ã¯æœ€ä¸Šéƒ¨ãƒ•ã‚©ãƒ«ãƒ€ã‚’表ã—ã¾ã™ã€‚" + +#: ../docs/manual/C/Thunar.xml.in:110 (para) +msgid "" +"Every user has their own folder to hold their personal files and settings. " +"This folder is called the <emphasis>home directory</emphasis> and is " +"displayed in Thunar as special icon with the users login name. The folder is " +"similar to the <guilabel>My Files</guilabel> folder known from Windows. The " +"<emphasis>home directories</emphasis> of the various users in a system are " +"usually located below the <filename role=\"directory\">/home</filename> " +"folder. For example <filename role=\"directory\">/home/luke</filename> would " +"be the home directory of the user with the login name <filename role=" +"\"directory\">luke</filename>, while <filename role=\"directory\">/home/" +"jane</filename> would be the home directory for the user with the login name " +"<filename role=\"directory\">jane</filename>." +msgstr "" +"ã™ã¹ã¦ã®åˆ©ç”¨è€…ãŒå€‹äººç”¨ã®ãƒ•ã‚¡ã‚¤ãƒ«ã‚„è¨å®šã‚’ä¿ç®¡ã™ã‚‹ãŸã‚ã®å€‹åˆ¥ã®ãƒ•ã‚©ãƒ«ãƒ€ã‚’æŒã¡ã¾" +"ã™ã€‚ã“ã®ãƒ•ã‚©ãƒ«ãƒ€ã¯<emphasis>ホームディレクトリ</emphasis>ã¨å‘¼ã°ã‚Œã€Thunar ã§" +"ã¯åˆ©ç”¨è€…ã®ãƒã‚°ã‚¤ãƒ³åã¨å…±ã«ç‰¹åˆ¥ãªã‚¢ã‚¤ã‚³ãƒ³ã§è¡¨ç¤ºã•ã‚Œã¾ã™ã€‚Windows ã§çŸ¥ã‚‰ã‚Œã‚‹" +"<guilabel>ï¾ï½²ï¾Œï½§ï½²ï¾™</guilabel>ã¨ä¼¼ã¦ã„ã¾ã™ã€‚ãã‚Œãžã‚Œã®åˆ©ç”¨è€…ã®<emphasis>ホーム" +"ディレクトリ</emphasis>ã¯é€šå¸¸ <filename role=\"directory\">/home</filename> " +"ã®ä¸‹ã«ã‚ã‚Šã¾ã™ã€‚例ã¨ã—ã¦ä¸Šã’ã‚‹ã¨ã€ãƒã‚°ã‚¤ãƒ³å <filename role=\"directory" +"\">luke</filename> ã®ãƒ›ãƒ¼ãƒ ディレクトリ㯠<filename role=\"directory\">/home/" +"luke</filename> ã«ãªã‚‹ä¸€æ–¹ã€<filename role=\"directory\">/home/jane</" +"filename> ã¯ãƒã‚°ã‚¤ãƒ³å㌠<filename role=\"directory\">jane</filename> ã®ãƒ›ãƒ¼" +"ムディレクトリã«ãªã‚Šã¾ã™ã€‚" + +#: ../docs/manual/C/Thunar.xml.in:122 (title) +msgid "File Types" +msgstr "ファイルã®ç¨®é¡ž" + +#: ../docs/manual/C/Thunar.xml.in:124 (para) +msgid "" +"You may have already heard that everything is a file in UNIX. This is true " +"for most objects present in UNIX systems today. In fact even devices are " +"represented as a special files. While this may not make sense at first " +"sight, it is one of the strengths of UNIX and its derivates, and has helped " +"it to maintain a simple core over the years where other operating systems " +"had to introduce new concepts for every new technology." +msgstr "" +"ã‚‚ã†å¾¡å˜çŸ¥ã‹ã‚‚ã—ã‚Œã¾ã›ã‚“ãŒã€UNIX ã§ã¯ã‚らゆるもã®ãŒãƒ•ã‚¡ã‚¤ãƒ«ã¨ã—ã¦å–り扱ã‚ã‚Œã¾" +"ã™ã€‚ã“ã‚Œã¯ä»Šæ—¥ã® UNIX システムã«å˜åœ¨ã™ã‚‹ç‰©ç†çš„ãªå˜åœ¨ã«å¯¾ã—ã¦ã‚‚当ã¦ã¯ã¾ã‚Šã¾" +"ã™ã€å®Ÿéš›ã®æ‰€ã€å„種装置や周辺機器も特殊ファイルã¨ã—ã¦è¡¨ã•ã‚Œã‚‹ã®ã§ã™ã€‚一見æ„味" +"ã®ç„¡ã„よã†ã«æ€ã‚れるã‹ã‚‚ã—ã‚Œã¾ã›ã‚“ãŒã€ã“れ㯠UNIX ã®å¼·å‘³ã®ä¸€ã¤ã§ãã®èªžæºã§ã‚‚" +"ã‚ã‚Šã¾ã™ã€‚UNIX ã¯ã‚·ãƒ³ãƒ—ルãªã‚³ã‚¢ã‚’何年ã«ã‚‚ã‚ãŸã£ã¦ä¿å®ˆã™ã‚‹ã ã‘ã§ã‚ˆã„ã®ã«å¯¾ã—" +"ã¦ã€ä»–ã®ã‚ªãƒšãƒ¬ãƒ¼ãƒ†ã‚£ãƒ³ã‚°ã‚·ã‚¹ãƒ†ãƒ ã¯æ–°ã—ã„テクノãƒã‚¸ãƒ¼ãŒç´¹ä»‹ã•ã‚Œã‚‹åº¦ã«ã€æ–°ã—ã„" +"概念を導入ã—ãªã‘ã‚Œã°ãªã‚Šã¾ã›ã‚“ã§ã—ãŸã€‚" + +#: ../docs/manual/C/Thunar.xml.in:131 (para) +msgid "" +"These are the four most important types of files in the UNIX file system." +msgstr "" +"UNIX ファイルシステムã«ãŠã‘るファイルã®ç¨®é¡žã«ã¯ã€å››ã¤ã®é‡è¦ãªã‚‚ã®ãŒã‚ã‚Šã¾ã™ã€‚" + +#: ../docs/manual/C/Thunar.xml.in:136 (title) +msgid "Ordinary Files" +msgstr "普通ã®ãƒ•ã‚¡ã‚¤ãƒ«" + +#: ../docs/manual/C/Thunar.xml.in:138 (para) +msgid "" +"An ordinary file may contain text, a program or other data. This includes " +"image files, audio files, office documents and video files. The term " +"<emphasis>file</emphasis> is often used to refer to an ordinary file." +msgstr "" +"普通ã®ãƒ•ã‚¡ã‚¤ãƒ«ã¯æ–‡å—データをå«ã‚“ã§ã„ãŸã‚Šã€ãƒ—ãƒã‚°ãƒ©ãƒ ã¾ãŸã¯ä»–ã®ãƒ‡ãƒ¼ã‚¿ã§ã‚ã£ãŸ" +"ã‚Šã—ã¾ã™ã€‚ã“ã“ã«ã¯ç”»åƒãƒ•ã‚¡ã‚¤ãƒ«ã€ã‚ªãƒ¼ãƒ‡ã‚£ã‚ªãƒ•ã‚¡ã‚¤ãƒ«ã€ã‚ªãƒ•ã‚£ã‚¹æ–‡æ›¸ãŠã‚ˆã³å‹•ç”»" +"ファイルも入りã¾ã™ã€‚<emphasis>ファイル</emphasis>ã¨ã„ã†ç”¨èªžãŒã“れら普通ã®ãƒ•ã‚¡" +"イルを指ã™ã®ã«ã‚ˆã使用ã•ã‚Œã¾ã™ã€‚" + +#: ../docs/manual/C/Thunar.xml.in:145 (title) +msgid "Folder Files" +msgstr "フォルダファイル" + +#: ../docs/manual/C/Thunar.xml.in:147 (para) +msgid "" +"Folders are also files in the UNIX file system. To be exact a folder is a " +"special file, which contains a mapping of file names to file references for " +"every file contained within this folder." +msgstr "" +"UNIX ファイルシステムã§ã¯ãƒ•ã‚©ãƒ«ãƒ€ã‚‚ファイルã§ã™ã€‚æ£ç¢ºã«è¨€ãˆã°ãƒ•ã‚©ãƒ«ãƒ€ã¯ç‰¹æ®Š" +"ファイルã«ãªã‚Šã¾ã™ã€ã“ã®ãƒ•ã‚©ãƒ«ãƒ€å†…ã«ã‚ã‚‹å…¨ã¦ã®ãƒ•ã‚¡ã‚¤ãƒ«ã‚’å‚ç…§ã™ã‚‹ãŸã‚ã®ãƒ•ã‚¡ã‚¤" +"ルåã®ãƒžãƒƒãƒ—ãŒå«ã¾ã‚Œã¦ã„ã¾ã™ã€‚" + +#: ../docs/manual/C/Thunar.xml.in:154 (title) +msgid "Symbolic Link Files" +msgstr "シンボリックリンク・ファイル" + +#: ../docs/manual/C/Thunar.xml.in:156 (para) +msgid "" +"A Symbolic link (often called a <emphasis>symlink</emphasis>) is a special " +"file that contains a path to another file in the file system. Symbolic link " +"files therefore do not contain any useful information themselves, but just " +"refer to other files." +msgstr "" +"シンボリックリンク (よã<emphasis>リンク</emphasis>ã¨å‘¼ã°ã‚Œã¾ã™) ã¯ãƒ•ã‚¡ã‚¤ãƒ«ã‚·" +"ステムã§ã€ä»–ã®ãƒ•ã‚¡ã‚¤ãƒ«ã¸ã®ãƒ‘スをå«ã‚€ç‰¹æ®Šãƒ•ã‚¡ã‚¤ãƒ«ã§ã™ã€‚従ã£ã¦ã‚·ãƒ³ãƒœãƒªãƒƒã‚¯ãƒ•ã‚¡" +"イル自身ã¯ç‰¹ã«æ„味ã®ã‚ã‚‹æƒ…å ±ã‚’æŒã¡ã¾ã›ã‚“ã€å˜ã«ä»–ã®ãƒ•ã‚¡ã‚¤ãƒ«ã‚’å‚ç…§ã™ã‚‹ã ã‘ã§" +"ã™ã€‚" + +#: ../docs/manual/C/Thunar.xml.in:164 (title) +msgid "Device Files" +msgstr "デãƒã‚¤ã‚¹ãƒ•ã‚¡ã‚¤ãƒ«" + +#: ../docs/manual/C/Thunar.xml.in:166 (para) +msgid "" +"As mentioned earlier (most) devices are also accessed through the file " +"system. These special device files are usually located in the <filename role=" +"\"directory\">/dev</filename> folder. For example the special file " +"<filename>/dev/hda</filename> represents the first IDE disk on Linux." +msgstr "" +"始ã‚ã®æ–¹ã§è¿°ã¹ãŸã‚ˆã†ã« (殆んã©ã®) デãƒã‚¤ã‚¹ã‚‚ファイルシステム経由ã§ã‚¢ã‚¯ã‚»ã‚¹ã•" +"ã‚Œã¾ã™ã€‚ã“れら特殊デãƒã‚¤ã‚¹ãƒ•ã‚¡ã‚¤ãƒ«ã¯é€šå¸¸ <filename role=\"directory\">/dev</" +"filename> フォルダã«ã‚ã‚Šã¾ã™ã€‚例ãˆã°ã€ç‰¹æ®Šãƒ•ã‚¡ã‚¤ãƒ« <filename>/dev/hda</" +"filename> 㯠Linux 上ã§ã®ä¸€ç•ªç›®ã® IDE ディスクを表ã—ã¾ã™ã€‚" + +#: ../docs/manual/C/Thunar.xml.in:178 (title) +msgid "Frequently Asked Questions" +msgstr "よãèžã‹ã‚Œã‚‹è³ªå•" + +#: ../docs/manual/C/Thunar.xml.in:180 (para) +msgid "" +"The intent of this section is to collect the quite numerous frequently asked " +"questions that relate to working with Thunar. If you know of a question that " +"is missing from this page, please <ulink type=\"http\" url=\"http://bugzilla." +"xfce.org/enter_bug.cgi?product=Thunar&format=guided\">file a request</" +"ulink>." +msgstr "" +"ã“ã®ç« ã§ã¯ @PACKAGE_NAME@ を使用ã™ã‚‹ã«ã‚ãŸã£ã¦ã€ã‹ãªã‚Šã®é »åº¦ã§å°‹ãられる質å•" +"ã«å›žç”ã—ã¾ã™ã€‚ã“ã®ãƒšãƒ¼ã‚¸ã«ãªã„質å•ãŒã‚ã‚‹ã®ã§ã—ãŸã‚‰ã€<ulink type=\"http\" url=" +"\"http://bugzilla.xfce.org/enter_bug.cgi?product=Thunar&format=guided\">" +"è¦æœ›</ulink>を出ã—ã¦ä¸‹ã•ã‚‹ã‚ˆã†ãŠé¡˜ã„ã—ã¾ã™ã€‚" + +#: ../docs/manual/C/Thunar.xml.in:189 (title) +msgid "Why doesn't Thunar execute files marked as executable?" +msgstr "実行å¯èƒ½ã«ãªã£ã¦ã„るファイルを実行ã—ãªã„ã®ã¯ä½•æ•…ã§ã™ã‹ï¼Ÿ" + +#: ../docs/manual/C/Thunar.xml.in:191 (para) +msgid "" +"For security reasons Thunar only executes files of type <literal>application/" +"x-desktop</literal>, <literal>application/x-executable</literal> and " +"<literal>application/x-shellscript</literal>. For desktop files the " +"execution feature will only be enabled if the desktop file is of type " +"<literal>Application</literal> and a valid <literal>Exec</literal> line is " +"given or of type <literal>Link</literal> and a valid <literal>URL</literal> " +"is given. For the other types the feature is available if the file is marked " +"executable for the current user." +msgstr "" +"ã‚»ã‚ュリティ上ã®ç†ç”±ã‹ã‚‰ã€Thunar ã¯ç¨®é¡žãŒ <literal>application/x-desktop</" +"literal>, <literal>application/x-executable</literal> ãŠã‚ˆã³ " +"<literal>application/x-shellscript</literal> ã®ãƒ•ã‚¡ã‚¤ãƒ«ã®ã¿ã‚’実行ã—ã¾ã™ã€‚デス" +"クトップファイルã«å¯¾ã—ã¦ã¯ã€ç¨®é¡žãŒ <literal>Application</literal> ã‹ã¤é©æ£ãª " +"<literal>Exec</literal> è¡ŒãŒæŒ‡å®šã•ã‚Œã¦ã„ã‚‹ã‹ã€ã‚ã‚‹ã„ã¯ç¨®é¡žãŒ <literal>Link</" +"literal> ã‹ã¤é©æ£ãª <literal>URL</literal> ãŒæŒ‡å®šã•ã‚Œã¦ã„ã‚‹å ´åˆã«é™ã£ã¦å®Ÿè¡Œæ©Ÿ" +"能ãŒæœ‰åŠ¹ã«ãªã‚Šã¾ã™ã€‚ãã®ä»–ã«å¯¾ã—ã¦ã¯ã€å½“該ファイルãŒç¾åœ¨ã®åˆ©ç”¨è€…ã«ã¨ã£ã¦å®Ÿè¡Œ" +"å¯èƒ½ãªã‚ˆã†ã«ãƒžãƒ¼ã‚¯ã•ã‚Œã¦ã„ã‚‹å ´åˆã«åˆ©ç”¨ã§ãã¾ã™ã€‚" + +#: ../docs/manual/C/Thunar.xml.in:200 (para) +msgid "" +"Also note that for <literal>application/x-executable</literal> and " +"<literal>application/x-shellscript</literal>, the types of the file don't " +"really need to match these types exactly, but it is suffice if the detected " +"type has a parent that matches one of the two types listed above, or if the " +"MIME-type is an alias for one of the above." +msgstr "" +"<literal>application/x-executable</literal> ãŠã‚ˆã³ <literal>application/x-" +"shellscript</literal> ã«é–¢ã—ã¦ã¯æ¬¡ã®ã“ã¨ã‚’覚ãˆã¦ãŠã„ã¦ä¸‹ã•ã„ã€ã“ã®ç¨®é¡žã®ãƒ•ã‚¡" +"イルã¯å®Ÿéš›ã«ã¯ã“ã®ç¨®é¡žã«æ£ç¢ºã«ä¸€è‡´ã™ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã›ã‚“ã€ã—ã‹ã—ã€ãƒã‚§ãƒƒã‚¯ã•ã‚Œ" +"ãŸç¨®é¡žã«ä¸Šè¨˜äºŒã¤ã®ç¨®é¡žã«è©²å½“ã™ã‚‹è¦ªãŒã‚ã‚‹ãªã‚‰ã€ã‚ã‚‹ã„㯠MIME タイプãŒä¸Šã«ã‚ã‚‹" +"ã‚‚ã®ã®å†…ã®ä¸€ã¤ã¸ã®åˆ¥åãªã‚‰ã°ã€ãã‚Œã§äº‹è¶³ã‚Šã¾ã™ã€‚" + +#: ../docs/manual/C/Thunar.xml.in:209 (title) +msgid "Where does Thunar store the metadata associated with files?" +msgstr "ファイルã«é–¢é€£ä»˜ã‘られã¦ã„るメタデータã¯ä½•å‡¦ã«ä¿å˜ã•ã‚Œã¦ã„ã¾ã™ã‹ï¼Ÿ" + +#: ../docs/manual/C/Thunar.xml.in:211 (para) +msgid "" +"Thunar associates various settings with files/folders, which we call " +"metadata. This metadata for all files is stored in tdb database file, which " +"is called the metafile. The database file is stored in <filename>" +"$XDG_CACHE_HOME/Thunar/metafile.tdb</filename> and can be examined using the " +"<command>tdbtool</command>, which is part of the Thunar distribution " +"(located in the <filename role=\"directory\">tdb/</filename> subdirectory)." +msgstr "" +"Thunar ã¯ãƒ•ã‚¡ã‚¤ãƒ«ã‚„フォルダã«æ§˜ã€…ãªè¨å®šäº‹é …を関連付ã‘ã¾ã™ã€‚ã“れらã¯ãƒ¡ã‚¿ãƒ‡ãƒ¼ã‚¿" +"ã¨å‘¼ã°ã‚Œã€å…¨ãƒ•ã‚¡ã‚¤ãƒ«ã®ãƒ¡ã‚¿ãƒ‡ãƒ¼ã‚¿ã¯ (メタファイルã¨å‘¼ã°ã‚Œã‚‹) tdb データベー" +"ス・ファイルã«ä¿ç®¡ã•ã‚Œã¾ã™ã€‚ã“ã®ãƒ‡ãƒ¼ã‚¿ãƒ™ãƒ¼ã‚¹ãƒ»ãƒ•ã‚¡ã‚¤ãƒ«ã¯ <filename>" +"$XDG_CACHE_HOME/Thunar/metafile.tdb</filename> ã«ä¿å˜ã•ã‚Œã¦ã„ã¦ã€" +"<command>tdbtool</command> を使ã†ã“ã¨ã§å¤‰æ›´ã§ãã¾ã™ã€‚ã“ã®ãƒ„ールã¯é…布ã•ã‚Œã‚‹ " +"Thunar パッケージã®ä¸€éƒ¨ã¨ã—ã¦ã€ã‚µãƒ–ディレクトリ <filename role=\"directory" +"\">tdb/</filename> ã«ã‚ã‚Šã¾ã™ã€‚" + +#: ../docs/manual/C/Thunar.xml.in:222 (title) +msgid "Where does Thunar store its preferences?" +msgstr "Thunar ã®ç’°å¢ƒè¨å®šãŒä¿å˜ã•ã‚Œã¦ã„ã‚‹ã®ã¯ä½•å‡¦ã§ã™ã‹ï¼Ÿ" + +#: ../docs/manual/C/Thunar.xml.in:224 (para) +msgid "" +"Thunar stores the user configurable preferences (and hidden settings) in an " +"<filename>.ini</filename> file, which is located at <filename>" +"$XDG_CONFIG_HOME/Thunar/thunarrc</filename> and can be examined using a text " +"editor. See <filename>docs/README.thunarrc</filename> for an overview of the " +"various preferences." +msgstr "" +"Thunar 㯠<filename>.ini</filename> ファイルã«åˆ©ç”¨è€…ãŒå¤‰æ›´å¯èƒ½ãªç’°å¢ƒè¨å®š (ãŠ" +"よã³éš ã—è¨å®š) ã‚’ä¿ç®¡ã—ã¾ã™ã€‚ã“ã®ãƒ•ã‚¡ã‚¤ãƒ«ã¯ <filename>$XDG_CONFIG_HOME/Thunar/" +"thunarrc</filename> ã«ã‚ã‚Šã€ãƒ†ã‚ストエディターを使ã£ã¦è‰²ã€…ãªè¨å®šã‚’実験ã—ã¦ã¿" +"ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚å„環境è¨å®šã®æ¦‚è¦ã¯ <filename>docs/README.thunarrc</" +"filename> ã«ã‚ã‚Šã¾ã™ã€‚" + +#: ../docs/manual/C/Thunar.xml.in:234 (title) +msgid "How to use mouse gestures in Thunar?" +msgstr "Thunar ã§ãƒžã‚¦ã‚¹ã‚¸ã‚§ã‚¹ãƒãƒ£ãƒ¼ã‚’使ã†ã«ã¯ï¼Ÿ" + +#: ../docs/manual/C/Thunar.xml.in:236 (para) +msgid "" +"Thunar currently features basic support for so called <emphasis>mouse " +"gestures</emphasis> in its icon view. You can use these <emphasis>mouse " +"gestures</emphasis> by holding down the middle mouse button (usually the " +"mouse wheel) while the mouse pointer is on the background area of the icon " +"view component (any area that is not covered by an icon or a text). Now you " +"can move the cursor into four directions to perform certain actions, which " +"are described below." +msgstr "" +"ç¾åœ¨ã®ã¨ã“ã‚ã€Thunar ã¯ã‚¢ã‚¤ã‚³ãƒ³è¡¨ç¤ºã§ã€ã„ã‚ゆる<emphasis>マウスジェスãƒãƒ£ãƒ¼</" +"emphasis>ã¨å‘¼ã°ã‚Œã‚‹ã‚‚ã®ã‚’最低é™ã‚µãƒãƒ¼ãƒˆã™ã‚‹æ©Ÿèƒ½ãŒå‚™ã‚ã£ã¦ã„ã¾ã™ã€‚マウスãƒã‚¤ãƒ³" +"ターãŒã‚¢ã‚¤ã‚³ãƒ³è¡¨ç¤ºã‚³ãƒ³ãƒãƒ¼ãƒãƒ³ãƒˆã®èƒŒæ™¯ã¨ãªã‚‹å ´æ‰€ (アイコンや文å—ãŒç„¡ã„所ãªã‚‰" +"ã©ã“ã§ã‚‚該当ã—ã¾ã™) ã«ã‚ã‚‹é–“ã¯ã€ãƒžã‚¦ã‚¹ã®ä¸å¤®ãƒœã‚¿ãƒ³ (通常ã¯ãƒžã‚¦ã‚¹ãƒ›ã‚¤ãƒ¼ãƒ«) ã‚’" +"押ã—ã£æ”¾ã—ã«ã™ã‚‹ã“ã¨ã§ã€ã“れら<emphasis>マウスジェスãƒãƒ£ãƒ¼</emphasis>ã®æ©Ÿèƒ½ã‚’" +"使ã†ã“ã¨ãŒã§ãã¾ã™ã€‚ã“ã‚Œã§ã‚る決ã¾ã£ãŸå‹•ä½œã‚’実行ã™ã‚‹ãŸã‚ã«ã€ã‚«ãƒ¼ã‚½ãƒ«ã‚’四方ã«" +"移動ã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚以下ã§ã“れらã®å‹•ä½œã‚’説明ã—ã¾ã™ã€‚" + +#: ../docs/manual/C/Thunar.xml.in:246 (guilabel) +msgid "Left" +msgstr "å·¦" + +#: ../docs/manual/C/Thunar.xml.in:246 (member) +msgid "<placeholder-1/> - opens the previous visited folder" +msgstr "<placeholder-1/> - å‰ã®ãƒ•ã‚©ãƒ«ãƒ€ã‚’é–‹ãã¾ã™" + +#: ../docs/manual/C/Thunar.xml.in:247 (guilabel) +msgid "Up" +msgstr "上" + +#: ../docs/manual/C/Thunar.xml.in:247 (member) +msgid "<placeholder-1/> - opens the parent folder" +msgstr "<placeholder-1/> - 上ä½ã®ãƒ•ã‚©ãƒ«ãƒ€ã‚’é–‹ãã¾ã™" + +#: ../docs/manual/C/Thunar.xml.in:248 (guilabel) +msgid "Right" +msgstr "å³" + +#: ../docs/manual/C/Thunar.xml.in:248 (member) +msgid "<placeholder-1/> - opens the next visited folder" +msgstr "<placeholder-1/> - 次ã®ãƒ•ã‚©ãƒ«ãƒ€ã‚’é–‹ãã¾ã™" + +#: ../docs/manual/C/Thunar.xml.in:249 (guilabel) +msgid "Down" +msgstr "下" + +#: ../docs/manual/C/Thunar.xml.in:249 (member) +msgid "<placeholder-1/> - reloads the current folder" +msgstr "<placeholder-1/> - ç¾åœ¨ã®ãƒ•ã‚©ãƒ«ãƒ€ã‚’リãƒãƒ¼ãƒ‰ã—ã¾ã™" + +#: ../docs/manual/C/Thunar.xml.in:256 (title) +msgid "Support" +msgstr "サãƒãƒ¼ãƒˆ" + +#: ../docs/manual/C/Thunar.xml.in:258 (para) +msgid "" +"To report a bug or to make a suggestion regarding this application or this " +"manual, use the bug tracking system at <ulink url=\"http://bugzilla.xfce.org/" +"enter_bug.cgi?product=Thunar&format=guided\">http://bugzilla.xfce.org/</" +"ulink>. Remember that useful bug reports are ones that get bugs fixed, so a " +"useful bug report has two qualities:" +msgstr "" +"ã“ã®ã‚¢ãƒ—リケーションã‚ã‚‹ã„ã¯èª¬æ˜Žæ›¸ã«é–¢ã™ã‚‹ãƒã‚°ã‚’å ±å‘Šã—ãŸã‚Šä½•ã‹æ案をã™ã‚‹ãª" +"らã€<ulink url=\"http://bugzilla.xfce.org/enter_bug.cgi?product=Thunar&" +"format=guided\">http://bugzilla.xfce.org/</ulink> ã«ã‚ã‚‹ãƒã‚°è¿½è·¡ã‚·ã‚¹ãƒ†ãƒ を御" +"利用下ã•ã„。æ„味ã®ã‚ã‚‹ãƒã‚°å ±å‘Šã“ããŒãƒã‚°ã‚’ä¿®æ£ã™ã‚‹ã®ã ã¨ã„ã†äº‹ã‚’忘れãªã„ã§ä¸‹" +"ã•ã„ã€ã§ã¯ã©ã†ã„ã£ãŸã‚‚ã®ãŒè©²å½“ã™ã‚‹ã‹ã¨ã„ã†ã¨ã€äºŒã¤ã®ç‰¹è³ªãŒã‚ã‚Šã¾ã™:" + +#: ../docs/manual/C/Thunar.xml.in:266 (para) +msgid "" +"<emphasis role=\"bold\">Reproducible.</emphasis> If the developer cannot see " +"the bug himself to prove that it exists, he will most probably not be able " +"to fix it at all. Every detail you can provide helps." +msgstr "" +"<emphasis role=\"bold\">å†ç¾å¯èƒ½ã§ã‚ã‚‹ã“ã¨ã€‚</emphasis>開発者自身ãŒãƒã‚°ã®å˜åœ¨" +"を確èªã™ã‚‹ã“ã¨ãŒã§ããªã„å ´åˆã¯ã€ãれを修æ£ã™ã‚‹ã®ã¯ã»ã¼ä¸å¯èƒ½ã«è¿‘ããªã‚Šã¾ã™ã€‚" +"ã©ã‚“ãªç´°ã‹ã„ã“ã¨ã§ã‚‚役立ã¡ã¾ã™ã®ã§ã€è©³ç´°ã‚’ä½™ã•ãšä¼ãˆã¦ä¸‹ã•ã„。" + +#: ../docs/manual/C/Thunar.xml.in:273 (para) +msgid "" +"<emphasis role=\"bold\">Specific.</emphasis> The quicker the developer can " +"isolate the problem to a specific area, the more likely he will expediently " +"fix it." +msgstr "" +"<emphasis role=\"bold\">具体的ã§ã‚ã‚‹ã“ã¨ã€‚</emphasis>開発者ãŒå•é¡Œã‚’特定ã®ç®‡æ‰€" +"ã«ã‚ˆã‚Šæ—©ã絞れる程ã€ãã®ä¿®æ£æŽªç½®ã‚’å–ã‚Šã‚„ã™ããªã‚Šã¾ã™ã€‚" + +#: ../docs/manual/C/Thunar.xml.in:280 (para) +msgid "" +"In case you want to request a new feature, please make clear why you " +"consider it a worth addition for the application. It is more likely that a " +"new feature gets added if you provide good arguments for the feature. It " +"will increase the chance of addition even more if you provide a patch that " +"implements the requested feature, but make sure that you read the file " +"<ulink type=\"http\" url=\"http://svn.xfce.org/svn/xfce/terminal/trunk/" +"HACKING\">HACKING</ulink> - especially the section labeled <emphasis>Coding " +"Style</emphasis> - before you start hacking up the source." +msgstr "" +"新機能ã®è¿½åŠ ã‚’è¦æœ›ã™ã‚‹å ´åˆã€ä½•æ•…ãã‚ŒãŒã‚¢ãƒ—リケーションã«ã¨ã£ã¦æœ‰æ„義ã ã¨è€ƒãˆ" +"ã‚‹ã®ã‹æ˜Žã‚‰ã‹ã«ã—ã¦ä¸‹ã•ã‚‹ã‚ˆã†ãŠé¡˜ã„ã—ã¾ã™ã€‚ãã®æ©Ÿèƒ½ã«ã¤ã„ã¦ç´å¾—ã®ã„ãè°è«–ã‚’è¡Œ" +"ãˆã‚‹ã®ã§ã—ãŸã‚‰ã€è¿½åŠ ã•ã‚Œã‚‹å¯èƒ½æ€§ã¯é«˜ããªã‚Šã¾ã™ã€‚è¦æ±‚ã™ã‚‹æ©Ÿèƒ½ã‚’実装ã—ãŸãƒ‘ッãƒ" +"ã‚’æä¾›ã—ã¦ä¸‹ã•ã‚‹ãªã‚‰æ›´ã«é«˜ããªã‚Šã¾ã™ãŒã€äº‹å‰ã«ãƒ•ã‚¡ã‚¤ãƒ« <ulink url=\"http://" +"svn.xfce.org/svn/xfce/terminal/trunk/HACKING\">HACKING</ulink> を忘れãšã«èªã‚“" +"ã§ä¸‹ã•ã„。特㫠<emphasis>Coding Style</emphasis> ã¨é¡Œã•ã‚Œã¦ã„る箇所ã«ç›®ã‚’通ã™" +"よã†ã«ã—ã¦ä¸‹ã•ã„。" + +#: ../docs/manual/C/Thunar.xml.in:290 (para) +msgid "" +"Else, if you have questions about the use or installation of this software, " +"please ask on the <ulink type=\"http\" url=\"http://foo-projects.org/mailman/" +"listinfo/thunar-dev\">thunar-dev mailing list</ulink> or point your IRC " +"client to <emphasis role=\"bold\">irc.freenode.net</emphasis>, join the " +"channel <emphasis role=\"bold\">#thunar</emphasis> and ask for help." +msgstr "" +"ãれ以外ã€åˆ©ç”¨æ–¹æ³•ã‚„ã“ã®ã‚½ãƒ•ãƒˆã‚¦ã‚§ã‚¢ã®ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã«é–¢ã™ã‚‹è³ªå•ãŒã‚ã‚‹ã®ã§ã—ãŸ" +"らã€<ulink type=\"http\" url=\"http://foo-projects.org/mailman/listinfo/" +"thunar-dev\">thunar-dev メーリングリスト</ulink>ã§è³ªå•ã™ã‚‹ã‹ã€IRC クライアン" +"ト㧠<emphasis role=\"bold\">irc.freenode.net</emphasis> ã®ãƒãƒ£ãƒ³ãƒãƒ« " +"<emphasis role=\"bold\">#thunar</emphasis> ã«å‚åŠ ã—ã¦æ‰‹åŠ©ã‘を求ã‚ã¦ã¿ã¦ä¸‹ã•" +"ã„。" + +#: ../docs/manual/C/Thunar.xml.in:299 (title) +msgid "About @PACKAGE_NAME@" +msgstr "@PACKAGE_NAME@ ã«ã¤ã„ã¦" + +#: ../docs/manual/C/Thunar.xml.in:301 (para) +msgid "" +"@PACKAGE_NAME@ was written by Benedikt Meurer (<email>benny@xfce.org</" +"email>). Visit the <ulink url=\"http://thunar.xfce.org/\" type=\"http" +"\">Thunar website</ulink> for more information." +msgstr "" +"@PACKAGE_NAME@ 㯠Benedikt Meurer (<email>benny@xfce.org</email>) ãŒè£½ä½œã—ã¾" +"ã—ãŸã€‚より詳ã—ã„æƒ…å ±ã‚’å¾—ã‚‹ã«ã¯ <ulink url=\"http://thunar.xfce.org/\" type=" +"\"http\">Thunar ã®ã‚¦ã‚§ãƒ–サイト</ulink>を訪れã¦ä¸‹ã•ã„。" + +#: ../docs/manual/C/Thunar.xml.in:306 (para) +msgid "" +"This documentation was written by Benedikt Meurer (<email>benny@xfce.org</" +"email>). The latest version of this document is always available from the " +"<ulink type=\"http\" url=\"http://thunar.xfce.org/\">Thunar website</ulink>." +msgstr "" +"Benedikt Meurer (<email>benny@xfce.org</email>) ãŒã“ã®æ–‡æ›¸ã‚’製作ã—ã¾ã—ãŸã€‚最" +"新版㯠<ulink type=\"http\" url=\"http://thunar.xfce.org/\">Thunar ã®ã‚¦ã‚§ãƒ–サ" +"イト</ulink>ã«ã‚ã‚Šã¾ã™ã€‚" + +#: ../docs/manual/C/Thunar.xml.in:312 (para) +msgid "" +"This software is distributed under the terms of the GNU General Public " +"License as published by the Free Software Foundation; either version 2 of " +"the License, or (at your option) any later version." +msgstr "" +"ã“ã®ã‚½ãƒ•ãƒˆã‚¦ã‚§ã‚¢ã¯ãƒ•ãƒªãƒ¼ã‚½ãƒ•ãƒˆã‚¦ã‚§ã‚¢è²¡å›£ãŒå…¬è¡¨ã™ã‚‹ GNU 一般公衆利用許諾契約書" +"ã®æ¡ä»¶ä¸‹ã«é…布ã•ã‚Œã¦ã„ã¾ã™ã€‚第2版ã‚ã‚‹ã„ã¯ã€ã‚ãªãŸãŒé¸ã¶ãれ以é™ã®ç‰ˆã®ã„ãšã‚Œã‹" +"ãŒé©ç”¨ã•ã‚Œã¾ã™ã€‚" + +#: ../docs/manual/C/Thunar.xml.in:318 (para) +msgid "" +"You should have received a copy of the GNU General Public License along with " +"this program; if not, write to the Free Software Foundation, Inc., 59 Temple " +"Place - Suite 330, Boston, MA 02111-1307, USA." +msgstr "" +"ã“ã®ãƒ—ãƒã‚°ãƒ©ãƒ ã«ã¯ã€GNU 一般公衆利用許諾契約書ã®ã‚³ãƒ”ーãŒé™„属ã™ã‚‹ã¯ãšã§ã™ãŒã€" +"ã‚‚ã—ç„¡ã„ã®ã§ã‚ã‚Œã°ãƒ•ãƒªãƒ¼ã‚½ãƒ•ãƒˆã‚¦ã‚§ã‚¢è²¡å›£ã«é€£çµ¡ã—ã¦ä¸‹ã•ã„。59 Temple Place - " +"Suite 330, Boston, MA 02111-1307, USA." + +#. Put one translator per line, in the form of NAME <EMAIL>, YEAR1, YEAR2. +#: ../docs/manual/C/Thunar.xml.in:0 (None) +msgid "translator-credits" +msgstr "Daichi Kawahata <daichi@xfce.org>, 2006." diff --git a/po/LINGUAS b/po/LINGUAS new file mode 100644 index 0000000000000000000000000000000000000000..6c88e2efa47a5dac9d2395c3af7273d1598aae0a --- /dev/null +++ b/po/LINGUAS @@ -0,0 +1,2 @@ +# set of available languages (in alphabetic order) +ca de el es eu fi fr hu it ja nl pl pt_BR ru sv zh_TW