rwdmpd 0.07 → 0.08
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/code/01rwdcore/01rwdcore.rb +5 -4
- data/code/01rwdcore/02helptexthashbegin.rb +13 -11
- data/code/01rwdcore/jumplinkcommand.rb +1 -0
- data/code/01rwdcore/openhelpwindow.rb +7 -0
- data/code/01rwdcore/runhelpabout.rb +6 -1
- data/code/01rwdcore/selectiontab.rb +2 -0
- data/code/01rwdcore/setuphelpaboutoptions.rb +2 -0
- data/code/01rwdcore/setuptinkerdocuments.rb +1 -0
- data/code/01rwdcore/uploadreturns.rb +3 -0
- data/code/dd0viewphoto/dd0viewphoto.rb +2 -0
- data/code/superant.com.podhandler/clearnotescreen.rb +7 -0
- data/code/superant.com.podhandler/listdirectories3.rb +24 -0
- data/code/superant.com.podhandler/listpodfiles.rb +22 -0
- data/code/superant.com.podhandler/loadeditfile.rb +22 -0
- data/code/superant.com.podhandler/pausepodnumber.rb +43 -0
- data/code/superant.com.podhandler/playpodnumber.rb +28 -0
- data/code/superant.com.podhandler/resetpodfile.rb +16 -0
- data/code/superant.com.podhandler/saveeditfoldrecord.rb +22 -0
- data/code/superant.com.rwdmp3/0uninstallapplet.rb +3 -0
- data/code/superant.com.rwdmp3/controlmpd.rb +4 -4
- data/code/superant.com.rwdmp3/helptexthashload.rb +21 -0
- data/code/superant.com.rwdmp3/mpd_seek.rb +2 -2
- data/code/superant.com.rwdmp3/openhelpwindowrwdmp3.rb +9 -2
- data/code/superant.com.rwdmp3/pausempd.rb +14 -0
- data/code/superant.com.rwdmp3/plaympd.rb +15 -0
- data/code/superant.com.rwdtinkerbackwindow/initiateapplets.rb +0 -1
- data/code/superant.com.rwdtinkerbackwindow/installgemapplet.rb +2 -0
- data/code/superant.com.rwdtinkerbackwindow/listgemzips.rb +2 -0
- data/code/superant.com.rwdtinkerbackwindow/listinstalledfiles.rb +3 -1
- data/code/superant.com.rwdtinkerbackwindow/listzips.rb +2 -0
- data/code/superant.com.rwdtinkerbackwindow/loadconfigurationrecord.rb +3 -1
- data/code/superant.com.rwdtinkerbackwindow/viewappletcontents.rb +1 -0
- data/code/superant.com.rwdtinkerbackwindow/viewlogfile.rb +8 -5
- data/code/zz0applicationend/zz0end.rb +2 -1
- data/configuration/rwdtinker.dist +3 -3
- data/configuration/rwdwmpd.dist +5 -3
- data/gui/00coreguibegin/applicationguitop.rwd +6 -1
- data/gui/tinkerbackwindows/superant.com.rwdmp3/20rwdmpd.rwd +11 -2
- data/gui/tinkerbackwindows/superant.com.rwdmp3/27podhandler.rwd +53 -0
- data/gui/tinkerbackwindows/superant.com.rwdmp3/28podedit.rwd +31 -0
- data/init.rb +7 -1
- data/installed/rwdwmpd.inf +6 -0
- data/lang/en/rwdcore/en.po +16 -0
- data/lang/es/rwdcore/es.po +16 -13
- data/lang/fr/rwdcore/fr.po +4 -1
- data/lang/hi/rwdcore/hi.po +39 -36
- data/lang/ja/rwdcore/ja.po +3 -0
- data/lang/nl/rwdcore/nl.po +4 -1
- data/rwd_files/HowTo_Tinker.txt +4 -0
- data/rwd_files/Tinkerhelptexthash.txt +3 -2
- data/rwd_files/helptexthashmpd.txt +57 -0
- data/rwd_files/mpd.COMMANDS +275 -0
- data/rwd_files/podfolds/podfold03.fld +25 -0
- data/rwd_files/rwdapplications.html +23 -1
- data/tests/makedist-rwdwmpd.rb +1 -1
- data/tests/makedist.rb +1 -1
- data/zips/rwdwfoldeditor-0.06.zip +0 -0
- data/zips/{rwdwmpd-0.07.zip → rwdwmpd-0.08.zip} +0 -0
- metadata +20 -7
- data/code/superant.com.rwdmp3/helptexthashrwdmp3.rb +0 -41
- data/tests/makedist-tinkerbellw.rb +0 -58
- data/zips/rwdwfoldeditor-0.05.zip +0 -0
- data/zips/rwdwhypernote-0.15.zip +0 -0
| @@ -1,4 +1,6 @@ | |
| 1 | 
            -
            #  | 
| 1 | 
            +
            # Application RwdTinker orginally (c) 2004 Steven Gibson under GPL. 
         | 
| 2 | 
            +
            # this code is to list the applets that are installed
         | 
| 3 | 
            +
             | 
| 2 4 | 
             
            def listinstalledfiles
         | 
| 3 5 | 
             
            	fileList      = Dir.new("installed").entries.sort.reverse.delete_if { |x| ! (x =~ /inf$/) }
         | 
| 4 6 | 
             
            	@filesresult  = fileList.rwd_method("fillappletname")
         | 
| @@ -1,13 +1,16 @@ | |
| 1 | 
            +
            #view the log on the tab
         | 
| 2 | 
            +
             | 
| 1 3 | 
             
            def rwdtinkerrunviewlog
         | 
| 2 4 | 
             
            	   require 'lib/rwdtinker/rwdtinkertools'
         | 
| 3 5 |  | 
| 6 | 
            +
                              logfilelocation = File.join(LogDirectory, 'rwdtinker.log')      
         | 
| 4 7 | 
             
                       if @a_rwdtinkerlognumber == nil
         | 
| 5 8 | 
             
            		        @a_rwdtinkerlognumber = 11
         | 
| 6 | 
            -
             | 
| 9 | 
            +
            		        
         | 
| 10 | 
            +
            	    end
         | 
| 11 | 
            +
            		        
         | 
| 12 | 
            +
            	         @returnlogdisplay = RwdtinkerTools.tail(logfilelocation , @a_rwdtinkerlognumber.to_i)
         | 
| 7 13 |  | 
| 8 | 
            -
            	    | 
| 9 | 
            -
            		         @returnlogdisplay = RwdtinkerTools.tail("rwd_files/log/rwdtinker.log",@a_rwdtinkerlognumber.to_i)
         | 
| 10 | 
            -
             | 
| 11 | 
            -
                       end
         | 
| 14 | 
            +
            	   
         | 
| 12 15 | 
             
            end
         | 
| 13 16 |  | 
| @@ -1,4 +1,4 @@ | |
| 1 | 
            -
            ##VERSION: (1. | 
| 1 | 
            +
            ##VERSION: (1.83)
         | 
| 2 2 | 
             
            ConfigurationDir = "configuration" # for use in program - init.rb has this value without using this constant
         | 
| 3 3 | 
             
            CodeName = "rwdtinker"
         | 
| 4 4 | 
             
            CodeNameFile = CodeName + ".rb"
         | 
| @@ -10,6 +10,6 @@ LangDir = "lang" | |
| 10 10 | 
             
                $prevouswindow ="main" 
         | 
| 11 11 | 
             
               $rwdcontrolports =["13713","13714","13715","13716"]   # remote control code not actived 2007
         | 
| 12 12 | 
             
             $port = 7705
         | 
| 13 | 
            -
            ##NAME: (RwdTinkerVersion):(1. | 
| 14 | 
            -
            RwdTinkerVersion = "1. | 
| 13 | 
            +
            ##NAME: (RwdTinkerVersion):(1.83)
         | 
| 14 | 
            +
            RwdTinkerVersion = "1.83"
         | 
| 15 15 |  | 
    
        data/configuration/rwdwmpd.dist
    CHANGED
    
    | @@ -1,16 +1,18 @@ | |
| 1 | 
            -
            ##VERSION: (0. | 
| 1 | 
            +
            ##VERSION: (0.08)
         | 
| 2 2 | 
             
            ##NAME: ($extras_directory):(0.04)
         | 
| 3 3 | 
             
            $extras_directory = "lib"
         | 
| 4 4 | 
             
            ##NAME: ($rwdmpdplaylist_directory):(0.04)
         | 
| 5 5 | 
             
            $rwdmpdplaylist_directory = "music"
         | 
| 6 6 | 
             
            ##NAME: ($rwdmpdmusicdir):(0.04)
         | 
| 7 7 | 
             
            $rwdmpdmusicdir = "music"
         | 
| 8 | 
            +
            ##NAME: ($rwdmpdpodfolder_directory):(0.08) 
         | 
| 9 | 
            +
            $rwdmpdpodfolder_directory = "rwd_files/podfolds"
         | 
| 8 10 | 
             
            $tinkerhelpaboutarray << "RwdMpd"
         | 
| 9 11 | 
             
            $tinkerdocumentsarray << "HowTo_Mpd.txt"
         | 
| 10 12 | 
             
            JumpLink.update(:RwdMpd=>"runrwdmpdwindow")
         | 
| 11 13 | 
             
            $rwdjumplink << "RwdMpd"
         | 
| 12 14 | 
             
            ##NAME: (DeleteRwdMPDConfig):(0.07)
         | 
| 13 15 | 
             
            DeleteRwdMPDConfig = true
         | 
| 14 | 
            -
            ##NAME: (RwdMpdVersion):(0. | 
| 15 | 
            -
            RwdMpdVersion = "0. | 
| 16 | 
            +
            ##NAME: (RwdMpdVersion):(0.08)
         | 
| 17 | 
            +
            RwdMpdVersion = "0.08"
         | 
| 16 18 |  | 
| @@ -1,4 +1,9 @@ | |
| 1 1 | 
             
            $rwdguivar=
         | 
| 2 2 | 
             
            "<application>
         | 
| 3 | 
            -
              <window name=\"main\" title=\"RwdMPD - Ruby | 
| 3 | 
            +
              <window name=\"main\" title=\"RwdMPD - RwdTinker for Ruby\">
         | 
| 4 4 | 
             
            <tabs>"
         | 
| 5 | 
            +
             | 
| 6 | 
            +
             | 
| 7 | 
            +
            #Application RwdTinker orginally (c) 2004 Steven Gibson under GPL. 
         | 
| 8 | 
            +
            #This is the first part of the window for the core application
         | 
| 9 | 
            +
             | 
| @@ -20,18 +20,27 @@ | |
| 20 20 | 
             
            </row>
         | 
| 21 21 | 
             
             </table>
         | 
| 22 22 | 
             
            <horizontal>
         | 
| 23 | 
            +
             | 
| 24 | 
            +
            <button caption=\"Pause\" action=\"mpdpausebutton\"/>
         | 
| 23 25 | 
             
            <button caption=\"{{ Prev\" action=\"mpdprevbutton\"/>
         | 
| 24 26 | 
             
            <button caption=\"Show mpd Choices\" action=\"showmpdseekcommandoptions\"/>
         | 
| 25 | 
            -
            <button caption=\"Next }}\" action=\"mpdnextbutton\"/>
         | 
| 27 | 
            +
            <button caption=\"Next }}\" action=\"mpdnextbutton\"/>
         | 
| 28 | 
            +
            <button caption=\"Play\" action=\"mpdplaybutton\"/>
         | 
| 29 | 
            +
             | 
| 26 30 | 
             
            </horizontal>
         | 
| 27 31 | 
             
             <table>
         | 
| 28 32 | 
             
                  <select name=\"a_mpdseekcommandinput\">  %%mpdseekcommandoptions%% </select>
         | 
| 29 33 |  | 
| 30 | 
            -
               </table>
         | 
| 34 | 
            +
               </table>
         | 
| 35 | 
            +
               <table>
         | 
| 31 36 | 
             
                  <horizontal>
         | 
| 32 37 | 
             
                  <button caption=\"Run Command\" action=\"runmpdseekcommand\"/>
         | 
| 33 38 | 
             
                  <button caption=\"Cancel\" action=\"main\"/>
         | 
| 34 39 | 
             
                   <button caption=\"Help\" action=\"runhelpwindowrwdmp3\"/>
         | 
| 35 40 | 
             
                </horizontal>
         | 
| 41 | 
            +
                </table>
         | 
| 42 | 
            +
                <table>
         | 
| 43 | 
            +
                <p>%mpdcommandresult01%</p>
         | 
| 44 | 
            +
                </table>
         | 
| 36 45 | 
             
              <p>%mpdseekcommandresult%</p>
         | 
| 37 46 | 
             
            	</tab>"
         | 
| @@ -0,0 +1,53 @@ | |
| 1 | 
            +
            $rwdguivar=  
         | 
| 2 | 
            +
            	"
         | 
| 3 | 
            +
            		<tab name=\"superantcommpd03\" caption=\"Pod Handler\">
         | 
| 4 | 
            +
                <table>
         | 
| 5 | 
            +
                         </horizontal>
         | 
| 6 | 
            +
                            <row>
         | 
| 7 | 
            +
                                 <p align=\"left\"> Pod Fold Lists:  <select name=\"a_mpdpodchoice3\">  %%mpdpodchoicepulldown%% </select>
         | 
| 8 | 
            +
               
         | 
| 9 | 
            +
                            
         | 
| 10 | 
            +
            		    <button caption=\"View Pod Folder List\" action=\"rwdmpdpodfolderdirectoryview\"/>
         | 
| 11 | 
            +
            		    </p>
         | 
| 12 | 
            +
                           </row>
         | 
| 13 | 
            +
                  <horizontal>
         | 
| 14 | 
            +
                      <horizontal>
         | 
| 15 | 
            +
                              <p>
         | 
| 16 | 
            +
                	                
         | 
| 17 | 
            +
                                    <button caption=\"Display Pod list\" action=\"saglistmpdpodfiles\"/>
         | 
| 18 | 
            +
                            <button caption=\"Reset to Start of File\" action=\"rwdmpdpodresetfile\"/>
         | 
| 19 | 
            +
                                         <button caption=\"Help\" action=\"runhelpwindowrwdmp3\"/>
         | 
| 20 | 
            +
                             </p>
         | 
| 21 | 
            +
             
         | 
| 22 | 
            +
                    
         | 
| 23 | 
            +
            	
         | 
| 24 | 
            +
                   </horizontal>   
         | 
| 25 | 
            +
                         <horizontal>
         | 
| 26 | 
            +
                                  %%dialog_directory3%%
         | 
| 27 | 
            +
                            </horizontal>   
         | 
| 28 | 
            +
                   </table>
         | 
| 29 | 
            +
                  <table>  
         | 
| 30 | 
            +
                      <horizontal>
         | 
| 31 | 
            +
                              <p>
         | 
| 32 | 
            +
                                   <b>1</b>
         | 
| 33 | 
            +
                                 
         | 
| 34 | 
            +
                                      <button caption=\"play\" action=\"playpodnumber3a\"/>
         | 
| 35 | 
            +
                                  <button caption=\"pause\" action=\"pausepodnumber3a\"/>
         | 
| 36 | 
            +
            			 <select name=\"a_mpdpodinput3a\">  %%podhandlerdirectoriesresultA%% </select>
         | 
| 37 | 
            +
            		 </p>
         | 
| 38 | 
            +
                    </horizontal>       
         | 
| 39 | 
            +
              
         | 
| 40 | 
            +
               </table>    
         | 
| 41 | 
            +
                <table>
         | 
| 42 | 
            +
                    <horizontal>
         | 
| 43 | 
            +
               
         | 
| 44 | 
            +
            	
         | 
| 45 | 
            +
                            <p>%a_mpdpodhandlerdata3%</p>
         | 
| 46 | 
            +
                   </horizontal>   
         | 
| 47 | 
            +
                        
         | 
| 48 | 
            +
             </table>
         | 
| 49 | 
            +
             <table>
         | 
| 50 | 
            +
                 <p>%a_mpdpoddata3%</p>
         | 
| 51 | 
            +
                 <table>
         | 
| 52 | 
            +
                 
         | 
| 53 | 
            +
            </tab>"
         | 
| @@ -0,0 +1,31 @@ | |
| 1 | 
            +
            $rwdguivar=  
         | 
| 2 | 
            +
            	"
         | 
| 3 | 
            +
            		<tab name=\"superantcommpd04\" caption=\"Pod Edit\">
         | 
| 4 | 
            +
                <table>
         | 
| 5 | 
            +
                         </horizontal>
         | 
| 6 | 
            +
                            <row>
         | 
| 7 | 
            +
                                 <p align=\"left\"> Pod Fold Lists:  <select name=\"a_mpdpodchoice3\">  %%mpdpodchoicepulldown%% </select>
         | 
| 8 | 
            +
               
         | 
| 9 | 
            +
                            
         | 
| 10 | 
            +
            		    <button caption=\"View Pod Folder List\" action=\"rwdmpdpodfolderdirectoryview\"/>
         | 
| 11 | 
            +
            		    </p>
         | 
| 12 | 
            +
                           </row>
         | 
| 13 | 
            +
                  <horizontal>
         | 
| 14 | 
            +
                      <horizontal>
         | 
| 15 | 
            +
                              <p>
         | 
| 16 | 
            +
            		  <button caption=\"Display Pod list\" action=\"sagloadmpdpodfiles\"/>
         | 
| 17 | 
            +
                	                <button caption=\"Save Pod Fold File\" action=\"saverwdmpdpodfile\"/>
         | 
| 18 | 
            +
                                
         | 
| 19 | 
            +
                                   <button caption=\"Clear view\" action=\"clearmpdpodview3\"/>
         | 
| 20 | 
            +
                                    <button caption=\"Help\" action=\"runhelpwindowrwdmp3\"/>
         | 
| 21 | 
            +
                             </p>
         | 
| 22 | 
            +
             
         | 
| 23 | 
            +
                    
         | 
| 24 | 
            +
            	
         | 
| 25 | 
            +
                   </horizontal>   
         | 
| 26 | 
            +
                     
         | 
| 27 | 
            +
                   </table>
         | 
| 28 | 
            +
               <textarea name=\"a_mpdpodfold\"/> 
         | 
| 29 | 
            +
             | 
| 30 | 
            +
                 
         | 
| 31 | 
            +
            </tab>"
         | 
    
        data/init.rb
    CHANGED
    
    | @@ -23,13 +23,19 @@ | |
| 23 23 |  | 
| 24 24 | 
             
            require 'logger'
         | 
| 25 25 |  | 
| 26 | 
            -
             | 
| 26 | 
            +
            LogDirectory = 'rwd_files/log/'
         | 
| 27 | 
            +
            logfilelocation = File.join(LogDirectory, 'rwdtinker.log')
         | 
| 28 | 
            +
             | 
| 29 | 
            +
            $rwdtinkerlog = Logger.new( logfilelocation , 'weekly' )
         | 
| 27 30 | 
             
            $rwdtinkerlog.level = Logger::INFO
         | 
| 28 31 |  | 
| 29 32 | 
             
            require "lib/rwd/rwd"
         | 
| 30 33 | 
             
            require 'fileutils'
         | 
| 31 34 | 
             
            require 'lib/rconftool'
         | 
| 32 35 |  | 
| 36 | 
            +
            $KCODE = 'u'
         | 
| 37 | 
            +
            require 'jcode'
         | 
| 38 | 
            +
             | 
| 33 39 | 
             
            $progdir = File::expand_path( File.dirname(__FILE__))
         | 
| 34 40 |  | 
| 35 41 | 
             
            tempdoc = " "
         | 
    
        data/installed/rwdwmpd.inf
    CHANGED
    
    | @@ -1,5 +1,6 @@ | |
| 1 1 | 
             
            # rwdwmpd - music controller
         | 
| 2 2 | 
             
            code/superant.com.rwdmp3
         | 
| 3 | 
            +
            code/superant.com.podhandler
         | 
| 3 4 | 
             
            rwd_files/HowTo_Mpd.txt
         | 
| 4 5 | 
             
            configuration/rwdwmpd.dist
         | 
| 5 6 | 
             
            gui/tinkerbackwindows/superant.com.rwdmp3
         | 
| @@ -7,3 +8,8 @@ tests/makedist-rwdwmpd.rb | |
| 7 8 | 
             
            tests/gemspec-rwdwmpd
         | 
| 8 9 | 
             
            lib/mpdserver.rb
         | 
| 9 10 | 
             
            lib/librmpd.rb
         | 
| 11 | 
            +
            rwd_files/helptexthashmpd.txt
         | 
| 12 | 
            +
            rwd_files/HowTo_Mpd.txt
         | 
| 13 | 
            +
            rwd_files/mpd.COMMANDS
         | 
| 14 | 
            +
            rwd_files/podfolds/podfold03.fld
         | 
| 15 | 
            +
             | 
    
        data/lang/en/rwdcore/en.po
    CHANGED
    
    | @@ -1,5 +1,8 @@ | |
| 1 1 | 
             
            # English Language files for RwdTinker core
         | 
| 2 2 |  | 
| 3 | 
            +
             msgid "error_message_id_unknown"
         | 
| 4 | 
            +
             msgstr "ERROR: Message-ID Unknown"
         | 
| 5 | 
            +
             
         | 
| 3 6 | 
             
              msgid "applet_installed"  
         | 
| 4 7 | 
             
              msgstr '"applet installed!"'
         | 
| 5 8 |  | 
| @@ -164,3 +167,16 @@ msgstr  '"View Install Text"' | |
| 164 167 |  | 
| 165 168 | 
             
             msgid "window"    
         | 
| 166 169 | 
             
              msgstr  "Window"   
         | 
| 170 | 
            +
             | 
| 171 | 
            +
             msgid "message_general_help"
         | 
| 172 | 
            +
             msgstr "rwdtinker is the core application for the
         | 
| 173 | 
            +
                                   rwdapplications. On the front screen you can view
         | 
| 174 | 
            +
                                   documents and make menu choices.  On the back 
         | 
| 175 | 
            +
                                   screen you will find:<p>
         | 
| 176 | 
            +
                                   You can work with Applets:  go to 'Selection tab', <br>
         | 
| 177 | 
            +
                                              On that back screen you will find:<br>
         | 
| 178 | 
            +
                                              List Applets:  you can see and delete installed applets<br>
         | 
| 179 | 
            +
                                              List Zips: you can see lists of applets that you can install<br>
         | 
| 180 | 
            +
                                              Edit Configuration: You can view the rwdtinker configuration and change it<br>
         | 
| 181 | 
            +
                                              Diagnostic Tab: You can view the environments variables that rwdtinker is running with<br>"
         | 
| 182 | 
            +
                  
         | 
    
        data/lang/es/rwdcore/es.po
    CHANGED
    
    | @@ -1,5 +1,8 @@ | |
| 1 1 | 
             
            # Spanish Language files for RwdTinker core
         | 
| 2 2 |  | 
| 3 | 
            +
            msgid "error_message_id_unknown"
         | 
| 4 | 
            +
            msgstr "Identificador de mensaje desconocido"
         | 
| 5 | 
            +
             | 
| 3 6 | 
             
             msgid "applet_installed"
         | 
| 4 7 | 
             
             msgstr   '"applet instalado!"'
         | 
| 5 8 |  | 
| @@ -7,16 +10,16 @@ | |
| 7 10 | 
             
             msgstr   '"Versiones de Aplicacion"'
         | 
| 8 11 |  | 
| 9 12 | 
             
             msgid  "clear" 
         | 
| 10 | 
            -
             msgstr   ""
         | 
| 13 | 
            +
             msgstr   "claro"
         | 
| 11 14 |  | 
| 12 15 | 
             
             msgid "cancel"
         | 
| 13 | 
            -
             msgstr   " | 
| 16 | 
            +
             msgstr   "Cancelación"
         | 
| 14 17 |  | 
| 15 18 | 
             
             msgid "clickfor_version"
         | 
| 16 19 | 
             
             msgstr   '"click para version"' 
         | 
| 17 20 |  | 
| 18 21 | 
             
             msgid "clickbelowtoviewlistof_zip"
         | 
| 19 | 
            -
             msgstr   "click abajo a ver lista de zips"
         | 
| 22 | 
            +
             msgstr   '"click abajo a ver lista de zips"'
         | 
| 20 23 |  | 
| 21 24 | 
             
             msgid "documents"
         | 
| 22 25 | 
             
             msgstr   "Documentos"
         | 
| @@ -40,7 +43,7 @@ msgid "install_applet" | |
| 40 43 | 
             
            msgstr   '"instale (rwdtinker) applet"'
         | 
| 41 44 |  | 
| 42 45 | 
             
             msgid "jumptoapplication_location"
         | 
| 43 | 
            -
             msgstr   ""
         | 
| 46 | 
            +
             msgstr   '"saltar a la aplicación"'
         | 
| 44 47 |  | 
| 45 48 | 
             
            msgid "list_applets"
         | 
| 46 49 | 
             
            msgstr   '"Lista Applets"'
         | 
| @@ -64,7 +67,7 @@ msgstr   '"Lista de Photos"' | |
| 64 67 | 
             
             msgstr  '"Lista Zips"'
         | 
| 65 68 |  | 
| 66 69 | 
             
            msgid "listzipdirappletsavailable"
         | 
| 67 | 
            -
            msgstr   '"Lista (zip directory) applets  | 
| 70 | 
            +
            msgstr   '"Lista (zip directory) applets disponible para su instalación"'
         | 
| 68 71 |  | 
| 69 72 | 
             
            msgid "menu_panel"
         | 
| 70 73 | 
             
            msgstr   '"Panel de herramientas"'
         | 
| @@ -109,10 +112,10 @@ msgid "rwdtinker_help_window" | |
| 109 112 | 
             
            msgstr   '"RwdTinker Ventana Ayuda"'
         | 
| 110 113 |  | 
| 111 114 | 
             
            msgid "showdocument_list"
         | 
| 112 | 
            -
            msgstr   '" | 
| 115 | 
            +
            msgstr   '"Mostrar lista de documentos"'
         | 
| 113 116 |  | 
| 114 117 | 
             
            msgid "showhelpabout_links"
         | 
| 115 | 
            -
            msgstr   '" | 
| 118 | 
            +
            msgstr   '"Mostrar enlaces de ayuda sobre"'
         | 
| 116 119 |  | 
| 117 120 | 
             
             msgid "showjump_links"
         | 
| 118 121 | 
             
             msgstr   '"Mostrar enlace saltar"'
         | 
| @@ -127,16 +130,16 @@ msgid "rwdtinker" | |
| 127 130 | 
             
            msgstr   "RwdTinker"
         | 
| 128 131 |  | 
| 129 132 | 
             
            msgid "selection_panel"
         | 
| 130 | 
            -
            msgstr   '"Panel de  | 
| 133 | 
            +
            msgstr   '"Panel de Selección"'
         | 
| 131 134 |  | 
| 132 135 | 
             
             msgid "tinker_logo"
         | 
| 133 136 | 
             
             msgstr   '"Insignia de Tinker"'
         | 
| 134 137 |  | 
| 135 138 | 
             
            msgid "selection_tab"
         | 
| 136 | 
            -
            msgstr   '"Tab de  | 
| 139 | 
            +
            msgstr   '"Tab de Selección"'
         | 
| 137 140 |  | 
| 138 141 | 
             
            msgid "tinkerback_window"
         | 
| 139 | 
            -
            msgstr   '"Tinker Ventana  | 
| 142 | 
            +
            msgstr   '"Tinker Ventana detrás"'
         | 
| 140 143 |  | 
| 141 144 | 
             
            msgid "viewapplet_contents"
         | 
| 142 145 | 
             
            msgstr   '"Ver Applet Contenido"'
         | 
| @@ -148,13 +151,13 @@ msgid "viewinstalled_text" | |
| 148 151 | 
             
            msgstr   '"Ver Instalar Texto"' 
         | 
| 149 152 |  | 
| 150 153 | 
             
            msgid "view_platform"
         | 
| 151 | 
            -
            msgstr   '" | 
| 154 | 
            +
            msgstr   '"Ver plataforma"' 
         | 
| 152 155 |  | 
| 153 156 | 
             
            msgid "viewplatform_information"
         | 
| 154 | 
            -
            msgstr   ""  
         | 
| 157 | 
            +
            msgstr   '"Ver información de plataforma"'  
         | 
| 155 158 |  | 
| 156 159 | 
             
            msgid "viewlogger_information"
         | 
| 157 | 
            -
            msgstr   ""
         | 
| 160 | 
            +
            msgstr   '"Ver diario de pesca"'
         | 
| 158 161 |  | 
| 159 162 | 
             
            msgid "view_event"
         | 
| 160 163 | 
             
            msgstr   '"Ver evento"'       
         | 
    
        data/lang/fr/rwdcore/fr.po
    CHANGED
    
    
    
        data/lang/hi/rwdcore/hi.po
    CHANGED
    
    | @@ -1,16 +1,19 @@ | |
| 1 1 | 
             
            #  Language files for RwdTinker core
         | 
| 2 | 
            -
             | 
| 2 | 
            +
             | 
| 3 | 
            +
             msgid "error_message_id_unknown"
         | 
| 4 | 
            +
             msgstr ""
         | 
| 5 | 
            +
             | 
| 3 6 | 
             
              msgid "applet_installed"  
         | 
| 4 7 | 
             
              msgstr ""
         | 
| 5 8 |  | 
| 6 9 | 
             
              msgid "application_version"   
         | 
| 7 | 
            -
            msgstr  ""
         | 
| 10 | 
            +
            msgstr  "अनुप्रयोग"
         | 
| 8 11 |  | 
| 9 12 | 
             
               msgid "cancel" 
         | 
| 10 13 | 
             
               msgstr  '"रद्द करें"'
         | 
| 11 14 |  | 
| 12 15 | 
             
              msgid "clickfor_version"  
         | 
| 13 | 
            -
              msgstr  "" 
         | 
| 16 | 
            +
              msgstr  "संस्करण" 
         | 
| 14 17 |  | 
| 15 18 | 
             
              msgid "clickbelowtoviewlistof_zip" 
         | 
| 16 19 | 
             
              msgstr  ""
         | 
| @@ -29,7 +32,7 @@ msgid "file_name" | |
| 29 32 | 
             
              msgstr  '"नाम फ़ाइल"'
         | 
| 30 33 |  | 
| 31 34 | 
             
              msgid "fill_record"   
         | 
| 32 | 
            -
              msgstr  ""
         | 
| 35 | 
            +
              msgstr  "भरें"
         | 
| 33 36 |  | 
| 34 37 | 
             
              msgid "help"    
         | 
| 35 38 | 
             
                msgstr  '"मदद"' 
         | 
| @@ -38,35 +41,35 @@ msgid "file_name" | |
| 38 41 | 
             
              msgstr  '"मदद परिचय"'
         | 
| 39 42 |  | 
| 40 43 | 
             
              msgid "install_applet"   
         | 
| 41 | 
            -
                msgstr  ""  
         | 
| 44 | 
            +
                msgstr  "प्लग-इन"  
         | 
| 42 45 |  | 
| 43 46 | 
             
              msgid "jumptoapplication_location"   
         | 
| 44 47 | 
             
                msgstr  "" 
         | 
| 45 48 |  | 
| 46 49 | 
             
              msgid "list_applets"    
         | 
| 47 | 
            -
              msgstr  ""
         | 
| 50 | 
            +
              msgstr  "सूची प्लग-इन"
         | 
| 48 51 |  | 
| 49 52 | 
             
              msgid "listappletsinthegem_directory" 
         | 
| 50 | 
            -
              msgstr  ""
         | 
| 53 | 
            +
              msgstr  "सूची  प्लग-इन"
         | 
| 51 54 |  | 
| 52 55 | 
             
              msgid "listappletsavailablefor_installation" 
         | 
| 53 | 
            -
              msgstr  ""   
         | 
| 56 | 
            +
              msgstr  "सूची  प्लग-इन"   
         | 
| 54 57 |  | 
| 55 58 | 
             
               msgid "list_files"  
         | 
| 56 | 
            -
               msgstr  "" | 
| 59 | 
            +
               msgstr  "सूची फ़ाइल"
         | 
| 57 60 |  | 
| 58 | 
            -
               msgid "list_installed_gems | 
| 59 | 
            -
               msgstr  "" | 
| 61 | 
            +
               msgid "list_installed_gems"     
         | 
| 62 | 
            +
               msgstr  "सूची"
         | 
| 60 63 |  | 
| 61 64 | 
             
              msgid "list_photos"   
         | 
| 62 | 
            -
              msgstr  ""
         | 
| 65 | 
            +
              msgstr  "सूची तस्वीर"
         | 
| 63 66 |  | 
| 64 67 | 
             
              msgid "list_zips"    
         | 
| 65 | 
            -
              msgstr  ""
         | 
| 68 | 
            +
              msgstr  "सूची"
         | 
| 66 69 |  | 
| 67 70 | 
             
              msgid "listzipdirappletsavailable"  
         | 
| 68 | 
            -
              msgstr  ""
         | 
| 69 | 
            -
             | 
| 71 | 
            +
              msgstr  "सूची"
         | 
| 72 | 
            +
             | 
| 70 73 | 
             
              msgid "menu_panel"     
         | 
| 71 74 | 
             
              msgstr  ""
         | 
| 72 75 |  | 
| @@ -74,25 +77,25 @@ msgid "file_name" | |
| 74 77 | 
             
              msgstr  ""
         | 
| 75 78 |  | 
| 76 79 | 
             
              msgid "next"    
         | 
| 77 | 
            -
              msgstr  ""
         | 
| 80 | 
            +
              msgstr  "अग्रेषित कर"
         | 
| 78 81 |  | 
| 79 82 | 
             
              msgid "open"   
         | 
| 80 | 
            -
              msgstr  ""
         | 
| 83 | 
            +
              msgstr  "खोलें"
         | 
| 81 84 |  | 
| 82 85 | 
             
              msgid "open_document"    
         | 
| 83 | 
            -
            msgstr  ""
         | 
| 86 | 
            +
            msgstr  "खोलें दस्तावेज़"
         | 
| 84 87 |  | 
| 85 88 | 
             
              msgid "openselectedhelp_about"  
         | 
| 86 89 | 
             
              msgstr  ""
         | 
| 87 90 |  | 
| 88 91 | 
             
              msgid "reload_variables"   
         | 
| 89 | 
            -
              msgstr  "" 
         | 
| 92 | 
            +
              msgstr  "फिर लोड करें" 
         | 
| 90 93 |  | 
| 91 94 | 
             
              msgid "remove_applet"  
         | 
| 92 95 | 
             
              msgstr   ""
         | 
| 93 96 |  | 
| 94 97 | 
             
              msgid "return"   
         | 
| 95 | 
            -
              msgstr  ""
         | 
| 98 | 
            +
              msgstr  "पीछे"
         | 
| 96 99 |  | 
| 97 100 | 
             
              msgid "rwdtinker_window_2"    
         | 
| 98 101 | 
             
              msgstr  ""
         | 
| @@ -110,19 +113,19 @@ msgstr  "" | |
| 110 113 | 
             
              msgstr  ""
         | 
| 111 114 |  | 
| 112 115 | 
             
              msgid "showjump_links"  
         | 
| 113 | 
            -
              msgstr  ""
         | 
| 116 | 
            +
              msgstr  "प्रदर्शित करें"
         | 
| 114 117 |  | 
| 115 118 | 
             
            msgid "showdocument_list"  
         | 
| 116 | 
            -
              msgstr  ""
         | 
| 119 | 
            +
              msgstr  "प्रदर्शित करें दस्तावेज़ "
         | 
| 117 120 |  | 
| 118 121 | 
             
            msgid "showhelpabout_links"  
         | 
| 119 | 
            -
                msgstr  ""
         | 
| 122 | 
            +
                msgstr  "प्रदर्शित करें मदद परिचय"
         | 
| 120 123 |  | 
| 121 124 | 
             
              msgid "save"
         | 
| 122 | 
            -
              msgstr | 
| 125 | 
            +
              msgstr   "सहेजें"   
         | 
| 123 126 |  | 
| 124 127 | 
             
            msgid "save_changes"     
         | 
| 125 | 
            -
              msgstr  ""
         | 
| 128 | 
            +
              msgstr  "सहेजें परिवर्तन"
         | 
| 126 129 |  | 
| 127 130 | 
             
            msgid "selection_panel"  
         | 
| 128 131 | 
             
              msgstr  ""
         | 
| @@ -137,34 +140,34 @@ msgid "tinkerback_window" | |
| 137 140 | 
             
            msgstr  ""
         | 
| 138 141 |  | 
| 139 142 | 
             
            msgid "viewapplet_contents" 
         | 
| 140 | 
            -
              msgstr  ""
         | 
| 143 | 
            +
              msgstr  "प्रदर्शित करें plugin contents"
         | 
| 141 144 |  | 
| 142 145 | 
             
            msgid "viewalreadyinstalled_applications"   
         | 
| 143 | 
            -
            msgstr  ""
         | 
| 146 | 
            +
            msgstr  "प्रदर्शित करें already installed applications"
         | 
| 144 147 |  | 
| 145 148 | 
             
            msgid "viewinstalled_text"  
         | 
| 146 | 
            -
              msgstr  " | 
| 149 | 
            +
              msgstr  "प्रदर्शित करें installed text" 
         | 
| 147 150 |  | 
| 148 151 | 
             
            msgid "view_platform"   
         | 
| 149 | 
            -
              msgstr  " | 
| 152 | 
            +
              msgstr  "प्रदर्शित करें platform"
         | 
| 150 153 |  | 
| 151 154 | 
             
            msgid "viewplatform_information"   
         | 
| 152 | 
            -
              msgstr  " | 
| 155 | 
            +
              msgstr  "प्रदर्शित करें platform information"  
         | 
| 153 156 |  | 
| 154 157 | 
             
            msgid "viewlogger_information"    
         | 
| 155 | 
            -
            msgstr  ""  
         | 
| 158 | 
            +
            msgstr  "प्रदर्शित करें logger information"  
         | 
| 156 159 |  | 
| 157 160 | 
             
            msgid "view_event"   
         | 
| 158 | 
            -
              msgstr  "" | 
| 161 | 
            +
              msgstr  "प्रदर्शित करें event"
         | 
| 159 162 |  | 
| 160 163 | 
             
            msgid "viewinstall_text"  
         | 
| 161 | 
            -
            msgstr  "" | 
| 164 | 
            +
            msgstr  "प्रदर्शित करें install text"
         | 
| 162 165 |  | 
| 163 166 | 
             
              msgid "viewlistinstall_files"   
         | 
| 164 | 
            -
              msgstr  "" | 
| 167 | 
            +
              msgstr  "प्रदर्शित करें install files"
         | 
| 165 168 |  | 
| 166 169 | 
             
             msgid "view_photo"   
         | 
| 167 | 
            -
              msgstr  " | 
| 170 | 
            +
              msgstr  "तस्वीर"  
         | 
| 168 171 |  | 
| 169 172 | 
             
             msgid "window"    
         | 
| 170 | 
            -
              msgstr  " | 
| 173 | 
            +
              msgstr  "खिड़की"  
         |