home *** CD-ROM | disk | FTP | other *** search
/ Freelog 52 / Freelog052.iso / Dossier / OpenOffice / f_0214 / Lang_es.xba < prev    next >
Extensible Markup Language  |  2002-11-21  |  7KB  |  158 lines

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE script:module PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "module.dtd">
  3. <script:module xmlns:script="http://openoffice.org/2000/script" script:name="Lang_es" script:language="StarBasic">Option Explicit
  4.  
  5. Sub LoadSpanishLanguage()
  6.  
  7.     sProductname = GetProductname
  8.     sOK = "~Aceptar" 
  9.     sCancel = "Cancelar"
  10.     sColumnHeader = "T├¡tulo de columna"    
  11.     sInsertStockName = "Introduzca primero algunas acciones en su dep├│sito."
  12.     sTitle = "<PRODUCTNAME>: Administraci├│n de acciones"
  13.     sTitle = ReplaceString(sTitle, sProductName, "<PRODUCTNAME>")
  14.     sMsgError = "Error de entrada"
  15.     sMsgNoName = sInsertStockname
  16.     sMsgNoQuantity = "Indique una cantidad mayor que 0"
  17.     sMsgNoDividend = "Indique un dividendo por unidad o un dividendo total"
  18.     sMsgNoExchangeRate = "Indique aqu├¡ un cambio correcto (acci├│n vieja -> nueva acci├│n)"
  19.     sMsgNoValidExchangeDate = "Indique una fecha correcta para el fraccionamiento de la acci├│n."
  20.     sMsgWrongExchangeDate = "El fraccionamiento no es posible porque existen transacciones despu├⌐s de la fecha de fraccionamiento."
  21.     sMsgSellTooMuch = "No puede vender tantas acciones. Como m├íximo: "
  22.     sMsgConfirm = "Confirmaci├│n necesaria"
  23.     sMsgFreeStock = "┬┐Tiene previsto considerar acciones gratis?"
  24.     sMsgTotalLoss = "┬┐Tiene previsto introducir una p├⌐rdida total?"
  25.     sMsgAuthorization = "Pregunta de seguridad"
  26.     sMsgDeleteAll = "┬┐Desea borrar todos los movimientos y reiniciar el balance de dep├│sito?"
  27.     cSplit = "Fraccionamiento el "
  28.     sHistory = "Historia"
  29.     TransactTitle(1) =      "Vender acciones"
  30.     TransactTitle(2) = "Comprar acciones"
  31.     StockRatesTitle(1) = "Pago de dividendos"
  32.     StockRatesTitle(2) = "Fraccionamiento"
  33.     StockRatesTitle(3) = sHistory
  34.     sDepotCurrency = "Moneda del dep├│sito"    
  35.     sStockName = "Nombre de la acci├│n"
  36.     TransactMode = LIFO    ' Possible values: "FIFO" and "LIFO"
  37.     DateCellStyle = "Resultado Fecha"
  38.     CurrCellStyle = "1"
  39.     sStartDate = "Fecha de inicio:"
  40.     sEndDate = "Fecha final:"
  41.     sStartUpWelcome = "Esta plantilla le permite administrar eficientemente su dep├│sito de acciones"
  42.     sStartUpChooseMarket = "Seleccione primero la moneda de referencia y la plaza burs├ítil para la actualizaci├│n a trav├⌐s de Internet."
  43.     sStartUpHint = "La funci├│n <History> est├í disponible ├║nicamente para el mercado americano."
  44.     sStartupHint = ReplaceString(sStartUpHint, sHistory, "<History>")
  45.     sNoInternetUpdate = "Sin actualizaci├│n por Internet"
  46.     sMarketPlace = "Plaza burs├ítil:"
  47.     sNoInternetDataAvailable = "No se pudieron recibir las cotizaciones por Internet."
  48.     sCheckInternetSettings = "Causas posibles: <BR> Debe comprobar la configuraci├│n de Internet.<BR> Ha indicado un c├│digo incorrecto (p.ej. n├║mero, s├¡mbolo, etc.) para la acci├│n."
  49.     sCheckInternetSettings = ReplaceString(sCheckInternetSettings, chr(13), "<BR>")
  50.  
  51.     sMsgEndDatebeforeNow = "La fecha final debe ser anterior a la fecha de hoy."
  52.     sMsgStartDatebeforeEndDate = "La fecha inicial debe ser anterior a la fecha final."
  53.  
  54.     sMarket(0,0) = "D├│lar estadounidense"
  55.     sMarket(0,1) = "$"
  56.     sMarket(0,2) = "Nueva York"
  57.     sMarket(0,3) = "http://quote.yahoo.com/d/quotes.csv?s=<StockID>&f=sl1d1t1c1ohgv&e=.csv"
  58.     sMarket(0,4) = "http://table.finance.yahoo.com/table.csv?" &_
  59.                     "a=<StartMonth>&b=<StartDay>&c=<Startyear>&d=<EndMonth>&" &_
  60.                     "e=<EndDay>&f=<Endyear>&s=<StockID>&y=0&g=<interval>&ignore=.csv"
  61.     sMarket(0,5) = "S├¡mbolo"
  62.     sMarket(0,6) = "en"
  63.     sMarket(0,7) = "US"
  64.     sMarket(0,8) = "409"
  65.     sMarket(0,9) = "44"
  66.     sMarket(0,10) = "1"
  67.     
  68.     sMarket(1,0) = "Euro"
  69.     sMarket(1,1) = chr(8364)
  70.     sMarket(1,2) = "Frankfurt"
  71.     sMarket(1,3) = "http://de.finance.yahoo.com/d/quotes.csv?s=<StockID>.F&f=sl1t1c1ghpv&e=.csv"
  72.     sMarket(1,5) = "C├│digo"
  73.     sMarket(1,6) = "de;nl;pt;el"
  74.     sMarket(1,7) = "DE;NL;PT;GR"
  75.     sMarket(1,8) = "407;413;816;408"
  76.     sMarket(1,9) = "59/9"
  77.     sMarket(1,10) = "1"
  78.  
  79.     sMarket(2,0) = "Libra esterlina"
  80.     sMarket(2,1) = "┬ú"
  81.     sMarket(2,2) = "Londres"
  82.     sMarket(2,3) = "http://uk.finance.yahoo.com/d/quotes.csv?s=<StockID>.L&m=*&f=sl1t1c1ghov&e=.csv"
  83.     sMarket(2,5) = "S├¡mbolo"
  84.     sMarket(2,6) = "en"
  85.     sMarket(2,7) = "GB"
  86.     sMarket(2,8) = "809"
  87.     sMarket(2,9) = "44"
  88.     sMarket(2,10) = "1"
  89.  
  90.     sMarket(3,0) = "Yen japon├⌐s"
  91.     sMarket(3,1) = "┬Ñ"
  92.     sMarket(3,2) = "Tokio"
  93.     sMarket(3,3) = ""
  94.     sMarket(3,5) = "C├│digo"
  95.     sMarket(3,6) = "ja"
  96.     sMarket(3,7) = "JP"
  97.     sMarket(3,8) = "411"
  98.     sMarket(3,9) = ""
  99.     sMarket(3,10) = ""
  100.     
  101.     sMarket(4,0) = "D├│lar hongkon├⌐s"
  102.     sMarket(4,1) = "HK$"
  103.     sMarket(4,2) = "Hong Kong"
  104.     sMarket(4,3) = "http://hk.finance.yahoo.com/d/quotes.csv?s=<StockID>.HK&f=sl1d1t1c1ohgv&e=.csv"
  105.     sMarket(4,5) = "N├║mero"
  106.     sMarket(4,6) = "zh"
  107.     sMarket(4,7) = "HK"    
  108.     sMarket(4,8) = "C04"
  109.     sMarket(4,9) = "44"
  110.     sMarket(4,10) = "1"
  111.  
  112.     sMarket(5,0) = "D├│lar australiano"
  113.     sMarket(5,1) = "$"
  114.     sMarket(5,2) = "Sidney"
  115.     sMarket(5,3) = "http://au.finance.yahoo.com/d/quotes.csv?s=<StockID>&f=sl1d1t1c1ohgv&e=.csv"
  116.     sMarket(5,5) = "S├¡mbolo"
  117.     sMarket(5,6) = "en"
  118.     sMarket(5,7) = "AU"
  119.     sMarket(5,8) = "C09"
  120.     sMarket(5,9) = "44"
  121.     sMarket(5,10) = "1"
  122.  
  123. ' ****************************End of the default subset*********************************
  124.     CompleteMarketList()
  125.  
  126.     LocalizedCurrencies()
  127.     
  128.     With TransactModel
  129.         .lblStockNames.Label = sStockname
  130.         .lblQuantity.Label = "Cantidad"
  131.         .lblRate.Label = "Cotizaci├│n"
  132.         .lblDate.Label = "Fecha de operaci├│n"
  133.         .hlnCommission.Label = "Otros gastos"
  134.         .lblCommission.Label = "Provisi├│n"
  135.         .lblMinimum.Label = "Provisi├│n m├¡nima"
  136.         .lblFix.Label = "Cantidad fija/comisi├│n"
  137.         .cmdGoOn.Label = sOK
  138.         .cmdCancel.Label = sCancel
  139.     End With
  140.     
  141.     With StockRatesModel
  142.         .optPerShare.Label = "Dividendos/Acci├│n"
  143.         .optTotal.Label = "Dividendos totales"
  144.         .lblDividend.Label = "Importe"
  145.         .lblExchangeRate.Label = "Cambio (vieja->nueva)"
  146.         .lblColon.Label = ":"
  147.         .lblDate.Label = "Fecha de cambio:"
  148.         .lblStockNames.Label = sStockname
  149.         .lblStartDate.Label = sStartDate
  150.         .lblEndDate.Label = sEndDate
  151.         .optDaily.Label = "~Diario"
  152.         .optWeekly.Label = "~Semanal"
  153.         .hlnInterval.Label = "Periodo"
  154.         .cmdGoOn.Label = sOk
  155.         .cmdCancel.Label = sCancel
  156.     End With
  157. End Sub
  158. </script:module>