完美国际电信一霹雳区交流版 收藏本版 今日: 0 主题: 1794

3235 17

锡灵,你英文好,麻烦进来帮个忙--(或者谁的英文自己觉得不错的话也可以)

[复制链接]
发表于 2008-1-18 15:41:41 | 显示全部楼层 |阅读模式
麻烦翻译一下,下面这段文章:xhan
' D9 l3 b; v7 G  U: w/ P8 C# S+ R( j. Q0 j

  1. 5 _6 C8 x; p2 Z( w
  2. ###### Using MySQL as Database for TeamSpeak-Server 2.0.20.1 ######
    * u# m. v$ y7 x  q, Z4 t3 h

  3. * {! B: ?& h; a) B' w+ ~
  4. ### What we need ###1 {% i% u  v+ O* L
  5. Naturally, we will need a MySQL server to store the data for us, this document : p! V4 L' P9 {2 ?  Y3 N, x+ d
  6. will not explain how this can be done - there are documents out there for the
    9 B" {) t" B! O
  7. interested. The requirements include a (empty) database for TeamSpeak to use
      k+ x  @+ L$ @& J0 ]/ N2 @
  8. and a user account (username + password) that has the permissions to do stuff
    * b9 K! ^6 y/ k! s
  9. with the database. Additionally, you will need a vendor library installed on the- L2 i+ i9 Z3 e" O5 S) L
  10. local machine, this came with my MySQL install.
    3 \4 G( p8 O' w
  11. These instructions will not tell you how you might transfer your data from the
    / s( ~# w7 f' s! P% X
  12. SQLite database to the MySQL database, we start with a clean and empty MySQL& j) m2 F  B% e  _8 M* E- N
  13. database.
    3 M. {5 D, e, G) P% [& e6 {
  14. Some users have reported ways to import a SQLite database into MySQL, but at
    - E% a1 M+ P( a8 t$ q5 {" D1 A
  15. the time of writing, there are still too many issues - check the current status
    - b4 A5 `# l# g3 Z8 u* I& r7 d: z
  16. in the TeamSpeak forums if you are interested.# v& W+ W; S9 [5 _' E
  17. NOTE: To allow TeamSpeak to access the MySQL database the dbExpress driver from
    2 Z4 w; T$ P: o! }
  18. Borland was used. This driver can only interface with the client library that 8 E9 ]4 z# w) f! S
  19. comes with MySQL 3.x. It is possible to access a MySQL 4.x database with this
    6 A$ v3 x7 A3 y  l: |  K
  20. client library - basically all you have to do is to use a 3.x client library as
    6 q( y$ F% ^& V7 Z* ]
  21. "VendorLib" and a 4.x database to connect to.7 e+ r5 s- L  j) A! F" L; c5 \
  22. If you need more info about dbExpress, you can contact Borland.
    ) f" I% }3 V0 b  X: L0 Z) N
  23. , E# v# K7 b8 |4 G
  24. ### Doing the work ###4 L% B6 X2 k4 ]
  25. Setting up TeamSpeak to use MySQL (should) be straight forward once you have all
      E: |: _6 K8 Q- |- L
  26. the perquisites right, just open your server.ini file, and add this section at
    + l9 a+ \) h( ~8 n: q- N9 y! c
  27. the end:
    ' N, H. o/ J+ F7 n; c' ]% H
  28. ---cut here---
      x2 R9 e4 H  b8 t8 }
  29. [DBEXPRESS]
    ; `) [8 U. k. g; z3 W' I
  30. sqldir=mysql_sql
    / Q# T6 Y0 R9 K* u
  31. Drivername=mysql
    * I, A, N# a! y' Z7 Z- c
  32. Database=Your_Database_Name_Here. X7 l2 g# u2 K6 |! K
  33. Hostname=The_PC_the_MySQL-Server_is_on
    6 C8 k$ e1 r4 ~* a" g, T
  34. User_name=User_name_on_the_MySQL-Server& L2 P* M1 t( J8 B
  35. Password=Password_to_go_with_above_user_name
    $ S1 d$ |$ K0 \/ V
  36. GetDriverFunc=getSQLDriverMYSQL0 ~* V7 k. Y% T# b8 O+ {; K1 F
  37. VendorLib=path_pointing_at_your_mysql_vendor_lib
    % U  S( K7 o( L" g/ [! R; Y0 R
  38. LibraryName=path_to_libsqlmy_libary
    , Z2 U" z% F( T# X
  39. Active=1( `# q; e! J: I& v. X
  40. ---cut here---" O; b9 y% G) K$ m' O/ ^
  41. In my environment (a linux box with a MySQL server running locally) I have:
    , ~, ]" Y" @6 N* d2 C9 V
  42. ---example---8 q% V2 Y- M6 v
  43. [DBEXPRESS]* n% R. E& w) O( U4 B$ L/ `4 {! ~
  44. sqldir=mysql_sql5 d3 @5 R) S* L* Q
  45. Drivername=mysql) s; F/ ^* x, A2 |. p5 S+ ^
  46. Database=test
    ( j8 J3 u. `& D2 J0 {
  47. Hostname=localhost0 a  w$ `7 x5 s" w% J4 w
  48. User_name=testuser5 N4 U& V) @9 x$ P  {, z# O2 m
  49. Password=my_password
    7 z/ D# O* ?! M+ Y% _
  50. GetDriverFunc=getSQLDriverMYSQL
    6 b8 Z& `" q4 ]
  51. VendorLib=/usr/lib/libmysqlclient_r.so.10.0.04 ~4 `# n/ y3 v1 _
  52. LibraryName=./libsqlmy.so
    4 A& U3 h& s& T: e! z5 V% z$ `
  53. Active=1
    ' h6 y; L5 e2 s6 g4 O$ M
  54. ---example---
    ! t( b8 W0 V5 Z/ Z! f7 P" S$ }2 n

  55. 7 G) `' ]# R& `3 Q
  56. On a windows box, also running the MySQL server locally, it would be:$ ^; B7 z  r5 S  t
  57. ---example---/ x3 _- Y, _8 D7 `5 Q0 o% B* _
  58. [DBEXPRESS]$ m+ ?) X6 i# y: U6 U
  59. sqldir=mysql_sql/ n9 r2 @. q; c: z, }6 }0 Q
  60. Drivername=mysql
    , J) S1 x& }1 t, U, n1 z! `) m) Y, [
  61. Database=test9 {' M8 V  m4 S* Y# H
  62. Hostname=127.0.0.1
    # q+ O& W# I" c% z' Y1 |
  63. User_name=testuser
    3 ^8 I" N( }1 @8 B5 \- ]* V
  64. Password=my_password! a6 f2 |+ a$ r( E4 u$ k8 T0 J1 l+ |
  65. GetDriverFunc=getSQLDriverMYSQL, s/ ^0 K8 R4 s6 ~" W
  66. VendorLib=libmysql.dll
    3 b+ B: g2 _  h0 {
  67. LibraryName=dbexpmysql.dll
    $ ~. F+ |) u) U4 N6 k
  68. Active=1# j8 I; @5 M: E* X: N+ Y1 h
  69. ---example----
    ) K% O9 z3 C6 n# N
  70. - written 02.03.04 by pwk.linuxfan. t$ P$ a6 H7 M2 o5 A) A4 H  P, W
  71. 3 N$ w5 Y$ m- ]2 A: w
复制代码
发表于 2008-1-18 15:43:17 | 显示全部楼层
就是说在每一句英文附加一段中文注释,不知道可有难度不??:xhan
发表于 2008-1-18 15:48:42 | 显示全部楼层
我这里有一个网页自动翻译的结果,大家校正一下看看; x& _1 o& @4 U$ u$ D5 j4 G

  1. ) n- x& p  [. _  j
  2. ######使用MySQL数据库,为teamspeak服务器2.0.20.1 ######
    . A/ ^) d! w) L' A; w4 M
  3. 7 h' @  n' _% q- S. ]+ d' ]9 h
  4. # # #我们所需要# # #
    " W3 u- A5 {$ A4 j$ U1 z
  5. 当然,我们还需要有MySQL服务器来存储这些数据对我们来说,这个文件
    " y, e% j5 f3 Y( }1 R& v" v
  6. 不会解释如何做到这一点-也有文件存在,为
    3 F. Y! u! L0 @9 y! ^4 m
  7. 有兴趣的。要求包括: (空)数据库teamspeak使用( j0 Y% Z% G: `3 N8 h
  8. 和一个用户帐户(用户名+密码) ,有权限做的东西1 ^: ]" D  T0 I9 N6 F: s9 K; U' H
  9. 随着数据库。此外,你需要一个卖方图书馆安装于
    - J$ y4 t( Y4 l* r: n9 `: C+ V
  10. 本地机器,这是我的MySQL安装。
    7 J0 _7 H; X' i; Q$ h1 l
  11. 这些指示不会告诉你,你怎么可能转移你的数据,从/ h( J+ I8 u7 M' `5 T
  12. SQLite数据库向MySQL数据库,我们开始一种更清新和空洞的MySQL
    2 E. ^& J/ m2 p( ]  @, l
  13. 数据库。 + R2 f& w- X5 v" A6 W* F+ ~
  14. 有些用户报方式进口SQLite数据库到MySQL中,但在
    / x5 x  E6 P* k8 j/ u0 z. F$ [
  15. 编写本报告的时候,仍然有太多的问题-检查现状9 D+ f9 n% t6 d( u
  16. 在teamspeak论坛,如果你有兴趣。 5 w9 r9 z+ {; a! P
  17. 注意:为了让teamspeak访问MySQL数据库的dbexpress司机0 b2 ~3 |6 K! j
  18. Borland公司使用。这个司机只能界面与客户端库/ A2 E) D7 K) x
  19. 随MySQL 3.x.这是有可能进入一个mysql解数据库,这
    $ L6 a( |+ L! z' |8 V6 v% {. ]& h
  20. 客户端库-基本上你所需要做的就是使用3 .x客户端库作为
    6 r3 T9 e. ^9 S& C8 y. [  {* g
  21. " vendorlib " ,并解数据库连接。 : i1 a# T$ O* ?4 f
  22. 如果您需要更多的信息dbexpress ,你可以联络Borland公司。
    4 }0 w1 q# \9 v  [

  23. 2 S% V/ R1 |; ], c+ @# l( k
  24. # # #做好工作# # # 3 o, S" ~' c4 t, N5 l
  25. 成立teamspeak使用MySQL (应该)直线前进时,一旦你都
    : J9 j/ s2 A/ ]' p- H0 ^
  26. 该额外赏赐权利,而只不过是打开你的server.ini文件,并加上这一节在
    8 q, n) V. l9 A# S% J# C. Y2 }# v
  27. 结束:
    7 [( P. M0 h# m. M! D
  28. ---削减这里---
    ) a) w, T' M7 a/ n) G
  29. [ dbexpress ]
    6 c/ S# B) [: `5 L3 ?# E9 A, ^
  30. sqldir = mysql_sql
    6 f, Y" e- B  K1 S! Z  x4 j8 H
  31. drivername = MySQL中9 t3 h  m& O/ z0 A* x
  32. 数据库= your_database_name_here
    + |5 }; d2 Q# {3 ~% F( _8 b
  33. 主机= the_pc_the_mysql - server_is_on
    0 X1 p0 d3 e* ~) M4 R) s" W. O
  34. user_name = user_name_on_the_mysql服务器) c% a8 H5 U% _
  35. 密码= password_to_go_with_above_user_name ; Q3 B' g% O" N* |
  36. getdriverfunc = getsqldrivermysql
    . }: ?8 ~  h* X
  37. vendorlib = path_pointing_at_your_mysql_vendor_lib
    * d; f$ u: T" U9 g
  38. libraryname = path_to_libsqlmy_libary 0 ~' A9 L' E" W
  39. 积极= 1
    4 L( ^! y5 [4 h) n
  40. ---削减这里--- % l4 W2 y: R9 e- [  E7 M9 ^
  41. 在我的环境( Linux的包装盒与MySQL服务器运行在本地) ,我有: ' d6 Y& e' i; l
  42. ---例如---
      p' P: X1 _" u2 }9 X
  43. [ dbexpress ] 4 ~5 T' R' q4 a% z2 g
  44. sqldir = mysql_sql
    / S% J2 d- Y! J  g, ^9 _
  45. drivername = MySQL中9 g6 c; X5 K/ l0 A5 Z
  46. 数据库=测试
    : E$ I+ J1 }" ?# ^2 q
  47. 主机=本地主机% [8 v3 a+ n' ^6 v, H5 M3 p/ l1 _
  48. user_name = testuser
    0 e$ L9 Y! ^+ q: h9 A& v$ y+ }* ^
  49. 密码= my_password
    " m. N( L. {! U9 c
  50. getdriverfunc = getsqldrivermysql
    . c1 t/ @# q: R, S5 Z
  51. vendorlib = / usr/lib/libmysqlclient_r.so.10.0.0 % n, b, `; I% U4 f
  52. libraryname =. / libsqlmy.so 8 R$ ?' J, X% T. p! d/ k2 Q; Q% g
  53. 积极= 1 : D6 [: }8 l7 p* |6 J- Q4 ]' W
  54. ---例如--- 5 ]: Y( |' T& Y1 V0 [& r, r

  55. ( p: [4 ?! ^% Q  ?, M1 ?7 f. L7 }
  56. 对Windows中,也运行MySQL服务器本地的,那就是:
    ( V2 p! @5 l8 r2 Z% \" W
  57. ---例如---
      `, y* P2 L" D+ [; B
  58. [ dbexpress ]
    " @- J! o7 `1 p$ `/ P' p$ ]6 O! |
  59. sqldir = mysql_sql
    5 n" X" Q3 R- j" W
  60. drivername = MySQL中
    : S& |/ Z: u8 G# a1 P! E# q
  61. 数据库=测试+ t; W) V: A. O# }
  62. 主机= 127.0.0.1
    * b& k% V6 F7 c
  63. user_name = testuser : d# N; |( W" U1 ^. b, O0 L- S
  64. 密码= my_password - `! [, H: A4 M5 H  Z# q
  65. getdriverfunc = getsqldrivermysql 0 S' s9 D1 t6 K! l: d2 P
  66. vendorlib = libmysql.dll在' v& h; t2 L4 k' E$ }1 M4 u' K
  67. libraryname = dbexpmysql.dll . [( k. Y2 Y: ?" q( E5 n
  68. 积极= 1 5 D+ @, n2 I! a# W7 x
  69. ---例如----
    ) P* q7 p, M& s7 T
  70. -写在0 2.03.04由p wk.linuxfan( T1 E+ @! Y8 Q% W, u! H
复制代码
发表于 2008-1-18 15:57:50 | 显示全部楼层
zhu48t zhu48t zhu48t 火星语言
发表于 2008-1-18 16:02:23 | 显示全部楼层
我现在正在我们自己的服务器上调试TS与论坛结合,这篇文章里的大概操作方法我是明白了,但是我怕翻译过来可能有点出入,所以还是要专业的英文水平高的人看看才行:xhan
发表于 2008-1-18 18:45:35 | 显示全部楼层
那你只有找哪个马来人了。。。
发表于 2008-1-20 18:35:58 | 显示全部楼层
zhu45t 俄有自知之明
发表于 2008-1-21 11:37:51 | 显示全部楼层
比 考4级还难懂!!
发表于 2008-1-21 13:54:07 | 显示全部楼层
怎么不问我呢 我晕
发表于 2008-1-21 14:15:44 | 显示全部楼层
sorry for the late, i think the best way is i go to TS and translate for you. coz now i cannot type chinese words
  ?* _: f! c1 h$ I' m
2 V) k& R9 `, K8 ?  e: }: E8 lbut, i only will free at nite, tuesday 11pm, your time
您需要登录后才可以回帖 登录 | 注册

本版积分规则

傲天阁游戏公会
联系我们
咨询电话 : 020-88888888
事务 QQ : 85075421
电子邮箱 : admin@admin.com

小黑屋|手机版|Archiver|傲天阁游戏公会 ( 粤ICP备14058347号 )|免责声明

GMT+8, 2026-9-26 12:51 , Processed in 0.092923 second(s), 6 queries , Redis On.

Powered by Discuz! X3.4

© 2001-2013 Comsenz Inc.

快速回复 返回顶部 返回列表