# New ports collection makefile for: trac # Date created: 17 April 2004 # Whom: Kuei-Feng Li # # $FreeBSD$ # PORTNAME= trac PORTVERSION= 0.11.7 PORTREVISION= 2 CATEGORIES= japanese www devel python MASTER_SITES= http://dist.bsdlab.org/ \ http://www.i-act.co.jp/project/products/downloads/ DISTNAME= Trac-${PORTVERSION}.ja1 MAINTAINER= kuriyama@FreeBSD.org COMMENT= An enhanced wiki and issue tracking system for software projects BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}Genshi>=0.5:${PORTSDIR}/textproc/py-genshi RUN_DEPENDS= ${BUILD_DEPENDS} OPTIONS= SILVERCITY "Use Silvercity for syntax highlighting" On \ DOCUTILS "Allow additional text markup" On \ PYGMENTS "Use generic syntax highlighter" On \ TZ "Process Time Zones" On \ PGSQL "Use PostgreSQL instead of SQLite3" Off \ SUBVERSION "Support for subversion RCS" On CONFLICTS= trac-0.* USE_ZIP= yes USE_PYTHON= yes USE_PYDISTUTILS= easy_install PYDISTUTILS_PKGNAME= Trac PYDISTUTILS_NOEGGINFO= yes PYDISTUTILS_PKGVERSION= ${PORTVERSION}.ja1 # This target is only meant to be used by the port maintainer. x-generate-plist: (${PORTSDIR}/Tools/scripts/plist -d -m ${MTREE_FILE} ${PREFIX} \ | ${SED} -E \ 's,.*share/nls/.+$$,,g \ ;s,@dirrm share/man(/.*)?$$,,g \ ;s,${PYTHON_SITELIBDIR:S,^${PYTHONBASE}/,,},%%PYTHON_SITELIBDIR%%,g \ ;s,share/trac,%%DATADIR%%,g \ ;s,share/examples/trac,%%EXAMPLESDIR%%,g \ ;s,@dirrm (%%PYTHON_SITELIBDIR%%|${PYTHON_LIBDIR:S,${PYTHONBASE}/,,})$$,,g \ ' | ${TR} -s '\n') > temp-pkg-plist pre-install: @${REINPLACE_CMD} -i '' -e 's|/usr/bin/python|${PYTHON_CMD}|' ${WRKSRC}/cgi-bin/trac.fcgi \ ${WRKSRC}/cgi-bin/trac.cgi post-install: @${MKDIR} ${EXAMPLESDIR} . for d in rpm workflow @${MKDIR} ${EXAMPLESDIR}/${d} @${INSTALL_DATA} ${WRKSRC}/contrib/${d}/* ${EXAMPLESDIR}/${d}/ @${RM} -rf ${WRKSRC}/contrib/${d} . endfor @${INSTALL_DATA} ${WRKSRC}/contrib/* ${EXAMPLESDIR} @${MKDIR} ${DATADIR}/cgi-bin @${INSTALL_SCRIPT} ${WRKSRC}/cgi-bin/* ${DATADIR}/cgi-bin @${ECHO_CMD} @${CAT} ${PKGMESSAGE} @${ECHO_CMD} .include .if defined(WITH_SILVERCITY) RUN_DEPENDS+= ${LOCALBASE}/bin/source2html.py:${PORTSDIR}/textproc/silvercity .endif .if defined(WITH_DOCUTILS) RUN_DEPENDS+= ${LOCALBASE}/bin/rst2html:${PORTSDIR}/textproc/py-docutils .endif .if defined(WITH_PYGMENTS) RUN_DEPENDS+= ${LOCALBASE}/bin/pygmentize:${PORTSDIR}/textproc/py-pygments .endif .if defined(WITH_TZ) RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}pytz>0:${PORTSDIR}/devel/py-pytz .endif .if defined(WITH_PGSQL) RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/psycopg2/__init__.py:${PORTSDIR}/databases/py-psycopg2 .else . if ${PYTHON_REL} < 250 RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/pysqlite2/__init__.py:${PORTSDIR}/databases/py-pysqlite23 . else RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/_sqlite3.so:${PORTSDIR}/databases/py-sqlite3 . endif .endif .if !defined(WITHOUT_SUBVERSION) RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/svn/__init__.py:${PORTSDIR}/devel/py-subversion .endif .include xt' type='search' size='10' name='q' value=''/>
blob: 20c720bd8bf5a4d0987c6ea9356d1441381235f6 (plain) (tree)
1
2
3
4
5
6
7
8
9
12844
12845
12846
12847
12848
12849
12850
12851
12852
12853
12854
12855
12856
12857
12858
12859
12860
12861
12862
12863
12864
12865
12866
12867
12868
12869
12870
12871
12872
12873
12874
12875
12876
12877
12878
12879
12880
12881
12882
12883
12884
12885
12886
12887
12888
12889
12890
12891
12892
12893
12894
12895
12896
12897
12898
12899
12900
12901
12902
12903
12904
12905
12906
12907
12908
12909
12910
12911
12912
12913
12914
12915
12916
12917
12918
12919
12920
12921
12922
12923
12924
12925
12926
12927
12928
12929
12930
12931
12932
12933
12934
12935
12936
12937
12938
12939
12940
12941
12942
12943
12944
12945
12946
12947
12948
12949
12950
12951
12952
12953
12954
12955
12956
12957
12958
12959
12960
12961
12962
12963
12964
12965
12966
12967
12968
12969
12970
12971
12972
12973
12974
12975
12976
12977
12978
12979
12980
12981
12982
12983
12984
12985
12986
12987
12988
12989
12990
12991
12992
12993
12994
12995
12996
12997
12998
12999
13000
13001
13002
13003
13004
13005
13006
13007
13008
13009
13010
13011
13012
13013
13014
13015
13016
13017
13018
13019
13020
13021
13022
13023
13024
13025
13026
13027
13028
13029
13030
13031
13032
13033
13034
13035
13036
13037
13038
13039
13040
13041
13042
13043
13044
13045
13046
13047
13048
13049
13050
13051
13052
13053
13054
13055
13056
13057
13058
13059
13060
13061
13062
13063
13064
13065
13066
13067
13068
13069
13070
13071
13072
13073
13074
13075
13076
13077
13078
13079
13080
13081
13082
13083
13084
13085
13086
13087
13088
13089
13090
13091
13092
13093
13094
13095
13096
13097
13098
13099
13100
13101
13102
13103
13104
13105
13106
13107
13108
13109
13110
13111
13112
13113
13114
13115
13116
13117
13118
13119
13120
13121
13122
13123
13124
13125
13126
13127
13128
13129
13130
13131
13132
13133
13134
13135
13136
13137
13138
13139
13140
13141
13142
13143
13144
13145
13146
13147
13148
13149
13150
13151
13152
13153
13154
13155
13156
13157
13158
13159
13160
13161
13162
13163
13164
13165
13166
13167
13168
13169
13170
13171
13172
13173
13174
13175
13176
13177
13178
13179
13180
13181
13182
13183
13184
13185
13186
13187
13188
13189
13190
13191
13192
13193
13194
13195
13196
13197
13198
13199
13200
13201
13202
13203
13204
13205
13206
13207
13208
13209
13210
13211
13212
13213
13214
13215
13216
13217
13218
13219
13220
13221
13222
13223
13224
13225
13226
13227
13228
13229
13230
13231
13232
13233
13234
13235
13236
13237
13238
13239
13240
13241
13242
13243
13244
13245
13246
13247
13248
13249
13250
13251
13252
13253
13254
13255
13256
13257
13258
                                                
                                                        
                                                            
                                                        
                                                           
                                                     
                                               
                                                              
                                                  
                                            
                                       
                                                                 
                                              
                                                       

                                                     
 
                      

         
                                 

                                                                

                                            
                                                         
                                                                    
                   
                     
                                           
                                   
                                             
                             




                                                            
 
                                           
        

                                                                          
         

                                                                                  

                                           

                                                    
 
                                           
        


                                                                               
         


                                                                                  

                                           



                                                                                 

                                           







                                                                             
 
                                           

                                                                   
 
                                           

                                                                           
 
                                           

                                                                            
 
                                            

                                                              
 
                                            

                                                   
 
                                            

                                                                     
 
                                            
                                                                 

                      
 
                                            











                                                                                
                                      



                                            

                                                       
 
                                            

                                                           
 
                                            

                                              
 
                                            

                                               
 
                                            



                                                                                  
 
                                            

                   
 
                                            

                                           
 
                                            




                                                                                  
                                                                                
             
 
                                            




                                                                                
 
                                            

                   
 
                                            

                         
 
                                            

                     
 
                                            

                                       
 
                                            

                                         
 
                                            

                                        
 
                                            





                                                                                  
 

                                                                              

                   
 
                                            

                                                              
 
                                            





                                                                             
 
                                            

                         
 
                                            


                                  
                                            


                                                         
                                            
        

                                                                             
         

                                                                                 
 

                                                       


                                  
                                            



                                                                           
 
                                            

                                                    
 
                                                              
                                            



                                                                            
                                                                        

                                                                          
 
                                                          


                                                            

                           
 
                                                          





                                                          
 
                                                          

                      

                                                          





                                                                    
                                           
                                           

                       
 
                                                          

                          
 
                                                          

                                     
 
                                                          
                                                       
                                                           


                                                         

               
 
                                                           

                 
 
                                                           

                                
 
                                                           
                                                           

                
 
                                                           

                      
 
                                                           
                                           
                                             
                                             

                  
 
                                                           

                          
 
                                                           

                               
 
                                                           

                     
 
                                                           
                                                                
                 
                
 
                                                           
                  
                         
 
                                                           

                              
 
                                                           

               
 
                                     
                                                           

              
 
                                                           

                       
 
                                                           
                     
                       
 



                                                           
                                                           
             
               
                
 
                                                           

                  
 
                                                           

                       
 
                                                           

                  
 
                                                           

                     
 
                                                           

                 

                                                           

                      
 
                                                           

                   
 
                                                           

                       
 
                                                           

                     
 
                                                           

                                                         

                   
 




                                                                
                                                           

                                                             

                     
 
                                                           


                                                    
 
                                                           
                            
                               
 
                                                           

                 
 
                                                           

                             
 
                                                           

                            
 
                                                           

                 
 
                                                           

                       
 
                                                           

                    
 
                                                           



                                                           

             
 
                                                           




                                                           

                 
 
                                                           



                                                           


              
                                                           

                             
 
                                                           

              
 

                                                           

            
 

                                                           

               
 

                                                           

              
 

                                                           

                  
 

                                                           

            
 

                                                           

            
 

                                                           

                  
 

                                                           

              
 

                                                           


                

                                                           

                                  
 
                                                           

                                  
 
                                                           

                                
 

                                                            


                                
 
                                                            

                                                          
 
                                                            

                    
 
                                                            





                                        
 
                                                            


                                           
 
                                                            



                                             
                                                            


                                             
 

                                                            


                             
 
                                                            

                           
 
                                                              

                                    
 
                                                              

                         
 
                                                              

                       
 
                                                              
              
                
 
                                                              

                                            
 
                                                    

            
 
                                                    

             
 
                                                    

              
 
                                                    

                  
 
                                                    

            
 
                                                    

            
 


                                                    
 
                                                    

          
 
                                                    

           
 
                                                     

            
 
                                                     

             
 
                                                     


                                                           
 


                                                     
 




                                                     


                                                     
 
                                                     



                                                     

                 
 
                                                                    
                                                                     

                                    
 
                                                                    



                                                                    

                
 





                                                                           

                                                              
 
                                                                    











                                                                     

                       
 
                                                                     

                                     
 
                                                                      


                 
                                                                      

                                
 
                                                                      

                                
 
                                                                      

                              
 
                                                                          


                                                                   
 
                                                                          
        

                                                                             
         
                                                                           
                                     
 








                                                                                                   
                                                                   
                                                       

                
 
                                                                   




                                                            
                                        
 



                                                                   
                                                                   

                      
 
                                                       

                        
 
                                                  
                                                          

                     
 
                                                  
                                                          

                           
 
                                                  

                                                                       



                                                          

                               
 


                                                       
 





                                                       
 


                                                       
 


                                                       
 


                                                               
 


                                                                         
 


                                                                      
 


                                                      
 



                                                         
 


                                                      
 


                                                                          
 


                                                                          
 



                                                                          
 


                                                                
 


                                                              
 



                                                                   
 














                                                         
 


                                                       
 


                                                       
 


                                                           
 


                                                           
 


                                                           
 



                                                           
 


                                                           
 


                                                           
 


                                                           
 


                                                            
 


                                                            
 


                                                            
 


                                                            
 


                                                            
 


                                                            
















                                                            




                                                            

































                                                                    




                                                            
                                                            

                
 








                                                            
                                            

                                                
                 
 









                                                            
                                                            

                    
 







                                                            
                                                                             


                   



                                                            
 



                                                            
 


                                                        
 








                                                   
 
                                                   
        




                                               
         




                                                       
 
                                                   
        




                                            
         




                                                    
 
                                                   

        

                         
         
    

                        
 
                                                   

        

                                          
         
    

                                          
 


                                             
 


                                             
 



                                              
 




                                                       
 


                                                   
 


                                                   
 





                                                                        
 


                                              
 


                                               
 


                                               
 


                                               
 


                                                       
 



                                                                   
 



                                                                
 



                                                                
 




                                                                 
 


                                                         
 


                                                         
 


                                                         
 


                                                         
 


                                                         
 


                                                         
 







                                                         
 





                                                         
 



                                                         
 


                                                         
 



                                                         
 


                                                         
 


                                                         
 


                                                         
 


                                                         
 


                                                         
 


                                                         
 


                                                          
 









                                                                                 
 







                                                                                   
 







                                                                              
 






                                                                                  
 


                                                
 























































































































































































































































                                                                                                                                    

             
                                               
                                              

                                                                     


              
                                                
                                              

                                                                     
                                            


                

                                              


                                

                                              


                                     
                                              
                                          






                                                 
 
                                              





                                    

                                              


               
                                              
        



                                                        
         


                                                              
                                                    
 
                                              
           
        





                                                                       
         





                                                                                
 
                                              


                                                        
                                     



                                                                                           

                                                                        






                                                                                             

                                                                        








                                                                                                          

                                                                        










                                                                               
        

                                                                               
         

                                                                                  
 


                                     
 




                                     
                                            






                                                                          
         
                                                                                   
              
 
                                     
        

                                                                               
         



                                                                                  
                                            


                                                             
 
                                      
                                                                             
         
                                                                                 
              
 
                                      

                                                                          
 

                                      

                                                                               
         

                                                                                  
 
                                      
                                            


                                                                
 
                                      
                                                                             
         
                                                                                    
              
 
                                      
                                                                 
                                                                                  
 



                                                                              
 
                                      

                                                                              
         

                                                                                  
 
                                      

                                                                  
 
                                      

                                                                  
 
                                      


                                                                     
                                      



                                                                                    
 
                                      

                                                                        
 
                                      





                                                                                    
 
                                      

                                                                   
 
                                      



                                                                                   
 
                                      

                                                                      
 
                                      



                                                                                  
 
                                      
                                                            
                                                                           
 
                                      
                                                            
                                                                         
 
                                      


                                           
 
                                      

                             
 
                                      

                                                                          
 
                                      





                                                                            
 
                                      

                                                                       
 
                                      

                                                                        
 
                                      

                                                                         
 
                                      

                                                                    
 

                                      



                                                                               
 





                                                                             
                                      
                                                                           

                                                                              
 
                                      



                                                                      
                                                                                 
                              

                                      

                                                           
 
                                      
        

                                                                              
         

                                                                               
 




                                                                   
        

                                                                             
         


                                                                               
                                                                           




                                                                  
                                                                        
 
                                      
        

                                                                             
         

                                                                              
 
                                      

                                                                                 
 
                                      
        

                                                                           
         
                                                                                 
                                        
 
                                      

                                           
 
                                      

                                  
 
                                      

                                                    
 
                                      

                                            
 
                                      

                                                              
 
                                      


                                               
                                      

                                                                 
 


                                         
 
                                      
        

                                                                           
         

                                                                            
 


                                                   
 
                                      
        

                                                                            
         

                                                                            
 


                                                      
 
                                      
        

                                                                            
         

                                                                               
 
                                      

                                                                            
 
                                      





                                                                              
 
                                      

                                                                       
 
                                      






                                                                              
                                      

                                                                          
 



                                                  
 
                                      

                                                               
 
                                      

                                           
 

                                                      





                                                                           
 
                                      

                                  
 

                                                      

                                                                             
         

                                                                                  
 



                                                            
 
                                      

                                                                         
 



                                                               
 
                                      

                                                                            
 
                                             

                      
 
                                             

                               
 
                                             

                         
 
                                             

                       
 



                                                                            
                                                                              



                                                                     
                                                                

                
 
                                                                     
                                                                

                        
 

                                                                              

                                                                          

                    
 



                                                                     
 
                                                                     

                        
 
                                                                     
                                                                

           
 
                                                                     
                                                                 

                
 
                                                                         
                                                                      
                                                                        

                 
 

                                                                          


                                     
 


                                                                          















                                                                              
                                                     
                                                       
                                            

                
 
                                                                       
                                                                           

                  
 
                                                                       


                                                                              

                   
 
                                                                       
                                                                 

               
 
                                                                       
                                                                 



                                    

                                             
                                                  

                     
 


                                    
 
                                    

                     
 


                                    
 
                                    

                     
 



                                                                       
 



                                                                       
 
                                             

                        
 
                                             
                                     

                         
 
                                             
                                     

                     
 
                                             
                                     

                             
 
                                             
                                     

                         
 
                                              

                  
 
                                              

                
 
                                              

               
 
                                              

              
 


                                              
 
                                              

                               
 
                                              

                           
 
                                               

                           
 
                                               
                                             

                 
 
                                               

                
 
                                               

                            
 
                                                                                                             
                                               


                           
                                                                           

                 
 
                                               





                                               
 
                                               

                                      
 
                                               





                                               
 
                                               





                                               
 
                                               

                     
 
                                                  

                          
 
                                                   

                                                     

                  
 



                                                   
                                            

                                    
 
                                            

                                   
 
                                            

                                      
 
                                            


                                                                                   
 
                                            


                                                          
 
                                            

                                    
 
                                            

                                   
 
                                            

                                     
 
                                             

                                                                              
         
                                                                               
 
                                             


                                                             
 
                                            

                                            
 
                                            

                                            
 
                                            

                           
 
                                            


                      
 
                                            


                         
 
                                            


                               
 
                                            


                    
 
                                            


                        
 
                                            

                   
 
                                            

                                
 
                                             

                                
 




                                                                             

                          
 



                                                                             

                            
 

                                                                             
                            
                           
 
                                             

                    
 



                                                                             

                                                    
 
                                             
                            
                                     
 

                                             


                        
                                             


                                                      


                                                                             
                       
                                
 
                                             

                         
 


                                                                           
                                                       
                                         

                
 


                                                                       

                 
 

                                             

               
 
                                             

                 
 

                                             

                  
 

                                                                          

             
 

                                             

                      
 

                                                                         

                          
 
                                             

                    
 
                                             
                                             
                                                 
 
                                             

                       
 
                                             
                                                  
                                                    
 
                                             

                  
 
                                             

                                  
 
                                             

                    
 
                                             
                           
                                    
 
                                             

                      
 
                                             

                                      
 
                                             
                   
                        
 
                                             
                                                   
                                                     
 
                                             

              
 
                                             
                                                   
                                                 
 
                                             

                      
 
                                             
                                                     
                                                   
 
                                             

                    
 
                                             
                                                      
                                                                 
 

                                             

               
 


                                             



                                                                            
 

                                                           

                  
 
                                             

                                                 
 
                                                 



                                
                                                   

                                           
 
                                                   
                                
                                         
 
                                                   


                                       
                                                   
                             
                                        
 
                                            


                                                                             
 
                                            
                        
                              
 
                                                                  
                                            


                                                                       
 
                                                                  
                                            


                                                                       
 
                                                                  
                                            


                                                                          
 
                                                                  
                                            


                                                                     
 
                                            

                                                                         
 
                                            

                                                                         
 
                                            

                                                                            
 
                                            

                                                                       
 
                                                                  
                                            


                                                               
 
                                                                  
                                            


                                                               
 
                                                                  
                                            


                                                                  
 
                                                                  
                                             


                                                             
 
                                                   

                               
 


                                                   
 
                                                   

                    
 
                                             

                   
 
                                             
                                             
                                                    
 
                                             

                                  
 
                                             
                                            
                                                   
 
                                             

                      
 
                                             
                                   
                                     
 
                                                                              

                          
 

                                             

                                            
 
                                             

                               
 
                                             
                                             
                                                      
 
                                             
                  
                         
 
                                             
                                                       
                                                                     
 
                                                                          

                    
 
                                             
                                             
                                            

                      
 
                                             

                            
 
                                           

                                                     
 
                                           

                                                                          
                                                                            
         
 
                                           


                                                                                 
 
                                                         

                                            

                                  
 
                                           
                                             

                      
 
                                            

                                   
 
                                            

                                    
 


                                            

                                       
 
                                            

                                        
 
                                            

                                       
 
                                            

                                        
 


                                            

                                       
 

                                            

                                                   
 
                                            


                        
                                            


                       
                                            




                                         
 
                                            




                                          
 
                                            




                                            
 
                                            

                     
 
                                            
                                            
                       

               
 




                                                                                                                 
 




                                                                                                             
 
                                                 
                                            


                                        
 




                                                 
 






                                                 

                  
 


                                             
                                      

                      
 
                                             

               
 



                                                     
 


                                             
 
                                             

                              
 
                                             
                                           
                                           

                          
 






                                             
 
                                             

                

                                             

                  

                                             

               

                                             

              

                                             

             

                                             


              



                                             
                                             

               

                                             

                 

                                              


                



                                              
                                              



                                              


                        
                                              
                                                      


                         
                                                                         

                  
 
                                            

                               
 
                                          

                                                        
 
                                          


                                                                                
                     
 
                                          

                                                                      
                                                                         
             
 




                                                                        

             
 
                                           
                                          


                                           
 
                                           
                                          


                                           
 


                                           
 




                                           
                                           


                                           
 
                                          



                                                                             
 
                                          


                                                                                
 
                                          



                                                                              
 
                                          



                                                                             
 
                                          

                               
 
                                          

                                        
 
                                          

                                       
 
                                           

                             
 
                                                

                                                                                
 
                                                

                                            
 
                                                 

                                                                             
 

                                                                                                                         
                                                 

           
 



                                                                                                                           
                                                 

                 
 




                                                                                                                 
                                                 

                
 



                                                                                                                           
                                                 

                 
 



                                                                                                                            
                                                 

               
 



                                                                                                                           
                                                 

                  
 



                                                                                                                          
                                                 

                
 

                                                                                                                                             
                                                 

                   
 



                                                                                                                               
                                                 

                    
 



                                                                                                                               
                                                 

                     
 



                                                                                                                               
                                                 

                     
 
                                                 
                                                    

                      
 
                                                 
                                                    

                     
 
                                                 
                                                    

                     
 
                                                 
                                                    

                     
 
                                                 
                                                    

                    
 
                                                 
                                                    

                
 
                                                 
                                                    

                
 


                                                                                                                              
                                                 

              
 
                                                 

                     
 
                                                 

                            
 
                                                 
                                            
                                                               
 
                                                 

                            
 
                                                 
                                            
                                                             
 
                                                 

                  
 
                                                                                                                                                           
                                                 


                    
 




                                                                                                                                                           
 




                                                                                                                                                           
 


                                                                                                                                                           

               
 




                                                                                                                                                           
 


                                                                                                                                                           

             
 


                                                                                                                                                           

                    
 
                                                  





                                                  
 
                                                  

                   
 
                                                  

                        
 
                                          

                                              
 
                                          

                                                  
 

                                                  

                                          
 
                                                  

                       
 
                                        
                                                   


                                                                        

             
 

                                                   



                                                                        

               
 
                                        
                                                   


                                                                        

              
 
                                        
                                                   

                                                                        

                   
 
                                      
                                                    
                                                
                                          


                                                                             

                      
 

                                                    
                                                

                                          


                                                                             

                     
 

                                                    
                                                

                                          


                                                                              
                                     
                                            




                                                    
                                                
                                          


                                                                             

                  
 
                                                                                                          
                                            

                                                    

                                            
                                                
                                                                
                                  
              
               
 







                                                    
                                                    
                                   

                     
 


                                                    
 


                                                    
 
                                            

                            
 
                                            

                                                                   
 
                                            

                           
 

                                                                         

               
 
                                            

                           
 
                                            

                              
 
                                          

                                                     
 
                                          

                                                        
 
                                          

                                                                          

                                                                                 
 
                                          



                                                                         
 
                                          




                                                                            
                                            
 
                                          

                                           
 


                                           
 
                                           

                       
 
                                    


                         
                                    


                                   
                                    


                      
                                    


                     
                                    


                     
                                          


                         
                                          


                           
                                          


                         
                                          



                                          
                                          


                                           
                                          


                                       
                                          


                      
                                                                       







                                                                    
                                                                       


                          
                                    



                                           
                                    



                                  
                                    


                                                   
                                    


                                                  
                                              
                                               


                                                                      

                                         
                                                  
                      
                     
 
                                          
                                                      








                                                                    

                                                                            
                                              
                                                      


                 
                                          

                                          


                                                      


                    



                                          



                                                      







                                                                  

                                                                            
                                              
                                                      










                                                        
                                                                                          
                                     




                      
 
                                                                                           
                                     




                       
 
                                     

                                            
 
                                     


                                                 
 
                                     


                                                
 

                                                                     
                                     


                                          
 
                                     


                                               
 
                                     


                                              
 

                                                                     
                                     


                                        
 

                                                                           
                                     


                 
 

                                                                     
                                     


                                                
 
                                     



                               
                                     



                                 
                                     


                                          
                                     


                                                      
                                                                              
                                   

                    
 
                                                

                    
 
                                                

                
 
                                                

                         
 
                                                


                          
                                                

                            
 


                                                
               
                
 
                                                

                    
 
                                                
                                           

                     
 
                                                

                        
 


                                              
 


                                              
 
                                              
                                            

                                                

                                         

             
 


                                              
 
                                                                           

                   
 


                                              
 
                                              


                     
 
                                               
                                     
                                            

                   
 


                                               
                                            

               
 
                                               
                                             
                                          

                     
 
                                        

                                                                        
 
                                        

                                                                      
 
                                        

                                                    
 
                                        

                                       
 

                                                                           

                                       
 

                                                                           

                            
 
                                                                                

                                                  

                                                                            


                             
 
                                                              

                                               

                                                                            


                        
 
                                                                

                                                                         


                    
 
                                                                                        
                                         


                    
 








                                             







                                                                              


                     
                                     


                  
                                     


                   



                                                                              


            


                                                                              


             



                                                                              


                



                                                                              


                 



                                                                              


                   



                                                                              


                     
                                     


                          
                                             
                                     


              
                                             
                                                                              


                
                                          









                                                             
                                          



                         
                                                            
                                              

                             
 
                                                            
                                              

                                
 
                                              






                                            
 
                                                                 


                                                                      



                                                                   


                                                                      








                                                             

                                                                              



                                                                                  
                                    









                                                
                                             


                                 
 
                                             

                                            
 
                                                                       


                                                   
                                                     


                         
 


                                                   

                      
 
                                           

                     
 
                                           

                                   
 
                                           

                                
 
                                           

                 
 


                                                                              

                   
 


                                                                              

              
 


                                                                              

                
 


                                                                              

             
 


                                                                              

                  
 


                                                                              

                                 
 


                                                                              

                              
 


                                                                              

                          
 


                                                                              
                    
                         
 
                                            
                                          
                                          
 
                                            
                                                

             
 
                                                                              

                     
 
                                         
           
                                                                              
         

                                                                              
 
                                         
           

                            
 


                                                     


                       
                                           

                            
 
                                           

                         
 
                                           

                  
 
                                           

                                            
 
                                           

                                       
 
                                           

                                   
 
                                           

            
 
                                           

                       
 
                                           

            
 
                                           

                                     
 
                                           

                                       
 
                                           

                              
 
                                           

                                           
 
                                           

                          
 
                                           

                           
 













                                                                         
                                                

                                                   
 
                                                

               
 




                                                

                      
 


                                                 
 
                                                 

                
 



                                                      
                                              

                   
 
                                                                        

                       
 
                                                              
                                                                        

                  
 
                                                            
                                                                        

                
 
                                     

                                                                          
 
                                     

                                                                        
 
                                     

                                                   
 

                                                      

                                          
 
                                     

                                                
 
                                          

                                           
 
                                                        

                                                                
  
                                     


             
 


                                                                  
                                                     


                                                      
                                              

                
 
                                      

                                                                        
 
                                      

                                                                      
 
                                      

                                                   
 

                                                      

                                       
 
                                      

                                             
 
                                         

                                    
 
                                               

                                                   
                                                                           

              
 
                                   

                                  
 

                                                                    

                                                  
 
                                   

                                                  
 
                                                                     
                         
                                
 
                                                                     
                        
                                
 
                                                                     
                        
                                   
 
                                                                     
                             
                                         
 
                                   
                            
                                
 



                                               
                                   

                 
               
 



                                               
                                   

                            
                               
 






                                                       
                                                                     

                 
                 
 



                                               
                                   

                 
                 
 


                                                       
                                   

                 
                   
 


                                                       
                                   


                 
 


                                                       
                                    


                  
 


                                                       
                                    


                        
 
                                    

                                        
                                                      
 
                                    
                             
                                   
 
                                    
                                                                          
         
                                                                                
 



                                                        
 
                                    

                                                  
 
                              

               
 
                              

             
 
                              

             
 
                              

             
 
                              

             
 
                              

             
 
                              

             
 
                              

             
 
                              

             
 
                              

              
 
                              

              
 
                              

              
 
                              

              
 
                              

              
 
                              

              
 
                              

              
 
                              

              
 
                              

              
 
                              

              
 
                              

              
 
                              

              
 
                              

              
 
                              

              
 
                              

              
 
                              

              
 
                              

              
 
                              

              
 
                              

              
 
                              

              
 
                              

              
 
                              

              
 
                                                                               
                              

          
 
                              

          
 
                              

          
 
                              

          
 
                              

          
 
                              

          
 
                              

          
 

                                                    
                               

               
 


                                                 
                               

                      
 

                                                      
                               

                    
 

                                                  
                               

                 
 


                                           
                               

               
 
                               

                        
 
                               
           
                  
                   
 
                               
           

                       
 
                               
           

                                   
 
                               
           

                
 
                               
           

                       
 
                               

                   
 


                                     
 
                                     


                  



                                     
 
                                                                 

                       
 
                                                                 

                     
 
                                                

                                 
 

                                                 

                        
 
                                                 

                                  
 
                                                 

                                          
 
                                                 

                  
 
                                                 

                                  
 
                                                 

                                          
 
                                                  

                          
 
                                                  

                                                      
 

                                                  


                 
 

                                                  


                 
 

                                                  


                 
 

                                                  


                  
 
                                                  


                          
 
                                                  


                          
 
                                                  
                 

                      
 
                                                  


                       
 
                                            
                                                  


                 
 
                                            
                                                  


                   
 
                                            
                                                  


                     
 
                                                         
                                                  


                        
 
                                     

                                                  


                 
 
                                      
                                                  


                 
 
                                        

                                                  


                 
 
                                                                 
                                                  


                 
 
                                      
                                                  


                 
 
                                        
                                                  


                   
 
                                                                                                
                                                  


                   
 
                                 
                                                  


                 
 
                                       

                                                  


                    
 
                                       

                                                  


                      
 
                                                  


                    
 
                                                  


                 
 


























                                                                               
 


                         
 

                          
                            
 


                         
 


                         
 


                         
 


                         
 


                         
 


                         
 


                         
 


                            
 


                          
 


                         
 


                           
 


                         
 


                         
 


                         
 

                            
                              
 


                         
 


                         
 

                         
                         
 


                         
 


                         
 


                         
 


                             
 


                         
 


                         
 


                         
 


                         
 


                         
 


                           
 


                         
 


                         
 


                           
 


                         
 


                         
 


                         
 


                         
 


                         
 


                          
 


                          
 


                         
 


                         
 


                         
 


                          
 


                          
 


                           
 


                           
 


                           
 


                         
 


                         
 


                         
 


                         
 


                           
 


                         
 


                          
 


                            
 


                         
 


                            
 


                          
 


                         
 


                         
 


                           
 


                         
 


                         
 


                              
 


                               
 


                         
 


                         
 


                           
 


                         
 


                         
 


                         
 


                           
 


                          
 


                            
 


                          
 


                          
 


                              
 


                          
 


                              
 


                          
 


                          
 


                          
 


                          
 


                          
 


                             
 


                           
 


                           
 


                          
 


                           
 


                            
 


                          
 


                           
 


                           
 


                           
 


                          
 


                          
 


                          
 


                            
 


                                       
 


                              
 


                                 
 


                               
 


                               
 


                          
 


                          
 


                          
 


                          
 


                          
 


                                     
 


                                     
 


                          
 


                          
 


                             
 


                            
 


                          
 


                          
 


                          
 


                           
 


                          
 


                          
 


                           
 


                          
 


                                   
 


                          
 


                           
 


                             
 


                          
 


                            
 


                          
 
                          

                             
 


                          
 


                          
 


                                     
 

                                   
                                     
 


                          
 


                             
 


                            
 


                          
 


                                
 


                               
 


                             
 


                            
 


                             
 


                              
 


                          
 


                          
 


                            
 


                          
 


                          
 


                               
 


                            
 


                              
 


                          
 


                          
 


                          
 


                              
 


                           
 


                              
 


                               
 


                             
 


                          
 


                             
 


                          
 


                          
 


                           
 


                            
 


                          
 


                          
 


                             
 


                          
 


                          
 


                                  
 


                          
 


                           
 


                          
 


                             
 


                          
 


                          
 


                             
 


                          
 


                          
 


                          
 


                          
 


                          
 


                          
 


                          
 


                          
 


                          
 


                          
 


                          
 


                          
 


                          
 


                          
 


                          
 


                          
 


                          
 


                          
 


                          
 


                          
 


                          
 


                          
 


                          
 


                          
 


                          
 


                          
 


                          
 


                          
 


                          
 


                          
 


                          
 


                          
 


                          
 


                          
 


                          
 


                          
 


                          
 


                          
 


                           
 


                          
 


                          
 


                          
 


                          
 


                          
 


                          
 


                          
 


                          
 


                          
 


                          
 


                          
 


                          
 

                          
                         
 


                          
 


                          
 


                          
 


                          
 


                          
 


                          
 


                          
 


                          
 


                          
 


                          
 


                          
 


                          
 


                          
 


                          
 


                          
 


                          
 


                          
 


                          
 


                            
 


                          
 


                          
 


                          
 


                          
 


                          
 


                            
 


                          
 


                           
 


                           
 


                             
 


                              
 


                          
 


                             
 


                           
 


                             
 


                                   
 


                                
 


                           
 


                            
 


                            
 


                               
 


                          
 


                          
 


                            
 


                             
 


                             
 


                          
 


                          
 


                          
 


                          
 


                          
 


                          
 


                          
 


                          
 


                          
 


                          
 


                          
 


                          
 


                          
 


                          
 


                          
 


                          
 


                          
 


                          
 


                           
 


                          
 


                          
 


                          
 


                          
 


                          
 


                          
 


                          
 


                          
 


                          
 


                          
 


                          
 


                          
 


                          
 


                          
 


                          
 


                          
 


                          
 


                           
 


                          
 


                          
 


                          
 


                          
 


                          
 


                          
 


                          
 


                          
 


                          
 


                          
 


                          
 


                          
 


                          
 


                          
 


                          
 


                          
 


                             
 


                          
 


                          
 


                          
 


                          
 


                          
 


                          
 


                          
 


                          
 


                          
 


                          
 


                          
 


                           
 


                          
 


                                  
 


                          
 


                            
 


                          
 


                          
 


                           
 


                             
 


                          
 


                              
 


                          
 


                           
 


                           
 


                             
 


                          
 


                            
 


                          
 


                            
 


                          
 


                          
 


                          
 


                          
 


                          
 


                            
 


                          
 


                           
 


                          
 


                               
 


                            
 


                          
 


                          
 


                          
 


                            
 


                          
 


                          
 


                          
 


                          
 
                                       


                       

                                          


                
                                       


                              
                                       


                       
                                       


                                      
                                                                             


                             
                                       


                               
                                       


                        
                                       


                                                     
                                       


                                     
                                       


                     
                                       


                               
                                       


                              
                                       


                             
                                                                            


                
                                       


                             
                                       
                    
                              
 
                                       


                                           
                                       


                         
                                       


                                                  
                                       


                           
                                       



                                                                             
                                       


                            
                                       
                                        
                                                 
 
                                       

                                     
 
                                       

                                                                      
 
                                       
                       
                                 
 
                                       


                                                                            
 
                                       
                    
                        
 
                                       

                                                                         
 
                                       
                  
                   
 
                                       
                                                  
                                                  
 
                                       

                  
 
                                       
                                                 
                                                 
 
                                       

                           
 
                                       
                                                       
                                                              
 
                                       

                        
 
                                           

                                             
 
                                           

                                                                          
 
                                           





                                                                             
 
                                            

              
 
                                            

                      
 
                                            

               
 
                                            

             
 
                                            

              
 
                                            

                      
 
                                            

                  
 

                                            

                     
 
                                           

                                                         
 
                                           

                                                            
 
                                       

                        
 
                                   





                                                                                  
 
                                   






                                                                          
 
                                                                      

                         
 
                                    


                                                                                  
 
                                    

                             
 
                                          

                                                                           
 
                                          



                                                                             
 
                                          

                                                                         
 
                                          

                                
 
                                          

                                                              
 

                                          

                                                                       
         


                                                                             
 
                                          

                        
 
                                          

                   
 
                                          
                                                        
         

                                                                                
 
                                           
                                                         
         

                                                                              
 
                                           

                                                                
 
                                           





                                                                               
 
                                           


                                                                      
         

                                                                                
 
                                           



                                                                               
         


                                                                               
 
                                                   
                                           

                            
 
                                           

                         
 
                                           

                                             
 




                                                                               
 
                                           

                                                                        
 
                                           

                                         
 
                                           

                                                                             
 



                                                             
                                           


                                                                              
 


                                                             
 





                                                                               
 


                                                                    
 
                                                                        

                                               
 
                                           

                                     
 
                                           

                          
 


                                                                               
 


                                              
 








                                                                               
 


                                                   
 

                                                   
                                            
 
                                                                   



                                                           
 
                                                                           

                            
 


                                      
 


                                                 
 

                                               
                                                               
 


                                               
 


                                               
 
                                                             
                                 
                                            
 
                                                             
        

                                                                       
         
                                                                                   
         
 
                                                             



                                                             
        

                                                                               
         

                                                                            
 
                                                             

                                               
 
                                                             
        

                                                                            
         

                                                                                 
 
                                                             



                                                                          



                                                                     

                                          
 
                                                              
        



                                                                             
         



                                                                                     
 
                                                              

                                                                           
 
                                                              



                                                                          
 
                                                              

                                                                          
 
                                                              



                                                                          
 
                                                              

                      
 
                                                              
                                            
                                                                  
 
                                                              

                                          
 
                                                              



                                                                              

                                                                           
 
                                                              

                                           
 
                                                              
                                         
                                                            
 
                                                            

                                        
 
                                                            





                                                                             
 
                                                          

                                                    
 
                                                          

                                                              
 
                                                          

                                                  
 
                                                          

                                                                               
 
                                                          

                                                     
 
                                                          





                                                                              
 
                                                          
                                       
                                                     
 
                                                          



                                                                          

                                                                             
 
                                                          

                                                
 
                                                           



                                                                            



                                                           



                                                                              
                                         
                                                       
 
                                                           
        

                                                                         
         

                                                                           
 
                                                           

                                              
 
                                                           

                                                                              
 
                                                           

                                                
 
                                                           

                                                         
 
                                                           

                                              
 
                                                           

                                                                               
 
                                                           

                                                
 
                                                           

                                                         
 
                                                           

                                                         
 
                                                           





                                                                               
 
                                                           

                                                                          
 
                                                           

                                                                      
 
                                                           

                                                                                 
 
                                                           



                                                                         

                                                                                  
 
                                                           

                                  
 
                                                           

                                                               
 
                                                           

                                     
 
                                                           

                                                                        

                                                                              
 
                                                           
                                                              
                                                                           
 
                                                           
                                                                    
                                                                   
 
                                                           
                                                        
                                                                           
 
                                                           
                                                                   
                                                                          
 
                                                           
                                                        
                                                                       
 
                                                           
                                                                   
                                                                      
 
                                                           
                                                          
                                                                         
 
                                                           
                                                                     


                                                                         
 
                                                           
                                                       
                                                                       
 
                                                           
                                                                  
                                                                      
 
                                                           
                                                        
                                                                     
 
                                                           
                                                                   
                                                                      
 
                                                           

                                    
 
                                                           
                                                         
                                                               
 
                                                           

                                      
 
                                                           




                                                                              
 
                                                           

                                   
 
                                                           

                                                                   
 
                                                           

                                       
 
                                                           




                                                                                   
                                                                     
 
                                                           

                                 
 
                                                           

                                                         
 
                                                           

                                                      
 
                                                           

                                                                              
 
                                                           

                                                   
 
                                                           



                                                                               
 
                                                           

                           
 
                                                           

                                                                              
                                                                               
 
                                                           

                                                                             
 
                                                           



                                                                        
 
                                                           

                                            
 
                                                           




                                                                             



                                                                                     
 
                                                           

                                                                           
 
                                                           



                                                                           
 
                                                           
                                           
                                                         
 
                                                           




                                                                                  
                                                                 
 
                                                           
                                                   
                                                         
 
                                                           
                                                                
                                                                         
 
                                                           
                         
                               
 
                                                           

                                                         
 
                                                           

                                                               
 
                                                           

                                                                         
 

                                                           
                                   
 




                                                                      
                        
                         

                                                           
        

                                                                          
         

                                                                            
 
                                                           

                                      
 
                                                           



                                                                           
                                                                              
                             
 
                                                           

                                   
 
                                                           





                                                                              
 
                                                           

                                         
 

                                                           



                                                                              
                                                                               

                                                                               
 
                                                           

                                            
 
                                                           


                                                                              
                    
 
                                                           

                                                                     
 
                                                           







                                                                               
 
                                                           

                                                                                  
 
                                                           
                                                                             
                                                                                  
 
                                                           

                                                             
 
                                                           



                                                                                  
 
                                                           

                                                           
 
                                                           



                                                                                
 
                                                           


                                                                                  
      
 
                                                           
                                                                      
                                                                 
 
                                                           

                                                   
 
                                                           
                                 
                                             
 
                                                            


                                                                               

                                                                               
 
                                                            

                                             
 
                                                            




                                                                              
                                   
 
                                                            

                                                                           
 
                                                            

                                          
 
                                                            








                                                                                     
 
                                                            

                                                                         
 
                                                            



                                                                        
 
                                                            

                                   
 
                                                            

                                                                           
                                                                              
 
                                                            

                                   
 
                                                            




                                                                              
                          
 
                                                            

                           
 
                                                            

                                                                               
 
                                                            

                      
 
                                                            



                                                                         


                                                                                 
 
                                                            

                                                
 
                                                            
                                                                               
                                                             
 
                                                            

                                         
 
                                                            
                                                                 
                                                      
 
                                                            

                                        
 
                                                            
                                                          
                                                     
 
                                                            

                                      
 
                                                            

                                                                             
                                                                                 
 
                                                            

                          
 
                                                            

                                                                   
 
                                                            

                    
 
                                                            
                                                                         

                                                                          
 
                                                 

                                      
 
                                                 
        


                                                                               
         
                                                                                

                                                                                     
 
                                                 

                                       
 
                                                 

                                                     
 
                                                 

                                 
 
                                                 

                                 
 
                                                 

                                    
 
                                                 

                                     
 
                                                 

                                       
 

                                                          
                                                          
 

                                                                     
                                                          
 

                                                          
                                                           
 

                                                                   
                                                                         
 
                                                      

                                                                    
 
                                                      




                                                                               
 
                                                      

                                                              
 
                                                      

                                                               
 
                                                      

                                                                         
 
                                                      








                                                                              
 
                                                      

                                                   
 
                                                      

                                                                         
 
                                                      

                                            
 
                                                       

                                                    
 
                                                       

                                               
 
                                                       

                                                                   
 
                                                       



                                                       
        

                                                                        
         

                                                                          
 
                                                       



                                                       
        

                                                                       
         

                                                                               
 
                                                       



                                                       
        

                                                                             
         

                                                                            
 
                                                       
                                   
                                               
 
                                                       





                                                                              



                                                                                   
 
                                                       

                                                  
 
                                                       







                                                                               
 
                                                       

                                              
 
                                                       

                                                                              
 
                                                       

                                        
 
                                                       

                                         
 
                                                       

                                          
 
                                                       


                                                                         
 
                                                       

                                              
 
                                                       



                                                                          
 
                                                       

                                                             
 
                                                       





                                                                              
 
                                                       

                                                            
 
                                                       





                                                                             
 
                                                       

                                                               
 
                                                       
        

                                                                              
         



                                                                        

                                                                           
 
                                                       
        

                                                                               
         

                                                                              
 
                                                       


                                                                             
 
                                                       





                                                                               
 
                                                       

                                                                  
                                                                               
 
                                                       
        

                                                                           
         

                                                                               
 
                                                       

                                                                       
 
                                                       




                                                                           
         
                                                                                


                                                                                
 
                                                       

                                                                    
 
                                                       
        


                                                                              
         


                                                                          
 
                                                       

                                                
 
                                                       





                                                                             
 
                                                       

                                      
 
                                                       








                                                                               








                                                                                    
 

                                                       
                                    
 





                                                                            


                                                                                  
 
                                                       

                                                                         
 
                                                       
                                      
                                                



















                                                                              



                                                                       
                                                                              
                                                               
 
                                                       

                                                                                
 
                                                       





                                                                              
 
                                                       
                                                                 
                                                                   
 
                                                       

                                                                        
 
                                                       
                                         
                                                            
 
                                                       



                                                                              

                                                                                
 
                                                       



                                                                                  
 
                                                       



                                                                                  
 
                                                       

                                                            
 
                                                       

                                                             
 
                                                       

                                    
 
                                                       

                                     
 
                                                       

                                            
 
                                                       


                                                                            
 
                                                       

                                                             
 
                                                       

                                                              
 
                                                       

                                                       
 
                                                       





                                                                                

                                                                               
 
                                                       

                            
 
                                                       

                                                   
 
                                                       

                                                 
 
                                                       

                                                                 
 
                                                       

                                                                          
 
                                                       
        



                                                                               
         



                                                                               
 
                                                       

                                  
 
                                                       
                                                                 
                                                                     
 
                                                       

                                                                          
 
                                                       

                                                                  
 
                                                       

                                                           
 
                                                       

                                                            
 
                                                       

                                                      
 
                                                       

                                                                        
 
                                                       

                                                                    
 
                                                       
        

                                                                           
         
                                                                            
 
                                                       





                                                                               
 
                                                       





                                                                               
 
                                                       

                                                           
 
                                                       
                                                                          
                                                                       
 
                                                                                                                                   
                                                       
                                      
                                                     
 
                                                                                                                                   
                                                       



                                                                           
                                                                                
                                                                   
 
                                                       

                                                               
 
                                                        





                                                                                
 
                                                        

                                               
 
                                                        

                                                
 
                                                        

                                                                 
 
                                                        




                                                                                

                                                                        
 
                                                        

                                                
 
                                                        

                                                 
 
                                                        

                     
 
                                                        









                                                                                     
 
                                                        

                                   
 
                                                        

                                                                 
 
                                                        
                     
                          
 
                                                        
                                           
                                                        
 
                                                        

                                   
 
                                                        

                                                            
 
                                                        

                                                          
 
                                                        





                                                                                   
 
                                                        

                                                                      
 
                                                        





                                                                                   
 
                                                        

                                                         
 
                                                        



                                                                            

                                                                              
 
                                                        

                                                               
 
                                                        



                                                                      

                                                                                   
 
                                                        
                                                                   
                                                                        
 
                                                        




                                                                              


                                                                                   
 
                                                        

                                                                     
 
                                                        










                                                                                 
 
                                                        

                                      
 
                                                        

                                                                           
 
                                                        

                                                               
 
                                                        

                                                                
 
                                                        

                                                  
 
                                                        







                                                                                  
 
                                                        

                                         
 
                                                        

                                           
 
                                                        


                                                                           

                                                                            
 
                                                        

                                        
 
                                                        
                                                                
                                                                      
 
                                                        
                                 
                                                            
 
                                                        

                                                                 
                                                                          
 
                                                        

                                                                         

                                                                                 
 
                                                        



                                                                               

                                                                                   
            
 
                                                        

                                                          
 
                                                        

                                                                             

                                                                                 
 
                                                        

                                                                 
 
                                                        





                                                                                
 
                                                        


                                                                          
 
                                                        





                                                                                
 
                                                        
                                              
                                                          
 
                                                        
                                                                      
                                                                               
 
                                                        

                                                            
 
                                                        




                                                                               


                                                                               
 
                                                        




                                                                           
                                                        










                                                                               
                                                        




                                                                             
                                                        










                                                                                 
                                                        
                                                       
                                                                          
 
                                                        



                                                                          


                                                                                   
 
                                                        
                                                        

                                                                            
 
                                                        




                                                                               



                                                                                   
 
                                                        

                                                          
 
                                                        



                                                                          

                                                                                   
 
                                                        





                                                                               
 
                                                        




                                                                                

                                                                           
 
                                                        

                                        
 
                                                        

                                                                
 
                                                        

                                                                
 
                                                        

                                                                 
 
                                                        

                                                  
 
                                                        




                                                                                
 
                                                        
                                                                              
                                                                           
 
                                                        

                                                             
 
                                                        



                                                                             

                                                                             
 
                                                        

                                                          
 
                                                        







                                                                                
 
                                                        

                                                   
 
                                                        






                                                                              
 
                                                        

                                                      
 
                                                        
                                       
                                                       
 
                                                        

                                        
 
                                                        
                                                      
                                                               
 
                                                        

                                                             
 
                                                        

                                                                
 
                                                        
                                    
                                               
 
                                                        

                                                                            
         
                                                                              
           
 
                                                        

                                            
 
                                                        




                                                                             


                                                                              
 
                                                        

                                                                     
 
                                                        









                                                                                 
 
                                                        



                                                                              
 
                                                        







                                                                               
 
                                                        
                                                                  
                                                                   
 
                                                        




                                                                             

                                                                                 
                     
 
                                                        

                                                               
 
                                                        





                                                                               
 
                                                        

                                          
 
                                                        

                          
 
                                                        

                                                   
 
                                                        

                                             
 
                                                        

                                                             
 
                                                        

                                             
 
                                                        





                                                                             
 
                                                        

                                                            
 
                                                        








                                                                                
 
                                                        

                                                 
 
                                                        





                                                                                
 







                                                                                         





                                                                              
 
                                                                            





                                                                                
 
                                                                     
                           
                                          
 
                                                                     
                                                                      

                                                                        
                
 
                                                                     

                                                       
 
                                                                     
                                                               
                                                                          
 
                                                                     

                                     
 

                                                                     
                                                                            
         

                                                                       
 
                                                                     
                                  
                                                    
 
                                                                     

                                                                            

                                                                        
                          
 
                                                                     

                                             
 
                                                                      
                                                      
                                                                               
 
                                                                      

                                                 
 
                                                                      









                                                                      
 
                                                                            

                                            
 
                                                                            








                                                                                  
 
                                                                        

                               
 
                                                                        

                                                            
 
                                                                        
                                                   

                                                                     
 
                                                                        



                                                                             
 
                                                                     

                                           
 
                                                                     





                                                                               
 
                                                             
                        
                             
 

                                                             
                                                   
 
                                                                          
                                           
                                                              
 
                                                                          

                                                                   
 


                                                                          
 


                                                                          
 
                                                                          

                                                    
 
                                                                          



                                                                           
 


                                                                          
 


                                                                             
 
                                                                          

                                                                            
 
                                                                           







                                                                               
 
                                                                           

                               
 
                                                                           

                                                               
 
                                                                           

                                             
 
                                                                           


                                                                               
         

                                                                       
 
                                                                           

                                              
 
                                                                           







                                                                               

                         
 
                                                                           



                                                                             
 
                                                                     

                                         
 
                                                                     
        


                                                                              
         

                                                                            

                                                                                
 
                                                                     

                                              
 

                                                                         
                                                  





                                                                              

                                                                             
 
                                                                  





                                                                             
 
                                                       
                                       
                                                      
 
                                                       
        
                                                                             


                                                                              
 
                                                       

                                        
 
                                                       





                                                                                   
 


                                                       
 


                                                                           
 
                                                                           

                                     
 
                                                       

                                                                               

                                                                          
 
                                                       

                                    
 
                                                        
        
                                                                             
         
                                                                              
 
                                                        

                                
 
                                                        

                                                                          
 
                                                        

                                         
 
                                                        
                                                     
                                                               
 
                                                        

                                     
 
                                                        







                                                                                 
 
                                                        

                                              
 
                                                        
                                              
                                                               
 
                                                        

                                       
 
                                                        
                                              
                                                        
 
                                                        
                            
                                         
 
                                                        
                                                 
                                                          
 
                                                        

                                                                           
 
                                                        

                                         
 
                                                        

                                                           
 
                                                              

                                           
 
                                                              

                                                       
 
                                                              

                                            
 
                                                              

                                                
 
                                                              






                                                                        




                          
                                                 


                             

                                                                       

            
 
                                                                            

                    
 



                                            

           
 



                                            

            
 




                                                                       

                
 


                                                                  

             
 
                                                                            

                            
 
                                                                            


                                               
 

                                                  

                                                       
           

                
 

                                              

                      
 
                                              


                                                       
 
                                            

                       
 
                                            

                                       
 
                                                     

                        
 
                                                     


                                                


                                                  
                                      
                                                       
                                                      
                                                          


             

                                                                          



                                  
                                                    
                                            

                                                             

                   
 
                                                    

                         
 
                                                    

                              
 
                                                    


                            
                                                    

                                 
 
                


                                                    

                            
 

                                                         


                 

                                                         


                                     

                                                     


             

                                                     
                           
                               
 

                                                       


                      

                                                       


                                             
                                                   

                      
 
                                                   





                                                                                  
 
                                                   

                           
 
                                                   





                                                                                  
 
                                                   

                             
 
                                                   





                                                                             
 
                                                   

                                                                        
 
                                                   





                                                                                
 
                                                   

                                                               
 
                                                   





                                                                               
 
                                                   

                           
 
                                                   





                                                                             
 
                                                   

                             
 
                                                   







                                                                                 
 
                                                   

                      
 
                                                   






                                                                                
                                                   


                             
                                                   








                                                                                 

                                                    


                         
                                                    


                                             
                                             
              
               
 
                                             
                                     
                                        
 
                                                   



                                           
                                                    



                                                          
                                                      



                                                       

                                                    



                                         
                                                   


                                       
                                                    



                                    
                                                    



                                                                
                                                    



                                         
                                                    



                                         
                                                    



                                                                 

                                                      
                                                           
                                                                             
 
                                                      


                                                                       
                                                       



                                                            
                                                    


                                          
                                       



                     


                                  
 


                                  
 


                                  
 


                                  
 


                                   
 




                                           
 


                                   
 


                                   
 



                                   
 



                                   
 


                                   
 


                                                                 
 


                                     
 



                                   
 



                                   
 


                                      
 



                                   
 


                                   
 


                                   
 


                                   
 


                                                         
 


                                   
 


                                   
 


                                   
 


                                              
 


                                   
 


                                   
 


                                   
 


                                   
 


                                   
 


                                   
 


                                   
 


                                                                 
 


                                  
 


                                        
 


                                  
 


                                  
 


                                                                         
 


                                   
 


                                                                        
 


                                                                        
 


                                   
 


                                   
 


                                   
 


                                   
 


                                   
 


                                   
 


                                   
 


                                   
 


                                   
 


                                   
 


                                   
 


                                   
 


                                     
 








                                                                                
 


                                     
 


                                     
 


                                                         
 

                                                         

                  
 
                          

                         
 
                          

                                           
 
                          

                                               
 
                                                      

                 
 
                                                                              


                
                           


                                                      
 
                           

             
 
                           

               
 
                           

                     
 
                           

                                      
 
                                                          

                          
 
                           

                                
 
                           





                                                   
 
                           





                                                   
 
                           





                                                        
 



                                    
 



                                                                            
 


                                                    
 





                                                    
 


                                                    
 


                                       
 


                                       
 


                                       
 



                                                   
 

                                             
           

                       
 

                                             
           

                        
 

                                                   
           

                        
 


                                                   
           

                        
 
                             
           

           
 
                             
           

                             
 


                              
 


                                                                      
 


                                                                      
 


                                      
 


                                                                         
 


                                      
 


                                                                         
 


                                                        
 


                                             
 




                                               
 


                                              
 


                                                       
 



                                         
 



                                         
 


                                     
 


                                                                        
 


                                     
 


                                     
 




                                     
 




                                                                   
 


                                      
 


                                    
 


                                    
 


                                    
 


                                    
 


                                    
 


                                    
 
                                    
           

                         
 
                                    
           

                                  
 






                                                                      
 


                                                              
 


                                                              
 



                                           
 
                                
           

                                            
 
                                
           

                                        
 
                                
           





                                                         
 
                                
           

                                         
 



                                          
 


                                                    
 


                                                                   
 



                                                                            
 



                                                                                                         
 


                                      
 


                                             
 


                                                
 


                                      
 


                                                                               
 



                                                                                  
 




                                                                        
 




                                                                    
 




                                          
 




                                                           
 


                             
 


                             
 


                             
 


                             
 


                             
 


                                       
 


                                      
 


                                        
 



                                        
 


                                    
 


                                    
 


                                    
 


                                    
 


                                    
 

                                    
        

                                                                            
         
                                                                             
 


                               
 


                                   
 





                                                                     
 





                                                                
 


                                   
 



                                          
 


                                                         
 


                                                               
 


                                      
 


                                                    
 


                                      
 


                           
 


                           
 


                           
 


                           
 


                           
 


                           
 


                           
 


                           
 


                           
 


                           
 


                           
 


                           
 


                           
 


                                
 



                                                                             
 




                                                                             
 



                                                   
 



                                              
 




                                                                                 
 


                             
 


                                           
 


                                                    
 


                                                                   
 



                                                     
 


                             
 


                             
 




                                                                    
 





                                                                
 


                              
 


                              
 



                                                                              
 


                                    
 






                                                                              
 






                                                                              
 






                                                                              
 






                                                                              
 






                                                                              
 






                                                                              
 






                                                                              
 



                                                                      
 


                                    
 


                                       
 




                                                           
 





                                                           
 







                                                                                            
 





                                       
 





                                   
 





                                       
 





                                   
 





                                     
 





                                   
 





                                    
 





                                   
 





                                     
 





                                   
 





                                      
 





                                   
 





                                     
 


                                               
 



                                                                      
 



                                                                                 
 


                                                             
 


                                
 


                                
 


                                     
 


                                            
 


                                            
 


                                                             
 









                                                                           
 


                                
 


                                
 


                                    
 


                                
 


                                
 


                                                        
 






                                                                               
 


                                     
 


                                                                        
 


                                                                        
 


                                                 
 


                                                               
 


                                     
 



                                                                         
 









                                                                                
 




                                                            
 



                                           
 


                                                    
 




                                                                          
 


                                                                         
 


                                                                          
 


                                                                          
 








                                                                                 
 


                                      
 


                                             
 


                                      
 



                                                                            
 


                                             
 


                                          
 


                                          
 


                                          
 


                                          
 


                                          
 


                                           
 


                                           
 


                                           
 








                                                  
 


                                                 
 


                                                  
 


                        
 







                                                                                 
 


                                         
 


                                                        
 


                                         
 


                                         
 


                                         
 


                                         
 







                                                          
 


                                         
 


                                         
 



                                         
 




                                                    
 


                                                       
 




                                                                                                  
 




                                         
 




                                         
 




                                         
 



                                       
 




                                                                              
 




                                                                                 
 



                                                                                 
 


                                                                                  
 


                                                   
 


                                     
 


                                                                            
 


                               
 


                                                                    
 


                                       
 


                                        
 


                                                                            
 




                                                                             
 


                                
 


                                
 



                              
 


                                  
 


                               
 


                               
 


                               
 


                                                  
 


                               
 


                                                 
 


                                                
 


                                                           
 


                                                           
 




                                                                      
 


                                 
 


                                                                  
 


                                                                  
 




                                                           
 


                                                                    
 


                                                 
 


                                   
 


                                           
 


                                           
 



                                                      
 


                                
 




                                        
 



                                
 


                                 
 


                                                                       
 




                                                                                   
 


                                   
 


                                                     
 


                                   
 


                                                    
 


                                                         
 


                                                               
 


                                                           
 


                                                  
 





                                                                                
 





                                                                                  
 



                                                                               
 





                                                                                 
 




                                                                              
 




                                                                               
 




                                                                              
 




                                                                                  
 





                                                                                 
 


                                                                               
 




                                                                                
 




                                                                             
 




                                                
 


                                                                
 


                                                                
 


                                 
 


                                 
 


                                 
 


                                               
 







                                               
 





                                          
 





                                          
 


                                       
 


                                       
 


                                       
 


                                       
 


                                       
 


                                       
 


                                       
 


                                       
 


                                       
 


                                       
 


                                       
 


                                       
 


                                       
 



                                       
 


                          
 


                            
 





                                                                      
 


                                     
 


                                                                
 


                                                                
 


                                                                
 


                                                                
 


                                                                
 


                                                                
 







                                                                         
 


                                                                        
           

                              
 


                                                                 
 



                                                                 
 


                                                                    
 



                                   
 


                                    
 




                                                                                                                                                                                   
 



                                                                
 


                                          
 



                                            
 


                                 
 


                                      
 


                                  
 


                                                   
 


                                                                          
 


                                                      
 


                                                                          
 


                                                              
 


                                       
 


                                                 
 


                                         
 



                                               
 



                                                
 



                                                         
 



                                                           
 


                                  
 


                                               
 


                                                 
 



                                          
 


                                          
 


                                                   
 


                                      
 


                                               
 


                                                                
 


                                  
 


                                  
 


                                                                           
 


                                                  
 


                                                
 


                                             
 




                                                                                
 



                                                            
 



                                               
 


                                               
 






                                               
 


                                               
 



                                                
 



                                                
 


                                                
 


                                                
 





                                                
 



                                                                              
 



                                                                
 



                                                   
 




                                                
 









                                                                      
 




                                                             
 



                                                                       
 





                                                                             
 




                                                                             
 




                                                                             
 




                                                                             
 







                                                                              
 



                                           
 



                                           
 



                                                            
 







                                                                           
 





                                                                               
 



                                              
 



                                              
 



                                                 
 



                                             
 


                                       
 
                                    
           









                                                                               
 
                                    
           

                                  
 











                                                                                
 



                                    
 





                                               
 


                                     
 


                                     
 
                                     
           

                                      
 



                                       
 
                                     
           

                                 
 
                                     
           

                                                             
 
                                     
           

                                   
 
                                     
           

                                       
 
                                     
           

                                                                 
 



                                                                        
 



                                      
 


                                      
 



                                         
 



                                                        
 






















                                                                        
 


                                       
 


                                                                           
 


                                       
 





                                                           
 


                                         
 





                                                                         
 


                                                  
 


                                                 
 


                                                 
 



                                                                              
 


                               
 



                                                    
 


                                          
 


                                         
 













                                                                
 


                                           
 


                                            
 


                                            
 


                                                  
 


                                            
 


                                                           
 


                                                                   
 


                                            
 


                                             
 


                                                     
 


                                                    
 


                                                    
 


                                            
 


                                             
 


                                                     
 


                                            
 


                                             
 


                                            
 


                                            
 


                                            
 


                                            
 









                                                                             
 



                                            
 







                                                                   
 


                                            
 


                                            
 


                                            
 



                                                       
 


                                            
 


                                            
 


                                            
 


                                            
 


                                            
 


                                            
 


                                            
 


                                            
 







                                                                 
 


                                                                               
 


                                            
 


                                            
 


                                            
 



                                                                        
 



                                                                        
 



                                                                        
 



                                                                        
 


                                                              
 


                                                                               
 


                                                                   
 


                                            
 


                                            
 



                                            
 


                                            
 


                                                             
 


                                            
 


                                                                  
 


                                                                              
 


                                          
 


                                           
 


                                           
 


                                           
 
                                           
        
                                                                           
         
                                                                                  
 


                                           
 


                                           
 


                                           
 


                                           
 


                                           
 


                                           
 



                                                               
 



                                                               
 


                                           
 


                                           
 








                                                                       
 



                                                      
 


                                     
 


                                                 
 


                               
 


                               
 


                                 
 


                                                            
 


                                 
 


                               
 


                                      
 




                                                   
 


                                    
 


                                       
 



                                       
 



                                       
 



                                       
 



                                       
 



                                                  
 


                                     
 






                                                                 
 


                                      
 


                                       
 



                               
 




                                                     
 


                               
 


                               
 


                                                            
 


                              
 


                                                          
 


                                                            
 


                                                          
 


                                                            
 



                                                            
 



                                                                             
 


                                        
 



                                                            
 


                                                        
 


                                                        
 


                               
 


                                                             
 


                               
 


                                                         
 


                               
 


                                                       
 


                                                    
 


                                                                            
 


                                               
 


                                                                        
 


                                           
 


                                                              
 


                                            
 


                                                               
 


                               
 


                                                               
 


                                  
 


                                                            
 


                               
 


                                                                          
 


                                
 


                                                                          
 


                               
 


                                                               
 


                               
 


                                                                 
 


                                 
 


                               
 


                                                                   
 


                                
 


                               
 


                                                                  
 


                                
 


                               
 


                                                             
 


                               
 


                                                         
 


                               
 


                                                  
 


                               
 






























































































































































































































































































































































































































                                                                                 
 


                                    
 







                                              
        










                                                                                  
 




                                     
 









                                                       
 


                                     
 



                                        
 


                                  
 




                                                              
        

                                                                          
         

                                                                           
 


                                               
 


                                            
 


                                   
 


                                   
 


                                                    
 


                                                
 



                                        
 


                             
 


                             
 


                             
 


                             
 


                             
 


                             
 


                              
 


































                              
 


                              
 


                              
 


                              
 


                              
 


                              
 


                              
 


                              
 


                              
 


                              
 


                              
 


                              
 


                              
 


                              
 


                              
 


                                                           
 


                              
 


                              
 


                              
 


                              
 


                              
 


                               
 


                              
 


                              
 


                                  
 


                                       
 


                              
 



                                                           
 


                                                               
 


                                
 


                              
 


                              
 


                              
 


                              
 


                              
 


                                                              
 


                                                               
 


                                     
 


                              
 






                              
 


                              
 


                              
 


                               
 


                              
 


                              
 


                              
 


                              
 



                               
 


                               
 




                                     
 




                                     
 



                                     
 



                                     
 


                                     
 


                                                
 


                                   
 


                                   
 


                                                           
 




                               
 


                                     
 



                                                              
 



                                                              
 



                                                            
 



                                                            
 



                                                                       
 



                                                                        
 


                                                                         
 


                                
 


                                
 


                                
 


                                           
 


                                       
 


                                       
 


                                       
 



                                                                             
 


                                       
 


                                       
 


                                        
 


                                        
 


                                        
 


                                        
 


                                         
 


                                        
 



                                                   
 


                                        
 


                                        
 


                                        
 


                                        
 


                                        
 


                                        
 









                                                                          
 



                                                           
 


                             
 



                          
 


                                  
 


                                       
 


                                       
 


                                                                         
 


                                       
 


                                       
 


                                                
 


                                       
 


                                       
 


                                       
 


                                       
 


                                          
 



                                                  
 




                                                  
 




                                                  
 



                                                  
 



                                                  
 



                                                  
 


                                                         
 


                                       
 






                                            
 



                                        
 


                                        
 











                                           
 



                                                              
 



                                
 



                                
 


                                  
 




















                                                                              
 


                                                 
 






                                                                              
 


                             
 


                                
 


                              
 


                                    
 


                                                     
 


                                               
 


                                                                        
 


                                      
 


                                    
 


                              
 


                                   
 


                                                
 


                                                                  
 


                                                                           
 




                                                                           
 




                                                                             
 


                              
 


                              
 


                              
 


                              
 






                                                                               
 


                                                   
 


                                    
 



                                                     
 


                                   
 
                              
        

                                                                         
         

                                                                                  
 



                                                            
 



                                                            
 



                                                                  
 



















                                                                            
 


                                                           
 


                                                           
 



                              
 



                                  
 



                              
 



                              
 



                              
 


                                 
 


                                  
 


                                          
 


                                         
 


                              
 


                              
 


                              
 


                              
 



                                                               
 


                              
 


                              
 


                              
 


                              
 


                                              
 


                                                             
 


                               
 


                                                           
 


                              
 


                                              
 


                                                   
 


                                
 


                                           
 


                                  
 


                              
 


                                              
 


                                                                       
 


                                                   
 


                              
 


                                 
 


                                                        
 



                                                                                             
 


                                                                               
 


                              
 


                                            
 


                                                              
 


                                             
 


                              
 






                                                               
 


                                                                 
 



                                                                             
 


                                           
 


                                         
 




                                                     
 


                                                  
 


                                              
 


                                                       
 




                                                                              
 


                                                            
 




                                                                                   
 




                                                             
 


                               
 


                               
 






                                                                               
 


                              
 


                              
 



                              
 


                              
 


                              
 


                              
 


                               
 


                               
 


                                      
 


                               
 


                               
 


                               
 


                                                       
 


                               
 


                                   
 


                               
 


                               
 


                                 
 






                                                                                
 


                                                                            
 






                                                                                
 


                                                                             
 








                                                                                
 


                                                                         
 






                                                                               
 




                                                                                
 















                                                                               
 










                                                                              
 



                                                                              
 







                                                                                  
 



                                                                                
 







                                                                                  
 


                                    
 








                                                                                  
 


                                 
 








                                                                                 
 


                                                      
 






                                                                            
 





                                                                           
 







                                                                               
 


                                         
 






                                                                                 
 


                              
 
                              
        

                                                                          
         

                                                                             
 


                                                                                 
 


                                 
 






                                                                              
 



                                                   
 


                                                                         
 


                              
 



                                                                            
 
                              
        

                                                                          
         

                                                                                
 





                                                                         
 


                                         
 


                              
 


                                                 
 


                                                             
 


                                                          
 


                                                                        
 


                                                           
 


                                                                 
 


                                                        
 


                                                    
 


                                                               
 






                                                                                
 


                                                   
 


                                                    
 


                                                                         
 


                                                                     
 



                                                                             
         

                                                                                  
 


                                           
 




                                                                                 
 


                                           
 








                                                                                   
 


                                                          
 


                                                                                
 


                                                               
 


                                                            
 


                                                             
 


                                                                
 


                                                  
 


                                                  
 


                                                        
 


                                                                  
 


                                                            
 


                                                            
 



                                                                                 
 



                                                                             
 







                                                     
 
                              
        
                                                                           
         

                                                                            
 



                                                                                 
 










                                                               
         
                                                                             
 
                              
        

                                                                   
         


                                                                                
 


                                                                  
 


                                                                                
 


                                                        
 


                                                        
 


                              
 


                                          
 


                                                  
 


                                   
 
























                                                                               
 


                               
 


                               
 


                               
 


                                                             
 

















                                                                                
 


                               
 


                               
 


                                                      
 







                                                                                  
 


                               
 




                                                                              
 
                               
        
                                                                           
         

                                                                    
 


                                                             
 





                                                                               
 


                               
 


                               
 


                                                 
 


                                                                   
 
                               
        

                                                                     
         
                                                                             
 


                                    
 


                                                       
 


                               
 


                               
 


                               
 


                               
 


                                            
 



                                                                             
 


                                          
 



                                                                           
 






                                                                                  
 


                                                                 
 


                                   
 


                                                                   
 


                                    
 


                                  
 


                                                
 


                                      
 


                                              
 



                                                                 
 


                                                                
 


                                                                   
 


                                                
 


                               
 


                                
 


                                                 
 


                                         
 


                                                   
 


                                                                    
 


                                            
 


                                
 






                                                                              
 


                               
 


                                                
 


                                                           
 


                                                                            
 


                               
 


                                 
 


                               
 


                                                             
 


                                                            
 



                                              
 


                               
 


                                 
 


                                
 


                              
 


                              
 


                              
 


                              
 


                                     
 


                              
 


                              
 


                              
 


                              
 


                              
 





                                                                        
 



                                                      
 



                                                      
 



                                                      
 


                              
 


                                               
 


                                                               
 



                                                                             
 



                                                                               
 










                                                                                 
 


                                             
 


                                  
 


                                  
 


                                   
 


                                   
 


                                   
 


                                   
 


                                   
 


                                      
 



                                                   
 



                                                   
 



                                                   
 



                                                   
 



                                                   
 




                                                                                                                               
 


                                                    
 


                                                                          
 


                                                     
 


                                                         
 


                                                 
 



                                                 
 




                                                 
 



                                                 
 



                                                         
 
                                                    
             

                 
 



                                                         
 
                                                    
             

                           
 



                                                         
 
                                                    
             

                                 
 



                                                         
 


                                                    
 


                                                         
 




                                                         
 


                                                         
 


                                                                 
 


                                                         
 


                                                         
 


                                                         
 


                                                                 
 


                                                         
 


                                                         
 


                                                                     
 


                                                         
 



                                                                            
 






                                                         
 


                                                         
 


                                                         
 


                                                         
 


                                                                           
 


                                                         
 


                                                         
 


                                                         
 


                                                         
 


                                                         
 


                                                         
 


                                                                         
 


                                                         
 


                                                         
 


                                                         
 


                                                         
 


                                                         
 


                                                         
 




                                                         
 





                                                         
 





                                                         
 



                                                         
 


                                                         
 


                                                          
 


                                                          
 


                                                          
 


                                                                  
 





                                                          
 


                                                                           
 





                                                          
 


                                                                            
 





                                                          
 







                                                          
 


                                                          
 


                                                          
 


                                                          
 


                                                          
 


                                                                           
 




                                                          
 


                                                          
 


                                                 
 


                                                 
 


                                                 
 


                                                 
 


                                                 
 


                                                              
 


                                                              
 









                                                                                
 


                                                             
 


                                                             
 





                                                                  
 


                                                           
 


                                                           
 


                                                                          
 


                                                           
 


                                                           
 


                                                                            
 


                                                           
 


                                                                     
 


                                                       
 


                                                       
 


                                                       
 


                                                       
 


                                                       
 




                                                        
 


                                                                 
 




                                                                               
 


                                                        
 



                                                        
 


                                                        
 


                                                        
 


                                                        
 


                                                        
 


                                                        
 


                                                        
 



                                                        
 


                                                        
 



                                                        
 


                                                        
 


                                                                             
 


                                                        
 


                                                                        
 



                                                                              
 


                                                                   
 


                                                                               
 


                                                                   
 







                                                                                 
 


                                                                   
 





                                                                               
 










                                                                               
 


                                                                   
 


                                                                   
 


                                                                    
 



                                                   
 


                                                                   
 


                                                                             
 


                                                   
 


                                                   
 


                                                   
 


                                                               
 



                                                               
 


                                                               
 


                                                               
 



                                                               
 


                                                               
 


                                                               
 


                                                               
 




                                                               
 


                                                               
 


                                                               
 


                                                               
 


                                                               
 







                                                                                   
 



                                                               
 



                                                               
 


                                                               
 


                                                               
 


                                                               
 


                                                               
 


                                                               
 











                                                                                 
 


                                                               
 


                                                               
 


                                                               
 


                                                               
 


                                                               
 




                                                                   
 


                                                                   
 



                                                      
 


                                                      
 


                                                      
 


                                                      
 


                                                            
 


                                                       
 



                                                             
 


                                                             
 


                                                             
 


                                                                 
 


                                                                 
 


                                                                 
 


                                                                 
 


                                                                 
 


                                                                    
 


                                                                     
 


                                                             
 



                                                      
 


                                                      
 


                                                               
 


                                                               
 


                                                               
 


                                                               
 


                                                               
 



                                                     
 


                                                     
 


                                                     
 


                                                     
 


                                                     
 


                                                   
 


                                                   
 


                                                   
 


                                                    
 


                                                    
 


                                                     
 


                                                     
 


                                                     
 


                                                     
 


                                                     
 


                                                     
 


                                                     
 


                                                     
 


                                                     
 


                                                     
 


                                                     
 


                                                     
 



                                                      
 



                                                     
 


                                                     
 


                                                     
 



                                                     
 



                                                     
 



                                                     
 



                                                     
 



                                                     
 



                                                     
 



                                                     
 


                                                     
 


                                                     
 


                                                     
 


                                                     
 


                                                                               
 


                                                      
 


                                                     
 



                                                                                 
 


                                                     
 


                                                     
 


                                                     
 


                                                     
 


                                                     
 


                                                     
 


                                                           
 



                                                                                                        
 



                                                                                                       
 



                                                                                                                 
 



                                                                                                                
 


                                                            
 


                                                     
 


                                                     
 



                                                                                 
 


                                                     
 



                                                     
 



                                                
 



                                                      
 



                                                
 


                                                
 



                                                
 


                                                
 



                                                
 



                                                      
 


                                                
 


                                                
 
                                                
           

                              
 


                                                     
 








                                                                                  
 




                                                             
 


                                                     
 


                                                     
 




                                                                     
 






                                                      
 



                                                      
 


                                                      
 


                                                      
 


                                                      
 


                                                      
 


                                                      
 


                                                      
 


                                                      
 


                                                      
 



                                                      
 


                                                                
 




                                                      
 


                                                      
 


                                                      
 


                                                      
 


                                                         
 


                                                      
 


                                                             
 


                                                      
 


                                                      
 


                                                      
 


                                                      
 


                                                      
 


                                                      
 


                                                      
 


                                                      
 


                                                      
 


                                                      
 


                                                      
 


                                                      
 


                                                      
 






                                                      
 


                                                      
 


                                                      
 


                                                      
 


                                                      
 


                                                      
 


                                                      
 


                                                      
 


                                                      
 


                                                      
 


                                                      
 


                                                      
 


                                                      
 


                                                      
 


                                                      
 


                                                      
 


                                                      
 


                                                      
 


                                                      
 


                                                      
 


                                                      
 


                                                      
 


                                                      
 


                                                      
 


                                                      
 


                                                      
 




                                                       
 




                                                       
 


                                                      
 


                                                      
 






                                                       
 


                                                      
 





                                                                     
 



                                                      
 




                                                      
 



                                                      
 



                                                      
 





                                                      
 



                                                      
 


                                                      
 


                                                      
 






                                                                                 
 






                                                                                 
 


                                                              
 







                                                                     
 



                                                      
 



                                                      
 



                                                       
 


                                                     
 



                                                      
 



                                                      
 




                                                      
 



                                                      
 



                                                      
 



                                                       
 



                                                      
 



                                                 
 



                                                 
 


                                                 
 



                                                 
 



                                                      
 


                                                 
 



                                                 
 



                                                      
 


                                                      
 


                                                      
 


                                                      
 


                                                      
 


                                                      
 


                                                      
 


                                                      
 


                                                      
 


                                                      
 


                                                      
 


                                                      
 


                                                           
 


                                                           
 


                                                                                
 


                                                      
 


                                                       
 


                                              
 


                                              
 





                                                      
 




                                                      
 



                                                      
 



                                                 
 



                                                 
 


                                                 
 



                                                 
 



                                                      
 


                                                 
 



                                                 
 



                                                      
 


                                                      
 











                                                                              
 


                                                      
 


                                                      
 


                                                      
 


                                                      
 


                                                      
 


                                                      
 


                                                      
 


                                                      
 


                                                      
 


                                                      
 


                                                      
 


                                                      
 


                                                      
 


                                                      
 


                                                           
 


                                                                         
 


                                                                          
 


                                                      
 


                                                      
 


                                                      
 


                                                      
 


                                                      
 


                                                       
 


                                                       
 


                                              
 


                                              
 


                                                      
 





                                                      
 


                                                        
 


                                                        
 




                                            
 




                                            
 




                                            
 




                                            
 




                                            
 




                                            
 










                                            
 




                                              
 




                                            
 




                                              
 




                                            
 




                                            
 





                                            
 




                                                      
 




                                                      
 




                                                      
 



                                            
 




                                              
 




                                             
 




                                              
 




                                             
 






                                            
 





                                            
 





                                            
 



                                                                           
 



                                                            
 



                                                      
 



                                                                         
 



                                                           
 



                                                                     
 



                                                      
 







                                                                             
 
                                            
           


                                                                              
 
                                            
           

                                                                   
 
                                            
           

                                                        
 
                                            
           

                                                         
 
                                            
           

                                              
 
                                            
           

                                                                      
 
                                            
           

                                                       
 
                                            
           

                                                                      
 



                                                       
 



                                                       
 



                                            
 



                                                                 
 



                                                   
 



                                            
 



                                                                   
 



                                                    
 







                                                                             
 





                                                                              
 



                                                                             
 



                                                              
 
                                            
           

                                                                 
 
                                            
           

                                                    
 
                                            
           


                                                                               
 



                                                                       
 



                                                                
 



                                                    
 



                                                         
 



                                            
 



                                                                     
 



                                                      
 



                                                                       
 



                                                        
 


                                            
 


                                            
 



                                             
 


                                            
 



                                             
 


                                             
 


                                             
 


                                             
 


                                             
 


                                             
 


                                             
 


                                             
 


                                             
 



                                                                                 
 


                                             
 




                                             
 



                                             
 



                                                 
 



                                             
 


                                             
 


                                             
 


                                             
 


                                             
 


                                             
 


                                             
 
                                             
           

                                                                            
 



                                                  
 


                                                   
 


                                                                    
 


                                                                            
 



                                                                            
 


                                             
 


                                                                
 
                                             
           

                                                                
 



                                               
 



                                                    
 



                                                   
 



                                                    
 




                                                           
 


                                             
 



                                                  
 


                                                                      
 



                                                                                
 



                                                     
 


                                             
 


                                                           
 




                                                                           
 





                                                                                  
 


                                             
 


                                             
 


                                             
 


                                                                               
 


                                                                                 
 



                                                                                   
 



                                                          
 


                                             
 



                                             
 






                                                                              
 




                                             
 








                                                                               
 


                                                     
 






                                                                           
 



                                             
 


                                             
 


                                             
 


                                             
 


                                             
 




                                                                                 
 


                                                                   
 



                                                                               
 


                                                  
 


                                                   
 



                                                   
 



                                                                    
 


                                                                          
 


                                                                          
 


                                                            
 






                                                            
 


                                                            
 



                                                            
 


                                                            
 


                                                            
 


                                                            
 


                                                            
 


                                                            
 


                                                            
 


                                                            
 


                                                            
 





                                                             
 




                                                             
 



                                                             
 



                                                             
 



                                                             
 



                                                             
 



                                                             
 


                                                                
 


                                                             
 


                                                             
 


                                                             
 








                                                              
 


                                                          
 


                                                          
 


                                                           
 


                                                           
 





                                                  
 



                                             
 


                                             
 



                                             
 


                                             
 



                                             
 


                                             
 


                                             
 


                                             
 


                                             
 


                                             
 




                                                                                              
 


                                                   
 


                                                   
 


                                                                                
 


                                                   
 


                                                   
 


                                                   
 


                                                   
 


                                                                          
 


                                                   
 


                                                   
 


                                                    
 


                                                   
 


                                                   
 


                                                                         
 


                                                   
 


                                                          
 


                                                   
 


                                                    
 


                                                   
 


                                                     
 


                                                   
 


                                                   
 


                                                   
 


                                                   
 



                                                                             
 


                                                   
 


                                                                            
 


                                                   
 


                                                                                
 


                                                   
 


                                                   
 


                                                   
 



                                                                             
 



                                                   
 




                                                                                  
 


                                                   
 


                                                   
 


                                                   
 


                                                   
 


                                                   
 


                                                   
 


                                                   
 


                                                   
 


                                                   
 


                                                   
 


                                                          
 


                                                   
 


                                                   
 



                                                             
 


                                                         
 


                                                   
 


                                                            
 


                                                   
 


                                                   
 


                                                          
 


                                                   
 


                                                               
 






                                                   
 


                                                   
 


                                                                            
 


                                                                       
 


                                                                              
 


                                                   
 


                                                   
 


                                                   
 


                                                   
 


                                                   
 


                                                   
 


                                                   
 


                                                   
 


                                                   
 


                                                   
 


                                                   
 


                                                   
 


                                          
 


                                          
 





                                                   
 





                                                   
 






                                                   
 
                                                   
           



                        
 
                                                   
           



                            
 





                                                   
 
                                                   
           



                           
 





                                                   
 


                                                   
 


                                                   
 


                                          
 


                                       
 


                                       
 


                                       
 


                                       
 


                                         
 


                                        
 


                                        
 



                                                                                                                              
 


                                                
 


                                                                       
 


                                                       
           

                                                                  
 

                                                       
           

                                             
 



                                                        
 



                                     
 


                                                                        
 


                                                                 
 












                                                                         
 
                                                                 
        

                                                                    
         

                                                                            
 
                                                     
        

                                                                              
         





                                                                                
 
                                                     
        

                                                                             
         
                                                                                  
 


                                                          
 


                                                           
 


                                                                  
 


                                                           
 



                                                           
 


                                                           
 


                                                           
 


                                                                  
 


                                                                                
 


                                                                  
 

















                                                                       
 

                                                          
        

                                                                            
         

                                                                       
 



                                                          
 







                                                                              
 


                                                    
 


                                                 
 


                                                                      
 



                                                                      
 



                                                                             
 



                                                       
 



                                                                          
 



                                                       
 


                                                       
 




                                                                              
 


                                                       
 


                                                       
 


                                                                         
 

















                                                                     
 










                                                                                 
 


                                                           
 


                                                                     
 


                                                                      
 


                                                                  
 


                                                                  
 


                                           
 


                                           
 


                                           
 


                                           
 


                                           
 


                                           
 


                                           
 


                                           
 


                                           
 


                                           
 


                                           
 


                                            
 


                                            
 


                                            
 


                                            
 


                                            
 


                                            
 


                                            
 


                                            
 


                                            
 


                                            
 


                                            
 


                                            
 


                                            
 


                                            
 


                                            
 


                                            
 


                                            
 


                                            
 


                                            
 


                                            
 


                                            
 


                                            
 


                                            
 


                                            
 


                                            
 


                                            
 


                                            
 


                                            
 


                                            
 


                                            
 


                                            
 


                                            
 


                                            
 


                                            
 


                                            
 


                                            
 


                                            
 


                                            
 


                                            
 


                                            
 


                                            
 


                                            
 


                                            
 



                                                              
 



                                                              
 


                                                              
 


                                                              
 





                                                              
 


                                                              
 


                                                                
 


                                                        
 


                                                           
 



                                                           
 


                                                                             
 






                                                                               
 


                                                                             
 


                                                                             
 


                                                                                       
 


                                                                                       
 



                                                         
 



                                                                       
 


                                                                        
 


                                          
 


                                                                   
         

                                                                                
 


                                                                        
 





















                                                                                 
 


                                            
 


                                                           
 


                                                           
 


                                                                         
 



                                                           
 



                                                           
 



                                                           
 



                                                           
 



                                                           
 



                                                           
 



                                                           
 



                                                           
 


                                                           
 








                                                                                                                                     
 


                                                           
 



                                                           
 


                                                                             
 



                                                                                                                                                                     
 


                                                                      
 


                                                         
 






                                                   
 



                                                   
 


                                                                     
 


                                                                       
 


                                                                     
 






                                                                             
 


                                                                     
 






                                                                              
 


                                                                     
 






                                                                                  
 


                                                                    
 


                                       
 


                             
 


                                             
 


                                       
 


                             
 


                                                                       
 


                                               
 


                                               
 


                                               
 


                                                           
 


                                               
 


                                                                                 
 


                                                               
 


                                                                     
 


                                                             
 


                                                                   
 


                                                             
 


                                                                                  
 


                                                             
 


                                                                     
 


                                                             
 


                                                                     
 


                                                             
 


                                                             
 


                                                             
 


                                                                    
 


                                                             
 


                                                                               
 




                                                                               
 


                                                                               
 






                                                                                   
 


                                                                               
 







                                                                               
 


                                                                               
 
                                                                               
        

                                                                             
    

                                                                               
         

                                                                           
    













                                                                                
 
                                                                                
        


                                                                           
         


                                                                                 
 


                                                                                
 
                                                                                
        



                                                                        
         



                                                                                      
 






                                                       
 





                                                       
 


                                                       
 





                                                       
 


                                                       
 


                                                       
 


                                                       
 


                                                       
 


                                                       
 






                                                               
 









                                                                                                          
           

                                           
 
                                             
           
        

                                                                            
         
                                                                                
 

                                             
        

                                                                            
         

                                                                                
 

                                             
        

                                                                            
         

                                                                          
 
                                             
           











                                                                                 
 
                                             
           











                                                                                 
 
                                             
           











                                                                                 
 


                                                                 
 


                                             
 




                                                 
           

                                                    
 
                                             
           

                                            
 






                                                                                  
 






                                                                                
 







                                                                               
 


                                                    
 


                                              
 


                                                               
 


                                              
 


                                                                 
 


                                              
 


                                                               
 


                                              
 


                                                                 
 


                                                               
 


                                                  
 






                                                                                
 


                                               
 


                                               
 


                                               
 


                                                                 
 


                                                                 
 


                                                           
 


                                                           
 


                                                                 
 


                                           
 


                                           
 


                                           
 


                                           
 


                                                                          
 


                                           
 
















                                                                       
 

                                                     
           

                                     
 



                                                       
 



                                                     
 
                                                     
           

                                                        
 
                                                     
           

                               
 



                                                       
 


                                                                    
 





                                                                          
 


                                                      
 


                                                      
 


                                                      
 


                                                      
 


                                                      
 


                                                      
 


                                                       
 


                                                       
 


                                                       
 


                                                       
 


                                                       
 


                                                       
 


                                                       
 


                                                       
 


                                                       
 


                                                       
 


                                                       
 


                                                       
 


                                                       
 


                                                       
 


                                                       
 


                                                       
 


                                                       
 




                                                       
 


                                                      
 


                                                      
 





                                                          
 


                                            
 


                                            
 


                                            
 


                                            
 


















                                            
 


                                            
 


                                            
 


                                            
 


                                                
 


                                            
 


                                            
 


                                            
 


                                            
 


                                              
 


                                                                          
 


                                                                 
 


                                                                 
 







                                                                          
 


                                            
 


                                               
 


                                               
 


                                               
 


                                                          
 


                                                       
 








                                                                                
 


                                        
 


                                        
 


                                        
 


                                       
 


                                    
 


                             
 


                                
 


                                                                
 


                                 
 






                                                              
 




                                                             
 




                                                             
 


                               
 


                               
 


                                                 
 
















                                                           
 


                                       
 


                                        
 


                                                                  
 


                                                                         
 


                                               
 


                                                                              
 


                                        
 


                                             
 


                                        
 


                                          
 


                                        
 


                                                  
 


                                        
 


                                            
 


                                        
 


                                                  
 


                                        
 


                                        
 


                                              
 


                                                 
 


                                        
 


                                        
 


                                                    
 


                                        
 



                                                   
 


                                        
 


                                                 
 


                                        
 


                                                                                
 


                                         
 


                                                 
 


                                         
 


                                              
 


                                         
 


                                         
 


                                         
 




                                                                
 


                                         
 


                                         
 


                                         
 


                                         
 


                                          
 


                                         
 


                                         
 


                                         
 


                                         
 


                                         
 


                                                  
 


                                         
 


                                                
 


                                         
 


                                                          
 


                                         
 




                                                                                  
 


                                         
 


                                         
 


                                         
 


                                           
 


                                         
 


                                         
 


                                         
 


                                                                          
 
                                         
           

                         
 
                                         
           

                              
 






                                               
 

                                                       
           






































                                                                          
 






                         
 


                               
 








                                                                                 
 


                                                             
 


                                 
 


                                        
 


                                    
 


                                      
 


                                                        
 


                                                                              
 



                                                                         
 


                                                            
 







                                                                                   
 



                                                                          
 







                                                          
 







                                                                
 


                                                       
 










                                                                                 
 


                                    
 


                               
 


                                                                 
 








                                                                               
 









                                                 
 



                                                                              
 


                                                                              
 


                                                                              
 




                                                                              
 



                                                                              
 




                                                                              
 



                                                                              
 




                                            
 




                                         
 




                                         
 





                                         
 





                                         
 



                                         
 


                                                   
 


                                         
 


                                         
 


                                          
 


                                                    
 



                                             
 


                                        
 


                                                                   
 


                                                                         
 


                                                                         
 


                                            
 


                                               
 


                                        
 


                                                                              
 


                                                                              
 


                                                                              
 


                                        
 


                                        
 


                                        
 


                                        
 


                                        
 


                                        
 






                                        
 
                                       
        


                                                                            
         


                                                                             
 








                                                                                  
 



                                   
 



                                                                  
 


                              
 








                                            
 

                                     
        

                 
         

                   
 


                                     
 


                                                                             
 


                               
 



                                         
 


                               
 










                                                                            
 
                                
        
                                                                            
         

                                                                         
 


                                
 


                                               
 


                                                      
 











                                                                              
         

                                                                               
 


                                                                 
 


                                
 










                                                               
 



                                 
 


                                  
 


                                   
 


                                   
 


                                   
 


                                         
 


                                         
 


                                           
 


                                             
 


                                             
 


                                             
 


                                   
 


                                             
 


                                     
 


                                                           
 
                                   
           

                                     
 


                                   
 


                                   
 


                                                  
 


                                               
 


                                   
 


                                                                    
 


                                                                    
 


                                     
 


                                           
 


                                   
 


                                   
 


                                   
 


                                   
 


                                   
 


                                           
 


                                   
 


                                   
 


                                                                    
 


                                   
 











                                                        
 


                                                                    
 


                                   
 


                                   
 


                                   
 


                                           
 


                                                      
 



                               
 


                            
 


                                  
 


                                
 


                                              
 


                              
 


                                       
 


                                                                         
 


                                       
 


                                    
 


                                    
 


                                    
 


                                    
 


                                
 


                                
 


                                
 


                                
 


                                
 


                                
 


                                
 


                                                    
 


                                 
 


                                 
 


                                 
 

                                        
 





                                                                                
 

                   
 

                                                             
 

                                                                    
 

                                                            
 


                                                                                  
 

                                                          
 

                                                          
 

                                                    
 

                                                              
 

                                                                 
 

                                                   
 





                                                                              
 

                            
 

                                                        
 

                                                       
 

                                                             
 

                                                         
 

                      
 


                                                                              
 









                                                                                
 

                                                                 
 

                                            
 

                                           
 

                                                          
 

                                                            
 

                                  
 

                                                             
 

                                                                           
 

                                                     
 

                              
 

                        
 

              
 

               
 

                                         
 

                      
 

                                  
 

                                    
 

                      
 

                              
 

                                
 

                                                   
 

                                
 

                              
 





                                                                                
 

             
 

             
 

                          
 

                                      
 

                                                           
 

                    
 

                              
 

                                 
 

                              
 






                                                                          
 

                                       
 

                                                
 

                                                                               
 

                                                                    
 

                                      
 





                                                                                 
 

                    
 

                                                  
 

                           
 

                                                                 
 


                                                                               
 

                                                         
 

                                                              
 

                        
 

                                                                   
 

                                                       
 



                                                                            
 

                                      
 

                                                       
 

                                                                
 

                   
 

                                                       
 

              
 

                                                 
 




                                                        
 




                                    
# Brazilian Portuguese translation of evolution.
# Copyright (C) 2000-2013 Free Software Foundation, Inc.
# Gustavo Maciel Dias Vieira <gustavo@sagui.org>, 2000-2004.
# Afonso Celso Medina <afmedina@uol.com.br>, 2004, 2005.
# Washington Lins <washington-lins@uol.com.br>, 2007, 2008.
# Guilherme de S. Pastore <gpastore@gnome.org>, 2007.
# Raul Pereira <contato@raulpereira.com>, 2007.
# Rodrigo Flores <rodrigomarquesflores@gmail.com>, 2007, 2010.
# Vladimir Melo <vladimirmelo.psi@gmail.com>, 2008
# Fabrício Godoy <skarllot@gmail.com>, 2008
# Og Maciel <ogmaciel@gnome.org>, 2008.
# Leonardo Ferreira Fontenelle <leonardof@gnome.org>, 2008, 2009.
# André Gondim <andregondim@ubuntu.com>, 2009
# Djavan Fagundes <djavanf@gnome.org>, 2010, 2011, 2012
# Rafael Ferreira <rafael.f.f1@gmail.com>, 2012, 2013
# Enrico Nicoletto <liverig@gmail.com>, 2013.
#
#: ../shell/main.c:573
msgid ""
msgstr ""
"Project-Id-Version: evolution\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?"
"product=evolution&keywords=I18N+L10N&component=Miscellaneous\n"
"POT-Creation-Date: 2013-03-06 18:38+0000\n"
"PO-Revision-Date: 2013-03-06 18:39-0300\n"
"Last-Translator: Enrico Nicoletto <liverig@gmail.com>\n"
"Language-Team: Brazilian Portuguese <gnome-pt_br-list@gnome.org>\n"
"Language: pt_BR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Generator: Poedit 1.5.4\n"
"X-Project-Style: gnome\n"

#: ../addressbook/addressbook.error.xml.h:1
msgid "This address book could not be opened."
msgstr "Este catálogo de endereços não pôde ser aberto."

#: ../addressbook/addressbook.error.xml.h:2
msgid ""
"This address book server might be unreachable or the server name may be "
"misspelled or your network connection could be down."
msgstr ""
"Este servidor de catálogo de endereços pode ser inalcançável, seu nome pode "
"estar errado ou a sua conexão de rede pode ter caído."

#: ../addressbook/addressbook.error.xml.h:3
msgid "Failed to authenticate with LDAP server."
msgstr "Falha ao autenticar-se com o servidor LDAP."

#: ../addressbook/addressbook.error.xml.h:4
msgid ""
"Check to make sure your password is spelled correctly and that you are using "
"a supported login method. Remember that many passwords are case sensitive; "
"your caps lock might be on."
msgstr ""
"Verifique se a sua senha está correta e se você está usando um método de "
"sessão com suporte. Lembre-se de que várias senhas diferenciam maiúsculas de "
"minúsculas; sua tecla CapsLock pode estar ligada."

#: ../addressbook/addressbook.error.xml.h:5
msgid "This address book server does not have any suggested search bases."
msgstr ""
"Este servidor de catálogo de endereços não possui qualquer base de pesquisa "
"sugerida."

#: ../addressbook/addressbook.error.xml.h:6
msgid ""
"This LDAP server may use an older version of LDAP, which does not support "
"this functionality or it may be misconfigured. Ask your administrator for "
"supported search bases."
msgstr ""
"Este servidor LDAP pode estar usando uma versão antiga de LDAP que não "
"suporta esta funcionalidade ou ele pode estar mal configurado. Pergunte ao "
"seu administrador quais são as bases de pesquisa com suporte."

#: ../addressbook/addressbook.error.xml.h:7
msgid "This server does not support LDAPv3 schema information."
msgstr "Este servidor não suporta informação de esquema LDAPv3."

#: ../addressbook/addressbook.error.xml.h:8
msgid "Could not get schema information for LDAP server."
msgstr "Não foi possível obter informação de esquema do servidor LDAP."

#: ../addressbook/addressbook.error.xml.h:9
msgid "LDAP server did not respond with valid schema information."
msgstr "O servidor LDAP não respondeu com informação de esquema válido."

#: ../addressbook/addressbook.error.xml.h:10
msgid "Could not remove address book."
msgstr "Não foi possível remover o catálogo de endereços."

#: ../addressbook/addressbook.error.xml.h:11
msgid "Delete address book '{0}'?"
msgstr "Excluir o catálogo de endereços \"{0}\"?"

#: ../addressbook/addressbook.error.xml.h:12
msgid "This address book will be removed permanently."
msgstr "Este catálogo de endereços será removido permanentemente."

#: ../addressbook/addressbook.error.xml.h:13
#: ../calendar/calendar.error.xml.h:7 ../mail/mail.error.xml.h:66
msgid "Do _Not Delete"
msgstr "_Não excluir"

#: ../addressbook/addressbook.error.xml.h:14
msgid "Delete remote address book &quot;{0}&quot;?"
msgstr "Excluir o catálogo de endereços &quot;{0}&quot;?"

#: ../addressbook/addressbook.error.xml.h:15
msgid ""
"This will permanently remove the address book &quot;{0}&quot; from the "
"server. Are you sure you want to proceed?"
msgstr ""
"Isso vai remover permanentemente o catálogo de endereços &quot;{0}&quot; do "
"servidor. Você tem certeza de que deseja continuar?"

#: ../addressbook/addressbook.error.xml.h:16
#: ../calendar/calendar.error.xml.h:61
msgid "_Delete From Server"
msgstr "_Excluir do servidor"

#: ../addressbook/addressbook.error.xml.h:17
msgid "Category editor not available."
msgstr "O editor de categorias não está disponível."

#: ../addressbook/addressbook.error.xml.h:18
msgid "Unable to open address book"
msgstr "Não foi possível abrir o catálogo de endereços"

#: ../addressbook/addressbook.error.xml.h:19
msgid "Unable to perform search."
msgstr "Não foi possível realizar pesquisa."

#: ../addressbook/addressbook.error.xml.h:20
msgid "Would you like to save your changes?"
msgstr "Você deseja salvar suas alterações?"

#: ../addressbook/addressbook.error.xml.h:21
msgid ""
"You have made modifications to this contact. Do you want to save these "
"changes?"
msgstr "Você fez modificações neste contato. Deseja salvar estas alterações?"

#: ../addressbook/addressbook.error.xml.h:22
msgid "_Discard"
msgstr "_Descartar"

#: ../addressbook/addressbook.error.xml.h:23
msgid "Cannot move contact."
msgstr "Não é possível mover o contato."

#: ../addressbook/addressbook.error.xml.h:24
msgid ""
"You are attempting to move a contact from one address book to another but it "
"cannot be removed from the source. Do you want to save a copy instead?"
msgstr ""
"Você está tentando mover um contato de um catálogo de endereços para outro, "
"mas ele não pode ser removido da origem. Ao invés disso você deseja salvar "
"uma cópia?"

#: ../addressbook/addressbook.error.xml.h:25
msgid ""
"The image you have selected is large. Do you want to resize and store it?"
msgstr ""
"A imagem que você selecionou é grande. Você deseja alterar o seu tamanho e "
"armazená-la?"

#: ../addressbook/addressbook.error.xml.h:26
msgid "_Resize"
msgstr "_Redefinir"

#: ../addressbook/addressbook.error.xml.h:27
msgid "_Use as it is"
msgstr "_Usar como está"

#: ../addressbook/addressbook.error.xml.h:28
msgid "_Do not save"
msgstr "_Não salvar"

#: ../addressbook/addressbook.error.xml.h:29
msgid "Unable to save {0}."
msgstr "Não foi possível salvar {0}."

#: ../addressbook/addressbook.error.xml.h:30
msgid "Error saving {0} to {1}: {2}"
msgstr "Erro ao salvar {0} para {1}: {2}"

#: ../addressbook/addressbook.error.xml.h:31
msgid "Address '{0}' already exists."
msgstr "O endereço \"{0}\" já existe."

#: ../addressbook/addressbook.error.xml.h:32
msgid ""
"A contact already exists with this address. Would you like to add a new card "
"with the same address anyway?"
msgstr ""
"Já existe um contato com este endereço. Ainda assim você deseja adicionar um "
"novo contato com o mesmo endereço?"

#: ../addressbook/addressbook.error.xml.h:33 ../e-util/e-table-config.ui.h:6
#: ../e-util/e-name-selector-dialog.c:977 ../mail/em-vfolder-editor-rule.c:397
msgid "_Add"
msgstr "_Adicionar"

#: ../addressbook/addressbook.error.xml.h:34
msgid "Some addresses already exist in this contact list."
msgstr "Alguns endereços já existem nesta lista de contato."

#: ../addressbook/addressbook.error.xml.h:35
msgid ""
"You are trying to add addresses that are part of this list already. Would "
"you like to add them anyway?"
msgstr ""
"Você está tentando adicionar endereços que já fazem parte dessa lista. "
"Gostaria de adicioná-los de qualquer forma?"

#: ../addressbook/addressbook.error.xml.h:36
msgid "Skip duplicates"
msgstr "Pular duplicados"

#: ../addressbook/addressbook.error.xml.h:37
msgid "Add with duplicates"
msgstr "Adicionar como duplicados"

#: ../addressbook/addressbook.error.xml.h:38
msgid "List '{0}' is already in this contact list."
msgstr "Lista \"{0}\" já está nesta lista de contatos."

#: ../addressbook/addressbook.error.xml.h:39
msgid ""
"A contact list named '{0}' is already in this contact list. Would you like "
"to add it anyway?"
msgstr ""
"Uma lista de contatos chamada \"{0}\" já está nesta lista de contatos. Você "
"gostaria de adicioná-la assim mesmo?"

#: ../addressbook/addressbook.error.xml.h:40
#: ../addressbook/gui/widgets/e-addressbook-view.c:1237
msgid "Failed to delete contact"
msgstr "Falha ao excluir contatos"

#: ../addressbook/addressbook.error.xml.h:41
msgid "You do not have permission to delete contacts in this address book."
msgstr ""
"Você não possui permissão para excluir os contatos neste catálogo de "
"endereços."

#: ../addressbook/addressbook.error.xml.h:42
msgid "Cannot add new contact"
msgstr "Não foi possivel adicionar um novo contato"

#. For Translators: {0} is the name of the address book source
#: ../addressbook/addressbook.error.xml.h:44
msgid ""
"'{0}' is a read-only address book and cannot be modified. Please select a "
"different address book from the side bar in the Contacts view."
msgstr ""
"\"{0}\" é um catálogo de endereços somente leitura e não pode ser "
"modificado. Por favor, selecione outro catálogo de endereços da barra "
"lateral na exibição de contatos."

#: ../addressbook/gui/contact-editor/contact-editor.ui.h:1
#: ../addressbook/gui/contact-editor/e-contact-editor.c:635
#: ../addressbook/gui/contact-editor/e-contact-editor.c:657
#: ../addressbook/gui/contact-editor/e-contact-editor.c:2949
msgid "Contact Editor"
msgstr "Editor de contatos"

#: ../addressbook/gui/contact-editor/contact-editor.ui.h:2
msgid "Image"
msgstr "Imagem"

#: ../addressbook/gui/contact-editor/contact-editor.ui.h:3
msgid "Nic_kname:"
msgstr "_Apelido:"

#: ../addressbook/gui/contact-editor/contact-editor.ui.h:4
msgid "_File under:"
msgstr "A_rquivar em:"

#: ../addressbook/gui/contact-editor/contact-editor.ui.h:5
#: ../addressbook/gui/contact-list-editor/contact-list-editor.ui.h:3
msgid "_Where:"
msgstr "On_de:"

#: ../addressbook/gui/contact-editor/contact-editor.ui.h:6
#: ../calendar/gui/dialogs/event-page.ui.h:16
#: ../calendar/gui/dialogs/memo-page.ui.h:1
#: ../calendar/gui/dialogs/task-page.ui.h:5
msgid "Ca_tegories..."
msgstr "Ca_tegorias..."

#: ../addressbook/gui/contact-editor/contact-editor.ui.h:7
msgid "Full _Name..."
msgstr "_Nome completo..."

#: ../addressbook/gui/contact-editor/contact-editor.ui.h:8
msgid "_Wants to receive HTML mail"
msgstr "Dese_ja receber correio HTML"

#: ../addressbook/gui/contact-editor/contact-editor.ui.h:9
#: ../addressbook/gui/merging/eab-contact-merging.c:396
#: ../addressbook/gui/widgets/e-addressbook-view.etspec.h:6
#: ../addressbook/gui/widgets/eab-contact-formatter.c:606
#: ../addressbook/gui/widgets/eab-contact-formatter.c:971
#: ../smime/lib/e-asn1-object.c:395
msgid "Email"
msgstr "E-mail"

#: ../addressbook/gui/contact-editor/contact-editor.ui.h:10
msgid "Telephone"
msgstr "Telefone"

#: ../addressbook/gui/contact-editor/contact-editor.ui.h:11
msgid "Instant Messaging"
msgstr "Mensagens instantâneas"

#: ../addressbook/gui/contact-editor/contact-editor.ui.h:12
#: ../addressbook/importers/evolution-vcard-importer.c:1001
msgid "Contact"
msgstr "Contato"

#: ../addressbook/gui/contact-editor/contact-editor.ui.h:13
msgid "_Home Page:"
msgstr "_Página web:"

#: ../addressbook/gui/contact-editor/contact-editor.ui.h:14
#: ../calendar/gui/dialogs/event-page.c:709
#: ../calendar/gui/dialogs/event-page.ui.h:22
#: ../modules/itip-formatter/itip-view.c:1877
msgid "_Calendar:"
msgstr "Agen_da:"

#: ../addressbook/gui/contact-editor/contact-editor.ui.h:15
msgid "_Free/Busy:"
msgstr "Disponibi_lidade:"

#: ../addressbook/gui/contact-editor/contact-editor.ui.h:16
msgid "_Video Chat:"
msgstr "Bate-papo com _vídeo:"

#: ../addressbook/gui/contact-editor/contact-editor.ui.h:17
msgid "Home Page:"
msgstr "Página web:"

#: ../addressbook/gui/contact-editor/contact-editor.ui.h:18
#: ../modules/cal-config-google/evolution-cal-config-google.c:97
msgid "Calendar:"
msgstr "Agenda:"

#: ../addressbook/gui/contact-editor/contact-editor.ui.h:19
msgid "Free/Busy:"
msgstr "Disponibilidade:"

#: ../addressbook/gui/contact-editor/contact-editor.ui.h:20
msgid "Video Chat:"
msgstr "Bate-papo com vídeo:"

#: ../addressbook/gui/contact-editor/contact-editor.ui.h:21
msgid "_Blog:"
msgstr "_Blog:"

#. Translators: an accessibility name
#: ../addressbook/gui/contact-editor/contact-editor.ui.h:23
msgid "Blog:"
msgstr "Blog:"

#: ../addressbook/gui/contact-editor/contact-editor.ui.h:24
msgid "Web Addresses"
msgstr "Endereços Web"

#: ../addressbook/gui/contact-editor/contact-editor.ui.h:25
msgid "Web addresses"
msgstr "Endereços web"

#: ../addressbook/gui/contact-editor/contact-editor.ui.h:26
msgid "_Profession:"
msgstr "_Profissão:"

#: ../addressbook/gui/contact-editor/contact-editor.ui.h:27
msgctxt "Job"
msgid "_Title:"
msgstr "_Cargo:"

#: ../addressbook/gui/contact-editor/contact-editor.ui.h:28
msgid "_Company:"
msgstr "Em_presa:"

#: ../addressbook/gui/contact-editor/contact-editor.ui.h:29
msgid "_Department:"
msgstr "_Departamento:"

#: ../addressbook/gui/contact-editor/contact-editor.ui.h:30
msgid "_Manager:"
msgstr "_Gerente:"

#: ../addressbook/gui/contact-editor/contact-editor.ui.h:31
msgid "_Assistant:"
msgstr "_Assistente:"

#: ../addressbook/gui/contact-editor/contact-editor.ui.h:32
msgid "Job"
msgstr "Trabalho"

#: ../addressbook/gui/contact-editor/contact-editor.ui.h:33
msgid "_Office:"
msgstr "Escritóri_o:"

#: ../addressbook/gui/contact-editor/contact-editor.ui.h:34
msgid "_Spouse:"
msgstr "Côn_juge:"

#: ../addressbook/gui/contact-editor/contact-editor.ui.h:35
msgid "_Birthday:"
msgstr "Aniver_sário:"

#: ../addressbook/gui/contact-editor/contact-editor.ui.h:36
msgid "_Anniversary:"
msgstr "Bod_as:"

#: ../addressbook/gui/contact-editor/contact-editor.ui.h:37
#: ../addressbook/gui/widgets/eab-contact-formatter.c:703
#: ../calendar/gui/e-calendar-view.c:2193
msgid "Anniversary"
msgstr "Bodas"

#. XXX Allow the category icons to be referenced as named
#. *     icons, since GtkAction does not support GdkPixbufs.
#. Get the icon file for some default category.  Doesn't matter
#. * which, so long as it has an icon.  We're just interested in
#. * the directory components.
#: ../addressbook/gui/contact-editor/contact-editor.ui.h:38
#: ../addressbook/gui/widgets/eab-contact-formatter.c:702
#: ../calendar/gui/e-calendar-view.c:2192 ../shell/main.c:127
msgid "Birthday"
msgstr "Aniversário"

#: ../addressbook/gui/contact-editor/contact-editor.ui.h:39
#: ../calendar/gui/dialogs/task-details-page.ui.h:22
msgid "Miscellaneous"
msgstr "Diversos"

#: ../addressbook/gui/contact-editor/contact-editor.ui.h:40
msgid "Personal Information"
msgstr "Informações pessoais"

#: ../addressbook/gui/contact-editor/contact-editor.ui.h:41
msgid "_City:"
msgstr "_Cidade:"

#: ../addressbook/gui/contact-editor/contact-editor.ui.h:42
msgid "_Zip/Postal Code:"
msgstr "CEP/Códi_go postal:"

#: ../addressbook/gui/contact-editor/contact-editor.ui.h:43
msgid "_State/Province:"
msgstr "E_stado/Província:"

#: ../addressbook/gui/contact-editor/contact-editor.ui.h:44
msgid "_Country:"
msgstr "_País:"

#: ../addressbook/gui/contact-editor/contact-editor.ui.h:45
msgid "_PO Box:"
msgstr "Caixa _postal:"

#: ../addressbook/gui/contact-editor/contact-editor.ui.h:46
msgid "_Address:"
msgstr "_Endereço:"

#: ../addressbook/gui/contact-editor/contact-editor.ui.h:47
#: ../addressbook/gui/contact-editor/e-contact-editor.c:191
#: ../addressbook/gui/widgets/e-contact-map.c:308
#: ../addressbook/gui/widgets/eab-contact-display.c:389
#: ../addressbook/gui/widgets/eab-contact-formatter.c:69
msgid "Home"
msgstr "Casa"

#: ../addressbook/gui/contact-editor/contact-editor.ui.h:48
#: ../addressbook/gui/contact-editor/e-contact-editor.c:190
#: ../addressbook/gui/widgets/e-contact-map.c:316
#: ../addressbook/gui/widgets/eab-contact-display.c:386
#: ../addressbook/gui/widgets/eab-contact-formatter.c:68
#: ../addressbook/gui/widgets/eab-contact-formatter.c:684
msgid "Work"
msgstr "Trabalho"

#: ../addressbook/gui/contact-editor/contact-editor.ui.h:49
#: ../addressbook/gui/contact-editor/e-contact-editor.c:192
#: ../addressbook/gui/widgets/eab-contact-formatter.c:70
#: ../addressbook/gui/widgets/eab-contact-formatter.c:379
#: ../calendar/gui/e-cal-model.c:3466
msgid "Other"
msgstr "Outro"

#: ../addressbook/gui/contact-editor/contact-editor.ui.h:50
msgid "Mailing Address"
msgstr "Endereço de correio"

#: ../addressbook/gui/contact-editor/contact-editor.ui.h:51
msgid "Notes"
msgstr "Notas"

#: ../addressbook/gui/contact-editor/e-contact-editor.c:170
#: ../addressbook/gui/widgets/eab-contact-formatter.c:609
msgid "AIM"
msgstr "AIM"

#: ../addressbook/gui/contact-editor/e-contact-editor.c:171
#: ../addressbook/gui/widgets/eab-contact-formatter.c:612
msgid "Jabber"
msgstr "Jabber"

#: ../addressbook/gui/contact-editor/e-contact-editor.c:172
#: ../addressbook/gui/widgets/eab-contact-formatter.c:614
msgid "Yahoo"
msgstr "Yahoo"

#: ../addressbook/gui/contact-editor/e-contact-editor.c:173
#: ../addressbook/gui/widgets/eab-contact-formatter.c:615
msgid "Gadu-Gadu"
msgstr "Gadu-Gadu"

#: ../addressbook/gui/contact-editor/e-contact-editor.c:174
#: ../addressbook/gui/widgets/eab-contact-formatter.c:613
msgid "MSN"
msgstr "MSN"

#: ../addressbook/gui/contact-editor/e-contact-editor.c:175
#: ../addressbook/gui/widgets/eab-contact-formatter.c:611
msgid "ICQ"
msgstr "ICQ"

#: ../addressbook/gui/contact-editor/e-contact-editor.c:176
#: ../addressbook/gui/widgets/eab-contact-formatter.c:610
msgid "GroupWise"
msgstr "GroupWise"

#: ../addressbook/gui/contact-editor/e-contact-editor.c:177
#: ../addressbook/gui/widgets/eab-contact-formatter.c:616
msgid "Skype"
msgstr "Skype"

#: ../addressbook/gui/contact-editor/e-contact-editor.c:178
#: ../addressbook/gui/widgets/eab-contact-formatter.c:617
msgid "Twitter"
msgstr "Twitter"

#: ../addressbook/gui/contact-editor/e-contact-editor.c:227
#: ../addressbook/gui/widgets/eab-gui-util.c:493
msgid "Error adding contact"
msgstr "Erro ao adicionar contato"

#: ../addressbook/gui/contact-editor/e-contact-editor.c:242
msgid "Error modifying contact"
msgstr "Erro ao modificar contato"

#: ../addressbook/gui/contact-editor/e-contact-editor.c:257
msgid "Error removing contact"
msgstr "Erro ao remover contato"

#: ../addressbook/gui/contact-editor/e-contact-editor.c:651
#: ../addressbook/gui/contact-editor/e-contact-editor.c:2943
#, c-format
msgid "Contact Editor - %s"
msgstr "Editor de contatos - %s"

#: ../addressbook/gui/contact-editor/e-contact-editor.c:3476
msgid "Please select an image for this contact"
msgstr "Por favor, selecione uma imagem para este contato"

#: ../addressbook/gui/contact-editor/e-contact-editor.c:3477
msgid "_No image"
msgstr "_Sem imagem"

#: ../addressbook/gui/contact-editor/e-contact-editor.c:3810
msgid ""
"The contact data is invalid:\n"
"\n"
msgstr ""
"Os dados do contato são inválidos:\n"
"\n"

#: ../addressbook/gui/contact-editor/e-contact-editor.c:3816
#, c-format
msgid "'%s' has an invalid format"
msgstr "\"%s\" possui um formato inválido"

#: ../addressbook/gui/contact-editor/e-contact-editor.c:3824
#, c-format
msgid "'%s' cannot be a future date"
msgstr "\"%s\" não pode ser uma data futura"

#: ../addressbook/gui/contact-editor/e-contact-editor.c:3832
#, c-format
msgid "%s'%s' has an invalid format"
msgstr "%s\"%s\" possui um formato inválido"

#: ../addressbook/gui/contact-editor/e-contact-editor.c:3845
#: ../addressbook/gui/contact-editor/e-contact-editor.c:3859
#, c-format
msgid "%s'%s' is empty"
msgstr "%s\"%s\" está vazio"

#: ../addressbook/gui/contact-editor/e-contact-editor.c:3874
msgid "Invalid contact."
msgstr "Contato inválido."

#: ../addressbook/gui/contact-editor/e-contact-quick-add.c:454
msgid "Contact Quick-Add"
msgstr "Adição rápida de contato"

#: ../addressbook/gui/contact-editor/e-contact-quick-add.c:457
msgid "_Edit Full"
msgstr "_Editar completo"

#: ../addressbook/gui/contact-editor/e-contact-quick-add.c:510
msgid "_Full name"
msgstr "Nome _completo"

#: ../addressbook/gui/contact-editor/e-contact-quick-add.c:523
msgid "E_mail"
msgstr "E-mai_l"

#: ../addressbook/gui/contact-editor/e-contact-quick-add.c:536
msgid "_Select Address Book"
msgstr "_Selecionar catálogo de endereços"

#: ../addressbook/gui/contact-editor/fullname.ui.h:1
msgid "Mr."
msgstr "Sr."

#: ../addressbook/gui/contact-editor/fullname.ui.h:2
msgid "Mrs."
msgstr "Sra."

#: ../addressbook/gui/contact-editor/fullname.ui.h:3
msgid "Ms."
msgstr "Srta."

#: ../addressbook/gui/contact-editor/fullname.ui.h:4
msgid "Miss"
msgstr "Senhorita"

#: ../addressbook/gui/contact-editor/fullname.ui.h:5
msgid "Dr."
msgstr "Dr."

#: ../addressbook/gui/contact-editor/fullname.ui.h:6
msgid "Sr."
msgstr "Sr."

#: ../addressbook/gui/contact-editor/fullname.ui.h:7
msgid "Jr."
msgstr "Jr."

#: ../addressbook/gui/contact-editor/fullname.ui.h:8
msgid "I"
msgstr "I"

#: ../addressbook/gui/contact-editor/fullname.ui.h:9
msgid "II"
msgstr "II"

#: ../addressbook/gui/contact-editor/fullname.ui.h:10
msgid "III"
msgstr "III"

#: ../addressbook/gui/contact-editor/fullname.ui.h:11
msgid "Esq."
msgstr "Esq."

#: ../addressbook/gui/contact-editor/fullname.ui.h:12
#: ../addressbook/gui/widgets/e-addressbook-view.etspec.h:2
msgid "Full Name"
msgstr "Nome completo"

#: ../addressbook/gui/contact-editor/fullname.ui.h:13
msgid "_First:"
msgstr "_Nome:"

#: ../addressbook/gui/contact-editor/fullname.ui.h:14
msgctxt "FullName"
msgid "_Title:"
msgstr "_Tratamento:"

#: ../addressbook/gui/contact-editor/fullname.ui.h:15
msgid "_Middle:"
msgstr "Nome do _meio:"

#: ../addressbook/gui/contact-editor/fullname.ui.h:16
msgid "_Last:"
msgstr "_Sobrenome:"

#: ../addressbook/gui/contact-editor/fullname.ui.h:17
msgid "_Suffix:"
msgstr "S_ufixo:"

#: ../addressbook/gui/contact-list-editor/contact-list-editor.ui.h:1
#: ../addressbook/gui/contact-list-editor/e-contact-list-editor.c:818
msgid "Contact List Editor"
msgstr "Editor de lista de contatos"

#: ../addressbook/gui/contact-list-editor/contact-list-editor.ui.h:2
msgid "_List name:"
msgstr "_Nome da lista:"

#: ../addressbook/gui/contact-list-editor/contact-list-editor.ui.h:4
msgid "Members"
msgstr "Membros"

#: ../addressbook/gui/contact-list-editor/contact-list-editor.ui.h:5
msgid "_Type an email address or drag a contact into the list below:"
msgstr ""
"_Digite um endereço de e-mail ou arraste um contato para a lista abaixo:"

#: ../addressbook/gui/contact-list-editor/contact-list-editor.ui.h:6
msgid "_Hide addresses when sending mail to this list"
msgstr "_Ocultar endereços ao enviar correio para esta lista"

#: ../addressbook/gui/contact-list-editor/contact-list-editor.ui.h:7
msgid "Add an email to the List"
msgstr "Adicionar um e-mail à lista"

#: ../addressbook/gui/contact-list-editor/contact-list-editor.ui.h:8
msgid "Remove an email address from the List"
msgstr "Remover um endereço de e-mail da lista"

#: ../addressbook/gui/contact-list-editor/contact-list-editor.ui.h:9
msgid "Insert email addresses from Address Book"
msgstr "Inserir endereço e-mail do catálogo de endereços"

#: ../addressbook/gui/contact-list-editor/contact-list-editor.ui.h:10
msgid "_Select..."
msgstr "_Selecionar..."

#: ../addressbook/gui/contact-list-editor/e-contact-list-editor.c:941
msgid "Contact List Members"
msgstr "Membros da lista de contatos"

#: ../addressbook/gui/contact-list-editor/e-contact-list-editor.c:1468
msgid "_Members"
msgstr "_Membros"

#: ../addressbook/gui/contact-list-editor/e-contact-list-editor.c:1587
msgid "Error adding list"
msgstr "Erro ao adicionar lista"

#: ../addressbook/gui/contact-list-editor/e-contact-list-editor.c:1602
msgid "Error modifying list"
msgstr "Erro ao modificar lista"

#: ../addressbook/gui/contact-list-editor/e-contact-list-editor.c:1617
msgid "Error removing list"
msgstr "Erro ao remover lista"

#: ../addressbook/gui/merging/eab-contact-commit-duplicate-detected.ui.h:1
#: ../addressbook/gui/merging/eab-contact-duplicate-detected.ui.h:1
msgid "Duplicate Contact Detected"
msgstr "Detectado um contato duplicado"

#: ../addressbook/gui/merging/eab-contact-commit-duplicate-detected.ui.h:2
msgid ""
"The name or email of this contact already exists in this folder. Would you "
"like to save the changes anyway?"
msgstr ""
"O nome ou e-mail deste contato já existe nesta pasta. Você gostaria de "
"salvar as alterações assim mesmo?"

#. Translators: Heading of the contact which has same name or email address in this folder already.
#: ../addressbook/gui/merging/eab-contact-commit-duplicate-detected.ui.h:4
msgid "Conflicting Contact:"
msgstr "Contato conflitante:"

#: ../addressbook/gui/merging/eab-contact-commit-duplicate-detected.ui.h:5
msgid "Changed Contact:"
msgstr "Contato alterado:"

#: ../addressbook/gui/merging/eab-contact-duplicate-detected.ui.h:2
#: ../addressbook/gui/merging/eab-contact-merging.c:342
msgid "_Merge"
msgstr "_Juntar"

#: ../addressbook/gui/merging/eab-contact-duplicate-detected.ui.h:3
msgid ""
"The name or email address of this contact already exists\n"
"in this folder.  Would you like to add it anyway?"
msgstr ""
"O nome ou e-mail deste contato já existe nesta pasta.\n"
"Você deseja adicioná-lo assim mesmo?"

#: ../addressbook/gui/merging/eab-contact-duplicate-detected.ui.h:5
msgid "Original Contact:"
msgstr "Contato original:"

#: ../addressbook/gui/merging/eab-contact-duplicate-detected.ui.h:6
msgid "New Contact:"
msgstr "Novo contato:"

#: ../addressbook/gui/merging/eab-contact-merging.c:324
msgid "Merge Contact"
msgstr "Juntar contatos"

#: ../addressbook/gui/widgets/addresstypes.xml.h:1
#: ../modules/addressbook/e-book-shell-view-actions.c:1104
msgid "Name contains"
msgstr "Nome contém"

#: ../addressbook/gui/widgets/addresstypes.xml.h:2
#: ../modules/addressbook/e-book-shell-view-actions.c:1097
msgid "Email begins with"
msgstr "E-mail começa com"

#: ../addressbook/gui/widgets/addresstypes.xml.h:3
#: ../calendar/gui/caltypes.xml.h:26 ../calendar/gui/memotypes.xml.h:19
#: ../calendar/gui/tasktypes.xml.h:30
#: ../modules/addressbook/e-book-shell-view-actions.c:1090
#: ../modules/calendar/e-cal-shell-view-actions.c:1795
#: ../modules/calendar/e-memo-shell-view-actions.c:812
#: ../modules/calendar/e-task-shell-view-actions.c:1011
msgid "Any field contains"
msgstr "Qualquer campo contém"

#: ../addressbook/gui/widgets/e-addressbook-model.c:163
msgid "No contacts"
msgstr "Sem contatos"

#: ../addressbook/gui/widgets/e-addressbook-model.c:167
#, c-format
msgid "%d contact"
msgid_plural "%d contacts"
msgstr[0] "%d contato"
msgstr[1] "%d contatos"

#: ../addressbook/gui/widgets/e-addressbook-model.c:367
msgid "Error getting book view"
msgstr "Erro ao obter exibição do catálogo"

#: ../addressbook/gui/widgets/e-addressbook-model.c:814
msgid "Search Interrupted"
msgstr "Pesquisa interrompida"

#: ../addressbook/gui/widgets/e-addressbook-table-adapter.c:161
msgid "Error modifying card"
msgstr "Erro ao modificar o cartão"

#: ../addressbook/gui/widgets/e-addressbook-view.c:634
msgid "Cut selected contacts to the clipboard"
msgstr "Recortar os contatos selecionados para a área de transferência"

#: ../addressbook/gui/widgets/e-addressbook-view.c:640
msgid "Copy selected contacts to the clipboard"
msgstr "Copia os contatos selecionados para a área de transferência"

#: ../addressbook/gui/widgets/e-addressbook-view.c:646
msgid "Paste contacts from the clipboard"
msgstr "Cola os contatos da área de transferência"

#: ../addressbook/gui/widgets/e-addressbook-view.c:652
#: ../modules/addressbook/e-book-shell-view-actions.c:908
msgid "Delete selected contacts"
msgstr "Exclui os contatos selecionados"

#: ../addressbook/gui/widgets/e-addressbook-view.c:658
msgid "Select all visible contacts"
msgstr "Seleciona todos os contatos visíveis"

#: ../addressbook/gui/widgets/e-addressbook-view.c:1285
msgid "Are you sure you want to delete these contact lists?"
msgstr "Você tem certeza de que deseja excluir estas listas de contatos?"

#: ../addressbook/gui/widgets/e-addressbook-view.c:1289
msgid "Are you sure you want to delete this contact list?"
msgstr "Você tem certeza de que deseja excluir estas listas de contatos?"

#: ../addressbook/gui/widgets/e-addressbook-view.c:1293
#, c-format
msgid "Are you sure you want to delete this contact list (%s)?"
msgstr "Você tem certeza de que deseja excluir a lista de contatos (%s)?"

#: ../addressbook/gui/widgets/e-addressbook-view.c:1299
msgid "Are you sure you want to delete these contacts?"
msgstr "Você tem certeza de que deseja excluir estes contatos?"

#: ../addressbook/gui/widgets/e-addressbook-view.c:1303
msgid "Are you sure you want to delete this contact?"
msgstr "Você tem certeza de que deseja excluir este contato?"

#: ../addressbook/gui/widgets/e-addressbook-view.c:1307
#, c-format
msgid "Are you sure you want to delete this contact (%s)?"
msgstr "Você tem certeza de que deseja excluir este contato (%s)?"

#. Translators: This is shown for > 5 contacts.
#: ../addressbook/gui/widgets/e-addressbook-view.c:1463
#, c-format
msgid ""
"Opening %d contacts will open %d new windows as well.\n"
"Do you really want to display all of these contacts?"
msgid_plural ""
"Opening %d contacts will open %d new windows as well.\n"
"Do you really want to display all of these contacts?"
msgstr[0] ""
"Abrir %d contatos também abrirá %d novas janelas.\n"
"Você realmente deseja exibir todos estes contatos?"
msgstr[1] ""
"Abrir %d contatos também abrirá %d novas janelas.\n"
"Você realmente deseja exibir todos estes contatos?"

#: ../addressbook/gui/widgets/e-addressbook-view.c:1471
msgid "_Don't Display"
msgstr "Não _mostrar"

#: ../addressbook/gui/widgets/e-addressbook-view.c:1472
msgid "Display _All Contacts"
msgstr "Mostr_ar todos os contatos"

#: ../addressbook/gui/widgets/e-addressbook-view.etspec.h:1
msgid "File As"
msgstr "Arquivar como"

#: ../addressbook/gui/widgets/e-addressbook-view.etspec.h:3
msgid "Given Name"
msgstr "Primeiro nome"

#: ../addressbook/gui/widgets/e-addressbook-view.etspec.h:4
msgid "Family Name"
msgstr "Sobrenome"

#: ../addressbook/gui/widgets/e-addressbook-view.etspec.h:5
#: ../addressbook/gui/widgets/eab-contact-formatter.c:608
msgid "Nickname"
msgstr "Apelido"

#: ../addressbook/gui/widgets/e-addressbook-view.etspec.h:7
msgid "Email 2"
msgstr "E-mail 2"

#: ../addressbook/gui/widgets/e-addressbook-view.etspec.h:8
msgid "Email 3"
msgstr "E-mail 3"

#: ../addressbook/gui/widgets/e-addressbook-view.etspec.h:9
msgid "Assistant Phone"
msgstr "Telefone do assistente"

#: ../addressbook/gui/widgets/e-addressbook-view.etspec.h:10
msgid "Business Phone"
msgstr "Telefone comercial"

#: ../addressbook/gui/widgets/e-addressbook-view.etspec.h:11
msgid "Business Phone 2"
msgstr "Telefone comercial 2"

#: ../addressbook/gui/widgets/e-addressbook-view.etspec.h:12
msgid "Business Fax"
msgstr "Fax comercial"

#: ../addressbook/gui/widgets/e-addressbook-view.etspec.h:13
msgid "Callback Phone"
msgstr "Telefone de retorno"

#: ../addressbook/gui/widgets/e-addressbook-view.etspec.h:14
msgid "Car Phone"
msgstr "Telefone do carro"

#: ../addressbook/gui/widgets/e-addressbook-view.etspec.h:15
msgid "Company Phone"
msgstr "Telefone da empresa"

#: ../addressbook/gui/widgets/e-addressbook-view.etspec.h:16
msgid "Home Phone"
msgstr "Telefone residencial"

#: ../addressbook/gui/widgets/e-addressbook-view.etspec.h:17
msgid "Home Phone 2"
msgstr "Telefone residencial 2"

#: ../addressbook/gui/widgets/e-addressbook-view.etspec.h:18
msgid "Home Fax"
msgstr "Fax residencial"

#: ../addressbook/gui/widgets/e-addressbook-view.etspec.h:19
msgid "ISDN Phone"
msgstr "Fone ISDN"

#: ../addressbook/gui/widgets/e-addressbook-view.etspec.h:20
#: ../addressbook/gui/widgets/eab-contact-formatter.c:700
msgid "Mobile Phone"
msgstr "Telefone celular"

#: ../addressbook/gui/widgets/e-addressbook-view.etspec.h:21
msgid "Other Phone"
msgstr "Outro telefone"

#: ../addressbook/gui/widgets/e-addressbook-view.etspec.h:22
msgid "Other Fax"
msgstr "Outro fax"

#: ../addressbook/gui/widgets/e-addressbook-view.etspec.h:23
msgid "Pager"
msgstr "Pager"

#: ../addressbook/gui/widgets/e-addressbook-view.etspec.h:24
msgid "Primary Phone"
msgstr "Telefone principal"

#: ../addressbook/gui/widgets/e-addressbook-view.etspec.h:25
msgid "Radio"
msgstr "Rádio"

#: ../addressbook/gui/widgets/e-addressbook-view.etspec.h:26
msgid "Telex"
msgstr "Telex"

#. Translators: This is a vcard standard and stands for the type of
#. phone used by the hearing impaired. TTY stands for "teletype"
#. (familiar from Unix device names), and TDD is "Telecommunications
#. Device for Deaf". However, you probably want to leave this
#. abbreviation unchanged unless you know that there is actually a
#. different and established translation for this in your language.
#: ../addressbook/gui/widgets/e-addressbook-view.etspec.h:33
msgid "TTYTDD"
msgstr "TTYTDD"

#: ../addressbook/gui/widgets/e-addressbook-view.etspec.h:34
#: ../addressbook/gui/widgets/eab-contact-formatter.c:663
msgid "Company"
msgstr "Empresa"

#: ../addressbook/gui/widgets/e-addressbook-view.etspec.h:35
msgid "Unit"
msgstr "Unidade"

#: ../addressbook/gui/widgets/e-addressbook-view.etspec.h:36
msgid "Office"
msgstr "Escritório"

#: ../addressbook/gui/widgets/e-addressbook-view.etspec.h:37
msgid "Title"
msgstr "Tratamento"

#: ../addressbook/gui/widgets/e-addressbook-view.etspec.h:38
#: ../calendar/gui/e-meeting-list-view.c:663
#: ../calendar/gui/e-meeting-time-sel.etspec.h:5
msgid "Role"
msgstr "Função"

#: ../addressbook/gui/widgets/e-addressbook-view.etspec.h:39
#: ../addressbook/gui/widgets/eab-contact-formatter.c:667
msgid "Manager"
msgstr "Gerente"

#: ../addressbook/gui/widgets/e-addressbook-view.etspec.h:40
#: ../addressbook/gui/widgets/eab-contact-formatter.c:668
msgid "Assistant"
msgstr "Assistente"

#: ../addressbook/gui/widgets/e-addressbook-view.etspec.h:41
msgid "Web Site"
msgstr "Site da web"

#: ../addressbook/gui/widgets/e-addressbook-view.etspec.h:42
msgid "Journal"
msgstr "Diário"

#: ../addressbook/gui/widgets/e-addressbook-view.etspec.h:43
#: ../calendar/gui/dialogs/event-page.ui.h:20
#: ../calendar/gui/e-calendar-table.etspec.h:12
#: ../calendar/gui/e-cal-list-view.etspec.h:6
#: ../calendar/gui/e-memo-table.etspec.h:4 ../e-util/e-categories-dialog.c:89
msgid "Categories"
msgstr "Categorias"

#: ../addressbook/gui/widgets/e-addressbook-view.etspec.h:44
#: ../addressbook/gui/widgets/eab-contact-formatter.c:704
msgid "Spouse"
msgstr "Cônjuge"

#: ../addressbook/gui/widgets/e-addressbook-view.etspec.h:45
#: ../addressbook/gui/widgets/eab-contact-formatter.c:738
msgid "Note"
msgstr "Nota"

#: ../addressbook/gui/widgets/e-contact-map-window.c:364
msgid "Contacts Map"
msgstr "Mapa de contatos"

#: ../addressbook/gui/widgets/e-minicard-view.c:191
msgid ""
"\n"
"\n"
"Searching for the Contacts..."
msgstr ""
"\n"
"\n"
"Pesquisando por contatos..."

#: ../addressbook/gui/widgets/e-minicard-view.c:194
msgid ""
"\n"
"\n"
"Search for the Contact\n"
"\n"
"or double-click here to create a new Contact."
msgstr ""
"\n"
"\n"
"Pesquisa pelo contato\n"
"\n"
"ou clique duas vezes aqui para criar um novo contato."

#: ../addressbook/gui/widgets/e-minicard-view.c:197
msgid ""
"\n"
"\n"
"There are no items to show in this view.\n"
"\n"
"Double-click here to create a new Contact."
msgstr ""
"\n"
"\n"
"Não há itens neste modo de exibição.\n"
"\n"
"Clique duas vezes aqui para criar um novo contato."

#: ../addressbook/gui/widgets/e-minicard-view.c:201
msgid ""
"\n"
"\n"
"Search for the Contact."
msgstr ""
"\n"
"\n"
"Pesquisa pelo contato."

#: ../addressbook/gui/widgets/e-minicard-view.c:203
msgid ""
"\n"
"\n"
"There are no items to show in this view."
msgstr ""
"\n"
"\n"
"Não há itens neste modo de exibição."

#: ../addressbook/gui/widgets/e-minicard.c:93
msgid "Work Email"
msgstr "E-mail profissional"

#: ../addressbook/gui/widgets/e-minicard.c:94
msgid "Home Email"
msgstr "E-mail particular"

#: ../addressbook/gui/widgets/e-minicard.c:95
#: ../addressbook/gui/widgets/e-minicard.c:828
msgid "Other Email"
msgstr "Outro e-mail"

#: ../addressbook/gui/widgets/ea-addressbook-view.c:95
#: ../addressbook/gui/widgets/ea-addressbook-view.c:104
#: ../addressbook/gui/widgets/ea-minicard-view.c:194
msgid "evolution address book"
msgstr "catálogo de endereços do Evolution"

#: ../addressbook/gui/widgets/ea-minicard-view.c:36
msgid "New Contact"
msgstr "Novo contato"

#: ../addressbook/gui/widgets/ea-minicard-view.c:37
msgid "New Contact List"
msgstr "Nova lista de contatos"

#: ../addressbook/gui/widgets/ea-minicard-view.c:177
#, c-format
msgid "current address book folder %s has %d card"
msgid_plural "current address book folder %s has %d cards"
msgstr[0] "pasta atual do catálogo de endereços %s possui %d cartão"
msgstr[1] "pasta atual do catálogo de endereços %s possui %d cartões"

#: ../addressbook/gui/widgets/ea-minicard.c:34
msgid "Open"
msgstr "Abrir"

#: ../addressbook/gui/widgets/ea-minicard.c:160
msgid "Contact List: "
msgstr "Lista de contatos: "

#: ../addressbook/gui/widgets/ea-minicard.c:161
msgid "Contact: "
msgstr "Contato: "

#: ../addressbook/gui/widgets/ea-minicard.c:188
msgid "evolution minicard"
msgstr "minicartão do Evolution"

#: ../addressbook/gui/widgets/eab-contact-display.c:152
msgid "Copy _Email Address"
msgstr "Copiar _endereço de e-mail"

#: ../addressbook/gui/widgets/eab-contact-display.c:154
#: ../e-util/e-web-view-gtkhtml.c:428 ../e-util/e-web-view.c:295
msgid "Copy the email address to the clipboard"
msgstr "Copia o endereço de e-mail para a área de transferência"

#: ../addressbook/gui/widgets/eab-contact-display.c:159
#: ../e-util/e-web-view-gtkhtml.c:433 ../e-util/e-web-view.c:300
msgid "_Send New Message To..."
msgstr "En_viar nova mensagem para..."

#: ../addressbook/gui/widgets/eab-contact-display.c:161
#: ../e-util/e-web-view-gtkhtml.c:435 ../e-util/e-web-view.c:302
msgid "Send a mail message to this address"
msgstr "Envia uma mensagem para estes endereços"

#: ../addressbook/gui/widgets/eab-contact-display.c:323
#: ../e-util/e-web-view-gtkhtml.c:970 ../e-util/e-web-view.c:1084
#, c-format
msgid "Click to mail %s"
msgstr "Clique para enviar correio para %s"

#: ../addressbook/gui/widgets/eab-contact-formatter.c:148
msgid "Open map"
msgstr "Abrir mapa"

#: ../addressbook/gui/widgets/eab-contact-formatter.c:544
msgid "List Members:"
msgstr "Listar membros:"

#: ../addressbook/gui/widgets/eab-contact-formatter.c:664
msgid "Department"
msgstr "Departamento"

#: ../addressbook/gui/widgets/eab-contact-formatter.c:665
msgid "Profession"
msgstr "Profissão"

#: ../addressbook/gui/widgets/eab-contact-formatter.c:666
msgid "Position"
msgstr "Cargo"

#: ../addressbook/gui/widgets/eab-contact-formatter.c:669
msgid "Video Chat"
msgstr "Bate-papo com vídeo"

#: ../addressbook/gui/widgets/eab-contact-formatter.c:670
#: ../e-util/e-send-options.c:546
#: ../modules/calendar/e-cal-shell-view-actions.c:216
#: ../modules/calendar/e-cal-shell-view-actions.c:245
#: ../modules/calendar/e-cal-shell-view.c:548
#: ../plugins/publish-calendar/publish-calendar.ui.h:21
msgid "Calendar"
msgstr "Agenda"

#: ../addressbook/gui/widgets/eab-contact-formatter.c:671
#: ../calendar/gui/dialogs/event-editor.c:122
#: ../calendar/gui/dialogs/event-editor.c:349
#: ../plugins/publish-calendar/publish-calendar.ui.h:2
msgid "Free/Busy"
msgstr "Disponibilidade"

#: ../addressbook/gui/widgets/eab-contact-formatter.c:672
#: ../addressbook/gui/widgets/eab-contact-formatter.c:699
msgid "Phone"
msgstr "Telefone"

#: ../addressbook/gui/widgets/eab-contact-formatter.c:673
msgid "Fax"
msgstr "Fax"

#: ../addressbook/gui/widgets/eab-contact-formatter.c:674
#: ../addressbook/gui/widgets/eab-contact-formatter.c:701
msgid "Address"
msgstr "Endereço"

#: ../addressbook/gui/widgets/eab-contact-formatter.c:697
msgid "Home Page"
msgstr "Página web"

#: ../addressbook/gui/widgets/eab-contact-formatter.c:698
msgid "Web Log"
msgstr "Web log"

#: ../addressbook/gui/widgets/eab-contact-formatter.c:714
msgid "Personal"
msgstr "Pessoal"

#: ../addressbook/gui/widgets/eab-contact-formatter.c:935
msgid "List Members"
msgstr "Listar membros"

#: ../addressbook/gui/widgets/eab-contact-formatter.c:956
msgid "Job Title"
msgstr "Função"

#: ../addressbook/gui/widgets/eab-contact-formatter.c:997
msgid "Home page"
msgstr "Página web"

#: ../addressbook/gui/widgets/eab-contact-formatter.c:1007
msgid "Blog"
msgstr "Blog"

#: ../addressbook/gui/widgets/eab-gui-util.c:118
msgid ""
"This address book cannot be opened. This either means this book is not "
"marked for offline usage or not yet downloaded for offline usage. Please "
"load the address book once in online mode to download its contents."
msgstr ""
"Não foi possível abrir esse catálogo de endereços. Isso significa que esse "
"catálogo não está marcado para uso desconectado ou ainda não foi baixado "
"para uso desconectado. Por favor, carregue o catálogo de endereços quando "
"estiver no modo conectado para baixar seu conteúdo."

#: ../addressbook/gui/widgets/eab-gui-util.c:137
#, c-format
msgid ""
"This address book cannot be opened.  Please check that the path %s exists "
"and that permissions are set to access it."
msgstr ""
"Não foi possível abrir este catálogo de endereços. Por favor, verifique se o "
"caminho %s existe e se você possui as permissões para acessá-lo."

#: ../addressbook/gui/widgets/eab-gui-util.c:150
msgid ""
"This version of Evolution does not have LDAP support compiled in to it.  To "
"use LDAP in Evolution an LDAP-enabled Evolution package must be installed."
msgstr ""
"Esta versão do Evolution não foi compilada com suporte a LDAP. Para usar "
"LDAP no Evolution, você deve instalar um pacote do Evolution com LDAP "
"habilitado."

#: ../addressbook/gui/widgets/eab-gui-util.c:159
msgid ""
"This address book cannot be opened.  This either means that an incorrect URI "
"was entered, or the server is unreachable."
msgstr ""
"Não foi possível abrir este catálogo de endereços. Isto significa que você "
"digitou um URI incorreto ou que o servidor está fora do ar."

#: ../addressbook/gui/widgets/eab-gui-util.c:167
msgid "Detailed error message:"
msgstr "Mennsagem detalhada do erro:"

# alterei para ter o mesmo tamanho
#: ../addressbook/gui/widgets/eab-gui-util.c:204
msgid ""
"More cards matched this query than either the server is \n"
"configured to return or Evolution is configured to display.\n"
"Please make your search more specific or raise the result limit in\n"
"the directory server preferences for this address book."
msgstr ""
"A consulta encontrou mais cartões que o servidor está configurado \n"
"para retornar, ou que o Evolution está configurado para exibir.\n"
"Por favor, torne a sua pesquisa mais específica ou aumente o limite \n"
"nas preferências do servidor de diretório para este catálogo de endereços."

#: ../addressbook/gui/widgets/eab-gui-util.c:211
msgid ""
"The time to execute this query exceeded the server limit or the limit\n"
"configured for this address book.  Please make your search\n"
"more specific or raise the time limit in the directory server\n"
"preferences for this address book."
msgstr ""
"O tempo para executar esta consulta excedeu o limite do servidor ou o\n"
"limite que você configurou para este catálogo de endereços. Por favor,\n"
"torne a sua pesquisa mais específica ou aumente o limite de tempo nas\n"
"preferências do servidor de diretório para este catálogo de endereços."

#. Translators: %s is replaced with a detailed error message, or an empty string, if not provided
#: ../addressbook/gui/widgets/eab-gui-util.c:219
#, c-format
msgid "The backend for this address book was unable to parse this query. %s"
msgstr ""
"O backend para este catálogo de endereços não pôde analisar esta consulta. %s"

#. Translators: %s is replaced with a detailed error message, or an empty string, if not provided
#: ../addressbook/gui/widgets/eab-gui-util.c:224
#, c-format
msgid "The backend for this address book refused to perform this query. %s"
msgstr ""
"O backend para este catálogo de endereços se recusou a processar esta "
"consulta. %s"

#. Translators: %s is replaced with a detailed error message, or an empty string, if not provided
#: ../addressbook/gui/widgets/eab-gui-util.c:230
#: ../addressbook/gui/widgets/eab-gui-util.c:236
#, c-format
msgid "This query did not complete successfully. %s"
msgstr "Esta consulta não foi concluída com sucesso. %s"

#. This is a filename. Translators take note.
#: ../addressbook/gui/widgets/eab-gui-util.c:258
msgid "card.vcf"
msgstr "card.vcf"

#: ../addressbook/gui/widgets/eab-gui-util.c:309
msgid "Select Address Book"
msgstr "Selecionar catálogo de endereços"

#: ../addressbook/gui/widgets/eab-gui-util.c:391
msgid "list"
msgstr "lista"

#: ../addressbook/gui/widgets/eab-gui-util.c:581
msgid "Move contact to"
msgstr "Mover contato para"

#: ../addressbook/gui/widgets/eab-gui-util.c:583
msgid "Copy contact to"
msgstr "Copiar contato para"

#: ../addressbook/gui/widgets/eab-gui-util.c:586
msgid "Move contacts to"
msgstr "Mover contatos para"

#: ../addressbook/gui/widgets/eab-gui-util.c:588
msgid "Copy contacts to"
msgstr "Copiar contatos para"

#: ../addressbook/gui/widgets/gal-view-factory-minicard.c:38
msgid "Card View"
msgstr "Exibição de cartão"

#: ../addressbook/importers/evolution-csv-importer.c:744
#: ../addressbook/importers/evolution-ldif-importer.c:543
#: ../addressbook/importers/evolution-vcard-importer.c:279
#: ../calendar/importers/icalendar-importer.c:440
#: ../calendar/importers/icalendar-importer.c:935
#: ../calendar/importers/icalendar-importer.c:974 ../shell/shell.error.xml.h:1
msgid "Importing..."
msgstr "Importando..."

#: ../addressbook/importers/evolution-csv-importer.c:1079
msgid "Outlook Contacts CSV or Tab (.csv, .tab)"
msgstr "Contatos do Outlook CSV ou Tab (CSV, .tab)"

#: ../addressbook/importers/evolution-csv-importer.c:1080
msgid "Outlook Contacts CSV and Tab Importer"
msgstr "Importador de contatos CSV e Tab do Outlook"

#: ../addressbook/importers/evolution-csv-importer.c:1088
msgid "Mozilla Contacts CSV or Tab (.csv, .tab)"
msgstr "Contatos do Mozilla CSV ou Tab (.csv, .tab)"

#: ../addressbook/importers/evolution-csv-importer.c:1089
msgid "Mozilla Contacts CSV and Tab Importer"
msgstr "Importador de contatos CSV e Tab do Mozilla"

#: ../addressbook/importers/evolution-csv-importer.c:1097
msgid "Evolution Contacts CSV or Tab (.csv, .tab)"
msgstr "Contatos CSV ou Tab do Evolution (.csv, .tab)"

#: ../addressbook/importers/evolution-csv-importer.c:1098
msgid "Evolution Contacts CSV and Tab Importer"
msgstr "Importador de contatos CSV e Tab do Evolution"

#: ../addressbook/importers/evolution-ldif-importer.c:801
msgid "LDAP Data Interchange Format (.ldif)"
msgstr "Formato de troca de dados LDAP (.ldif)"

#: ../addressbook/importers/evolution-ldif-importer.c:802
msgid "Evolution LDIF importer"
msgstr "Importador LDIF do Evolution"

#: ../addressbook/importers/evolution-vcard-importer.c:664
msgid "vCard (.vcf, .gcrd)"
msgstr "vCard (.vcf, .gcrd)"

#: ../addressbook/importers/evolution-vcard-importer.c:665
msgid "Evolution vCard Importer"
msgstr "Importador vCard do Evolution"

#. Uncomment next if it is successful to get total number if pages in list view
#. * g_object_get (operation, "n-pages", &n_pages, NULL)
#: ../addressbook/printing/e-contact-print.c:764
#, c-format
msgid "Page %d"
msgstr "Página %d"

#: ../addressbook/tools/evolution-addressbook-export.c:59
msgid "Specify the output file instead of standard output"
msgstr "Especifique um arquivo de saída no lugar da saída padrão"

#: ../addressbook/tools/evolution-addressbook-export.c:60
msgid "OUTPUTFILE"
msgstr "ARQUIVO-DE-SAÍDA"

#: ../addressbook/tools/evolution-addressbook-export.c:63
msgid "List local address book folders"
msgstr "Listar as pastas locais do catálogo de endereços"

#: ../addressbook/tools/evolution-addressbook-export.c:66
msgid "Show cards as vcard or csv file"
msgstr "Mostrar cartões como vCard ou um arquivo csv"

#: ../addressbook/tools/evolution-addressbook-export.c:67
msgid "[vcard|csv]"
msgstr "[vcard|csv]"

#: ../addressbook/tools/evolution-addressbook-export.c:136
msgid ""
"Command line arguments error, please use --help option to see the usage."
msgstr ""
"Erro nos argumentos de linha de comando. Por favor, use a opção --help para "
"ver o uso correto."

#: ../addressbook/tools/evolution-addressbook-export.c:150
msgid "Only support csv or vcard format."
msgstr "Suporta apenas formatos csv ou vCard."

#: ../addressbook/tools/evolution-addressbook-export.c:181
msgid "Unhandled error"
msgstr "Erro não manipulado"

#: ../addressbook/tools/evolution-addressbook-export-list-cards.c:625
#: ../addressbook/tools/evolution-addressbook-export-list-folders.c:46
msgid "Can not open file"
msgstr "Não foi possível abrir o arquivo"

#: ../addressbook/tools/evolution-addressbook-export-list-folders.c:76
#, c-format
msgid "Failed to open client '%s': %s"
msgstr "Falha ao abrir o cliente \"%s\": %s"

#: ../calendar/alarm-notify/alarm-notify-dialog.c:106
msgid "minute"
msgid_plural "minutes"
msgstr[0] "minuto"
msgstr[1] "minutos"

#: ../calendar/alarm-notify/alarm-notify-dialog.c:119
msgid "hour"
msgid_plural "hours"
msgstr[0] "hora"
msgstr[1] "horas"

#. For Translator : 'day' is part of the sentence of the form 'appointment recurs/Every [x] month(s) on the [first] [day] [forever]'
#. * (dropdown menu options are in[square brackets]). This means that after 'first', either the string 'day' or
#. * the name of a week day (like 'Monday' or 'Friday') always follow.
#: ../calendar/alarm-notify/alarm-notify-dialog.c:132
#: ../calendar/gui/dialogs/recurrence-page.c:1204
msgid "day"
msgid_plural "days"
msgstr[0] "dia"
msgstr[1] "dias"

#: ../calendar/alarm-notify/alarm-notify-dialog.c:329
msgid "Start time"
msgstr "Hora de início"

#: ../calendar/alarm-notify/alarm-notify.ui.h:1
msgid "Appointments"
msgstr "Compromissos"

#: ../calendar/alarm-notify/alarm-notify.ui.h:2
msgid "Dismiss _All"
msgstr "Desc_artar tudo"

#: ../calendar/alarm-notify/alarm-notify.ui.h:3
msgid "_Snooze"
msgstr "_Adiar"

#: ../calendar/alarm-notify/alarm-notify.ui.h:4 ../e-util/e-alert-dialog.c:162
msgid "_Dismiss"
msgstr "_Descartar"

#: ../calendar/alarm-notify/alarm-notify.ui.h:5
#: ../calendar/alarm-notify/alarm-queue.c:1766
#: ../calendar/alarm-notify/alarm-queue.c:1776
#: ../modules/cal-config-weather/evolution-cal-config-weather.c:190
#: ../modules/itip-formatter/itip-view.c:1489
#: ../modules/itip-formatter/itip-view.c:1600
msgid "Location:"
msgstr "Local:"

#: ../calendar/alarm-notify/alarm-notify.ui.h:6
msgid "location of appointment"
msgstr "localização do compromisso"

#: ../calendar/alarm-notify/alarm-notify.ui.h:7
msgid "Snooze _time:"
msgstr "_Tempo de adiamento:"

#. Translators: This is the last part of the sentence:
#. * "Purge events older than <<spin-button>> days"
#: ../calendar/alarm-notify/alarm-notify.ui.h:8
#: ../calendar/gui/dialogs/alarm-dialog.ui.h:10 ../e-util/filter.ui.h:8
#: ../e-util/e-interval-chooser.c:143
#: ../modules/calendar/e-cal-shell-view-actions.c:352
#: ../plugins/publish-calendar/publish-calendar.ui.h:6
msgid "days"
msgstr "dias"

#: ../calendar/alarm-notify/alarm-notify.ui.h:9
#: ../calendar/gui/dialogs/alarm-dialog.ui.h:9
#: ../calendar/gui/dialogs/event-page.ui.h:18 ../e-util/filter.ui.h:7
#: ../e-util/e-interval-chooser.c:141
msgid "hours"
msgstr "horas"

#: ../calendar/alarm-notify/alarm-notify.ui.h:10
#: ../calendar/gui/dialogs/alarm-dialog.ui.h:8
#: ../calendar/gui/dialogs/event-page.ui.h:19 ../e-util/filter.ui.h:6
#: ../e-util/e-interval-chooser.c:139
#: ../mail/e-mail-config-provider-page.c:527
msgid "minutes"
msgstr "minutos"

#: ../calendar/alarm-notify/alarm-queue.c:1612
#: ../calendar/alarm-notify/alarm-queue.c:1746
msgid "No summary available."
msgstr "Sem resumo disponível."

#: ../calendar/alarm-notify/alarm-queue.c:1621
#: ../calendar/alarm-notify/alarm-queue.c:1623
msgid "No description available."
msgstr "Sem descrição disponível."

#: ../calendar/alarm-notify/alarm-queue.c:1631
msgid "No location information available."
msgstr "Sem informações de local disponíveis."

#: ../calendar/alarm-notify/alarm-queue.c:1636
#: ../calendar/alarm-notify/alarm-queue.c:1737
#: ../calendar/alarm-notify/alarm-queue.c:2099
msgid "Evolution Reminders"
msgstr "Lembretes do Evolution"

#: ../calendar/alarm-notify/alarm-queue.c:1679
#, c-format
msgid "You have %d reminder"
msgid_plural "You have %d reminders"
msgstr[0] "Você tem %d lembrete"
msgstr[1] "Você tem %d lembretes"

#: ../calendar/alarm-notify/alarm-queue.c:1884
#: ../calendar/alarm-notify/alarm-queue.c:1919
msgid "Warning"
msgstr "Alerta"

#: ../calendar/alarm-notify/alarm-queue.c:1888
msgid ""
"Evolution does not support calendar reminders with\n"
"email notifications yet, but this reminder was\n"
"configured to send an email.  Evolution will display\n"
"a normal reminder dialog box instead."
msgstr ""
"Este lembrete foi configurado para enviar um e-mail,\n"
"mas o Evolution ainda não suporta lembretes de agenda\n"
"com notificações por e-mail. Em lugar disso, o Evolution\n"
"exibirá uma caixa de diálogo normal de lembrete."

#: ../calendar/alarm-notify/alarm-queue.c:1925
#, c-format
msgid ""
"An Evolution Calendar reminder is about to trigger. This reminder is "
"configured to run the following program:\n"
"\n"
"        %s\n"
"\n"
"Are you sure you want to run this program?"
msgstr ""
"Um lembrete da agenda do Evolution está prestes a ser ativado. Este lembrete "
"está configurado para executar o seguinte programa:\n"
"\n"
"        %s\n"
"\n"
"Você tem certeza de que deseja executar este programa?"

#: ../calendar/alarm-notify/alarm-queue.c:1940
msgid "Do not ask me about this program again."
msgstr "Não me pergunte sobre este programa novamente."

#: ../calendar/alarm-notify/util.c:44
msgid "invalid time"
msgstr "hora inválida"

#. Translator: Entire string is like "Pop up an alert %d hours before start of appointment"
#: ../calendar/alarm-notify/util.c:70 ../calendar/gui/e-alarm-list.c:370
#: ../calendar/gui/misc.c:96
#, c-format
msgid "%d hour"
msgid_plural "%d hours"
msgstr[0] "%d hora"
msgstr[1] "%d horas"

#. Translator: Entire string is like "Pop up an alert %d minutes before start of appointment"
#: ../calendar/alarm-notify/util.c:76 ../calendar/gui/e-alarm-list.c:376
#: ../calendar/gui/misc.c:102
#, c-format
msgid "%d minute"
msgid_plural "%d minutes"
msgstr[0] "%d minuto"
msgstr[1] "%d minutos"

#. TRANSLATORS: here, "second" is the time division (like "minute"), not the ordinal number (like "third")
#. Translator: Entire string is like "Pop up an alert %d seconds before start of appointment"
#. TRANSLATORS: here, "second" is the time division (like "minute"), not the ordinal number (like "third")
#: ../calendar/alarm-notify/util.c:80 ../calendar/gui/e-alarm-list.c:382
#: ../calendar/gui/misc.c:106
#, c-format
msgid "%d second"
msgid_plural "%d seconds"
msgstr[0] "%d segundo"
msgstr[1] "%d segundos"

#: ../calendar/calendar.error.xml.h:1
msgid "Would you like to send all the participants a cancelation notice?"
msgstr "Você deseja enviar um aviso de cancelamento a todos os participantes?"

#: ../calendar/calendar.error.xml.h:2
msgid ""
"If you do not send a cancelation notice, the other participants may not know "
"the meeting is canceled."
msgstr ""
"Se você não enviar um aviso de cancelamento, os outros participantes poderão "
"não saber que a reunião foi cancelada."

#: ../calendar/calendar.error.xml.h:3
msgid "Do _not Send"
msgstr "_Não enviar"

#: ../calendar/calendar.error.xml.h:4
msgid "_Send Notice"
msgstr "_Enviar notificação"

#: ../calendar/calendar.error.xml.h:5
#: ../calendar/gui/dialogs/delete-comp.c:193
#, c-format
msgid "Are you sure you want to delete this meeting?"
msgstr "Você tem certeza de que deseja excluir esta reunião?"

#: ../calendar/calendar.error.xml.h:6
msgid ""
"All information on this meeting will be deleted and can not be restored."
msgstr ""
"Todas as informações sobre esta reunião serão excluídas e não poderão ser "
"recuperadas."

#: ../calendar/calendar.error.xml.h:8
msgid ""
"If you do not send a cancelation notice, the other participants may not know "
"the task has been deleted."
msgstr ""
"Se você não enviar um aviso de cancelamento, os outros participantes poderão "
"não saber que a tarefa foi excluída."

#: ../calendar/calendar.error.xml.h:9
#: ../calendar/gui/dialogs/delete-comp.c:196
#, c-format
msgid "Are you sure you want to delete this task?"
msgstr "Você tem certeza de que deseja excluir esta tarefa?"

#: ../calendar/calendar.error.xml.h:10
msgid "All information on this task will be deleted and can not be restored."
msgstr ""
"Todas as informações sobre esta tarefa serão excluídas e não poderão ser "
"recuperadas."

#: ../calendar/calendar.error.xml.h:11
msgid "Would you like to send a cancelation notice for this memo?"
msgstr "Você deseja enviar um aviso de cancelamento para este memorando?"

#: ../calendar/calendar.error.xml.h:12
msgid ""
"If you do not send a cancelation notice, the other participants may not know "
"the memo has been deleted."
msgstr ""
"Se você não enviar um aviso de cancelamento, os outros participantes poderão "
"não saber que o memorando foi excluído."

#: ../calendar/calendar.error.xml.h:13
#: ../calendar/gui/dialogs/delete-comp.c:199
#, c-format
msgid "Are you sure you want to delete this memo?"
msgstr "Você tem certeza de que deseja excluir este memorando?"

#: ../calendar/calendar.error.xml.h:14
msgid "All information on this memo will be deleted and can not be restored."
msgstr ""
"Todas as informações sobre este memorando serão excluídas e não poderão ser "
"recuperadas."

#: ../calendar/calendar.error.xml.h:15
msgid "Are you sure you want to delete the meeting titled '{0}'?"
msgstr "Você tem certeza de que deseja excluir a reunião com o título \"{0}\"?"

#: ../calendar/calendar.error.xml.h:16
msgid "Are you sure you want to delete the appointment titled '{0}'?"
msgstr ""
"Você tem certeza de que deseja excluir o compromisso com o título \"{0}\"?"

#: ../calendar/calendar.error.xml.h:17
msgid ""
"All information on this appointment will be deleted and can not be restored."
msgstr ""
"Todas as informações sobre este compromisso serão excluídas e não poderão "
"ser recuperadas."

#: ../calendar/calendar.error.xml.h:18
msgid "Are you sure you want to delete this appointment?"
msgstr "Você tem certeza de que deseja excluir este compromisso?"

#: ../calendar/calendar.error.xml.h:19
msgid "Are you sure you want to delete the '{0}' task?"
msgstr "Você tem certeza de que deseja excluir a tarefa \"{0}\"?"

#: ../calendar/calendar.error.xml.h:20
msgid "Are you sure you want to delete the memo '{0}'?"
msgstr "Você tem certeza de que deseja excluir o memorando \"{0}\"?"

#: ../calendar/calendar.error.xml.h:21
msgid "All information in this memo will be deleted and can not be restored."
msgstr ""
"Todas as informações sobre este memorando serão excluídas e não poderão ser "
"recuperadas."

#: ../calendar/calendar.error.xml.h:22
msgid "Are you sure you want to delete these {0} appointments?"
msgstr "Você tem certeza de que deseja excluir estes {0} compromissos?"

#: ../calendar/calendar.error.xml.h:23
msgid ""
"All information on these appointments will be deleted and can not be "
"restored."
msgstr ""
"Todas as informações sobre estes compromissos serão excluídas e não poderão "
"ser recuperadas."

#: ../calendar/calendar.error.xml.h:24
msgid "Are you sure you want to delete these {0} tasks?"
msgstr "Você tem certeza de que deseja excluir estas {0} tarefas?"

#: ../calendar/calendar.error.xml.h:25
msgid "All information on these tasks will be deleted and can not be restored."
msgstr ""
"Todas as informações sobre estas tarefas serão excluídas e não poderão ser "
"recuperadas."

#: ../calendar/calendar.error.xml.h:26
msgid "Are you sure you want to delete these {0} memos?"
msgstr "Você tem certeza de que deseja excluir estes {0} memorandos?"

#: ../calendar/calendar.error.xml.h:27
msgid "All information in these memos will be deleted and can not be restored."
msgstr ""
"Todas as informações sobre estes memorandos serão excluídas e não poderão "
"ser recuperadas."

#: ../calendar/calendar.error.xml.h:28
msgid "Would you like to save your changes to this meeting?"
msgstr "Você deseja salvar as alterações realizadas para esta reunião?"

#: ../calendar/calendar.error.xml.h:29
msgid "You have changed this meeting, but not yet saved it."
msgstr "Você fez alterações nesta reunião, mas ainda não as salvou."

#: ../calendar/calendar.error.xml.h:30
#: ../composer/mail-composer.error.xml.h:16
msgid "_Discard Changes"
msgstr "_Descartar alterações"

#: ../calendar/calendar.error.xml.h:31
msgid "_Save Changes"
msgstr "_Salvar alterações"

#: ../calendar/calendar.error.xml.h:32
msgid "Would you like to save your changes to this appointment?"
msgstr "Você deseja salvar as alterações realizadas neste compromisso?"

#: ../calendar/calendar.error.xml.h:33
msgid "You have changed this appointment, but not yet saved it."
msgstr "Você fez alterações neste compromisso, mas ainda não as salvou."

#: ../calendar/calendar.error.xml.h:34
msgid "Would you like to save your changes to this task?"
msgstr "Você deseja salvar as alterações realizadas nesta tarefa?"

#: ../calendar/calendar.error.xml.h:35
msgid "You have changed this task, but not yet saved it."
msgstr "Você fez alterações nesta tarefa, mas ainda não as salvou."

#: ../calendar/calendar.error.xml.h:36
msgid "Would you like to save your changes to this memo?"
msgstr "Você deseja salvar as alterações realizadas neste memorando?"

#: ../calendar/calendar.error.xml.h:37
msgid "You have made changes to this memo, but not yet saved them."
msgstr "Você fez alterações neste memorando mas ainda não as salvou."

#: ../calendar/calendar.error.xml.h:38
msgid "Would you like to send meeting invitations to participants?"
msgstr "Você deseja enviar convites de reunião aos participantes?"

#: ../calendar/calendar.error.xml.h:39
msgid ""
"Email invitations will be sent to all participants and allow them to reply."
msgstr ""
"Convites serão enviados por e-mail a todos os participantes, permitindo que "
"eles respondam."

#: ../calendar/calendar.error.xml.h:40
#: ../composer/mail-composer.error.xml.h:13 ../mail/mail.error.xml.h:8
#: ../plugins/attachment-reminder/org-gnome-attachment-reminder.error.xml.h:5
msgid "_Send"
msgstr "_Enviar"

#: ../calendar/calendar.error.xml.h:41
msgid "Would you like to send updated meeting information to participants?"
msgstr ""
"Você deseja enviar informações atualizadas de reunião aos participantes?"

#: ../calendar/calendar.error.xml.h:42
msgid ""
"Sending updated information allows other participants to keep their "
"calendars up to date."
msgstr ""
"Enviar informações atualizadas permite que os outros participantes mantenham "
"as suas agendas atualizadas."

#: ../calendar/calendar.error.xml.h:43
msgid "Would you like to send this task to participants?"
msgstr "Você deseja enviar esta tarefa aos participantes?"

#: ../calendar/calendar.error.xml.h:44
msgid ""
"Email invitations will be sent to all participants and allow them to accept "
"this task."
msgstr ""
"Convites serão enviados por e-mail a todos os participantes, permitindo que "
"eles aceitem esta tarefa."

#: ../calendar/calendar.error.xml.h:45
msgid "Download in progress. Do you want to save the task?"
msgstr "Transferência em progresso. Você deseja salvar a tarefa?"

#: ../calendar/calendar.error.xml.h:46
msgid ""
"Some attachments are being downloaded. Saving the task would result in the "
"loss of these attachments."
msgstr ""
"Existem alguns anexos sendo baixados. Salvar a tarefa agora causará a perda "
"desses anexos."

#: ../calendar/calendar.error.xml.h:47 ../composer/e-composer-actions.c:315
msgid "_Save"
msgstr "_Salvar"

#: ../calendar/calendar.error.xml.h:48
msgid "Download in progress. Do you want to save the appointment?"
msgstr "Transferência em progresso. Você deseja salvar o compromisso?"

#: ../calendar/calendar.error.xml.h:49
msgid ""
"Some attachments are being downloaded. Saving the appointment would result "
"in the loss of these attachments."
msgstr ""
"Existem alguns anexos sendo baixados. Salvar o compromisso agora causará a "
"perda desses anexos."

#: ../calendar/calendar.error.xml.h:50
msgid "Would you like to send updated task information to participants?"
msgstr "Você deseja enviar informação atualizada de tarefa aos participantes?"

#: ../calendar/calendar.error.xml.h:51
msgid ""
"Sending updated information allow