Marketplace móvil para negocios locales mexicanos. Estructura inicial: - apps/backend (NestJS API) - apps/frontend (React Web) - apps/mobile (Expo/React Native) - apps/mcp-server (Claude MCP Server) - apps/whatsapp-service (WhatsApp Business API) - database/ (PostgreSQL DDL) - docs/ (Documentación) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
12 lines
474 B
JavaScript
12 lines
474 B
JavaScript
// English [en]
|
|
// We don't need weekdaysShort, weekdaysMin, monthsShort in en.js locale
|
|
export default {
|
|
name: 'en',
|
|
weekdays: 'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split('_'),
|
|
months: 'January_February_March_April_May_June_July_August_September_October_November_December'.split('_'),
|
|
ordinal: function ordinal(n) {
|
|
var s = ['th', 'st', 'nd', 'rd'];
|
|
var v = n % 100;
|
|
return "[" + n + (s[(v - 20) % 10] || s[v] || s[0]) + "]";
|
|
}
|
|
}; |