Changeset 6952
- Timestamp:
- Mar 2, 2018, 12:20:14 PM (3 years ago)
- Location:
- bell-scheduler/trunk/fuentes
- Files:
-
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
bell-scheduler/trunk/fuentes/bell-scheduler/data-files/bell-scheduler.desktop
r6872 r6952 5 5 Name[es]=Bell Scheduler 6 6 Name[ca_ES@valencia]=Bell Scheduler 7 Name[ca_ES.UTF-8@valencia]=Bell Scheduler 7 8 Comment=Application to program the alarms of the educational centers for the entrance, exit, recreation... 8 9 Comment[es]=Aplicación para programar las alarmas de los centros educativos para la entrada, salida, recreo.. 9 10 Comment[ca_ES@valencia]=Aplicació per a programar les alarmes dels centres educatius per a l'entrada, eixida, recreo... 11 Comment[ca_ES.UTF-8@valencia]=Aplicació per a programar les alarmes dels centres educatius per a l'entrada, eixida, recreo... 10 12 GenericName=Bell Scheduler 11 13 Type=Application -
bell-scheduler/trunk/fuentes/bell-scheduler/python3-bellscheduler/BellBox.py
r6875 r6952 182 182 sound.set_margin_right(5) 183 183 sound.set_margin_bottom(15) 184 sound.set_width_chars( 20)185 sound.set_max_width_chars( 20)184 sound.set_width_chars(40) 185 sound.set_max_width_chars(40) 186 186 sound.set_xalign(-1) 187 187 sound.set_ellipsize(Pango.EllipsizeMode.START) -
bell-scheduler/trunk/fuentes/bell-scheduler/python3-bellscheduler/EditBox.py
r6948 r6952 16 16 import io 17 17 import glob 18 import threading 18 19 19 20 BANNERS_PATH="/usr/share/bell-scheduler/banners/" … … 75 76 self.duration_label=builder.get_object("duration_label") 76 77 self.duration_entry=builder.get_object("duration_entry") 78 self.note_label=builder.get_object("note_label") 77 79 78 80 self.weekdays=[] … … 121 123 self.image_label.set_name("EDIT_LABEL") 122 124 self.sound_label.set_name("EDIT_LABEL") 123 self.duration_label.set_name("EDIT_LABEL") 125 self.duration_label.set_name("EDIT_LABEL") 126 self.note_label.set_name("NOTE_LABEL") 124 127 125 128 #def set-css_info … … 137 140 #def connect_signals 138 141 142 def init_threads(self): 143 144 self.checking_data_t=threading.Thread(target=self.checking_data) 145 146 self.checking_data_t.daemon=True 147 148 self.checking_data_t.launched=False 149 150 GObject.threads_init() 151 152 #def init_threads 139 153 140 154 def init_data_form(self): … … 145 159 self.sound_dc.set_sensitive(False) 146 160 self.sound_url.set_sensitive(False) 161 <<<<<<< .mine 147 162 self.duration_entry.set_value(30) 163 self.init_threads() 164 ||||||| .r6943 165 ======= 166 self.duration_entry.set_value(30) 167 >>>>>>> .r6950 148 168 149 169 #def init_data_form … … 250 270 def gather_values(self,widget): 251 271 252 files_tocheck={}253 files_tocheck["sound"]=""254 files_tocheck["image"]=""255 files_tocheck["url"]=None256 files_tocheck["directory"]=""272 self.files_tocheck={} 273 self.files_tocheck["sound"]="" 274 self.files_tocheck["image"]="" 275 self.files_tocheck["url"]=None 276 self.files_tocheck["directory"]="" 257 277 258 278 … … 261 281 else: 262 282 self.image_path=self.image_fc.get_filename() 263 files_tocheck["image"]=self.image_path283 self.files_tocheck["image"]=self.image_path 264 284 265 285 if self.sound_op=="random": 266 286 self.sound_path=self.sound_dc.get_filename() 267 files_tocheck["directory"]=self.sound_path287 self.files_tocheck["directory"]=self.sound_path 268 288 elif self.sound_op=="file": 269 289 self.sound_path=self.sound_fc.get_filename() 270 files_tocheck["sound"]=self.sound_path290 self.files_tocheck["sound"]=self.sound_path 271 291 else: 272 292 self.sound_path=self.sound_url.get_text() 273 files_tocheck["url"]=self.sound_path293 self.files_tocheck["url"]=self.sound_path 274 294 275 295 self.duration=self.duration_entry.get_value_as_int() 276 check=self.core.bellmanager.check_data(self.name_entry.get_text(),files_tocheck,self.duration) 277 278 if not check["result"]: 279 self.core.mainWindow.manage_message(True,check["code"]) 296 297 self.core.mainWindow.waiting_label.set_text(self.core.mainWindow.get_msg(30)) 298 self.core.mainWindow.waiting_window.show_all() 299 self.init_threads() 300 self.checking_data_t.start() 301 GLib.timeout_add(100,self.pulsate_checking_data) 302 303 #def gather_values 304 305 def pulsate_checking_data(self): 306 307 if self.checking_data_t.is_alive(): 308 self.core.mainWindow.waiting_pbar.pulse() 309 return True 280 310 281 else: 282 self.save_values() 283 284 #def gather_values 285 311 else: 312 self.core.mainWindow.waiting_window.hide() 313 if not self.check["result"]: 314 self.core.mainWindow.manage_message(True,self.check["code"]) 315 else: 316 self.save_values() 317 318 return False 319 320 #def pulsate_checking_data 321 322 def checking_data(self): 323 324 self.check=self.core.bellmanager.check_data(self.name_entry.get_text(),self.files_tocheck) 325 326 #def checking_data 327 286 328 def save_values(self): 287 329 -
bell-scheduler/trunk/fuentes/bell-scheduler/python3-bellscheduler/bellmanager.py
r6871 r6952 10 10 import tempfile 11 11 import shutil 12 import subprocess 12 13 13 14 … … 65 66 #def save_conf 66 67 67 def check_data(self,name,files,duration): 68 68 def check_data(self,name,files): 69 70 check_image=None 71 check_sound=None 69 72 if name=="": 70 73 return {"result":False,"code":1} … … 72 75 73 76 if len(files)>0: 74 if files["sound"]!="": 75 if files["sound"]!=None: 76 self.check_mimetypes(files["sound"],"audio") 77 else: 78 return {"result":False,"code":3} 79 77 80 78 if files["image"]!="": 81 79 if files["image"]!=None: 82 self.check_mimetypes(files["image"],"image") 80 check_image=self.check_mimetypes(files["image"],"image") 81 83 82 else: 84 83 return {"result":False,"code":5} 85 86 87 if files["url"]!=None: 88 if files["url"]=="": 89 return {"result":False,"code":6} 90 91 92 if files["directory"]!="": 93 if files["directory"]==None: 94 return {"result":False,"code":7} 95 84 85 if check_image==None: 86 if files["sound"]!="": 87 if files["sound"]!=None: 88 check_sound=self.check_mimetypes(files["sound"],"audio") 89 if check_sound==None: 90 return self.check_audiofile(files["sound"],"file") 91 else: 92 return check_sound 93 else: 94 return {"result":False,"code":3} 95 96 if files["url"]!=None: 97 if files["url"]=="": 98 return {"result":False,"code":6} 99 else: 100 return self.check_audiofile(files["url"],"url") 101 102 if files["directory"]!="": 103 if files["directory"]==None: 104 return {"result":False,"code":7} 105 else: 106 return {"result":True,"code":0} 107 else: 108 return check_image 109 ''' 96 110 if duration==0: 97 111 return {"result":False,"code":8} 98 112 ''' 99 113 return {"result":True,"code":0} 100 114 … … 115 129 if not 'image' in image_mime[0]: 116 130 return {"result":False,"code":4} 117 131 118 132 #def check_mimetypes 119 133 120 134 def check_audiofile(self,file,type): 135 136 params=' -show_entries stream=codec_type,duration -of compact=p=0:nk=1' 137 138 print(file) 139 if type=="file": 140 cmd='ffprobe -i "'+file +'"'+ params 141 else: 142 cmd='ffprobe -i $(youtube-dl -g "'+file+'" |sed -n 2p) '+params 143 144 145 p=subprocess.Popen(cmd,shell=True,stdout=subprocess.PIPE) 146 poutput=p.communicate()[0] 147 148 if len(poutput)==0: 149 return {"result":False, "code":8} 150 else: 151 return {"result":True,"code":0} 152 153 154 #def check_audiofile 155 121 156 def get_order_bell(self,info=None): 122 157 -
bell-scheduler/trunk/fuentes/bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.css
r6877 r6952 36 36 #BELL_ERROR_SOUND{ 37 37 color: #CC0000; 38 font: Roboto Italic 1 1;38 font: Roboto Italic 10; 39 39 40 40 } … … 95 95 color: #3366cc; 96 96 font: Roboto Bold 12; 97 98 } 99 100 #NOTE_LABEL{ 101 102 color: #3366cc; 103 font: Roboto Bold 9; 97 104 98 105 } -
bell-scheduler/trunk/fuentes/bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui
r6871 r6952 357 357 <property name="halign">start</property> 358 358 <property name="valign">start</property> 359 <property name="margin_top"> 10</property>359 <property name="margin_top">7</property> 360 360 <property name="label" translatable="yes">Sound</property> 361 361 </object> … … 398 398 <property name="visible">True</property> 399 399 <property name="can_focus">False</property> 400 <property name="margin_top"> 10</property>400 <property name="margin_top">7</property> 401 401 <property name="label" translatable="yes">Max. duration (in seconds)</property> 402 402 <property name="xalign">0</property> … … 412 412 <property name="can_focus">True</property> 413 413 <property name="halign">end</property> 414 <property name="margin_top"> 10</property>414 <property name="margin_top">7</property> 415 415 <property name="adjustment">adjustment3</property> 416 416 <property name="wrap">True</property> … … 429 429 <property name="can_focus">True</property> 430 430 <property name="receives_default">False</property> 431 <property name="margin_top"> 5</property>431 <property name="margin_top">4</property> 432 432 <property name="margin_bottom">5</property> 433 433 <property name="xalign">0</property> … … 443 443 <property name="visible">True</property> 444 444 <property name="can_focus">False</property> 445 <property name="margin_top"> 5</property>445 <property name="margin_top">4</property> 446 446 <property name="margin_bottom">5</property> 447 447 <property name="create_folders">False</property> … … 459 459 <property name="can_focus">True</property> 460 460 <property name="receives_default">False</property> 461 <property name="margin_top"> 10</property>461 <property name="margin_top">7</property> 462 462 <property name="margin_bottom">5</property> 463 463 <property name="xalign">0</property> … … 475 475 <property name="visible">True</property> 476 476 <property name="can_focus">False</property> 477 <property name="margin_top"> 10</property>477 <property name="margin_top">7</property> 478 478 <property name="margin_bottom">5</property> 479 479 <property name="action">select-folder</property> … … 508 508 <property name="fill">True</property> 509 509 <property name="position">1</property> 510 </packing> 511 </child> 512 <child> 513 <object class="GtkLabel" id="note_label"> 514 <property name="visible">True</property> 515 <property name="can_focus">False</property> 516 <property name="label" translatable="yes">(!) If the indicated duration is 0, the sound will be reproduced in its entirety</property> 517 </object> 518 <packing> 519 <property name="expand">False</property> 520 <property name="fill">True</property> 521 <property name="position">2</property> 510 522 </packing> 511 523 </child> … … 582 594 </object> 583 595 <object class="GtkWindow" id="main_window"> 584 <property name="width_request"> 850</property>596 <property name="width_request">925</property> 585 597 <property name="height_request">665</property> 586 598 <property name="can_focus">False</property> -
bell-scheduler/trunk/fuentes/n4d-bellscheduler.install/usr/share/n4d/python-plugins/BellSchedulerManager.py
r6948 r6952 258 258 duration=info[item]["play"]["duration"] 259 259 260 <<<<<<< .mine 260 261 if duration>0: 261 262 fade_out=int(duration)-2 … … 263 264 cmd="ffplay -nodisp -autoexit -t "+str(duration) 264 265 else: 266 fade_effects='-af aformat=channel_layouts=mono ' 267 cmd="ffplay -nodisp -autoexit " 268 ||||||| .r6943 269 fade_out=int(duration)-2 270 fade_effects='-af afade=in:st=1:d=3,afade=out:st='+str(fade_out)+":d=2" 271 cmd="ffplay -nodisp -autoexit -t "+str(duration) 272 ======= 273 if duration>0: 274 fade_out=int(duration)-2 275 fade_effects='-af aformat=channel_layouts=mono -af afade=in:st=1:d=3,afade=out:st='+str(fade_out)+":d=2" 276 cmd="ffplay -nodisp -autoexit -t "+str(duration) 277 else: 265 278 fade_effects='-af aformat=channel_layouts=mono ' 279 >>>>>>> .r6950 266 280 267 281 if sound_option !="url": 268 282 if sound_option =="file": 269 283 cmd=cmd+" '"+sound_path+"' "+fade_effects 270 print(cmd)271 284 else: 272 285 random_file="$(find"+ " '"+sound_path+"' -type f -print0 | xargs -0 file -i | awk -F ':' '{ if ($2 ~ /audio/ || $2 ~ /video/ ) print $1 }'| shuf -n 1)" … … 278 291 info_to_cron["BellScheduler"][key]["cmd"]=cmd 279 292 293 print("###################################INFO TO CRON#######################") 294 print(info_to_cron) 280 295 return info_to_cron 281 296 -
bell-scheduler/trunk/fuentes/translations/bell-scheduler.pot
r6871 r6952 9 9 "Project-Id-Version: PACKAGE VERSION\n" 10 10 "Report-Msgid-Bugs-To: \n" 11 "POT-Creation-Date: 2018-0 2-19 10:09+0100\n"11 "POT-Creation-Date: 2018-03-02 09:44+0100\n" 12 12 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 13 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 33 33 msgstr "" 34 34 35 #: bell-scheduler/python3-bellscheduler/MainWindow.py:25 835 #: bell-scheduler/python3-bellscheduler/MainWindow.py:259 36 36 msgid "" 37 "New bells configura rion will be loaded and replace the existing "37 "New bells configuration will be loaded and replace the existing " 38 38 "configutarion. Do you want to continue?" 39 39 msgstr "" 40 40 41 #: bell-scheduler/python3-bellscheduler/MainWindow.py:26 241 #: bell-scheduler/python3-bellscheduler/MainWindow.py:263 42 42 msgid "Please choose a file to load bells list" 43 43 msgstr "" 44 44 45 #: bell-scheduler/python3-bellscheduler/MainWindow.py:3 7145 #: bell-scheduler/python3-bellscheduler/MainWindow.py:382 46 46 #: bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui:116 47 47 msgid "Monday" 48 48 msgstr "" 49 49 50 #: bell-scheduler/python3-bellscheduler/MainWindow.py:3 7251 #: bell-scheduler/python3-bellscheduler/BellBox.py:10 050 #: bell-scheduler/python3-bellscheduler/MainWindow.py:383 51 #: bell-scheduler/python3-bellscheduler/BellBox.py:101 52 52 msgid "M" 53 53 msgstr "" 54 54 55 #: bell-scheduler/python3-bellscheduler/MainWindow.py:3 7355 #: bell-scheduler/python3-bellscheduler/MainWindow.py:384 56 56 msgid "Mon" 57 57 msgstr "" 58 58 59 #: bell-scheduler/python3-bellscheduler/MainWindow.py:3 7559 #: bell-scheduler/python3-bellscheduler/MainWindow.py:386 60 60 #: bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui:129 61 61 msgid "Tuesday" 62 62 msgstr "" 63 63 64 #: bell-scheduler/python3-bellscheduler/MainWindow.py:3 7665 #: bell-scheduler/python3-bellscheduler/BellBox.py:11 064 #: bell-scheduler/python3-bellscheduler/MainWindow.py:387 65 #: bell-scheduler/python3-bellscheduler/BellBox.py:111 66 66 msgid "T" 67 67 msgstr "" 68 68 69 #: bell-scheduler/python3-bellscheduler/MainWindow.py:3 7769 #: bell-scheduler/python3-bellscheduler/MainWindow.py:388 70 70 msgid "Tue" 71 71 msgstr "" 72 72 73 #: bell-scheduler/python3-bellscheduler/MainWindow.py:3 7973 #: bell-scheduler/python3-bellscheduler/MainWindow.py:390 74 74 #: bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui:142 75 75 msgid "Wednesday" 76 76 msgstr "" 77 77 78 #: bell-scheduler/python3-bellscheduler/MainWindow.py:3 8079 #: bell-scheduler/python3-bellscheduler/BellBox.py:12 078 #: bell-scheduler/python3-bellscheduler/MainWindow.py:391 79 #: bell-scheduler/python3-bellscheduler/BellBox.py:121 80 80 msgid "W" 81 81 msgstr "" 82 82 83 #: bell-scheduler/python3-bellscheduler/MainWindow.py:3 8183 #: bell-scheduler/python3-bellscheduler/MainWindow.py:392 84 84 msgid "Wed" 85 85 msgstr "" 86 86 87 #: bell-scheduler/python3-bellscheduler/MainWindow.py:3 8387 #: bell-scheduler/python3-bellscheduler/MainWindow.py:394 88 88 #: bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui:155 89 89 msgid "Thursday" 90 90 msgstr "" 91 91 92 #: bell-scheduler/python3-bellscheduler/MainWindow.py:3 8493 #: bell-scheduler/python3-bellscheduler/BellBox.py:13 092 #: bell-scheduler/python3-bellscheduler/MainWindow.py:395 93 #: bell-scheduler/python3-bellscheduler/BellBox.py:131 94 94 msgid "R" 95 95 msgstr "" 96 96 97 #: bell-scheduler/python3-bellscheduler/MainWindow.py:3 8597 #: bell-scheduler/python3-bellscheduler/MainWindow.py:396 98 98 msgid "Thu" 99 99 msgstr "" 100 100 101 #: bell-scheduler/python3-bellscheduler/MainWindow.py:3 87101 #: bell-scheduler/python3-bellscheduler/MainWindow.py:398 102 102 #: bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui:168 103 103 msgid "Friday" 104 104 msgstr "" 105 105 106 #: bell-scheduler/python3-bellscheduler/MainWindow.py:3 88107 #: bell-scheduler/python3-bellscheduler/BellBox.py:14 0106 #: bell-scheduler/python3-bellscheduler/MainWindow.py:399 107 #: bell-scheduler/python3-bellscheduler/BellBox.py:141 108 108 msgid "F" 109 109 msgstr "" 110 110 111 #: bell-scheduler/python3-bellscheduler/MainWindow.py: 389111 #: bell-scheduler/python3-bellscheduler/MainWindow.py:400 112 112 msgid "Fri" 113 113 msgstr "" 114 114 115 #: bell-scheduler/python3-bellscheduler/MainWindow.py:4 62115 #: bell-scheduler/python3-bellscheduler/MainWindow.py:473 116 116 msgid "You must indicate a name for the alarm" 117 117 msgstr "" 118 118 119 #: bell-scheduler/python3-bellscheduler/MainWindow.py:4 64119 #: bell-scheduler/python3-bellscheduler/MainWindow.py:475 120 120 msgid "Sound file is not correct" 121 121 msgstr "" 122 122 123 #: bell-scheduler/python3-bellscheduler/MainWindow.py:4 66123 #: bell-scheduler/python3-bellscheduler/MainWindow.py:477 124 124 msgid "You must indicate sound file" 125 125 msgstr "" 126 126 127 #: bell-scheduler/python3-bellscheduler/MainWindow.py:4 68127 #: bell-scheduler/python3-bellscheduler/MainWindow.py:479 128 128 msgid "Image file is not correct" 129 129 msgstr "" 130 130 131 #: bell-scheduler/python3-bellscheduler/MainWindow.py:4 70131 #: bell-scheduler/python3-bellscheduler/MainWindow.py:481 132 132 msgid "You must indicate a image file" 133 133 msgstr "" 134 134 135 #: bell-scheduler/python3-bellscheduler/MainWindow.py:4 72135 #: bell-scheduler/python3-bellscheduler/MainWindow.py:483 136 136 msgid "You must indicate a url" 137 137 msgstr "" 138 138 139 #: bell-scheduler/python3-bellscheduler/MainWindow.py:4 74139 #: bell-scheduler/python3-bellscheduler/MainWindow.py:485 140 140 msgid "You must indicate a directory" 141 141 msgstr "" 142 142 143 #: bell-scheduler/python3-bellscheduler/MainWindow.py:4 76144 msgid " Max durartion must be major than 0"145 msgstr "" 146 147 #: bell-scheduler/python3-bellscheduler/MainWindow.py:4 78143 #: bell-scheduler/python3-bellscheduler/MainWindow.py:487 144 msgid "The sound file or url indicated is not reproducible" 145 msgstr "" 146 147 #: bell-scheduler/python3-bellscheduler/MainWindow.py:489 148 148 msgid "File has errors. Unabled to load it" 149 149 msgstr "" 150 150 151 #: bell-scheduler/python3-bellscheduler/MainWindow.py:4 80151 #: bell-scheduler/python3-bellscheduler/MainWindow.py:491 152 152 msgid "File loaded succesfully" 153 153 msgstr "" 154 154 155 #: bell-scheduler/python3-bellscheduler/MainWindow.py:4 82155 #: bell-scheduler/python3-bellscheduler/MainWindow.py:493 156 156 msgid "File saved succcesfully" 157 157 msgstr "" 158 158 159 #: bell-scheduler/python3-bellscheduler/MainWindow.py:4 84159 #: bell-scheduler/python3-bellscheduler/MainWindow.py:495 160 160 msgid "Unable to save file" 161 161 msgstr "" 162 162 163 #: bell-scheduler/python3-bellscheduler/MainWindow.py:4 86163 #: bell-scheduler/python3-bellscheduler/MainWindow.py:497 164 164 msgid "File loaded with errors" 165 165 msgstr "" 166 166 167 #: bell-scheduler/python3-bellscheduler/MainWindow.py:4 88167 #: bell-scheduler/python3-bellscheduler/MainWindow.py:499 168 168 msgid "Bell deleted successfully" 169 169 msgstr "" 170 170 171 #: bell-scheduler/python3-bellscheduler/MainWindow.py: 490171 #: bell-scheduler/python3-bellscheduler/MainWindow.py:501 172 172 msgid "Bell edited successfully" 173 173 msgstr "" 174 174 175 #: bell-scheduler/python3-bellscheduler/MainWindow.py: 492175 #: bell-scheduler/python3-bellscheduler/MainWindow.py:503 176 176 msgid "Bell activated successfully" 177 177 msgstr "" 178 178 179 #: bell-scheduler/python3-bellscheduler/MainWindow.py: 494179 #: bell-scheduler/python3-bellscheduler/MainWindow.py:505 180 180 msgid "Bell deactivated successfully" 181 181 msgstr "" 182 182 183 #: bell-scheduler/python3-bellscheduler/MainWindow.py: 496183 #: bell-scheduler/python3-bellscheduler/MainWindow.py:507 184 184 msgid "Bell created successfully" 185 185 msgstr "" 186 186 187 #: bell-scheduler/python3-bellscheduler/MainWindow.py: 498187 #: bell-scheduler/python3-bellscheduler/MainWindow.py:509 188 188 msgid "Unabled to edit the Bell due to problems with cron sync" 189 189 msgstr "" 190 190 191 #: bell-scheduler/python3-bellscheduler/MainWindow.py:5 00191 #: bell-scheduler/python3-bellscheduler/MainWindow.py:511 192 192 msgid "Unabled to create the Bell due to problems with cron sync" 193 193 msgstr "" 194 194 195 #: bell-scheduler/python3-bellscheduler/MainWindow.py:5 02195 #: bell-scheduler/python3-bellscheduler/MainWindow.py:513 196 196 msgid "Unabled to delete the Bell due to problems with cron sync" 197 197 msgstr "" 198 198 199 #: bell-scheduler/python3-bellscheduler/MainWindow.py:5 04199 #: bell-scheduler/python3-bellscheduler/MainWindow.py:515 200 200 msgid "Unabled to activate the Bell due to problems with cron sync" 201 201 msgstr "" 202 202 203 #: bell-scheduler/python3-bellscheduler/MainWindow.py:5 06203 #: bell-scheduler/python3-bellscheduler/MainWindow.py:517 204 204 msgid "Unabled to deactivate the Bell due to problems with cron sync" 205 205 msgstr "" 206 206 207 #: bell-scheduler/python3-bellscheduler/MainWindow.py:5 08207 #: bell-scheduler/python3-bellscheduler/MainWindow.py:519 208 208 msgid "Unabled to copy image and/or sound file to work directory" 209 209 msgstr "" 210 210 211 #: bell-scheduler/python3-bellscheduler/MainWindow.py:5 10211 #: bell-scheduler/python3-bellscheduler/MainWindow.py:521 212 212 msgid "Unabled to read bells configuration file" 213 213 msgstr "" 214 214 215 #: bell-scheduler/python3-bellscheduler/MainWindow.py:5 12215 #: bell-scheduler/python3-bellscheduler/MainWindow.py:523 216 216 msgid "Exporting bells configuration. Wait a moment..." 217 217 msgstr "" 218 218 219 #: bell-scheduler/python3-bellscheduler/MainWindow.py:5 14219 #: bell-scheduler/python3-bellscheduler/MainWindow.py:525 220 220 msgid "Importing bells configuration. Wait a moment..." 221 221 msgstr "" 222 222 223 #: bell-scheduler/python3-bellscheduler/MainWindow.py:5 16223 #: bell-scheduler/python3-bellscheduler/MainWindow.py:527 224 224 msgid "Revovering previous bells configuration. Wait a moment..." 225 225 msgstr "" 226 226 227 #: bell-scheduler/python3-bellscheduler/BellBox.py:200 227 #: bell-scheduler/python3-bellscheduler/MainWindow.py:529 228 msgid "ERROR: File or directory not available" 229 msgstr "" 230 231 #: bell-scheduler/python3-bellscheduler/MainWindow.py:531 232 msgid "Validating the data entered..." 233 msgstr "" 234 235 #: bell-scheduler/python3-bellscheduler/BellBox.py:201 228 236 msgid "Delete bell" 229 237 msgstr "" 230 238 231 #: bell-scheduler/python3-bellscheduler/BellBox.py:20 8239 #: bell-scheduler/python3-bellscheduler/BellBox.py:209 232 240 msgid "Edit bell" 233 241 msgstr "" 234 242 235 #: bell-scheduler/python3-bellscheduler/BellBox.py:21 3243 #: bell-scheduler/python3-bellscheduler/BellBox.py:214 236 244 msgid "Activate or deactivate bell" 237 245 msgstr "" 238 246 239 #: bell-scheduler/python3-bellscheduler/BellBox.py:3 01247 #: bell-scheduler/python3-bellscheduler/BellBox.py:312 240 248 msgid "Do you want delete the bell?" 241 249 msgstr "" … … 277 285 msgstr "" 278 286 279 #: bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui:618 287 #: bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui:516 288 msgid "" 289 "(!) If the indicated duration is 0, the sound will be reproduced in its " 290 "entirety" 291 msgstr "" 292 293 #: bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui:630 280 294 msgid "Add new bell" 281 295 msgstr "" 282 296 283 #: bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui:6 32297 #: bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui:644 284 298 msgid "Export bell to file" 285 299 msgstr "" 286 300 287 #: bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui:6 46301 #: bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui:658 288 302 msgid "Load file with bells" 289 303 msgstr "" 290 304 291 #: bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui:6 66305 #: bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui:678 292 306 msgid "Search by hour, day and description" 293 307 msgstr "" 294 308 295 #: bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui:6 68309 #: bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui:680 296 310 msgid "Search..." 297 311 msgstr "" -
bell-scheduler/trunk/fuentes/translations/ca_ES.UTF-8@valencia.po
r6943 r6952 9 9 "Project-Id-Version: \n" 10 10 "Report-Msgid-Bugs-To: \n" 11 "POT-Creation-Date: 2018-0 2-19 12:17+0100\n"12 "PO-Revision-Date: 2018-0 2-26 08:58+0200\n"11 "POT-Creation-Date: 2018-03-02 12:03+0100\n" 12 "PO-Revision-Date: 2018-03-02 12:05+0100\n" 13 13 "Last-Translator: Pilar Embid Giner <embid_mar@gva.es>\n" 14 14 "Language-Team: LliureX\n" … … 18 18 "Content-Transfer-Encoding: 8bit\n" 19 19 "Plural-Forms: nplurals=2; plural=(n != 1);\n" 20 "X-Generator: Virtaal 0.7.1\n"20 "X-Generator: Poedit 1.8.7.1\n" 21 21 22 22 #: bell-scheduler/python3-bellscheduler/MainWindow.py:60 … … 38 38 msgstr "Seleccioneu el fitxer per a guardar la llista d'alarmes" 39 39 40 #: bell-scheduler/python3-bellscheduler/MainWindow.py:25 840 #: bell-scheduler/python3-bellscheduler/MainWindow.py:259 41 41 msgid "" 42 "New bells configura rion will be loaded and replace the existing "42 "New bells configuration will be loaded and replace the existing " 43 43 "configutarion. Do you want to continue?" 44 44 msgstr "" … … 46 46 "ha. Voleu continuar?" 47 47 48 #: bell-scheduler/python3-bellscheduler/MainWindow.py:26 248 #: bell-scheduler/python3-bellscheduler/MainWindow.py:263 49 49 msgid "Please choose a file to load bells list" 50 50 msgstr "Seleccioneu el fitxer per a carregar la llista d'alarmes" 51 51 52 #: bell-scheduler/python3-bellscheduler/MainWindow.py:3 7152 #: bell-scheduler/python3-bellscheduler/MainWindow.py:382 53 53 #: bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui:116 54 54 msgid "Monday" 55 55 msgstr "Dilluns" 56 56 57 #: bell-scheduler/python3-bellscheduler/MainWindow.py:3 7258 #: bell-scheduler/python3-bellscheduler/BellBox.py:10 057 #: bell-scheduler/python3-bellscheduler/MainWindow.py:383 58 #: bell-scheduler/python3-bellscheduler/BellBox.py:101 59 59 msgid "M" 60 60 msgstr "Dl." 61 61 62 #: bell-scheduler/python3-bellscheduler/MainWindow.py:3 7362 #: bell-scheduler/python3-bellscheduler/MainWindow.py:384 63 63 msgid "Mon" 64 64 msgstr "Dl." 65 65 66 #: bell-scheduler/python3-bellscheduler/MainWindow.py:3 7566 #: bell-scheduler/python3-bellscheduler/MainWindow.py:386 67 67 #: bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui:129 68 68 msgid "Tuesday" 69 69 msgstr "Dimarts" 70 70 71 #: bell-scheduler/python3-bellscheduler/MainWindow.py:3 7672 #: bell-scheduler/python3-bellscheduler/BellBox.py:11 071 #: bell-scheduler/python3-bellscheduler/MainWindow.py:387 72 #: bell-scheduler/python3-bellscheduler/BellBox.py:111 73 73 msgid "T" 74 74 msgstr "Dt." 75 75 76 #: bell-scheduler/python3-bellscheduler/MainWindow.py:3 7776 #: bell-scheduler/python3-bellscheduler/MainWindow.py:388 77 77 msgid "Tue" 78 78 msgstr "Dt." 79 79 80 #: bell-scheduler/python3-bellscheduler/MainWindow.py:3 7980 #: bell-scheduler/python3-bellscheduler/MainWindow.py:390 81 81 #: bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui:142 82 82 msgid "Wednesday" 83 83 msgstr "Dimecres" 84 84 85 #: bell-scheduler/python3-bellscheduler/MainWindow.py:3 8086 #: bell-scheduler/python3-bellscheduler/BellBox.py:12 085 #: bell-scheduler/python3-bellscheduler/MainWindow.py:391 86 #: bell-scheduler/python3-bellscheduler/BellBox.py:121 87 87 msgid "W" 88 88 msgstr "Dc." 89 89 90 #: bell-scheduler/python3-bellscheduler/MainWindow.py:3 8190 #: bell-scheduler/python3-bellscheduler/MainWindow.py:392 91 91 msgid "Wed" 92 92 msgstr "Dc." 93 93 94 #: bell-scheduler/python3-bellscheduler/MainWindow.py:3 8394 #: bell-scheduler/python3-bellscheduler/MainWindow.py:394 95 95 #: bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui:155 96 96 msgid "Thursday" 97 97 msgstr "Dijous" 98 98 99 #: bell-scheduler/python3-bellscheduler/MainWindow.py:3 84100 #: bell-scheduler/python3-bellscheduler/BellBox.py:13 099 #: bell-scheduler/python3-bellscheduler/MainWindow.py:395 100 #: bell-scheduler/python3-bellscheduler/BellBox.py:131 101 101 msgid "R" 102 102 msgstr "Dj." 103 103 104 #: bell-scheduler/python3-bellscheduler/MainWindow.py:3 85104 #: bell-scheduler/python3-bellscheduler/MainWindow.py:396 105 105 msgid "Thu" 106 106 msgstr "Dj." 107 107 108 #: bell-scheduler/python3-bellscheduler/MainWindow.py:3 87108 #: bell-scheduler/python3-bellscheduler/MainWindow.py:398 109 109 #: bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui:168 110 110 msgid "Friday" 111 111 msgstr "Divendres" 112 112 113 #: bell-scheduler/python3-bellscheduler/MainWindow.py:3 88114 #: bell-scheduler/python3-bellscheduler/BellBox.py:14 0113 #: bell-scheduler/python3-bellscheduler/MainWindow.py:399 114 #: bell-scheduler/python3-bellscheduler/BellBox.py:141 115 115 msgid "F" 116 116 msgstr "Dv." 117 117 118 #: bell-scheduler/python3-bellscheduler/MainWindow.py: 389118 #: bell-scheduler/python3-bellscheduler/MainWindow.py:400 119 119 msgid "Fri" 120 120 msgstr "Dv." 121 121 122 #: bell-scheduler/python3-bellscheduler/MainWindow.py:4 62122 #: bell-scheduler/python3-bellscheduler/MainWindow.py:473 123 123 msgid "You must indicate a name for the alarm" 124 124 msgstr "Cal que indiqueu un nom per a l'alarma" 125 125 126 #: bell-scheduler/python3-bellscheduler/MainWindow.py:4 64126 #: bell-scheduler/python3-bellscheduler/MainWindow.py:475 127 127 msgid "Sound file is not correct" 128 128 msgstr "El fitxer de so no és correcte." 129 129 130 #: bell-scheduler/python3-bellscheduler/MainWindow.py:4 66130 #: bell-scheduler/python3-bellscheduler/MainWindow.py:477 131 131 msgid "You must indicate sound file" 132 132 msgstr "Cal que indiqueu un fitxer de so" 133 133 134 #: bell-scheduler/python3-bellscheduler/MainWindow.py:4 68134 #: bell-scheduler/python3-bellscheduler/MainWindow.py:479 135 135 msgid "Image file is not correct" 136 136 msgstr "El fitxer d'imatge no és correcte." 137 137 138 #: bell-scheduler/python3-bellscheduler/MainWindow.py:4 70138 #: bell-scheduler/python3-bellscheduler/MainWindow.py:481 139 139 msgid "You must indicate a image file" 140 140 msgstr "Cal que indiqueu un fitxer d'imatge" 141 141 142 #: bell-scheduler/python3-bellscheduler/MainWindow.py:4 72142 #: bell-scheduler/python3-bellscheduler/MainWindow.py:483 143 143 msgid "You must indicate a url" 144 144 msgstr "Cal que indiqueu un URL" 145 145 146 #: bell-scheduler/python3-bellscheduler/MainWindow.py:4 74146 #: bell-scheduler/python3-bellscheduler/MainWindow.py:485 147 147 msgid "You must indicate a directory" 148 148 msgstr "Cal que indiqueu un directori" 149 149 150 #: bell-scheduler/python3-bellscheduler/MainWindow.py:4 76151 msgid " Max durartion must be major than 0"152 msgstr " La durada màxima ha de ser major que 0."153 154 #: bell-scheduler/python3-bellscheduler/MainWindow.py:4 78150 #: bell-scheduler/python3-bellscheduler/MainWindow.py:487 151 msgid "The sound file or url indicated is not reproducible" 152 msgstr "El fitxer de so o l'URL indicats no es poden reproduir" 153 154 #: bell-scheduler/python3-bellscheduler/MainWindow.py:489 155 155 msgid "File has errors. Unabled to load it" 156 156 msgstr "El fitxer conté errors. No és possible carregar-lo." 157 157 158 #: bell-scheduler/python3-bellscheduler/MainWindow.py:4 80158 #: bell-scheduler/python3-bellscheduler/MainWindow.py:491 159 159 msgid "File loaded succesfully" 160 160 msgstr "El fitxer s'ha carregat correctament." 161 161 162 #: bell-scheduler/python3-bellscheduler/MainWindow.py:4 82162 #: bell-scheduler/python3-bellscheduler/MainWindow.py:493 163 163 msgid "File saved succcesfully" 164 164 msgstr "El fitxer s'ha guardat correctament." 165 165 166 #: bell-scheduler/python3-bellscheduler/MainWindow.py:4 84166 #: bell-scheduler/python3-bellscheduler/MainWindow.py:495 167 167 msgid "Unable to save file" 168 168 msgstr "No es pot guardar el fitxer." 169 169 170 #: bell-scheduler/python3-bellscheduler/MainWindow.py:4 86170 #: bell-scheduler/python3-bellscheduler/MainWindow.py:497 171 171 msgid "File loaded with errors" 172 172 msgstr "El fitxer s'ha carregat amb erors." 173 173 174 #: bell-scheduler/python3-bellscheduler/MainWindow.py:4 88174 #: bell-scheduler/python3-bellscheduler/MainWindow.py:499 175 175 msgid "Bell deleted successfully" 176 176 msgstr "L'alarma s'ha eliminat correctament." 177 177 178 #: bell-scheduler/python3-bellscheduler/MainWindow.py: 490178 #: bell-scheduler/python3-bellscheduler/MainWindow.py:501 179 179 msgid "Bell edited successfully" 180 180 msgstr "L'alarma s'ha editat correctament." 181 181 182 #: bell-scheduler/python3-bellscheduler/MainWindow.py: 492182 #: bell-scheduler/python3-bellscheduler/MainWindow.py:503 183 183 msgid "Bell activated successfully" 184 184 msgstr "L'alarma s'ha activat correctament." 185 185 186 #: bell-scheduler/python3-bellscheduler/MainWindow.py: 494186 #: bell-scheduler/python3-bellscheduler/MainWindow.py:505 187 187 msgid "Bell deactivated successfully" 188 188 msgstr "L'alarma s'ha desactivat correctament." 189 189 190 #: bell-scheduler/python3-bellscheduler/MainWindow.py: 496190 #: bell-scheduler/python3-bellscheduler/MainWindow.py:507 191 191 msgid "Bell created successfully" 192 192 msgstr "L'alarma s'ha creat correctament." 193 193 194 #: bell-scheduler/python3-bellscheduler/MainWindow.py: 498194 #: bell-scheduler/python3-bellscheduler/MainWindow.py:509 195 195 msgid "Unabled to edit the Bell due to problems with cron sync" 196 196 msgstr "" … … 198 198 "cron." 199 199 200 #: bell-scheduler/python3-bellscheduler/MainWindow.py:5 00200 #: bell-scheduler/python3-bellscheduler/MainWindow.py:511 201 201 msgid "Unabled to create the Bell due to problems with cron sync" 202 202 msgstr "" … … 204 204 "cron." 205 205 206 #: bell-scheduler/python3-bellscheduler/MainWindow.py:5 02206 #: bell-scheduler/python3-bellscheduler/MainWindow.py:513 207 207 msgid "Unabled to delete the Bell due to problems with cron sync" 208 208 msgstr "" … … 210 210 "el cron." 211 211 212 #: bell-scheduler/python3-bellscheduler/MainWindow.py:5 04212 #: bell-scheduler/python3-bellscheduler/MainWindow.py:515 213 213 msgid "Unabled to activate the Bell due to problems with cron sync" 214 214 msgstr "" … … 216 216 "cron." 217 217 218 #: bell-scheduler/python3-bellscheduler/MainWindow.py:5 06218 #: bell-scheduler/python3-bellscheduler/MainWindow.py:517 219 219 msgid "Unabled to deactivate the Bell due to problems with cron sync" 220 220 msgstr "" … … 222 222 "el cron." 223 223 224 #: bell-scheduler/python3-bellscheduler/MainWindow.py:5 08224 #: bell-scheduler/python3-bellscheduler/MainWindow.py:519 225 225 msgid "Unabled to copy image and/or sound file to work directory" 226 226 msgstr "No es pot copiar el fitxer d'imatge i/o so al directori de treball." 227 227 228 #: bell-scheduler/python3-bellscheduler/MainWindow.py:5 10228 #: bell-scheduler/python3-bellscheduler/MainWindow.py:521 229 229 msgid "Unabled to read bells configuration file" 230 230 msgstr "No es pot llegir el fitxer de configuració de les alarmes." 231 231 232 #: bell-scheduler/python3-bellscheduler/MainWindow.py:5 12232 #: bell-scheduler/python3-bellscheduler/MainWindow.py:523 233 233 msgid "Exporting bells configuration. Wait a moment..." 234 234 msgstr "S'està exportant la configuració de les alarmes. Espereu un moment..." 235 235 236 #: bell-scheduler/python3-bellscheduler/MainWindow.py:5 14236 #: bell-scheduler/python3-bellscheduler/MainWindow.py:525 237 237 msgid "Importing bells configuration. Wait a moment..." 238 238 msgstr "S'està important la configuració de les alarmes. Espereu un moment..." 239 239 240 #: bell-scheduler/python3-bellscheduler/MainWindow.py:5 16240 #: bell-scheduler/python3-bellscheduler/MainWindow.py:527 241 241 msgid "Revovering previous bells configuration. Wait a moment..." 242 242 msgstr "" … … 244 244 "moment..." 245 245 246 #: bell-scheduler/python3-bellscheduler/BellBox.py:200 246 #: bell-scheduler/python3-bellscheduler/MainWindow.py:529 247 msgid "ERROR: File or directory not available" 248 msgstr "ERROR: el fitxer o la carpeta no estan disponibles" 249 250 #: bell-scheduler/python3-bellscheduler/MainWindow.py:531 251 msgid "Validating the data entered..." 252 msgstr "S'estan validant les dades introduïdes..." 253 254 #: bell-scheduler/python3-bellscheduler/BellBox.py:201 247 255 msgid "Delete bell" 248 256 msgstr "Elimina l'alarma" 249 257 250 #: bell-scheduler/python3-bellscheduler/BellBox.py:20 8258 #: bell-scheduler/python3-bellscheduler/BellBox.py:209 251 259 msgid "Edit bell" 252 260 msgstr "Edita l'alarma" 253 261 254 #: bell-scheduler/python3-bellscheduler/BellBox.py:21 3262 #: bell-scheduler/python3-bellscheduler/BellBox.py:214 255 263 msgid "Activate or deactivate bell" 256 264 msgstr "Activa o desactiva l'alarma" 257 265 258 #: bell-scheduler/python3-bellscheduler/BellBox.py:3 01266 #: bell-scheduler/python3-bellscheduler/BellBox.py:312 259 267 msgid "Do you want delete the bell?" 260 268 msgstr "Voleu eliminar l'alarma?" … … 296 304 msgstr "Fitxer aleatori des d'un directori " 297 305 298 #: bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui:618 306 #: bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui:516 307 msgid "" 308 "(!) If the indicated duration is 0, the sound will be reproduced in its " 309 "entirety" 310 msgstr "(!) Si la durada indicada és 0, el so es reproduirà completament" 311 312 #: bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui:630 299 313 msgid "Add new bell" 300 314 msgstr "Afig una alarma" 301 315 302 #: bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui:6 32316 #: bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui:644 303 317 msgid "Export bell to file" 304 318 msgstr "Exporta l'alarma a un fitxer" 305 319 306 #: bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui:6 46320 #: bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui:658 307 321 msgid "Load file with bells" 308 322 msgstr "Carrega el fitxer amb alarmes" 309 323 310 #: bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui:6 66324 #: bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui:678 311 325 msgid "Search by hour, day and description" 312 326 msgstr "Cerca per hores, dies i descripció" 313 327 314 #: bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui:6 68328 #: bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui:680 315 329 msgid "Search..." 316 330 msgstr "Cerca..." 331 332 #~ msgid "" 333 #~ "New bells configurarion will be loaded and replace the existing " 334 #~ "configutarion. Do you want to continue?" 335 #~ msgstr "" 336 #~ "Ara es carregarà una nova configuració d'alarmes que reemplaçarà la que " 337 #~ "hi ha. Voleu continuar?" 338 339 #~ msgid "Max durartion must be major than 0" 340 #~ msgstr "La durada màxima ha de ser major que 0." -
bell-scheduler/trunk/fuentes/translations/ca_ES@valencia.po
r6943 r6952 9 9 "Project-Id-Version: \n" 10 10 "Report-Msgid-Bugs-To: \n" 11 "POT-Creation-Date: 2018-0 2-19 12:18+0100\n"12 "PO-Revision-Date: 2018-0 2-26 08:57+0200\n"11 "POT-Creation-Date: 2018-03-02 12:03+0100\n" 12 "PO-Revision-Date: 2018-03-02 12:05+0100\n" 13 13 "Last-Translator: Pilar Embid Giner <embid_mar@gva.es>\n" 14 14 "Language-Team: LliureX\n" … … 18 18 "Content-Transfer-Encoding: 8bit\n" 19 19 "Plural-Forms: nplurals=2; plural=(n != 1);\n" 20 "X-Generator: Virtaal 0.7.1\n"20 "X-Generator: Poedit 1.8.7.1\n" 21 21 22 22 #: bell-scheduler/python3-bellscheduler/MainWindow.py:60 … … 38 38 msgstr "Seleccioneu el fitxer per a guardar la llista d'alarmes" 39 39 40 #: bell-scheduler/python3-bellscheduler/MainWindow.py:25 840 #: bell-scheduler/python3-bellscheduler/MainWindow.py:259 41 41 msgid "" 42 "New bells configura rion will be loaded and replace the existing "42 "New bells configuration will be loaded and replace the existing " 43 43 "configutarion. Do you want to continue?" 44 44 msgstr "" … … 46 46 "ha. Voleu continuar?" 47 47 48 #: bell-scheduler/python3-bellscheduler/MainWindow.py:26 248 #: bell-scheduler/python3-bellscheduler/MainWindow.py:263 49 49 msgid "Please choose a file to load bells list" 50 50 msgstr "Seleccioneu el fitxer per a carregar la llista d'alarmes" 51 51 52 #: bell-scheduler/python3-bellscheduler/MainWindow.py:3 7152 #: bell-scheduler/python3-bellscheduler/MainWindow.py:382 53 53 #: bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui:116 54 54 msgid "Monday" 55 55 msgstr "Dilluns" 56 56 57 #: bell-scheduler/python3-bellscheduler/MainWindow.py:3 7258 #: bell-scheduler/python3-bellscheduler/BellBox.py:10 057 #: bell-scheduler/python3-bellscheduler/MainWindow.py:383 58 #: bell-scheduler/python3-bellscheduler/BellBox.py:101 59 59 msgid "M" 60 60 msgstr "Dl." 61 61 62 #: bell-scheduler/python3-bellscheduler/MainWindow.py:3 7362 #: bell-scheduler/python3-bellscheduler/MainWindow.py:384 63 63 msgid "Mon" 64 64 msgstr "Dl." 65 65 66 #: bell-scheduler/python3-bellscheduler/MainWindow.py:3 7566 #: bell-scheduler/python3-bellscheduler/MainWindow.py:386 67 67 #: bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui:129 68 68 msgid "Tuesday" 69 69 msgstr "Dimarts" 70 70 71 #: bell-scheduler/python3-bellscheduler/MainWindow.py:3 7672 #: bell-scheduler/python3-bellscheduler/BellBox.py:11 071 #: bell-scheduler/python3-bellscheduler/MainWindow.py:387 72 #: bell-scheduler/python3-bellscheduler/BellBox.py:111 73 73 msgid "T" 74 74 msgstr "Dt." 75 75 76 #: bell-scheduler/python3-bellscheduler/MainWindow.py:3 7776 #: bell-scheduler/python3-bellscheduler/MainWindow.py:388 77 77 msgid "Tue" 78 78 msgstr "Dt." 79 79 80 #: bell-scheduler/python3-bellscheduler/MainWindow.py:3 7980 #: bell-scheduler/python3-bellscheduler/MainWindow.py:390 81 81 #: bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui:142 82 82 msgid "Wednesday" 83 83 msgstr "Dimecres" 84 84 85 #: bell-scheduler/python3-bellscheduler/MainWindow.py:3 8086 #: bell-scheduler/python3-bellscheduler/BellBox.py:12 085 #: bell-scheduler/python3-bellscheduler/MainWindow.py:391 86 #: bell-scheduler/python3-bellscheduler/BellBox.py:121 87 87 msgid "W" 88 88 msgstr "Dc." 89 89 90 #: bell-scheduler/python3-bellscheduler/MainWindow.py:3 8190 #: bell-scheduler/python3-bellscheduler/MainWindow.py:392 91 91 msgid "Wed" 92 92 msgstr "Dc." 93 93 94 #: bell-scheduler/python3-bellscheduler/MainWindow.py:3 8394 #: bell-scheduler/python3-bellscheduler/MainWindow.py:394 95 95 #: bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui:155 96 96 msgid "Thursday" 97 97 msgstr "Dijous" 98 98 99 #: bell-scheduler/python3-bellscheduler/MainWindow.py:3 84100 #: bell-scheduler/python3-bellscheduler/BellBox.py:13 099 #: bell-scheduler/python3-bellscheduler/MainWindow.py:395 100 #: bell-scheduler/python3-bellscheduler/BellBox.py:131 101 101 msgid "R" 102 102 msgstr "Dj." 103 103 104 #: bell-scheduler/python3-bellscheduler/MainWindow.py:3 85104 #: bell-scheduler/python3-bellscheduler/MainWindow.py:396 105 105 msgid "Thu" 106 106 msgstr "Dj." 107 107 108 #: bell-scheduler/python3-bellscheduler/MainWindow.py:3 87108 #: bell-scheduler/python3-bellscheduler/MainWindow.py:398 109 109 #: bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui:168 110 110 msgid "Friday" 111 111 msgstr "Divendres" 112 112 113 #: bell-scheduler/python3-bellscheduler/MainWindow.py:3 88114 #: bell-scheduler/python3-bellscheduler/BellBox.py:14 0113 #: bell-scheduler/python3-bellscheduler/MainWindow.py:399 114 #: bell-scheduler/python3-bellscheduler/BellBox.py:141 115 115 msgid "F" 116 116 msgstr "Dv." 117 117 118 #: bell-scheduler/python3-bellscheduler/MainWindow.py: 389118 #: bell-scheduler/python3-bellscheduler/MainWindow.py:400 119 119 msgid "Fri" 120 120 msgstr "Dv." 121 121 122 #: bell-scheduler/python3-bellscheduler/MainWindow.py:4 62122 #: bell-scheduler/python3-bellscheduler/MainWindow.py:473 123 123 msgid "You must indicate a name for the alarm" 124 124 msgstr "Cal que indiqueu un nom per a l'alarma" 125 125 126 #: bell-scheduler/python3-bellscheduler/MainWindow.py:4 64126 #: bell-scheduler/python3-bellscheduler/MainWindow.py:475 127 127 msgid "Sound file is not correct" 128 128 msgstr "El fitxer de so no és correcte." 129 129 130 #: bell-scheduler/python3-bellscheduler/MainWindow.py:4 66130 #: bell-scheduler/python3-bellscheduler/MainWindow.py:477 131 131 msgid "You must indicate sound file" 132 132 msgstr "Cal que indiqueu un fitxer de so" 133 133 134 #: bell-scheduler/python3-bellscheduler/MainWindow.py:4 68134 #: bell-scheduler/python3-bellscheduler/MainWindow.py:479 135 135 msgid "Image file is not correct" 136 136 msgstr "El fitxer d'imatge no és correcte." 137 137 138 #: bell-scheduler/python3-bellscheduler/MainWindow.py:4 70138 #: bell-scheduler/python3-bellscheduler/MainWindow.py:481 139 139 msgid "You must indicate a image file" 140 140 msgstr "Cal que indiqueu un fitxer d'imatge" 141 141 142 #: bell-scheduler/python3-bellscheduler/MainWindow.py:4 72142 #: bell-scheduler/python3-bellscheduler/MainWindow.py:483 143 143 msgid "You must indicate a url" 144 144 msgstr "Cal que indiqueu un URL" 145 145 146 #: bell-scheduler/python3-bellscheduler/MainWindow.py:4 74146 #: bell-scheduler/python3-bellscheduler/MainWindow.py:485 147 147 msgid "You must indicate a directory" 148 148 msgstr "Cal que indiqueu un directori" 149 149 150 #: bell-scheduler/python3-bellscheduler/MainWindow.py:4 76151 msgid " Max durartion must be major than 0"152 msgstr " La durada màxima ha de ser major que 0."153 154 #: bell-scheduler/python3-bellscheduler/MainWindow.py:4 78150 #: bell-scheduler/python3-bellscheduler/MainWindow.py:487 151 msgid "The sound file or url indicated is not reproducible" 152 msgstr "El fitxer de so o l'URL indicats no es poden reproduir" 153 154 #: bell-scheduler/python3-bellscheduler/MainWindow.py:489 155 155 msgid "File has errors. Unabled to load it" 156 156 msgstr "El fitxer conté errors. No és possible carregar-lo." 157 157 158 #: bell-scheduler/python3-bellscheduler/MainWindow.py:4 80158 #: bell-scheduler/python3-bellscheduler/MainWindow.py:491 159 159 msgid "File loaded succesfully" 160 160 msgstr "El fitxer s'ha carregat correctament." 161 161 162 #: bell-scheduler/python3-bellscheduler/MainWindow.py:4 82162 #: bell-scheduler/python3-bellscheduler/MainWindow.py:493 163 163 msgid "File saved succcesfully" 164 164 msgstr "El fitxer s'ha guardat correctament." 165 165 166 #: bell-scheduler/python3-bellscheduler/MainWindow.py:4 84166 #: bell-scheduler/python3-bellscheduler/MainWindow.py:495 167 167 msgid "Unable to save file" 168 168 msgstr "No es pot guardar el fitxer." 169 169 170 #: bell-scheduler/python3-bellscheduler/MainWindow.py:4 86170 #: bell-scheduler/python3-bellscheduler/MainWindow.py:497 171 171 msgid "File loaded with errors" 172 172 msgstr "El fitxer s'ha carregat amb erors." 173 173 174 #: bell-scheduler/python3-bellscheduler/MainWindow.py:4 88174 #: bell-scheduler/python3-bellscheduler/MainWindow.py:499 175 175 msgid "Bell deleted successfully" 176 176 msgstr "L'alarma s'ha eliminat correctament." 177 177 178 #: bell-scheduler/python3-bellscheduler/MainWindow.py: 490178 #: bell-scheduler/python3-bellscheduler/MainWindow.py:501 179 179 msgid "Bell edited successfully" 180 180 msgstr "L'alarma s'ha editat correctament." 181 181 182 #: bell-scheduler/python3-bellscheduler/MainWindow.py: 492182 #: bell-scheduler/python3-bellscheduler/MainWindow.py:503 183 183 msgid "Bell activated successfully" 184 184 msgstr "L'alarma s'ha activat correctament." 185 185 186 #: bell-scheduler/python3-bellscheduler/MainWindow.py: 494186 #: bell-scheduler/python3-bellscheduler/MainWindow.py:505 187 187 msgid "Bell deactivated successfully" 188 188 msgstr "L'alarma s'ha desactivat correctament." 189 189 190 #: bell-scheduler/python3-bellscheduler/MainWindow.py: 496190 #: bell-scheduler/python3-bellscheduler/MainWindow.py:507 191 191 msgid "Bell created successfully" 192 192 msgstr "L'alarma s'ha creat correctament." 193 193 194 #: bell-scheduler/python3-bellscheduler/MainWindow.py: 498194 #: bell-scheduler/python3-bellscheduler/MainWindow.py:509 195 195 msgid "Unabled to edit the Bell due to problems with cron sync" 196 196 msgstr "" … … 198 198 "cron." 199 199 200 #: bell-scheduler/python3-bellscheduler/MainWindow.py:5 00200 #: bell-scheduler/python3-bellscheduler/MainWindow.py:511 201 201 msgid "Unabled to create the Bell due to problems with cron sync" 202 202 msgstr "" … … 204 204 "cron." 205 205 206 #: bell-scheduler/python3-bellscheduler/MainWindow.py:5 02206 #: bell-scheduler/python3-bellscheduler/MainWindow.py:513 207 207 msgid "Unabled to delete the Bell due to problems with cron sync" 208 208 msgstr "" … … 210 210 "el cron." 211 211 212 #: bell-scheduler/python3-bellscheduler/MainWindow.py:5 04212 #: bell-scheduler/python3-bellscheduler/MainWindow.py:515 213 213 msgid "Unabled to activate the Bell due to problems with cron sync" 214 214 msgstr "" … … 216 216 "cron." 217 217 218 #: bell-scheduler/python3-bellscheduler/MainWindow.py:5 06218 #: bell-scheduler/python3-bellscheduler/MainWindow.py:517 219 219 msgid "Unabled to deactivate the Bell due to problems with cron sync" 220 220 msgstr "" … … 222 222 "el cron." 223 223 224 #: bell-scheduler/python3-bellscheduler/MainWindow.py:5 08224 #: bell-scheduler/python3-bellscheduler/MainWindow.py:519 225 225 msgid "Unabled to copy image and/or sound file to work directory" 226 226 msgstr "No es pot copiar el fitxer d'imatge i/o so al directori de treball." 227 227 228 #: bell-scheduler/python3-bellscheduler/MainWindow.py:5 10228 #: bell-scheduler/python3-bellscheduler/MainWindow.py:521 229 229 msgid "Unabled to read bells configuration file" 230 230 msgstr "No es pot llegir el fitxer de configuració de les alarmes." 231 231 232 #: bell-scheduler/python3-bellscheduler/MainWindow.py:5 12232 #: bell-scheduler/python3-bellscheduler/MainWindow.py:523 233 233 msgid "Exporting bells configuration. Wait a moment..." 234 234 msgstr "S'està exportant la configuració de les alarmes. Espereu un moment..." 235 235 236 #: bell-scheduler/python3-bellscheduler/MainWindow.py:5 14236 #: bell-scheduler/python3-bellscheduler/MainWindow.py:525 237 237 msgid "Importing bells configuration. Wait a moment..." 238 238 msgstr "S'està important la configuració de les alarmes. Espereu un moment..." 239 239 240 #: bell-scheduler/python3-bellscheduler/MainWindow.py:5 16240 #: bell-scheduler/python3-bellscheduler/MainWindow.py:527 241 241 msgid "Revovering previous bells configuration. Wait a moment..." 242 242 msgstr "" … … 244 244 "moment..." 245 245 246 #: bell-scheduler/python3-bellscheduler/BellBox.py:200 246 #: bell-scheduler/python3-bellscheduler/MainWindow.py:529 247 msgid "ERROR: File or directory not available" 248 msgstr "ERROR: el fitxer o la carpeta no estan disponibles" 249 250 #: bell-scheduler/python3-bellscheduler/MainWindow.py:531 251 msgid "Validating the data entered..." 252 msgstr "S'estan validant les dades introduïdes..." 253 254 #: bell-scheduler/python3-bellscheduler/BellBox.py:201 247 255 msgid "Delete bell" 248 256 msgstr "Elimina l'alarma" 249 257 250 #: bell-scheduler/python3-bellscheduler/BellBox.py:20 8258 #: bell-scheduler/python3-bellscheduler/BellBox.py:209 251 259 msgid "Edit bell" 252 260 msgstr "Edita l'alarma" 253 261 254 #: bell-scheduler/python3-bellscheduler/BellBox.py:21 3262 #: bell-scheduler/python3-bellscheduler/BellBox.py:214 255 263 msgid "Activate or deactivate bell" 256 264 msgstr "Activa o desactiva l'alarma" 257 265 258 #: bell-scheduler/python3-bellscheduler/BellBox.py:3 01266 #: bell-scheduler/python3-bellscheduler/BellBox.py:312 259 267 msgid "Do you want delete the bell?" 260 268 msgstr "Voleu eliminar l'alarma?" … … 294 302 #: bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui:456 295 303 msgid "Random from directory" 296 msgstr "Fitxer aleatori des d'un directori" 297 298 #: bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui:618 304 msgstr "Fitxer aleatori des d'un directori " 305 306 #: bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui:516 307 msgid "" 308 "(!) If the indicated duration is 0, the sound will be reproduced in its " 309 "entirety" 310 msgstr "(!) Si la durada indicada és 0, el so es reproduirà completament" 311 312 #: bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui:630 299 313 msgid "Add new bell" 300 314 msgstr "Afig una alarma" 301 315 302 #: bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui:6 32316 #: bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui:644 303 317 msgid "Export bell to file" 304 318 msgstr "Exporta l'alarma a un fitxer" 305 319 306 #: bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui:6 46320 #: bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui:658 307 321 msgid "Load file with bells" 308 322 msgstr "Carrega el fitxer amb alarmes" 309 323 310 #: bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui:6 66324 #: bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui:678 311 325 msgid "Search by hour, day and description" 312 326 msgstr "Cerca per hores, dies i descripció" 313 327 314 #: bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui:6 68328 #: bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui:680 315 329 msgid "Search..." 316 330 msgstr "Cerca..." 331 332 #~ msgid "" 333 #~ "New bells configurarion will be loaded and replace the existing " 334 #~ "configutarion. Do you want to continue?" 335 #~ msgstr "" 336 #~ "Ara es carregarà una nova configuració d'alarmes que reemplaçarà la que " 337 #~ "hi ha. Voleu continuar?" 338 339 #~ msgid "Max durartion must be major than 0" 340 #~ msgstr "La durada màxima ha de ser major que 0." -
bell-scheduler/trunk/fuentes/translations/es.po
r6880 r6952 9 9 "Project-Id-Version: \n" 10 10 "Report-Msgid-Bugs-To: \n" 11 "POT-Creation-Date: 2018-0 2-19 10:10+0100\n"12 "PO-Revision-Date: 2018-0 2-20 10:45+0100\n"11 "POT-Creation-Date: 2018-03-02 09:45+0100\n" 12 "PO-Revision-Date: 2018-03-02 09:46+0100\n" 13 13 "Last-Translator: lliurex <lliurex@gva.es>\n" 14 14 "Language-Team: Spanish\n" … … 38 38 msgstr "Seleccione el fichero para guardar la lista de alarmas" 39 39 40 #: bell-scheduler/python3-bellscheduler/MainWindow.py:25 840 #: bell-scheduler/python3-bellscheduler/MainWindow.py:259 41 41 msgid "" 42 "New bells configura rion will be loaded and replace the existing "42 "New bells configuration will be loaded and replace the existing " 43 43 "configutarion. Do you want to continue?" 44 44 msgstr "" … … 46 46 "existente. Desea continuar?" 47 47 48 #: bell-scheduler/python3-bellscheduler/MainWindow.py:26 248 #: bell-scheduler/python3-bellscheduler/MainWindow.py:263 49 49 msgid "Please choose a file to load bells list" 50 50 msgstr "Seleccione el archivo para cargar la lista de alarmas" 51 51 52 #: bell-scheduler/python3-bellscheduler/MainWindow.py:3 7152 #: bell-scheduler/python3-bellscheduler/MainWindow.py:382 53 53 #: bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui:116 54 54 msgid "Monday" 55 55 msgstr "Lunes" 56 56 57 #: bell-scheduler/python3-bellscheduler/MainWindow.py:3 7258 #: bell-scheduler/python3-bellscheduler/BellBox.py:10 057 #: bell-scheduler/python3-bellscheduler/MainWindow.py:383 58 #: bell-scheduler/python3-bellscheduler/BellBox.py:101 59 59 msgid "M" 60 60 msgstr "L" 61 61 62 #: bell-scheduler/python3-bellscheduler/MainWindow.py:3 7362 #: bell-scheduler/python3-bellscheduler/MainWindow.py:384 63 63 msgid "Mon" 64 64 msgstr "Lu" 65 65 66 #: bell-scheduler/python3-bellscheduler/MainWindow.py:3 7566 #: bell-scheduler/python3-bellscheduler/MainWindow.py:386 67 67 #: bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui:129 68 68 msgid "Tuesday" 69 69 msgstr "Martes" 70 70 71 #: bell-scheduler/python3-bellscheduler/MainWindow.py:3 7672 #: bell-scheduler/python3-bellscheduler/BellBox.py:11 071 #: bell-scheduler/python3-bellscheduler/MainWindow.py:387 72 #: bell-scheduler/python3-bellscheduler/BellBox.py:111 73 73 msgid "T" 74 74 msgstr "M" 75 75 76 #: bell-scheduler/python3-bellscheduler/MainWindow.py:3 7776 #: bell-scheduler/python3-bellscheduler/MainWindow.py:388 77 77 msgid "Tue" 78 78 msgstr "Ma" 79 79 80 #: bell-scheduler/python3-bellscheduler/MainWindow.py:3 7980 #: bell-scheduler/python3-bellscheduler/MainWindow.py:390 81 81 #: bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui:142 82 82 msgid "Wednesday" 83 83 msgstr "Miércoles" 84 84 85 #: bell-scheduler/python3-bellscheduler/MainWindow.py:3 8086 #: bell-scheduler/python3-bellscheduler/BellBox.py:12 085 #: bell-scheduler/python3-bellscheduler/MainWindow.py:391 86 #: bell-scheduler/python3-bellscheduler/BellBox.py:121 87 87 msgid "W" 88 88 msgstr "X" 89 89 90 #: bell-scheduler/python3-bellscheduler/MainWindow.py:3 8190 #: bell-scheduler/python3-bellscheduler/MainWindow.py:392 91 91 msgid "Wed" 92 92 msgstr "Mie" 93 93 94 #: bell-scheduler/python3-bellscheduler/MainWindow.py:3 8394 #: bell-scheduler/python3-bellscheduler/MainWindow.py:394 95 95 #: bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui:155 96 96 msgid "Thursday" 97 97 msgstr "Jueves" 98 98 99 #: bell-scheduler/python3-bellscheduler/MainWindow.py:3 84100 #: bell-scheduler/python3-bellscheduler/BellBox.py:13 099 #: bell-scheduler/python3-bellscheduler/MainWindow.py:395 100 #: bell-scheduler/python3-bellscheduler/BellBox.py:131 101 101 msgid "R" 102 102 msgstr "J" 103 103 104 #: bell-scheduler/python3-bellscheduler/MainWindow.py:3 85104 #: bell-scheduler/python3-bellscheduler/MainWindow.py:396 105 105 msgid "Thu" 106 106 msgstr "Ju" 107 107 108 #: bell-scheduler/python3-bellscheduler/MainWindow.py:3 87108 #: bell-scheduler/python3-bellscheduler/MainWindow.py:398 109 109 #: bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui:168 110 110 msgid "Friday" 111 111 msgstr "Viernes" 112 112 113 #: bell-scheduler/python3-bellscheduler/MainWindow.py:3 88114 #: bell-scheduler/python3-bellscheduler/BellBox.py:14 0113 #: bell-scheduler/python3-bellscheduler/MainWindow.py:399 114 #: bell-scheduler/python3-bellscheduler/BellBox.py:141 115 115 msgid "F" 116 116 msgstr "V" 117 117 118 #: bell-scheduler/python3-bellscheduler/MainWindow.py: 389118 #: bell-scheduler/python3-bellscheduler/MainWindow.py:400 119 119 msgid "Fri" 120 120 msgstr "Vie" 121 121 122 #: bell-scheduler/python3-bellscheduler/MainWindow.py:4 62122 #: bell-scheduler/python3-bellscheduler/MainWindow.py:473 123 123 msgid "You must indicate a name for the alarm" 124 124 msgstr "Debe indicar un nombre para la alarma" 125 125 126 #: bell-scheduler/python3-bellscheduler/MainWindow.py:4 64126 #: bell-scheduler/python3-bellscheduler/MainWindow.py:475 127 127 msgid "Sound file is not correct" 128 128 msgstr "El archivo de sonido no es correcto" 129 129 130 #: bell-scheduler/python3-bellscheduler/MainWindow.py:4 66130 #: bell-scheduler/python3-bellscheduler/MainWindow.py:477 131 131 msgid "You must indicate sound file" 132 132 msgstr "Debe indicar un archivo para el sonido" 133 133 134 #: bell-scheduler/python3-bellscheduler/MainWindow.py:4 68134 #: bell-scheduler/python3-bellscheduler/MainWindow.py:479 135 135 msgid "Image file is not correct" 136 136 msgstr "El archivo para la imagen no es correcto" 137 137 138 #: bell-scheduler/python3-bellscheduler/MainWindow.py:4 70138 #: bell-scheduler/python3-bellscheduler/MainWindow.py:481 139 139 msgid "You must indicate a image file" 140 140 msgstr "Debe indicar un archivo para la imagen" 141 141 142 #: bell-scheduler/python3-bellscheduler/MainWindow.py:4 72142 #: bell-scheduler/python3-bellscheduler/MainWindow.py:483 143 143 msgid "You must indicate a url" 144 144 msgstr "Debe indicar una url" 145 145 146 #: bell-scheduler/python3-bellscheduler/MainWindow.py:4 74146 #: bell-scheduler/python3-bellscheduler/MainWindow.py:485 147 147 msgid "You must indicate a directory" 148 148 msgstr "Debe indicar una carpeta" 149 149 150 #: bell-scheduler/python3-bellscheduler/MainWindow.py:4 76151 msgid " Max durartion must be major than 0"152 msgstr " La duración máxima debe ser mayor de 0"153 154 #: bell-scheduler/python3-bellscheduler/MainWindow.py:4 78150 #: bell-scheduler/python3-bellscheduler/MainWindow.py:487 151 msgid "The sound file or url indicated is not reproducible" 152 msgstr "El archivo de sonido o url indicada no es reproducible" 153 154 #: bell-scheduler/python3-bellscheduler/MainWindow.py:489 155 155 msgid "File has errors. Unabled to load it" 156 156 msgstr "El fichero contiene errores. No es posible cargarlo" 157 157 158 #: bell-scheduler/python3-bellscheduler/MainWindow.py:4 80158 #: bell-scheduler/python3-bellscheduler/MainWindow.py:491 159 159 msgid "File loaded succesfully" 160 160 msgstr "Fichero cargado correctamente" 161 161 162 #: bell-scheduler/python3-bellscheduler/MainWindow.py:4 82162 #: bell-scheduler/python3-bellscheduler/MainWindow.py:493 163 163 msgid "File saved succcesfully" 164 164 msgstr "Fichero guardado correctamente" 165 165 166 #: bell-scheduler/python3-bellscheduler/MainWindow.py:4 84166 #: bell-scheduler/python3-bellscheduler/MainWindow.py:495 167 167 msgid "Unable to save file" 168 168 msgstr "No es posible guardar el fichero" 169 169 170 #: bell-scheduler/python3-bellscheduler/MainWindow.py:4 86170 #: bell-scheduler/python3-bellscheduler/MainWindow.py:497 171 171 msgid "File loaded with errors" 172 172 msgstr "Fichero cargado con errores" 173 173 174 #: bell-scheduler/python3-bellscheduler/MainWindow.py:4 88174 #: bell-scheduler/python3-bellscheduler/MainWindow.py:499 175 175 msgid "Bell deleted successfully" 176 176 msgstr "Alarma borrada correctamente" 177 177 178 #: bell-scheduler/python3-bellscheduler/MainWindow.py: 490178 #: bell-scheduler/python3-bellscheduler/MainWindow.py:501 179 179 msgid "Bell edited successfully" 180 180 msgstr "Alarma editada correctamente" 181 181 182 #: bell-scheduler/python3-bellscheduler/MainWindow.py: 492182 #: bell-scheduler/python3-bellscheduler/MainWindow.py:503 183 183 msgid "Bell activated successfully" 184 184 msgstr "Alarma activada correctamente" 185 185 186 #: bell-scheduler/python3-bellscheduler/MainWindow.py: 494186 #: bell-scheduler/python3-bellscheduler/MainWindow.py:505 187 187 msgid "Bell deactivated successfully" 188 188 msgstr "Alarma desactivada correctamente" 189 189 190 #: bell-scheduler/python3-bellscheduler/MainWindow.py: 496190 #: bell-scheduler/python3-bellscheduler/MainWindow.py:507 191 191 msgid "Bell created successfully" 192 192 msgstr "Alarma creada correctamente" 193 193 194 #: bell-scheduler/python3-bellscheduler/MainWindow.py: 498194 #: bell-scheduler/python3-bellscheduler/MainWindow.py:509 195 195 msgid "Unabled to edit the Bell due to problems with cron sync" 196 196 msgstr "" … … 198 198 "el cron" 199 199 200 #: bell-scheduler/python3-bellscheduler/MainWindow.py:5 00200 #: bell-scheduler/python3-bellscheduler/MainWindow.py:511 201 201 msgid "Unabled to create the Bell due to problems with cron sync" 202 202 msgstr "" … … 204 204 "el cron" 205 205 206 #: bell-scheduler/python3-bellscheduler/MainWindow.py:5 02206 #: bell-scheduler/python3-bellscheduler/MainWindow.py:513 207 207 msgid "Unabled to delete the Bell due to problems with cron sync" 208 208 msgstr "" … … 210 210 "el cron" 211 211 212 #: bell-scheduler/python3-bellscheduler/MainWindow.py:5 04212 #: bell-scheduler/python3-bellscheduler/MainWindow.py:515 213 213 msgid "Unabled to activate the Bell due to problems with cron sync" 214 214 msgstr "" … … 216 216 "el cron" 217 217 218 #: bell-scheduler/python3-bellscheduler/MainWindow.py:5 06218 #: bell-scheduler/python3-bellscheduler/MainWindow.py:517 219 219 msgid "Unabled to deactivate the Bell due to problems with cron sync" 220 220 msgstr "" … … 222 222 "con el cron" 223 223 224 #: bell-scheduler/python3-bellscheduler/MainWindow.py:5 08224 #: bell-scheduler/python3-bellscheduler/MainWindow.py:519 225 225 msgid "Unabled to copy image and/or sound file to work directory" 226 226 msgstr "" 227 227 "No es posible copiar el fichero de imagen y/o sonido al directorio de trabajo" 228 228 229 #: bell-scheduler/python3-bellscheduler/MainWindow.py:5 10229 #: bell-scheduler/python3-bellscheduler/MainWindow.py:521 230 230 msgid "Unabled to read bells configuration file" 231 231 msgstr "No es posible leer el fichero de configuración de las alarmas" 232 232 233 #: bell-scheduler/python3-bellscheduler/MainWindow.py:5 12233 #: bell-scheduler/python3-bellscheduler/MainWindow.py:523 234 234 msgid "Exporting bells configuration. Wait a moment..." 235 235 msgstr "Exportando la configuración de las alarmas . Espere un momento..." 236 236 237 #: bell-scheduler/python3-bellscheduler/MainWindow.py:5 14237 #: bell-scheduler/python3-bellscheduler/MainWindow.py:525 238 238 msgid "Importing bells configuration. Wait a moment..." 239 239 msgstr "Importando la configuración de alarmas. Espere un momento..." 240 240 241 #: bell-scheduler/python3-bellscheduler/MainWindow.py:5 16241 #: bell-scheduler/python3-bellscheduler/MainWindow.py:527 242 242 msgid "Revovering previous bells configuration. Wait a moment..." 243 243 msgstr "Recuperando la configuración de alarmas anterior. Espere un momento..." 244 244 245 #: bell-scheduler/python3-bellscheduler/BellBox.py:200 245 #: bell-scheduler/python3-bellscheduler/MainWindow.py:529 246 msgid "ERROR: File or directory not available" 247 msgstr "ERROR: El archivo o directorio no está disponible" 248 249 #: bell-scheduler/python3-bellscheduler/MainWindow.py:531 250 msgid "Validating the data entered..." 251 msgstr "Validando los datos introducidos..." 252 253 #: bell-scheduler/python3-bellscheduler/BellBox.py:201 246 254 msgid "Delete bell" 247 255 msgstr "Borrar la alarma" 248 256 249 #: bell-scheduler/python3-bellscheduler/BellBox.py:20 8257 #: bell-scheduler/python3-bellscheduler/BellBox.py:209 250 258 msgid "Edit bell" 251 259 msgstr "Editar la alarma" 252 260 253 #: bell-scheduler/python3-bellscheduler/BellBox.py:21 3261 #: bell-scheduler/python3-bellscheduler/BellBox.py:214 254 262 msgid "Activate or deactivate bell" 255 263 msgstr "Activa o desactiva la alarma" 256 264 257 #: bell-scheduler/python3-bellscheduler/BellBox.py:3 01265 #: bell-scheduler/python3-bellscheduler/BellBox.py:312 258 266 msgid "Do you want delete the bell?" 259 267 msgstr "¿Desea borrar la alarma?" … … 295 303 msgstr "Archivo aleatorio de un directorio" 296 304 297 #: bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui:618 305 #: bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui:516 306 msgid "" 307 "(!) If the indicated duration is 0, the sound will be reproduced in its " 308 "entirety" 309 msgstr "" 310 "(!) Si la duración indicada es 0 el sonido se reproducirá en su totalidad" 311 312 #: bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui:630 298 313 msgid "Add new bell" 299 314 msgstr "Añadir una alarma" 300 315 301 #: bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui:6 32316 #: bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui:644 302 317 msgid "Export bell to file" 303 318 msgstr "Exportar las alarmas a un archivo" 304 319 305 #: bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui:6 46320 #: bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui:658 306 321 msgid "Load file with bells" 307 322 msgstr "Cargar archivo con alarmas" 308 323 309 #: bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui:6 66324 #: bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui:678 310 325 msgid "Search by hour, day and description" 311 326 msgstr "Busca por horas, días y descripción" 312 327 313 #: bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui:6 68328 #: bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui:680 314 329 msgid "Search..." 315 330 msgstr "Buscar" 331 332 #~ msgid "" 333 #~ "New bells configurarion will be loaded and replace the existing " 334 #~ "configutarion. Do you want to continue?" 335 #~ msgstr "" 336 #~ "Se va a cargar una nueva configuración de alarmas que reemplazará la " 337 #~ "existente. Desea continuar?" 338 339 #~ msgid "Max durartion must be major than 0" 340 #~ msgstr "La duración máxima debe ser mayor de 0"
Note: See TracChangeset
for help on using the changeset viewer.