Changeset 7483 for bell-scheduler
- Timestamp:
- Jun 19, 2018, 12:10:37 PM (3 years ago)
- Location:
- bell-scheduler/trunk/fuentes
- Files:
-
- 9 added
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
bell-scheduler/trunk/fuentes/debian/control
r7253 r7483 16 16 Architecture: all 17 17 Depends: ${shlibs:Depends}, ${misc:Depends}, ${python3:Depends}, n4d-bellscheduler (= ${binary:Version}),youtube-dl, python3-n4dgtklogin (>=0.4), python3-holidaymanager 18 Recommends=bell-scheduler-indicator (= ${binary:Version}) 18 19 Description:Bell Schededuler GUI package 19 20 Provides the gui to program alarms … … 24 25 Depends: ${misc:Depends}, ${python3:Depends},n4d-taskscheduler-server (>=1.0.5), n4d-taskscheduler-client (>=1.0.5) 25 26 Description: Bell Scheduler plugin 26 Plugins supporting bell-scheduler functionality 27 Plugins supporting bell-scheduler functionality 27 28 29 Package: bell-scheduler-indicator 30 Architecture: all 31 Depends: ${misc:Depends}, ${python3:Depends},n4d-bellscheduler (= ${binary:Version}) 32 Description: Bell Scheduler plugin 33 Plugins supporting bell-scheduler functional 34 35 -
bell-scheduler/trunk/fuentes/debian/n4d-bellscheduler.postinst
r6959 r7483 7 7 n4d-modules enable-plugin /etc/n4d/conf.d/BellSchedulerManager || true 8 8 9 if dpkg --compare-versions "$2" lt 0.2.9; then 10 echo "Update bell files to use Indicator..." 11 n4d-client -r -m update_indicator_control -c BellSchedulerManager || true 12 fi 9 13 ;; 10 14 -
bell-scheduler/trunk/fuentes/generate_po.sh
r6871 r7483 4 4 xgettext --join-existing ./bell-scheduler/python3-bellscheduler/BellBox.py -o ./translations/bell-scheduler.pot 5 5 xgettext --join-existing ./bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui -o ./translations/bell-scheduler.pot 6 xgettext --join-existing -L python ./bell-scheduler-indicator.install/usr/bin/bell-scheduler-indicator -o ./translations/bell-scheduler.pot -
bell-scheduler/trunk/fuentes/n4d-bellscheduler.install/etc/n4d/conf.d/BellSchedulerManager
r7252 r7483 11 11 import_bells_conf=adm,admins,teachers 12 12 enable_holiday_control=adm,admins,teachers 13 update_indicator_control=adm,admins,teachers 14 stop_bell=*,anonymous -
bell-scheduler/trunk/fuentes/n4d-bellscheduler.install/usr/share/n4d/python-plugins/BellSchedulerManager.py
r7252 r7483 22 22 self.sounds_folder="/usr/local/share/bellScheduler/sounds" 23 23 self.media_files_folder="/usr/local/share/bellScheduler/" 24 24 25 self.indicator_token_folder="/tmp/.BellScheduler" 26 self.indicator_token_path=os.path.join(self.indicator_token_folder,"bellscheduler-token") 27 self.cmd_create_token='mkdir -p '+self.indicator_token_folder+' && touch '+self.indicator_token_path+' && ' 28 self.cmd_remove_token=';rm -f '+self.indicator_token_path 25 29 26 30 server='localhost' … … 230 234 231 235 info_to_cron={} 232 233 236 237 234 238 if action=="edit" or action=="active": 235 239 cron_tasks=self._get_tasks_from_cron() … … 281 285 fade_out=int(duration)-2 282 286 fade_effects='-af aformat=channel_layouts=mono -af afade=in:st=0:d=6,afade=out:st='+str(fade_out)+":d=2" 283 cmd= "ffplay -nodisp -autoexit -t "+str(duration)287 cmd=self.cmd_create_token+"ffplay -nodisp -autoexit -t "+str(duration) 284 288 else: 285 289 fade_effects='-af aformat=channel_layouts=mono ' 286 cmd= "ffplay -nodisp -autoexit "290 cmd=self.cmd_create_token+"ffplay -nodisp -autoexit " 287 291 288 292 if sound_option !="url": 289 293 if sound_option =="file": 290 cmd=cmd+' "'+ sound_path +'" '+fade_effects 294 cmd=cmd+' "'+ sound_path +'" '+fade_effects+self.cmd_remove_token 291 295 else: 292 296 #random_file="$(find"+ " '"+sound_path+"' -type f -print0 | xargs -0 file -i | awk -F ':' '{ if ($2 ~ /audio/ || $2 ~ /video/ ) print $1 }'| shuf -n 1)" 293 297 random_file="$(randomaudiofile" + " '"+sound_path+"')" 294 cmd=cmd+' "'+ random_file + '" '+fade_effects 298 cmd=cmd+' "'+ random_file + '" '+fade_effects+self.cmd_remove_token 295 299 #cmd=cmd+" $(find"+ " '"+sound_path+"' -type f | shuf -n 1) "+fade_effects 296 300 else: 297 cmd=cmd+ " $(youtube-dl -g "+sound_path+ " | sed -n 2p) "+fade_effects 301 cmd=cmd+ " $(youtube-dl -g "+sound_path+ " | sed -n 2p) "+fade_effects+self.cmd_remove_token 298 302 299 303 info_to_cron["BellScheduler"][key]["cmd"]=cmd … … 485 489 486 490 #def _update_holiday_control 487 488 489 491 492 493 def update_indicator_control(self): 494 495 if os.path.exists(self.cron_file): 496 f=open(self.cron_file) 497 498 try: 499 tasks_cron=json.load(f) 500 f.close() 501 except Exception as e: 502 result={"status":False,"msg":str(e),"code":""} 503 return result 504 505 for item in tasks_cron["BellScheduler"]: 506 if not 'bellscheduler_token' in tasks_cron["BellScheduler"][item]["cmd"]: 507 tmp_cmd=self.cmd_create_token+tasks_cron["BellScheduler"][item]["cmd"]+self.cmd_remove_token 508 tasks_cron["BellScheduler"][item]["cmd"]=tmp_cmd 509 510 511 self._write_conf(tasks_cron,"CronList") 512 self.n4d.process_tasks(self.n4dkey,'SchedulerClient') 513 result={"status":True,"msg":"Cron file updated to use indicator","code":37} 514 else: 515 result={"status":True,"msg":"Cron file dosn't exists","code":37} 516 517 return result 518 519 #def update_indicator_control 520 521 def stop_bell(self): 522 523 cmd='ps -ef | grep "ffplay -nodisp -autoexit" | grep -v "grep"' 524 p=subprocess.Popen(cmd,shell=True,stdout=subprocess.PIPE,stderr=subprocess.PIPE) 525 output=p.communicate()[0] 526 527 if type(output) is bytes: 528 print("decode") 529 output=output.decode() 530 531 print(output) 532 lst=output.split("\n") 533 lst.pop(0) 534 535 if len(lst)>0: 536 for item in lst: 537 processed_line=item.split(" ") 538 tmp_list=[] 539 540 if len(processed_line) >= 10: 541 for object in processed_line: 542 if object!="": 543 tmp_list.append(object) 544 print(tmp_list) 545 processed_line=tmp_list 546 547 548 bell_pid=processed_line[1] 549 cmd_kill='kill ' +str(bell_pid) 550 os.system(cmd_kill) 551 552 result={"status":True,"msg":"Alarm stoppped:"+bell_pid,"code":0} 553 return result 554 555 #def stop_bell 556 557 558 559 -
bell-scheduler/trunk/fuentes/translations/bell-scheduler.pot
r7136 r7483 9 9 "Project-Id-Version: PACKAGE VERSION\n" 10 10 "Report-Msgid-Bugs-To: \n" 11 "POT-Creation-Date: 2018-0 4-12 13:55+0200\n"11 "POT-Creation-Date: 2018-06-19 09:02+0200\n" 12 12 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 13 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 29 29 msgstr "" 30 30 31 #: bell-scheduler/python3-bellscheduler/MainWindow.py:2 4731 #: bell-scheduler/python3-bellscheduler/MainWindow.py:250 32 32 msgid "Please choose a file to save bells list" 33 33 msgstr "" 34 34 35 #: bell-scheduler/python3-bellscheduler/MainWindow.py:29 435 #: bell-scheduler/python3-bellscheduler/MainWindow.py:297 36 36 msgid "" 37 37 "New bells configuration will be loaded and replace the existing " … … 39 39 msgstr "" 40 40 41 #: bell-scheduler/python3-bellscheduler/MainWindow.py: 29841 #: bell-scheduler/python3-bellscheduler/MainWindow.py:301 42 42 msgid "Please choose a file to load bells list" 43 43 msgstr "" 44 44 45 #: bell-scheduler/python3-bellscheduler/MainWindow.py:4 1845 #: bell-scheduler/python3-bellscheduler/MainWindow.py:421 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:4 1950 #: bell-scheduler/python3-bellscheduler/MainWindow.py:422 51 51 #: bell-scheduler/python3-bellscheduler/BellBox.py:105 52 52 msgid "M" 53 53 msgstr "" 54 54 55 #: bell-scheduler/python3-bellscheduler/MainWindow.py:42 055 #: bell-scheduler/python3-bellscheduler/MainWindow.py:423 56 56 msgid "Mon" 57 57 msgstr "" 58 58 59 #: bell-scheduler/python3-bellscheduler/MainWindow.py:42 259 #: bell-scheduler/python3-bellscheduler/MainWindow.py:425 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:42 364 #: bell-scheduler/python3-bellscheduler/MainWindow.py:426 65 65 #: bell-scheduler/python3-bellscheduler/BellBox.py:115 66 66 msgid "T" 67 67 msgstr "" 68 68 69 #: bell-scheduler/python3-bellscheduler/MainWindow.py:42 469 #: bell-scheduler/python3-bellscheduler/MainWindow.py:427 70 70 msgid "Tue" 71 71 msgstr "" 72 72 73 #: bell-scheduler/python3-bellscheduler/MainWindow.py:42 673 #: bell-scheduler/python3-bellscheduler/MainWindow.py:429 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:4 2778 #: bell-scheduler/python3-bellscheduler/MainWindow.py:430 79 79 #: bell-scheduler/python3-bellscheduler/BellBox.py:125 80 80 msgid "W" 81 81 msgstr "" 82 82 83 #: bell-scheduler/python3-bellscheduler/MainWindow.py:4 2883 #: bell-scheduler/python3-bellscheduler/MainWindow.py:431 84 84 msgid "Wed" 85 85 msgstr "" 86 86 87 #: bell-scheduler/python3-bellscheduler/MainWindow.py:43 087 #: bell-scheduler/python3-bellscheduler/MainWindow.py:433 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:43 192 #: bell-scheduler/python3-bellscheduler/MainWindow.py:434 93 93 #: bell-scheduler/python3-bellscheduler/BellBox.py:135 94 94 msgid "R" 95 95 msgstr "" 96 96 97 #: bell-scheduler/python3-bellscheduler/MainWindow.py:43 297 #: bell-scheduler/python3-bellscheduler/MainWindow.py:435 98 98 msgid "Thu" 99 99 msgstr "" 100 100 101 #: bell-scheduler/python3-bellscheduler/MainWindow.py:43 4101 #: bell-scheduler/python3-bellscheduler/MainWindow.py:437 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:43 5106 #: bell-scheduler/python3-bellscheduler/MainWindow.py:438 107 107 #: bell-scheduler/python3-bellscheduler/BellBox.py:145 108 108 msgid "F" 109 109 msgstr "" 110 110 111 #: bell-scheduler/python3-bellscheduler/MainWindow.py:43 6111 #: bell-scheduler/python3-bellscheduler/MainWindow.py:439 112 112 msgid "Fri" 113 113 msgstr "" 114 114 115 #: bell-scheduler/python3-bellscheduler/MainWindow.py:5 18115 #: bell-scheduler/python3-bellscheduler/MainWindow.py:521 116 116 msgid "You must indicate a name for the alarm" 117 117 msgstr "" 118 118 119 #: bell-scheduler/python3-bellscheduler/MainWindow.py:52 0119 #: bell-scheduler/python3-bellscheduler/MainWindow.py:523 120 120 msgid "Sound file is not correct" 121 121 msgstr "" 122 122 123 #: bell-scheduler/python3-bellscheduler/MainWindow.py:52 2123 #: bell-scheduler/python3-bellscheduler/MainWindow.py:525 124 124 msgid "You must indicate sound file" 125 125 msgstr "" 126 126 127 #: bell-scheduler/python3-bellscheduler/MainWindow.py:52 4127 #: bell-scheduler/python3-bellscheduler/MainWindow.py:527 128 128 msgid "Image file is not correct" 129 129 msgstr "" 130 130 131 #: bell-scheduler/python3-bellscheduler/MainWindow.py:52 6131 #: bell-scheduler/python3-bellscheduler/MainWindow.py:529 132 132 msgid "You must indicate a image file" 133 133 msgstr "" 134 134 135 #: bell-scheduler/python3-bellscheduler/MainWindow.py:5 28135 #: bell-scheduler/python3-bellscheduler/MainWindow.py:531 136 136 msgid "You must indicate a url" 137 137 msgstr "" 138 138 139 #: bell-scheduler/python3-bellscheduler/MainWindow.py:53 0139 #: bell-scheduler/python3-bellscheduler/MainWindow.py:533 140 140 msgid "You must indicate a directory" 141 141 msgstr "" 142 142 143 #: bell-scheduler/python3-bellscheduler/MainWindow.py:53 2143 #: bell-scheduler/python3-bellscheduler/MainWindow.py:535 144 144 msgid "The sound file or url indicated is not reproducible" 145 145 msgstr "" 146 146 147 #: bell-scheduler/python3-bellscheduler/MainWindow.py:53 4147 #: bell-scheduler/python3-bellscheduler/MainWindow.py:537 148 148 msgid "File has errors. Unabled to load it" 149 149 msgstr "" 150 150 151 #: bell-scheduler/python3-bellscheduler/MainWindow.py:53 6151 #: bell-scheduler/python3-bellscheduler/MainWindow.py:539 152 152 msgid "File loaded succesfully" 153 153 msgstr "" 154 154 155 #: bell-scheduler/python3-bellscheduler/MainWindow.py:5 38155 #: bell-scheduler/python3-bellscheduler/MainWindow.py:541 156 156 msgid "File saved succcesfully" 157 157 msgstr "" 158 158 159 #: bell-scheduler/python3-bellscheduler/MainWindow.py:54 0159 #: bell-scheduler/python3-bellscheduler/MainWindow.py:543 160 160 msgid "Unable to save file" 161 161 msgstr "" 162 162 163 #: bell-scheduler/python3-bellscheduler/MainWindow.py:54 2163 #: bell-scheduler/python3-bellscheduler/MainWindow.py:545 164 164 msgid "File loaded with errors" 165 165 msgstr "" 166 166 167 #: bell-scheduler/python3-bellscheduler/MainWindow.py:54 4167 #: bell-scheduler/python3-bellscheduler/MainWindow.py:547 168 168 msgid "Bell deleted successfully" 169 169 msgstr "" 170 170 171 #: bell-scheduler/python3-bellscheduler/MainWindow.py:54 6171 #: bell-scheduler/python3-bellscheduler/MainWindow.py:549 172 172 msgid "Bell edited successfully" 173 173 msgstr "" 174 174 175 #: bell-scheduler/python3-bellscheduler/MainWindow.py:5 48175 #: bell-scheduler/python3-bellscheduler/MainWindow.py:551 176 176 msgid "Bell activated successfully" 177 177 msgstr "" 178 178 179 #: bell-scheduler/python3-bellscheduler/MainWindow.py:55 0179 #: bell-scheduler/python3-bellscheduler/MainWindow.py:553 180 180 msgid "Bell deactivated successfully" 181 181 msgstr "" 182 182 183 #: bell-scheduler/python3-bellscheduler/MainWindow.py:55 2183 #: bell-scheduler/python3-bellscheduler/MainWindow.py:555 184 184 msgid "Bell created successfully" 185 185 msgstr "" 186 186 187 #: bell-scheduler/python3-bellscheduler/MainWindow.py:55 4187 #: bell-scheduler/python3-bellscheduler/MainWindow.py:557 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:55 6191 #: bell-scheduler/python3-bellscheduler/MainWindow.py:559 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 58195 #: bell-scheduler/python3-bellscheduler/MainWindow.py:561 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:56 0199 #: bell-scheduler/python3-bellscheduler/MainWindow.py:563 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:56 2203 #: bell-scheduler/python3-bellscheduler/MainWindow.py:565 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:56 4207 #: bell-scheduler/python3-bellscheduler/MainWindow.py:567 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:56 6211 #: bell-scheduler/python3-bellscheduler/MainWindow.py:569 212 212 msgid "Unabled to read bells configuration file" 213 213 msgstr "" 214 214 215 #: bell-scheduler/python3-bellscheduler/MainWindow.py:5 68215 #: bell-scheduler/python3-bellscheduler/MainWindow.py:571 216 216 msgid "Exporting bells configuration. Wait a moment..." 217 217 msgstr "" 218 218 219 #: bell-scheduler/python3-bellscheduler/MainWindow.py:57 0219 #: bell-scheduler/python3-bellscheduler/MainWindow.py:573 220 220 msgid "Importing bells configuration. Wait a moment..." 221 221 msgstr "" 222 222 223 #: bell-scheduler/python3-bellscheduler/MainWindow.py:57 2223 #: bell-scheduler/python3-bellscheduler/MainWindow.py:575 224 224 msgid "Revovering previous bells configuration. Wait a moment..." 225 225 msgstr "" 226 226 227 #: bell-scheduler/python3-bellscheduler/MainWindow.py:57 4227 #: bell-scheduler/python3-bellscheduler/MainWindow.py:577 228 228 msgid "ERROR: File or directory not available" 229 229 msgstr "" 230 230 231 #: bell-scheduler/python3-bellscheduler/MainWindow.py:57 6231 #: bell-scheduler/python3-bellscheduler/MainWindow.py:579 232 232 msgid "Validating the data entered..." 233 233 msgstr "" 234 234 235 #: bell-scheduler/python3-bellscheduler/MainWindow.py:5 78235 #: bell-scheduler/python3-bellscheduler/MainWindow.py:581 236 236 msgid "Detected alarms with errors" 237 237 msgstr "" 238 238 239 #: bell-scheduler/python3-bellscheduler/MainWindow.py:58 0239 #: bell-scheduler/python3-bellscheduler/MainWindow.py:583 240 240 msgid "Activating holiday control.Wait a moment..." 241 241 msgstr "" 242 242 243 #: bell-scheduler/python3-bellscheduler/MainWindow.py:58 2243 #: bell-scheduler/python3-bellscheduler/MainWindow.py:585 244 244 msgid "Deactivating holiday control.Wait a moment..." 245 245 msgstr "" 246 246 247 #: bell-scheduler/python3-bellscheduler/MainWindow.py:58 4247 #: bell-scheduler/python3-bellscheduler/MainWindow.py:587 248 248 msgid "Holiday control deactivated successfully" 249 249 msgstr "" 250 250 251 #: bell-scheduler/python3-bellscheduler/MainWindow.py:58 6251 #: bell-scheduler/python3-bellscheduler/MainWindow.py:589 252 252 msgid "Holiday control activated successfully" 253 253 msgstr "" 254 254 255 #: bell-scheduler/python3-bellscheduler/MainWindow.py:5 88255 #: bell-scheduler/python3-bellscheduler/MainWindow.py:591 256 256 msgid "Unabled to apply changes due to problems with cron sync" 257 257 msgstr "" 258 258 259 #: bell-scheduler/python3-bellscheduler/MainWindow.py:59 0259 #: bell-scheduler/python3-bellscheduler/MainWindow.py:593 260 260 msgid "Unabled to load bell list due to problems with cron sync" 261 261 msgstr "" … … 331 331 msgstr "" 332 332 333 #: bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui:67 1333 #: bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui:672 334 334 msgid "Manage holiday" 335 335 msgstr "" 336 336 337 #: bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui:69 4337 #: bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui:695 338 338 msgid "Search by hour, day and description" 339 339 msgstr "" 340 340 341 #: bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui:69 6341 #: bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui:697 342 342 msgid "Search..." 343 343 msgstr "" 344 344 345 #: bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui:74 5345 #: bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui:746 346 346 msgid "Do not run the alarms on holidays set" 347 347 msgstr "" 348 349 #: bell-scheduler-indicator.install/usr/bin/bell-scheduler-indicator:83 350 msgid "Playing the scheduled bell" 351 msgstr "" 352 353 #: bell-scheduler-indicator.install/usr/bin/bell-scheduler-indicator:95 354 msgid "Stop the bell now" 355 msgstr "" 356 357 #: bell-scheduler-indicator.install/usr/bin/bell-scheduler-indicator:189 358 msgid "The scheduled bell has ended" 359 msgstr "" -
bell-scheduler/trunk/fuentes/translations/ca_ES.UTF-8@valencia.po
r7287 r7483 9 9 "Project-Id-Version: \n" 10 10 "Report-Msgid-Bugs-To: \n" 11 "POT-Creation-Date: 2018-0 4-12 13:57+0200\n"12 "PO-Revision-Date: 2018-0 5-21 08:58+0200\n"11 "POT-Creation-Date: 2018-06-19 09:04+0200\n" 12 "PO-Revision-Date: 2018-06-19 09:04+0200\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:64 … … 34 34 msgstr "Bell Scheduler" 35 35 36 #: bell-scheduler/python3-bellscheduler/MainWindow.py:2 4736 #: bell-scheduler/python3-bellscheduler/MainWindow.py:250 37 37 msgid "Please choose a file to save bells list" 38 38 msgstr "Seleccioneu el fitxer per a guardar la llista d'alarmes" 39 39 40 #: bell-scheduler/python3-bellscheduler/MainWindow.py:29 440 #: bell-scheduler/python3-bellscheduler/MainWindow.py:297 41 41 msgid "" 42 42 "New bells configuration will be loaded and replace the existing " … … 46 46 "ha. Voleu continuar?" 47 47 48 #: bell-scheduler/python3-bellscheduler/MainWindow.py: 29848 #: bell-scheduler/python3-bellscheduler/MainWindow.py:301 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:4 1852 #: bell-scheduler/python3-bellscheduler/MainWindow.py:421 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:4 1957 #: bell-scheduler/python3-bellscheduler/MainWindow.py:422 58 58 #: bell-scheduler/python3-bellscheduler/BellBox.py:105 59 59 msgid "M" 60 60 msgstr "Dl." 61 61 62 #: bell-scheduler/python3-bellscheduler/MainWindow.py:42 062 #: bell-scheduler/python3-bellscheduler/MainWindow.py:423 63 63 msgid "Mon" 64 64 msgstr "Dl." 65 65 66 #: bell-scheduler/python3-bellscheduler/MainWindow.py:42 266 #: bell-scheduler/python3-bellscheduler/MainWindow.py:425 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:42 371 #: bell-scheduler/python3-bellscheduler/MainWindow.py:426 72 72 #: bell-scheduler/python3-bellscheduler/BellBox.py:115 73 73 msgid "T" 74 74 msgstr "Dt." 75 75 76 #: bell-scheduler/python3-bellscheduler/MainWindow.py:42 476 #: bell-scheduler/python3-bellscheduler/MainWindow.py:427 77 77 msgid "Tue" 78 78 msgstr "Dt." 79 79 80 #: bell-scheduler/python3-bellscheduler/MainWindow.py:42 680 #: bell-scheduler/python3-bellscheduler/MainWindow.py:429 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:4 2785 #: bell-scheduler/python3-bellscheduler/MainWindow.py:430 86 86 #: bell-scheduler/python3-bellscheduler/BellBox.py:125 87 87 msgid "W" 88 88 msgstr "Dc." 89 89 90 #: bell-scheduler/python3-bellscheduler/MainWindow.py:4 2890 #: bell-scheduler/python3-bellscheduler/MainWindow.py:431 91 91 msgid "Wed" 92 92 msgstr "Dc." 93 93 94 #: bell-scheduler/python3-bellscheduler/MainWindow.py:43 094 #: bell-scheduler/python3-bellscheduler/MainWindow.py:433 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:43 199 #: bell-scheduler/python3-bellscheduler/MainWindow.py:434 100 100 #: bell-scheduler/python3-bellscheduler/BellBox.py:135 101 101 msgid "R" 102 102 msgstr "Dj." 103 103 104 #: bell-scheduler/python3-bellscheduler/MainWindow.py:43 2104 #: bell-scheduler/python3-bellscheduler/MainWindow.py:435 105 105 msgid "Thu" 106 106 msgstr "Dj." 107 107 108 #: bell-scheduler/python3-bellscheduler/MainWindow.py:43 4108 #: bell-scheduler/python3-bellscheduler/MainWindow.py:437 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:43 5113 #: bell-scheduler/python3-bellscheduler/MainWindow.py:438 114 114 #: bell-scheduler/python3-bellscheduler/BellBox.py:145 115 115 msgid "F" 116 116 msgstr "Dv." 117 117 118 #: bell-scheduler/python3-bellscheduler/MainWindow.py:43 6118 #: bell-scheduler/python3-bellscheduler/MainWindow.py:439 119 119 msgid "Fri" 120 120 msgstr "Dv." 121 121 122 #: bell-scheduler/python3-bellscheduler/MainWindow.py:5 18122 #: bell-scheduler/python3-bellscheduler/MainWindow.py:521 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:52 0126 #: bell-scheduler/python3-bellscheduler/MainWindow.py:523 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:52 2130 #: bell-scheduler/python3-bellscheduler/MainWindow.py:525 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:52 4134 #: bell-scheduler/python3-bellscheduler/MainWindow.py:527 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:52 6138 #: bell-scheduler/python3-bellscheduler/MainWindow.py:529 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:5 28142 #: bell-scheduler/python3-bellscheduler/MainWindow.py:531 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:53 0146 #: bell-scheduler/python3-bellscheduler/MainWindow.py:533 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:53 2150 #: bell-scheduler/python3-bellscheduler/MainWindow.py:535 151 151 msgid "The sound file or url indicated is not reproducible" 152 152 msgstr "El fitxer de so o l'URL indicats no es poden reproduir" 153 153 154 #: bell-scheduler/python3-bellscheduler/MainWindow.py:53 4154 #: bell-scheduler/python3-bellscheduler/MainWindow.py:537 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:53 6158 #: bell-scheduler/python3-bellscheduler/MainWindow.py:539 159 159 msgid "File loaded succesfully" 160 160 msgstr "El fitxer s'ha carregat correctament." 161 161 162 #: bell-scheduler/python3-bellscheduler/MainWindow.py:5 38162 #: bell-scheduler/python3-bellscheduler/MainWindow.py:541 163 163 msgid "File saved succcesfully" 164 164 msgstr "El fitxer s'ha guardat correctament." 165 165 166 #: bell-scheduler/python3-bellscheduler/MainWindow.py:54 0166 #: bell-scheduler/python3-bellscheduler/MainWindow.py:543 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:54 2170 #: bell-scheduler/python3-bellscheduler/MainWindow.py:545 171 171 msgid "File loaded with errors" 172 172 msgstr "El fitxer s'ha carregat amb errors." 173 173 174 #: bell-scheduler/python3-bellscheduler/MainWindow.py:54 4174 #: bell-scheduler/python3-bellscheduler/MainWindow.py:547 175 175 msgid "Bell deleted successfully" 176 176 msgstr "L'alarma s'ha eliminat correctament." 177 177 178 #: bell-scheduler/python3-bellscheduler/MainWindow.py:54 6178 #: bell-scheduler/python3-bellscheduler/MainWindow.py:549 179 179 msgid "Bell edited successfully" 180 180 msgstr "L'alarma s'ha editat correctament." 181 181 182 #: bell-scheduler/python3-bellscheduler/MainWindow.py:5 48182 #: bell-scheduler/python3-bellscheduler/MainWindow.py:551 183 183 msgid "Bell activated successfully" 184 184 msgstr "L'alarma s'ha activat correctament." 185 185 186 #: bell-scheduler/python3-bellscheduler/MainWindow.py:55 0186 #: bell-scheduler/python3-bellscheduler/MainWindow.py:553 187 187 msgid "Bell deactivated successfully" 188 188 msgstr "L'alarma s'ha desactivat correctament." 189 189 190 #: bell-scheduler/python3-bellscheduler/MainWindow.py:55 2190 #: bell-scheduler/python3-bellscheduler/MainWindow.py:555 191 191 msgid "Bell created successfully" 192 192 msgstr "L'alarma s'ha creat correctament." 193 193 194 #: bell-scheduler/python3-bellscheduler/MainWindow.py:55 4194 #: bell-scheduler/python3-bellscheduler/MainWindow.py:557 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:55 6200 #: bell-scheduler/python3-bellscheduler/MainWindow.py:559 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 58206 #: bell-scheduler/python3-bellscheduler/MainWindow.py:561 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:56 0212 #: bell-scheduler/python3-bellscheduler/MainWindow.py:563 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:56 2218 #: bell-scheduler/python3-bellscheduler/MainWindow.py:565 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:56 4224 #: bell-scheduler/python3-bellscheduler/MainWindow.py:567 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:56 6228 #: bell-scheduler/python3-bellscheduler/MainWindow.py:569 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 68232 #: bell-scheduler/python3-bellscheduler/MainWindow.py:571 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:57 0236 #: bell-scheduler/python3-bellscheduler/MainWindow.py:573 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:57 2240 #: bell-scheduler/python3-bellscheduler/MainWindow.py:575 241 241 msgid "Revovering previous bells configuration. Wait a moment..." 242 242 msgstr "" … … 244 244 "moment..." 245 245 246 #: bell-scheduler/python3-bellscheduler/MainWindow.py:57 4246 #: bell-scheduler/python3-bellscheduler/MainWindow.py:577 247 247 msgid "ERROR: File or directory not available" 248 248 msgstr "ERROR: el fitxer o la carpeta no estan disponibles" 249 249 250 #: bell-scheduler/python3-bellscheduler/MainWindow.py:57 6250 #: bell-scheduler/python3-bellscheduler/MainWindow.py:579 251 251 msgid "Validating the data entered..." 252 252 msgstr "S'estan validant les dades introduïdes..." 253 253 254 #: bell-scheduler/python3-bellscheduler/MainWindow.py:5 78254 #: bell-scheduler/python3-bellscheduler/MainWindow.py:581 255 255 msgid "Detected alarms with errors" 256 256 msgstr "Detectades alarmes amb errors" 257 257 258 #: bell-scheduler/python3-bellscheduler/MainWindow.py:58 0258 #: bell-scheduler/python3-bellscheduler/MainWindow.py:583 259 259 msgid "Activating holiday control.Wait a moment..." 260 260 msgstr "S'està activant el control de vacances. Espereu un moment..." 261 261 262 #: bell-scheduler/python3-bellscheduler/MainWindow.py:58 2262 #: bell-scheduler/python3-bellscheduler/MainWindow.py:585 263 263 msgid "Deactivating holiday control.Wait a moment..." 264 264 msgstr "S'està desactivant el control de vacances. Espereu un moment..." 265 265 266 #: bell-scheduler/python3-bellscheduler/MainWindow.py:58 4266 #: bell-scheduler/python3-bellscheduler/MainWindow.py:587 267 267 msgid "Holiday control deactivated successfully" 268 268 msgstr "S'ha desactivat el control de vacances correctament" 269 269 270 #: bell-scheduler/python3-bellscheduler/MainWindow.py:58 6270 #: bell-scheduler/python3-bellscheduler/MainWindow.py:589 271 271 msgid "Holiday control activated successfully" 272 272 msgstr "S'ha activat el control de vacances correctament" 273 273 274 #: bell-scheduler/python3-bellscheduler/MainWindow.py:5 88274 #: bell-scheduler/python3-bellscheduler/MainWindow.py:591 275 275 msgid "Unabled to apply changes due to problems with cron sync" 276 276 msgstr "" … … 278 278 "amb el cron" 279 279 280 #: bell-scheduler/python3-bellscheduler/MainWindow.py:59 0280 #: bell-scheduler/python3-bellscheduler/MainWindow.py:593 281 281 msgid "Unabled to load bell list due to problems with cron sync" 282 282 msgstr "" … … 354 354 msgstr "Carrega el fitxer amb alarmes" 355 355 356 #: bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui:67 1356 #: bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui:672 357 357 msgid "Manage holiday" 358 358 msgstr "Gestiona les vacances" 359 359 360 #: bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui:69 4360 #: bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui:695 361 361 msgid "Search by hour, day and description" 362 362 msgstr "Cerca per hores, dies i descripció" 363 363 364 #: bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui:69 6364 #: bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui:697 365 365 msgid "Search..." 366 366 msgstr "Cerca..." 367 367 368 #: bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui:74 5368 #: bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui:746 369 369 msgid "Do not run the alarms on holidays set" 370 370 msgstr "No executes les alarmes en període de vacances" 371 372 #: bell-scheduler-indicator.install/usr/bin/bell-scheduler-indicator:83 373 msgid "Playing the scheduled bell" 374 msgstr "" 375 376 #: bell-scheduler-indicator.install/usr/bin/bell-scheduler-indicator:95 377 msgid "Stop the bell now" 378 msgstr "" 379 380 #: bell-scheduler-indicator.install/usr/bin/bell-scheduler-indicator:189 381 msgid "The scheduled bell has ended" 382 msgstr "" 371 383 372 384 #~ msgid "" -
bell-scheduler/trunk/fuentes/translations/ca_ES@valencia.po
r7287 r7483 9 9 "Project-Id-Version: \n" 10 10 "Report-Msgid-Bugs-To: \n" 11 "POT-Creation-Date: 2018-0 4-12 13:57+0200\n"12 "PO-Revision-Date: 2018-0 5-21 08:58+0200\n"11 "POT-Creation-Date: 2018-06-19 09:03+0200\n" 12 "PO-Revision-Date: 2018-06-19 09:04+0200\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:64 … … 34 34 msgstr "Bell Scheduler" 35 35 36 #: bell-scheduler/python3-bellscheduler/MainWindow.py:2 4736 #: bell-scheduler/python3-bellscheduler/MainWindow.py:250 37 37 msgid "Please choose a file to save bells list" 38 38 msgstr "Seleccioneu el fitxer per a guardar la llista d'alarmes" 39 39 40 #: bell-scheduler/python3-bellscheduler/MainWindow.py:29 440 #: bell-scheduler/python3-bellscheduler/MainWindow.py:297 41 41 msgid "" 42 42 "New bells configuration will be loaded and replace the existing " … … 46 46 "ha. Voleu continuar?" 47 47 48 #: bell-scheduler/python3-bellscheduler/MainWindow.py: 29848 #: bell-scheduler/python3-bellscheduler/MainWindow.py:301 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:4 1852 #: bell-scheduler/python3-bellscheduler/MainWindow.py:421 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:4 1957 #: bell-scheduler/python3-bellscheduler/MainWindow.py:422 58 58 #: bell-scheduler/python3-bellscheduler/BellBox.py:105 59 59 msgid "M" 60 60 msgstr "Dl." 61 61 62 #: bell-scheduler/python3-bellscheduler/MainWindow.py:42 062 #: bell-scheduler/python3-bellscheduler/MainWindow.py:423 63 63 msgid "Mon" 64 64 msgstr "Dl." 65 65 66 #: bell-scheduler/python3-bellscheduler/MainWindow.py:42 266 #: bell-scheduler/python3-bellscheduler/MainWindow.py:425 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:42 371 #: bell-scheduler/python3-bellscheduler/MainWindow.py:426 72 72 #: bell-scheduler/python3-bellscheduler/BellBox.py:115 73 73 msgid "T" 74 74 msgstr "Dt." 75 75 76 #: bell-scheduler/python3-bellscheduler/MainWindow.py:42 476 #: bell-scheduler/python3-bellscheduler/MainWindow.py:427 77 77 msgid "Tue" 78 78 msgstr "Dt." 79 79 80 #: bell-scheduler/python3-bellscheduler/MainWindow.py:42 680 #: bell-scheduler/python3-bellscheduler/MainWindow.py:429 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:4 2785 #: bell-scheduler/python3-bellscheduler/MainWindow.py:430 86 86 #: bell-scheduler/python3-bellscheduler/BellBox.py:125 87 87 msgid "W" 88 88 msgstr "Dc." 89 89 90 #: bell-scheduler/python3-bellscheduler/MainWindow.py:4 2890 #: bell-scheduler/python3-bellscheduler/MainWindow.py:431 91 91 msgid "Wed" 92 92 msgstr "Dc." 93 93 94 #: bell-scheduler/python3-bellscheduler/MainWindow.py:43 094 #: bell-scheduler/python3-bellscheduler/MainWindow.py:433 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:43 199 #: bell-scheduler/python3-bellscheduler/MainWindow.py:434 100 100 #: bell-scheduler/python3-bellscheduler/BellBox.py:135 101 101 msgid "R" 102 102 msgstr "Dj." 103 103 104 #: bell-scheduler/python3-bellscheduler/MainWindow.py:43 2104 #: bell-scheduler/python3-bellscheduler/MainWindow.py:435 105 105 msgid "Thu" 106 106 msgstr "Dj." 107 107 108 #: bell-scheduler/python3-bellscheduler/MainWindow.py:43 4108 #: bell-scheduler/python3-bellscheduler/MainWindow.py:437 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:43 5113 #: bell-scheduler/python3-bellscheduler/MainWindow.py:438 114 114 #: bell-scheduler/python3-bellscheduler/BellBox.py:145 115 115 msgid "F" 116 116 msgstr "Dv." 117 117 118 #: bell-scheduler/python3-bellscheduler/MainWindow.py:43 6118 #: bell-scheduler/python3-bellscheduler/MainWindow.py:439 119 119 msgid "Fri" 120 120 msgstr "Dv." 121 121 122 #: bell-scheduler/python3-bellscheduler/MainWindow.py:5 18122 #: bell-scheduler/python3-bellscheduler/MainWindow.py:521 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:52 0126 #: bell-scheduler/python3-bellscheduler/MainWindow.py:523 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:52 2130 #: bell-scheduler/python3-bellscheduler/MainWindow.py:525 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:52 4134 #: bell-scheduler/python3-bellscheduler/MainWindow.py:527 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:52 6138 #: bell-scheduler/python3-bellscheduler/MainWindow.py:529 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:5 28142 #: bell-scheduler/python3-bellscheduler/MainWindow.py:531 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:53 0146 #: bell-scheduler/python3-bellscheduler/MainWindow.py:533 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:53 2150 #: bell-scheduler/python3-bellscheduler/MainWindow.py:535 151 151 msgid "The sound file or url indicated is not reproducible" 152 152 msgstr "El fitxer de so o l'URL indicats no es poden reproduir" 153 153 154 #: bell-scheduler/python3-bellscheduler/MainWindow.py:53 4154 #: bell-scheduler/python3-bellscheduler/MainWindow.py:537 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:53 6158 #: bell-scheduler/python3-bellscheduler/MainWindow.py:539 159 159 msgid "File loaded succesfully" 160 160 msgstr "El fitxer s'ha carregat correctament." 161 161 162 #: bell-scheduler/python3-bellscheduler/MainWindow.py:5 38162 #: bell-scheduler/python3-bellscheduler/MainWindow.py:541 163 163 msgid "File saved succcesfully" 164 164 msgstr "El fitxer s'ha guardat correctament." 165 165 166 #: bell-scheduler/python3-bellscheduler/MainWindow.py:54 0166 #: bell-scheduler/python3-bellscheduler/MainWindow.py:543 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:54 2170 #: bell-scheduler/python3-bellscheduler/MainWindow.py:545 171 171 msgid "File loaded with errors" 172 172 msgstr "El fitxer s'ha carregat amb errors." 173 173 174 #: bell-scheduler/python3-bellscheduler/MainWindow.py:54 4174 #: bell-scheduler/python3-bellscheduler/MainWindow.py:547 175 175 msgid "Bell deleted successfully" 176 176 msgstr "L'alarma s'ha eliminat correctament." 177 177 178 #: bell-scheduler/python3-bellscheduler/MainWindow.py:54 6178 #: bell-scheduler/python3-bellscheduler/MainWindow.py:549 179 179 msgid "Bell edited successfully" 180 180 msgstr "L'alarma s'ha editat correctament." 181 181 182 #: bell-scheduler/python3-bellscheduler/MainWindow.py:5 48182 #: bell-scheduler/python3-bellscheduler/MainWindow.py:551 183 183 msgid "Bell activated successfully" 184 184 msgstr "L'alarma s'ha activat correctament." 185 185 186 #: bell-scheduler/python3-bellscheduler/MainWindow.py:55 0186 #: bell-scheduler/python3-bellscheduler/MainWindow.py:553 187 187 msgid "Bell deactivated successfully" 188 188 msgstr "L'alarma s'ha desactivat correctament." 189 189 190 #: bell-scheduler/python3-bellscheduler/MainWindow.py:55 2190 #: bell-scheduler/python3-bellscheduler/MainWindow.py:555 191 191 msgid "Bell created successfully" 192 192 msgstr "L'alarma s'ha creat correctament." 193 193 194 #: bell-scheduler/python3-bellscheduler/MainWindow.py:55 4194 #: bell-scheduler/python3-bellscheduler/MainWindow.py:557 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:55 6200 #: bell-scheduler/python3-bellscheduler/MainWindow.py:559 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 58206 #: bell-scheduler/python3-bellscheduler/MainWindow.py:561 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:56 0212 #: bell-scheduler/python3-bellscheduler/MainWindow.py:563 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:56 2218 #: bell-scheduler/python3-bellscheduler/MainWindow.py:565 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:56 4224 #: bell-scheduler/python3-bellscheduler/MainWindow.py:567 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:56 6228 #: bell-scheduler/python3-bellscheduler/MainWindow.py:569 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 68232 #: bell-scheduler/python3-bellscheduler/MainWindow.py:571 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:57 0236 #: bell-scheduler/python3-bellscheduler/MainWindow.py:573 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:57 2240 #: bell-scheduler/python3-bellscheduler/MainWindow.py:575 241 241 msgid "Revovering previous bells configuration. Wait a moment..." 242 242 msgstr "" … … 244 244 "moment..." 245 245 246 #: bell-scheduler/python3-bellscheduler/MainWindow.py:57 4246 #: bell-scheduler/python3-bellscheduler/MainWindow.py:577 247 247 msgid "ERROR: File or directory not available" 248 248 msgstr "ERROR: el fitxer o la carpeta no estan disponibles" 249 249 250 #: bell-scheduler/python3-bellscheduler/MainWindow.py:57 6250 #: bell-scheduler/python3-bellscheduler/MainWindow.py:579 251 251 msgid "Validating the data entered..." 252 252 msgstr "S'estan validant les dades introduïdes..." 253 253 254 #: bell-scheduler/python3-bellscheduler/MainWindow.py:5 78254 #: bell-scheduler/python3-bellscheduler/MainWindow.py:581 255 255 msgid "Detected alarms with errors" 256 256 msgstr "Detectades alarmes amb errors" 257 257 258 #: bell-scheduler/python3-bellscheduler/MainWindow.py:58 0258 #: bell-scheduler/python3-bellscheduler/MainWindow.py:583 259 259 msgid "Activating holiday control.Wait a moment..." 260 260 msgstr "S'està activant el control de vacances. Espereu un moment..." 261 261 262 #: bell-scheduler/python3-bellscheduler/MainWindow.py:58 2262 #: bell-scheduler/python3-bellscheduler/MainWindow.py:585 263 263 msgid "Deactivating holiday control.Wait a moment..." 264 264 msgstr "S'està desactivant el control de vacances. Espereu un moment..." 265 265 266 #: bell-scheduler/python3-bellscheduler/MainWindow.py:58 4266 #: bell-scheduler/python3-bellscheduler/MainWindow.py:587 267 267 msgid "Holiday control deactivated successfully" 268 268 msgstr "S'ha desactivat el control de vacances correctament" 269 269 270 #: bell-scheduler/python3-bellscheduler/MainWindow.py:58 6270 #: bell-scheduler/python3-bellscheduler/MainWindow.py:589 271 271 msgid "Holiday control activated successfully" 272 272 msgstr "S'ha activat el control de vacances correctament" 273 273 274 #: bell-scheduler/python3-bellscheduler/MainWindow.py:5 88274 #: bell-scheduler/python3-bellscheduler/MainWindow.py:591 275 275 msgid "Unabled to apply changes due to problems with cron sync" 276 276 msgstr "" … … 278 278 "amb el cron" 279 279 280 #: bell-scheduler/python3-bellscheduler/MainWindow.py:59 0280 #: bell-scheduler/python3-bellscheduler/MainWindow.py:593 281 281 msgid "Unabled to load bell list due to problems with cron sync" 282 282 msgstr "" … … 354 354 msgstr "Carrega el fitxer amb alarmes" 355 355 356 #: bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui:67 1356 #: bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui:672 357 357 msgid "Manage holiday" 358 358 msgstr "Gestiona les vacances" 359 359 360 #: bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui:69 4360 #: bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui:695 361 361 msgid "Search by hour, day and description" 362 362 msgstr "Cerca per hores, dies i descripció" 363 363 364 #: bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui:69 6364 #: bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui:697 365 365 msgid "Search..." 366 366 msgstr "Cerca..." 367 367 368 #: bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui:74 5368 #: bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui:746 369 369 msgid "Do not run the alarms on holidays set" 370 370 msgstr "No executes les alarmes en període de vacances" 371 372 #: bell-scheduler-indicator.install/usr/bin/bell-scheduler-indicator:83 373 msgid "Playing the scheduled bell" 374 msgstr "" 375 376 #: bell-scheduler-indicator.install/usr/bin/bell-scheduler-indicator:95 377 msgid "Stop the bell now" 378 msgstr "" 379 380 #: bell-scheduler-indicator.install/usr/bin/bell-scheduler-indicator:189 381 msgid "The scheduled bell has ended" 382 msgstr "" 371 383 372 384 #~ msgid "" -
bell-scheduler/trunk/fuentes/translations/es.po
r7136 r7483 9 9 "Project-Id-Version: \n" 10 10 "Report-Msgid-Bugs-To: \n" 11 "POT-Creation-Date: 2018-0 4-12 13:56+0200\n"12 "PO-Revision-Date: 2018-0 4-12 13:56+0200\n"11 "POT-Creation-Date: 2018-06-19 09:03+0200\n" 12 "PO-Revision-Date: 2018-06-19 09:03+0200\n" 13 13 "Last-Translator: lliurex <lliurex@gva.es>\n" 14 14 "Language-Team: Spanish\n" … … 34 34 msgstr "Bell Scheduler" 35 35 36 #: bell-scheduler/python3-bellscheduler/MainWindow.py:2 4736 #: bell-scheduler/python3-bellscheduler/MainWindow.py:250 37 37 msgid "Please choose a file to save bells list" 38 38 msgstr "Seleccione el fichero para guardar la lista de alarmas" 39 39 40 #: bell-scheduler/python3-bellscheduler/MainWindow.py:29 440 #: bell-scheduler/python3-bellscheduler/MainWindow.py:297 41 41 msgid "" 42 42 "New bells configuration will be loaded and replace the existing " … … 46 46 "existente. Desea continuar?" 47 47 48 #: bell-scheduler/python3-bellscheduler/MainWindow.py: 29848 #: bell-scheduler/python3-bellscheduler/MainWindow.py:301 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:4 1852 #: bell-scheduler/python3-bellscheduler/MainWindow.py:421 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:4 1957 #: bell-scheduler/python3-bellscheduler/MainWindow.py:422 58 58 #: bell-scheduler/python3-bellscheduler/BellBox.py:105 59 59 msgid "M" 60 60 msgstr "L" 61 61 62 #: bell-scheduler/python3-bellscheduler/MainWindow.py:42 062 #: bell-scheduler/python3-bellscheduler/MainWindow.py:423 63 63 msgid "Mon" 64 64 msgstr "Lu" 65 65 66 #: bell-scheduler/python3-bellscheduler/MainWindow.py:42 266 #: bell-scheduler/python3-bellscheduler/MainWindow.py:425 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:42 371 #: bell-scheduler/python3-bellscheduler/MainWindow.py:426 72 72 #: bell-scheduler/python3-bellscheduler/BellBox.py:115 73 73 msgid "T" 74 74 msgstr "M" 75 75 76 #: bell-scheduler/python3-bellscheduler/MainWindow.py:42 476 #: bell-scheduler/python3-bellscheduler/MainWindow.py:427 77 77 msgid "Tue" 78 78 msgstr "Ma" 79 79 80 #: bell-scheduler/python3-bellscheduler/MainWindow.py:42 680 #: bell-scheduler/python3-bellscheduler/MainWindow.py:429 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:4 2785 #: bell-scheduler/python3-bellscheduler/MainWindow.py:430 86 86 #: bell-scheduler/python3-bellscheduler/BellBox.py:125 87 87 msgid "W" 88 88 msgstr "X" 89 89 90 #: bell-scheduler/python3-bellscheduler/MainWindow.py:4 2890 #: bell-scheduler/python3-bellscheduler/MainWindow.py:431 91 91 msgid "Wed" 92 92 msgstr "Mie" 93 93 94 #: bell-scheduler/python3-bellscheduler/MainWindow.py:43 094 #: bell-scheduler/python3-bellscheduler/MainWindow.py:433 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:43 199 #: bell-scheduler/python3-bellscheduler/MainWindow.py:434 100 100 #: bell-scheduler/python3-bellscheduler/BellBox.py:135 101 101 msgid "R" 102 102 msgstr "J" 103 103 104 #: bell-scheduler/python3-bellscheduler/MainWindow.py:43 2104 #: bell-scheduler/python3-bellscheduler/MainWindow.py:435 105 105 msgid "Thu" 106 106 msgstr "Ju" 107 107 108 #: bell-scheduler/python3-bellscheduler/MainWindow.py:43 4108 #: bell-scheduler/python3-bellscheduler/MainWindow.py:437 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:43 5113 #: bell-scheduler/python3-bellscheduler/MainWindow.py:438 114 114 #: bell-scheduler/python3-bellscheduler/BellBox.py:145 115 115 msgid "F" 116 116 msgstr "V" 117 117 118 #: bell-scheduler/python3-bellscheduler/MainWindow.py:43 6118 #: bell-scheduler/python3-bellscheduler/MainWindow.py:439 119 119 msgid "Fri" 120 120 msgstr "Vie" 121 121 122 #: bell-scheduler/python3-bellscheduler/MainWindow.py:5 18122 #: bell-scheduler/python3-bellscheduler/MainWindow.py:521 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:52 0126 #: bell-scheduler/python3-bellscheduler/MainWindow.py:523 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:52 2130 #: bell-scheduler/python3-bellscheduler/MainWindow.py:525 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:52 4134 #: bell-scheduler/python3-bellscheduler/MainWindow.py:527 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:52 6138 #: bell-scheduler/python3-bellscheduler/MainWindow.py:529 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:5 28142 #: bell-scheduler/python3-bellscheduler/MainWindow.py:531 143 143 msgid "You must indicate a url" 144 144 msgstr "Debe indicar una url" 145 145 146 #: bell-scheduler/python3-bellscheduler/MainWindow.py:53 0146 #: bell-scheduler/python3-bellscheduler/MainWindow.py:533 147 147 msgid "You must indicate a directory" 148 148 msgstr "Debe indicar una carpeta" 149 149 150 #: bell-scheduler/python3-bellscheduler/MainWindow.py:53 2150 #: bell-scheduler/python3-bellscheduler/MainWindow.py:535 151 151 msgid "The sound file or url indicated is not reproducible" 152 152 msgstr "El archivo de sonido o url indicada no es reproducible" 153 153 154 #: bell-scheduler/python3-bellscheduler/MainWindow.py:53 4154 #: bell-scheduler/python3-bellscheduler/MainWindow.py:537 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:53 6158 #: bell-scheduler/python3-bellscheduler/MainWindow.py:539 159 159 msgid "File loaded succesfully" 160 160 msgstr "Fichero cargado correctamente" 161 161 162 #: bell-scheduler/python3-bellscheduler/MainWindow.py:5 38162 #: bell-scheduler/python3-bellscheduler/MainWindow.py:541 163 163 msgid "File saved succcesfully" 164 164 msgstr "Fichero guardado correctamente" 165 165 166 #: bell-scheduler/python3-bellscheduler/MainWindow.py:54 0166 #: bell-scheduler/python3-bellscheduler/MainWindow.py:543 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:54 2170 #: bell-scheduler/python3-bellscheduler/MainWindow.py:545 171 171 msgid "File loaded with errors" 172 172 msgstr "Fichero cargado con errores" 173 173 174 #: bell-scheduler/python3-bellscheduler/MainWindow.py:54 4174 #: bell-scheduler/python3-bellscheduler/MainWindow.py:547 175 175 msgid "Bell deleted successfully" 176 176 msgstr "Alarma borrada correctamente" 177 177 178 #: bell-scheduler/python3-bellscheduler/MainWindow.py:54 6178 #: bell-scheduler/python3-bellscheduler/MainWindow.py:549 179 179 msgid "Bell edited successfully" 180 180 msgstr "Alarma editada correctamente" 181 181 182 #: bell-scheduler/python3-bellscheduler/MainWindow.py:5 48182 #: bell-scheduler/python3-bellscheduler/MainWindow.py:551 183 183 msgid "Bell activated successfully" 184 184 msgstr "Alarma activada correctamente" 185 185 186 #: bell-scheduler/python3-bellscheduler/MainWindow.py:55 0186 #: bell-scheduler/python3-bellscheduler/MainWindow.py:553 187 187 msgid "Bell deactivated successfully" 188 188 msgstr "Alarma desactivada correctamente" 189 189 190 #: bell-scheduler/python3-bellscheduler/MainWindow.py:55 2190 #: bell-scheduler/python3-bellscheduler/MainWindow.py:555 191 191 msgid "Bell created successfully" 192 192 msgstr "Alarma creada correctamente" 193 193 194 #: bell-scheduler/python3-bellscheduler/MainWindow.py:55 4194 #: bell-scheduler/python3-bellscheduler/MainWindow.py:557 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:55 6200 #: bell-scheduler/python3-bellscheduler/MainWindow.py:559 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 58206 #: bell-scheduler/python3-bellscheduler/MainWindow.py:561 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:56 0212 #: bell-scheduler/python3-bellscheduler/MainWindow.py:563 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:56 2218 #: bell-scheduler/python3-bellscheduler/MainWindow.py:565 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:56 4224 #: bell-scheduler/python3-bellscheduler/MainWindow.py:567 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:56 6229 #: bell-scheduler/python3-bellscheduler/MainWindow.py:569 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 68233 #: bell-scheduler/python3-bellscheduler/MainWindow.py:571 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:57 0237 #: bell-scheduler/python3-bellscheduler/MainWindow.py:573 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:57 2241 #: bell-scheduler/python3-bellscheduler/MainWindow.py:575 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/MainWindow.py:57 4245 #: bell-scheduler/python3-bellscheduler/MainWindow.py:577 246 246 msgid "ERROR: File or directory not available" 247 247 msgstr "ERROR: El archivo o directorio no está disponible" 248 248 249 #: bell-scheduler/python3-bellscheduler/MainWindow.py:57 6249 #: bell-scheduler/python3-bellscheduler/MainWindow.py:579 250 250 msgid "Validating the data entered..." 251 251 msgstr "Validando los datos introducidos..." 252 252 253 #: bell-scheduler/python3-bellscheduler/MainWindow.py:5 78253 #: bell-scheduler/python3-bellscheduler/MainWindow.py:581 254 254 msgid "Detected alarms with errors" 255 255 msgstr "Detectadas alarmas con errores" 256 256 257 #: bell-scheduler/python3-bellscheduler/MainWindow.py:58 0257 #: bell-scheduler/python3-bellscheduler/MainWindow.py:583 258 258 msgid "Activating holiday control.Wait a moment..." 259 259 msgstr "Activando el control de festivos. Espere un momento..." 260 260 261 #: bell-scheduler/python3-bellscheduler/MainWindow.py:58 2261 #: bell-scheduler/python3-bellscheduler/MainWindow.py:585 262 262 msgid "Deactivating holiday control.Wait a moment..." 263 263 msgstr "Desactivando el control de festivos. Espere un momento..." 264 264 265 #: bell-scheduler/python3-bellscheduler/MainWindow.py:58 4265 #: bell-scheduler/python3-bellscheduler/MainWindow.py:587 266 266 msgid "Holiday control deactivated successfully" 267 267 msgstr "El control de festivos se ha desactivado correctamente" 268 268 269 #: bell-scheduler/python3-bellscheduler/MainWindow.py:58 6269 #: bell-scheduler/python3-bellscheduler/MainWindow.py:589 270 270 msgid "Holiday control activated successfully" 271 271 msgstr "El control de festivos se ha activado correctamente" 272 272 273 #: bell-scheduler/python3-bellscheduler/MainWindow.py:5 88273 #: bell-scheduler/python3-bellscheduler/MainWindow.py:591 274 274 msgid "Unabled to apply changes due to problems with cron sync" 275 275 msgstr "" … … 277 277 "con el cron" 278 278 279 #: bell-scheduler/python3-bellscheduler/MainWindow.py:59 0279 #: bell-scheduler/python3-bellscheduler/MainWindow.py:593 280 280 msgid "Unabled to load bell list due to problems with cron sync" 281 281 msgstr "" … … 354 354 msgstr "Cargar archivo con alarmas" 355 355 356 #: bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui:67 1356 #: bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui:672 357 357 msgid "Manage holiday" 358 358 msgstr "Gestionar días festivos" 359 359 360 #: bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui:69 4360 #: bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui:695 361 361 msgid "Search by hour, day and description" 362 362 msgstr "Busca por horas, días y descripción" 363 363 364 #: bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui:69 6364 #: bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui:697 365 365 msgid "Search..." 366 366 msgstr "Buscar" 367 367 368 #: bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui:74 5368 #: bell-scheduler/python3-bellscheduler/rsrc/bell-scheduler.ui:746 369 369 msgid "Do not run the alarms on holidays set" 370 370 msgstr "No ejecutar las alarmas los días festivos configurados" 371 372 #: bell-scheduler-indicator.install/usr/bin/bell-scheduler-indicator:83 373 msgid "Playing the scheduled bell" 374 msgstr "Reproduciendo la alarma programada" 375 376 #: bell-scheduler-indicator.install/usr/bin/bell-scheduler-indicator:95 377 msgid "Stop the bell now" 378 msgstr "Detener la alarma ahora" 379 380 #: bell-scheduler-indicator.install/usr/bin/bell-scheduler-indicator:189 381 msgid "The scheduled bell has ended" 382 msgstr "La alarma programada ha finalizado" 371 383 372 384 #~ msgid ""
Note: See TracChangeset
for help on using the changeset viewer.