number localization format for de set same as en
This commit is contained in:
		
					parent
					
						
							
								8d53917826
							
						
					
				
			
			
				commit
				
					
						fc659cab9f
					
				
			
		
					 5 changed files with 13 additions and 10 deletions
				
			
		
							
								
								
									
										0
									
								
								dynamicweb/formats/__init__.py
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										0
									
								
								dynamicweb/formats/__init__.py
									
										
									
									
									
										Normal file
									
								
							
							
								
								
									
										0
									
								
								dynamicweb/formats/de/__init__.py
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										0
									
								
								dynamicweb/formats/de/__init__.py
									
										
									
									
									
										Normal file
									
								
							
							
								
								
									
										2
									
								
								dynamicweb/formats/de/formats.py
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										2
									
								
								dynamicweb/formats/de/formats.py
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
					@ -0,0 +1,2 @@
 | 
				
			||||||
 | 
					DECIMAL_SEPARATOR = '.'
 | 
				
			||||||
 | 
					THOUSAND_SEPARATOR = ','
 | 
				
			||||||
| 
						 | 
					@ -255,6 +255,12 @@ USE_L10N = True
 | 
				
			||||||
 | 
					
 | 
				
			||||||
USE_TZ = True
 | 
					USE_TZ = True
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					USE_THOUSAND_SEPARATOR = True
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					FORMAT_MODULE_PATH = [
 | 
				
			||||||
 | 
					    'dynamicweb.formats'
 | 
				
			||||||
 | 
					]
 | 
				
			||||||
 | 
					
 | 
				
			||||||
LANGUAGES = (
 | 
					LANGUAGES = (
 | 
				
			||||||
    ('en-us', _('English')),
 | 
					    ('en-us', _('English')),
 | 
				
			||||||
    ('de', _('Deutsch')),
 | 
					    ('de', _('Deutsch')),
 | 
				
			||||||
| 
						 | 
					@ -262,11 +268,6 @@ LANGUAGES = (
 | 
				
			||||||
 | 
					
 | 
				
			||||||
LANGUAGE_CODE = 'en-us'
 | 
					LANGUAGE_CODE = 'en-us'
 | 
				
			||||||
 | 
					
 | 
				
			||||||
LOCALE_PATHS = [
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    os.path.join(PROJECT_DIR, 'digitalglarus/locale'),
 | 
					 | 
				
			||||||
]
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
CMS_PLACEHOLDER_CONF = {
 | 
					CMS_PLACEHOLDER_CONF = {
 | 
				
			||||||
    'logo_image': {
 | 
					    'logo_image': {
 | 
				
			||||||
        'name': 'Logo Image',
 | 
					        'name': 'Logo Image',
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -30,7 +30,7 @@
 | 
				
			||||||
                <tr>
 | 
					                <tr>
 | 
				
			||||||
                    <td class="xs-td-inline" data-header="{% trans 'Order Nr.' %}">{{ order.id }}</td>
 | 
					                    <td class="xs-td-inline" data-header="{% trans 'Order Nr.' %}">{{ order.id }}</td>
 | 
				
			||||||
                    <td class="xs-td-bighalf" data-header="{% trans 'Date' %}">{{ order.created_at | date:"M d, Y H:i" }}</td>
 | 
					                    <td class="xs-td-bighalf" data-header="{% trans 'Date' %}">{{ order.created_at | date:"M d, Y H:i" }}</td>
 | 
				
			||||||
                    <td class="xs-td-smallhalf" data-header="{% trans 'Amount' %}">{{ order.price|unlocalize }}</td>
 | 
					                    <td class="xs-td-smallhalf" data-header="{% trans 'Amount' %}">{{ order.price }}</td>
 | 
				
			||||||
                    <td class="text-right last-td">
 | 
					                    <td class="text-right last-td">
 | 
				
			||||||
                        <a class="btn btn-order-detail" href="{% url 'hosting:orders' order.pk %}">{% trans 'See Invoice' %}</a>
 | 
					                        <a class="btn btn-order-detail" href="{% url 'hosting:orders' order.pk %}">{% trans 'See Invoice' %}</a>
 | 
				
			||||||
                    </td>
 | 
					                    </td>
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue